diff --git a/apps/common/main/lib/component/LoadMask.js b/apps/common/main/lib/component/LoadMask.js index 776e2af88..b9973a33b 100644 --- a/apps/common/main/lib/component/LoadMask.js +++ b/apps/common/main/lib/component/LoadMask.js @@ -68,12 +68,6 @@ define([ 'use strict'; Common.UI.LoadMask = Common.UI.BaseView.extend((function() { - var ownerEl, - maskeEl, - loaderEl; - var timerId = 0; - - maskeEl = $('
'); return { options : { cls : '', @@ -95,13 +89,15 @@ define([ this.template = this.options.template || this.template; this.title = this.options.title; - ownerEl = (this.options.owner instanceof Common.UI.BaseView) ? $(this.options.owner.el) : $(this.options.owner); - loaderEl = $(this.template({ + this.ownerEl = (this.options.owner instanceof Common.UI.BaseView) ? $(this.options.owner.el) : $(this.options.owner); + this.loaderEl = $(this.template({ id : this.id, cls : this.options.cls, style : this.options.style, title : this.title })); + this.maskeEl = $('
'); + this.timerId = 0; }, render: function() { @@ -113,6 +109,9 @@ define([ // return; // The owner is already masked + var ownerEl = this.ownerEl, + loaderEl = this.loaderEl, + maskeEl = this.maskeEl; if (!!ownerEl.ismasked) return this; @@ -125,7 +124,7 @@ define([ } // show mask after 500 ms if it wont be hided - timerId = setTimeout(function () { + me.timerId = setTimeout(function () { ownerEl.append(maskeEl); ownerEl.append(loaderEl); @@ -144,16 +143,17 @@ define([ }, hide: function() { - if (timerId) { - clearTimeout(timerId); - timerId = 0; + var ownerEl = this.ownerEl; + if (this.timerId) { + clearTimeout(this.timerId); + this.timerId = 0; } if (ownerEl && ownerEl.ismasked) { if (ownerEl.closest('.asc-window.modal').length==0 && !Common.Utils.ModalWindow.isVisible()) Common.util.Shortcuts.resumeEvents(); - maskeEl && maskeEl.remove(); - loaderEl && loaderEl.remove(); + this.maskeEl && this.maskeEl.remove(); + this.loaderEl && this.loaderEl.remove(); } delete ownerEl.ismasked; }, @@ -161,16 +161,18 @@ define([ setTitle: function(title) { this.title = title; - if (ownerEl && ownerEl.ismasked && loaderEl){ - $('.asc-loadmask-title', loaderEl).html(title); + if (this.ownerEl && this.ownerEl.ismasked && this.loaderEl){ + $('.asc-loadmask-title', this.loaderEl).html(title); } }, isVisible: function() { - return !!ownerEl.ismasked; + return !!this.ownerEl.ismasked; }, updatePosition: function() { + var ownerEl = this.ownerEl, + loaderEl = this.loaderEl; if (ownerEl && ownerEl.ismasked && loaderEl){ loaderEl.css({ top : Math.round(ownerEl.height() / 2 - (loaderEl.height() + parseInt(loaderEl.css('padding-top')) + parseInt(loaderEl.css('padding-bottom'))) / 2) + 'px', diff --git a/apps/common/main/lib/component/TabBar.js b/apps/common/main/lib/component/TabBar.js index 5be70f712..599ab11cf 100644 --- a/apps/common/main/lib/component/TabBar.js +++ b/apps/common/main/lib/component/TabBar.js @@ -275,19 +275,27 @@ define([ this.bar.trigger('tab:dragstart', event.dataTransfer, this.bar.selectTabs); }, this), dragenter: $.proxy(function (e) { - this.bar.$el.find('.mousemove').removeClass('mousemove right'); - $(e.currentTarget).parent().addClass('mousemove'); var event = e.originalEvent; - var data = event.dataTransfer.getData("onlyoffice"); - event.dataTransfer.dropEffect = data ? 'move' : 'none'; + if (!this.bar.isEditFormula) { + this.bar.$el.find('.mousemove').removeClass('mousemove right'); + $(e.currentTarget).parent().addClass('mousemove'); + var data = event.dataTransfer.getData("onlyoffice"); + event.dataTransfer.dropEffect = data ? 'move' : 'none'; + } else { + event.dataTransfer.dropEffect = 'none'; + } }, this), dragover: $.proxy(function (e) { var event = e.originalEvent; if (event.preventDefault) { event.preventDefault(); // Necessary. Allows us to drop. } - this.bar.$el.find('.mousemove').removeClass('mousemove right'); - $(e.currentTarget).parent().addClass('mousemove'); + if (!this.bar.isEditFormula) { + this.bar.$el.find('.mousemove').removeClass('mousemove right'); + $(e.currentTarget).parent().addClass('mousemove'); + } else { + event.dataTransfer.dropEffect = 'none'; + } return false; }, this), dragleave: $.proxy(function (e) { @@ -349,14 +357,14 @@ define([ }, this)); addEvent(this.$bar[0], 'dragenter', _.bind(function (event) { var data = event.dataTransfer.getData("onlyoffice"); - event.dataTransfer.dropEffect = data ? 'move' : 'none'; + event.dataTransfer.dropEffect = (!this.isEditFormula && data) ? 'move' : 'none'; }, this)); addEvent(this.$bar[0], 'dragover', _.bind(function (event) { if (event.preventDefault) { event.preventDefault(); // Necessary. Allows us to drop. } - event.dataTransfer.dropEffect = 'move'; - this.tabs[this.tabs.length - 1].$el.addClass('mousemove right'); + event.dataTransfer.dropEffect = !this.isEditFormula ? 'move' : 'none'; + !this.isEditFormula && this.tabs[this.tabs.length - 1].$el.addClass('mousemove right'); return false; }, this)); addEvent(this.$bar[0], 'dragleave', _.bind(function (event) { diff --git a/apps/common/main/lib/util/utils.js b/apps/common/main/lib/util/utils.js index 3445114e5..e00a3b8b7 100644 --- a/apps/common/main/lib/util/utils.js +++ b/apps/common/main/lib/util/utils.js @@ -763,6 +763,8 @@ Common.Utils.loadConfig = function(url, callback) { else return 'error'; }).then(function(json){ callback(json); + }).catch(function(e) { + callback('error'); }); }; diff --git a/apps/documenteditor/embed/locale/ko.json b/apps/documenteditor/embed/locale/ko.json index bbafcc9f6..4ba731456 100644 --- a/apps/documenteditor/embed/locale/ko.json +++ b/apps/documenteditor/embed/locale/ko.json @@ -1,28 +1,30 @@ { "common.view.modals.txtCopy": "클립보드로 복사", - "common.view.modals.txtEmbed": "퍼가기", + "common.view.modals.txtEmbed": "개체 삽입", "common.view.modals.txtHeight": "높이", "common.view.modals.txtShare": "링크 공유", "common.view.modals.txtWidth": "너비", - "DE.ApplicationController.convertationErrorText": "변환 실패", - "DE.ApplicationController.convertationTimeoutText": "전환 시간 초과를 초과했습니다.", + "DE.ApplicationController.convertationErrorText": "변환 실패 ", + "DE.ApplicationController.convertationTimeoutText": "변환 시간을 초과했습니다.", "DE.ApplicationController.criticalErrorTitle": "오류", - "DE.ApplicationController.downloadErrorText": "다운로드하지 못했습니다.", - "DE.ApplicationController.downloadTextText": "문서 다운로드 중 ...", + "DE.ApplicationController.downloadErrorText": "다운로드 실패", + "DE.ApplicationController.downloadTextText": "문서 다운로드 중...", "DE.ApplicationController.errorAccessDeny": "권한이없는 작업을 수행하려고합니다.
Document Server 관리자에게 문의하십시오.", - "DE.ApplicationController.errorDefaultMessage": "오류 코드 : %1", + "DE.ApplicationController.errorDefaultMessage": "오류 코드: %1", "DE.ApplicationController.errorFilePassProtect": "이 문서는 암호로 보호되어있어 열 수 없습니다.", + "DE.ApplicationController.errorFileSizeExceed": "파일의 크기가 서버에서 정해진 범위를 초과 했습니다. 문서 서버 관리자에게 해당 내용에 대한 자세한 안내를 받아 보시기 바랍니다.", + "DE.ApplicationController.errorUpdateVersionOnDisconnect": "인터넷 연결이 복구 되었으며 파일에 수정 사항이 발생되었습니다. 작업을 계속 하시기 전에 반드시 기존의 파일을 다운로드하거나 내용을 복사해서 작업 내용을 잃어 버리는 일이 없도록 한 후에 이 페이지를 새로 고침(reload) 해 주시기 바랍니다.", "DE.ApplicationController.errorUserDrop": "파일에 지금 액세스 할 수 없습니다.", "DE.ApplicationController.notcriticalErrorTitle": "경고", "DE.ApplicationController.scriptLoadError": "연결 속도가 느려, 일부 요소들이 로드되지 않았습니다. 페이지를 다시 새로 고침해주세요.", - "DE.ApplicationController.textLoadingDocument": "문서로드 중", - "DE.ApplicationController.textOf": "중", - "DE.ApplicationController.txtClose": "완료", + "DE.ApplicationController.textLoadingDocument": "문서 로드 중", + "DE.ApplicationController.textOf": "의", + "DE.ApplicationController.txtClose": "닫기", "DE.ApplicationController.unknownErrorText": "알 수없는 오류.", "DE.ApplicationController.unsupportedBrowserErrorText": "사용중인 브라우저가 지원되지 않습니다.", "DE.ApplicationController.waitText": "잠시만 기달려주세요...", - "DE.ApplicationView.txtDownload": "다운로드", - "DE.ApplicationView.txtEmbed": "퍼가기", + "DE.ApplicationView.txtDownload": "다운로드 ", + "DE.ApplicationView.txtEmbed": "개체 삽입", "DE.ApplicationView.txtFullScreen": "전체 화면", "DE.ApplicationView.txtShare": "공유" } \ No newline at end of file diff --git a/apps/documenteditor/embed/locale/nl.json b/apps/documenteditor/embed/locale/nl.json index 93c687f69..176a84c49 100644 --- a/apps/documenteditor/embed/locale/nl.json +++ b/apps/documenteditor/embed/locale/nl.json @@ -1,7 +1,10 @@ { "common.view.modals.txtCopy": "Kopieer naar klembord", + "common.view.modals.txtEmbed": "Invoegen", "common.view.modals.txtHeight": "Hoogte", + "common.view.modals.txtShare": "Link delen", "common.view.modals.txtWidth": "Breedte", + "DE.ApplicationController.convertationErrorText": "Conversie is mislukt", "DE.ApplicationController.convertationTimeoutText": "Time-out voor conversie overschreden.", "DE.ApplicationController.criticalErrorTitle": "Fout", "DE.ApplicationController.downloadErrorText": "Download mislukt.", @@ -9,6 +12,8 @@ "DE.ApplicationController.errorAccessDeny": "U probeert een actie uit te voeren waarvoor u geen rechten hebt.
Neem contact op met de beheerder van de documentserver.", "DE.ApplicationController.errorDefaultMessage": "Foutcode: %1", "DE.ApplicationController.errorFilePassProtect": "Het bestand is beschermd met een wachtwoord en kan niet worden geopend.", + "DE.ApplicationController.errorFileSizeExceed": "De bestandsgrootte overschrijdt de limiet die is ingesteld voor uw server.
Neem contact op met uw Document Server-beheerder voor details.", + "DE.ApplicationController.errorUpdateVersionOnDisconnect": "De internetverbinding is hersteld en de bestandsversie is gewijzigd.
Voordat u verder kunt werken, moet u het bestand downloaden of de inhoud kopiëren om er zeker van te zijn dat er niets verloren gaat, en deze pagina vervolgens opnieuw laden.", "DE.ApplicationController.errorUserDrop": "Toegang tot het bestand is op dit moment niet mogelijk.", "DE.ApplicationController.notcriticalErrorTitle": "Waarschuwing", "DE.ApplicationController.scriptLoadError": "De verbinding is te langzaam, sommige componenten konden niet geladen worden. Laad de pagina opnieuw.", @@ -17,7 +22,9 @@ "DE.ApplicationController.txtClose": "Sluiten", "DE.ApplicationController.unknownErrorText": "Onbekende fout.", "DE.ApplicationController.unsupportedBrowserErrorText": "Uw browser wordt niet ondersteund.", + "DE.ApplicationController.waitText": "Een moment geduld", "DE.ApplicationView.txtDownload": "Downloaden", + "DE.ApplicationView.txtEmbed": "Invoegen", "DE.ApplicationView.txtFullScreen": "Volledig scherm", "DE.ApplicationView.txtShare": "Delen" } \ No newline at end of file diff --git a/apps/documenteditor/embed/locale/sk.json b/apps/documenteditor/embed/locale/sk.json index c4114adb4..82d9dbfb4 100644 --- a/apps/documenteditor/embed/locale/sk.json +++ b/apps/documenteditor/embed/locale/sk.json @@ -1,5 +1,6 @@ { "common.view.modals.txtCopy": "Skopírovať do schránky", + "common.view.modals.txtEmbed": "Vložiť", "common.view.modals.txtHeight": "Výška", "common.view.modals.txtShare": "Zdieľať odkaz", "common.view.modals.txtWidth": "Šírka", @@ -23,6 +24,7 @@ "DE.ApplicationController.unsupportedBrowserErrorText": "Váš prehliadač nie je podporovaný.", "DE.ApplicationController.waitText": "Prosím čakajte...", "DE.ApplicationView.txtDownload": "Stiahnuť", + "DE.ApplicationView.txtEmbed": "Vložiť", "DE.ApplicationView.txtFullScreen": "Celá obrazovka", "DE.ApplicationView.txtShare": "Zdieľať" } \ No newline at end of file diff --git a/apps/documenteditor/embed/locale/uk.json b/apps/documenteditor/embed/locale/uk.json index 9ed9f6d5f..9970b4f0c 100644 --- a/apps/documenteditor/embed/locale/uk.json +++ b/apps/documenteditor/embed/locale/uk.json @@ -12,8 +12,11 @@ "DE.ApplicationController.errorAccessDeny": "Ви намагаєтеся виконати дію, на яку у вас немає прав.
Будь ласка, зв'яжіться з адміністратором вашого Сервера документів.", "DE.ApplicationController.errorDefaultMessage": "Код помилки: %1", "DE.ApplicationController.errorFilePassProtect": "Документ захищений паролем і його неможливо відкрити.", + "DE.ApplicationController.errorFileSizeExceed": "Розмір файлу перевищує обмеження, встановлені для вашого сервера.
Для детальної інформації зверніться до адміністратора сервера документів.", + "DE.ApplicationController.errorUpdateVersionOnDisconnect": "Підключення до Інтернету було відновлено, а версія файлу змінена.
Перш ніж продовжувати роботу, потрібно завантажити файл або скопіювати його вміст, щоб переконатися, що нічого не втрачено, а потім перезавантажити цю сторінку.", "DE.ApplicationController.errorUserDrop": "На даний момент файл не доступний.", "DE.ApplicationController.notcriticalErrorTitle": "Застереження", + "DE.ApplicationController.scriptLoadError": "З'єднання занадто повільне, деякі компоненти не вдалося завантажити. Перезавантажте сторінку.", "DE.ApplicationController.textLoadingDocument": "Завантаження документа", "DE.ApplicationController.textOf": "з", "DE.ApplicationController.txtClose": "Закрити", diff --git a/apps/documenteditor/main/locale/de.json b/apps/documenteditor/main/locale/de.json index ef81c04e4..eae8f314a 100644 --- a/apps/documenteditor/main/locale/de.json +++ b/apps/documenteditor/main/locale/de.json @@ -715,8 +715,8 @@ "DE.Controllers.Main.waitText": "Bitte warten...", "DE.Controllers.Main.warnBrowserIE9": "Die Applkation hat geringte Fähigkeiten in IE9. Nutzen Sie IE10 oder höher.", "DE.Controllers.Main.warnBrowserZoom": "Die aktuelle Zoom-Einstellung Ihres Webbrowsers wird nicht völlig unterstützt. Bitte stellen Sie die Standardeinstellung mithilfe der Tastenkombination Strg+0 wieder her.", - "DE.Controllers.Main.warnLicenseExp": "Ihre Lizenz ist abgelaufen.
Bitte aktualisieren Sie Ihre Lizenz und laden Sie die Seite neu.", "DE.Controllers.Main.warnLicenseExceeded": "Sie haben das Limit für gleichzeitige Verbindungen in %1-Editoren erreicht. Dieses Dokument wird nur zum Anzeigen geöffnet.
Bitte wenden Sie sich an Ihren Administrator, um weitere Informationen zu erhalten.", + "DE.Controllers.Main.warnLicenseExp": "Ihre Lizenz ist abgelaufen.
Bitte aktualisieren Sie Ihre Lizenz und laden Sie die Seite neu.", "DE.Controllers.Main.warnLicenseUsersExceeded": "Sie haben das Benutzerlimit für %1-Editoren erreicht. Bitte wenden Sie sich an Ihren Administrator, um weitere Informationen zu erhalten.", "DE.Controllers.Main.warnNoLicense": "Sie haben das Limit für gleichzeitige Verbindungen in %1-Editoren erreicht. Dieses Dokument wird nur zum Anzeigen geöffnet.
Bitte kontaktieren Sie unser Verkaufsteam, um persönliche Upgrade-Bedingungen zu erhalten.", "DE.Controllers.Main.warnNoLicenseUsers": "Sie haben das Benutzerlimit für %1-Editoren erreicht. Bitte kontaktieren Sie unser Verkaufsteam, um persönliche Upgrade-Bedingungen zu erhalten.", diff --git a/apps/documenteditor/main/locale/en.json b/apps/documenteditor/main/locale/en.json index a38e2bded..082a2efba 100644 --- a/apps/documenteditor/main/locale/en.json +++ b/apps/documenteditor/main/locale/en.json @@ -771,11 +771,11 @@ "DE.Controllers.Main.waitText": "Please, wait...", "DE.Controllers.Main.warnBrowserIE9": "The application has low capabilities on IE9. Use IE10 or higher", "DE.Controllers.Main.warnBrowserZoom": "Your browser current zoom setting is not fully supported. Please reset to the default zoom by pressing Ctrl+0.", + "DE.Controllers.Main.warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only.
Contact your administrator to learn more.", "DE.Controllers.Main.warnLicenseExp": "Your license has expired.
Please update your license and refresh the page.", + "DE.Controllers.Main.warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", "DE.Controllers.Main.warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only.
Contact %1 sales team for personal upgrade terms.", "DE.Controllers.Main.warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", - "DE.Controllers.Main.warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only.
Contact your administrator to learn more.", - "DE.Controllers.Main.warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", "DE.Controllers.Main.warnProcessRightsChange": "You have been denied the right to edit the file.", "DE.Controllers.Navigation.txtBeginning": "Beginning of document", "DE.Controllers.Navigation.txtGotoBeginning": "Go to the beginning of the document", diff --git a/apps/documenteditor/main/locale/es.json b/apps/documenteditor/main/locale/es.json index c9cbb5d14..8073ff0c5 100644 --- a/apps/documenteditor/main/locale/es.json +++ b/apps/documenteditor/main/locale/es.json @@ -80,6 +80,7 @@ "Common.define.chartData.textPoint": "XY (Dispersión)", "Common.define.chartData.textStock": "De cotizaciones", "Common.define.chartData.textSurface": "Superficie", + "Common.Translation.warnFileLocked": "El archivo está siendo editado en otra aplicación. Puede continuar editándolo y guardarlo como una copia.", "Common.UI.Calendar.textApril": "Abril", "Common.UI.Calendar.textAugust": "Agosto", "Common.UI.Calendar.textDecember": "Diciembre", @@ -156,6 +157,10 @@ "Common.Views.About.txtPoweredBy": "Desarrollado por", "Common.Views.About.txtTel": "tel.: ", "Common.Views.About.txtVersion": "Versión ", + "Common.Views.AutoCorrectDialog.textBy": "Por:", + "Common.Views.AutoCorrectDialog.textMathCorrect": "Autocorrección matemática", + "Common.Views.AutoCorrectDialog.textReplace": "Reemplazar:", + "Common.Views.AutoCorrectDialog.textTitle": "Autocorrección", "Common.Views.Chat.textSend": "Enviar", "Common.Views.Comments.textAdd": "Añadir", "Common.Views.Comments.textAddComment": "Añadir", @@ -358,11 +363,33 @@ "Common.Views.SignSettingsDialog.textShowDate": "Presentar fecha de la firma", "Common.Views.SignSettingsDialog.textTitle": "Preparación de la firma", "Common.Views.SignSettingsDialog.txtEmpty": "Este campo es obligatorio", + "Common.Views.SymbolTableDialog.textCharacter": "Carácter", "Common.Views.SymbolTableDialog.textCode": "Valor HEX de Unicode", + "Common.Views.SymbolTableDialog.textCopyright": "Signo de Copyright", + "Common.Views.SymbolTableDialog.textDCQuote": "Comillas dobles de cierre", + "Common.Views.SymbolTableDialog.textDOQuote": "Comillas dobles de apertura", + "Common.Views.SymbolTableDialog.textEllipsis": "Elipsis horizontal", + "Common.Views.SymbolTableDialog.textEmDash": "Guión largo", + "Common.Views.SymbolTableDialog.textEmSpace": "Espacio largo", + "Common.Views.SymbolTableDialog.textEnDash": "Guión corto", + "Common.Views.SymbolTableDialog.textEnSpace": "Espacio corto", "Common.Views.SymbolTableDialog.textFont": "Letra ", + "Common.Views.SymbolTableDialog.textNBHyphen": "Guión sin ruptura", + "Common.Views.SymbolTableDialog.textNBSpace": "Espacio de no separación", + "Common.Views.SymbolTableDialog.textPilcrow": "Signo de antígrafo", + "Common.Views.SymbolTableDialog.textQEmSpace": "1/4 Espacio largo", "Common.Views.SymbolTableDialog.textRange": "Rango", "Common.Views.SymbolTableDialog.textRecent": "Símbolos utilizados recientemente", + "Common.Views.SymbolTableDialog.textRegistered": "Signo de marca registrada", + "Common.Views.SymbolTableDialog.textSCQuote": "Comillas simples de cierre", + "Common.Views.SymbolTableDialog.textSection": "Signo de sección", + "Common.Views.SymbolTableDialog.textShortcut": "Tecla de método abreviado", + "Common.Views.SymbolTableDialog.textSHyphen": "Guión virtual", + "Common.Views.SymbolTableDialog.textSOQuote": "Comillas simples de apertura", + "Common.Views.SymbolTableDialog.textSpecial": "Caracteres especiales", + "Common.Views.SymbolTableDialog.textSymbols": "Símbolos", "Common.Views.SymbolTableDialog.textTitle": "Símbolo", + "Common.Views.SymbolTableDialog.textTradeMark": "Símbolo de marca comercial", "DE.Controllers.LeftMenu.leavePageText": "Todos los cambios no guardados de este documento se perderán.
Pulse \"Cancelar\" después \"Guardar\" para guardarlos. Pulse \"OK\" para deshacer todos los cambios no guardados.", "DE.Controllers.LeftMenu.newDocumentTitle": "Documento sin título", "DE.Controllers.LeftMenu.notcriticalErrorTitle": "Aviso", @@ -388,6 +415,7 @@ "DE.Controllers.Main.errorAccessDeny": "Usted no tiene permisos para realizar la acción que está intentando hacer.
Por favor, contacte con el Administrador del Servidor de Documentos.", "DE.Controllers.Main.errorBadImageUrl": "URL de imagen es incorrecto", "DE.Controllers.Main.errorCoAuthoringDisconnect": "Se ha perdido la conexión con servidor. El documento no puede ser editado ahora.", + "DE.Controllers.Main.errorCompare": "La característica de comparación de documentos no está disponible durante la coedición.", "DE.Controllers.Main.errorConnectToServer": "No se consiguió guardar el documento. Por favor, compruebe los ajustes de conexión o póngase en contacto con su administrador.
Al hacer clic en el botón 'OK' se le solicitará que descargue el documento.", "DE.Controllers.Main.errorDatabaseConnection": "Error externo.
Error de conexión de base de datos. Por favor póngase en contacto con soporte si el error se mantiene.", "DE.Controllers.Main.errorDataEncrypted": "Se han recibido cambios cifrados, ellos no pueden ser descifrados.", @@ -404,6 +432,7 @@ "DE.Controllers.Main.errorKeyExpire": "Descriptor de clave ha expirado", "DE.Controllers.Main.errorMailMergeLoadFile": "La carga del documento ha fallado. Por favor, seleccione un archivo diferente.", "DE.Controllers.Main.errorMailMergeSaveFile": "Error de fusión.", + "DE.Controllers.Main.errorPasteSlicerError": "Las segmentaciones de tabla no pueden ser copiadas de un libro a otro.
Inténtalo de nuevo al seleccionar toda la tabla y las segmentaciones.", "DE.Controllers.Main.errorProcessSaveResult": "Problemas al guardar", "DE.Controllers.Main.errorServerVersion": "La versión del editor ha sido actualizada. La página será recargada para aplicar los cambios.", "DE.Controllers.Main.errorSessionAbsolute": "Sesión de editar el documento ha expirado. Por favor, recargue la página.", @@ -451,15 +480,20 @@ "DE.Controllers.Main.splitMaxColsErrorText": "El número de columnas debe ser menos que %1.", "DE.Controllers.Main.splitMaxRowsErrorText": "El número de filas debe ser menos que %1.", "DE.Controllers.Main.textAnonymous": "Anónimo", + "DE.Controllers.Main.textApplyAll": "Aplicar a todas las ecuaciones", "DE.Controllers.Main.textBuyNow": "Visitar sitio web", "DE.Controllers.Main.textChangesSaved": "Todos los cambios son guardados", "DE.Controllers.Main.textClose": "Cerrar", "DE.Controllers.Main.textCloseTip": "Pulse para cerrar el consejo", "DE.Controllers.Main.textContactUs": "Contactar con equipo de ventas", + "DE.Controllers.Main.textConvertEquation": "Esta ecuación fue creada con una versión antigua del editor de ecuaciones que ya no es compatible. Para editarla, convierta la ecuación al formato ML de Office Math.
¿Convertir ahora?", "DE.Controllers.Main.textCustomLoader": "Note, por favor, que según los términos de la licencia Usted no tiene derecho a cambiar el cargador.
Por favor, póngase en contacto con nuestro Departamento de Ventas para obtener una cotización.", + "DE.Controllers.Main.textHasMacros": "El archivo contiene macros automáticas.
¿Quiere ejecutar macros?", + "DE.Controllers.Main.textLearnMore": "Más información", "DE.Controllers.Main.textLoadingDocument": "Cargando documento", - "DE.Controllers.Main.textNoLicenseTitle": "%1 limitación de conexiones", + "DE.Controllers.Main.textNoLicenseTitle": "Se ha alcanzado el límite de licencias", "DE.Controllers.Main.textPaidFeature": "Función de pago", + "DE.Controllers.Main.textRemember": "Recordar mi elección", "DE.Controllers.Main.textShape": "Forma", "DE.Controllers.Main.textStrict": "Modo estricto", "DE.Controllers.Main.textTryUndoRedo": "Las funciones Anular/Rehacer se desactivan para el modo co-edición rápido.
Haga Clic en el botón \"modo estricto\" para cambiar al modo de co-edición estricta para editar el archivo sin la interferencia de otros usuarios y enviar sus cambios sólo después de guardarlos. Se puede cambiar entre los modos de co-edición usando los ajustes avanzados de edición.", @@ -479,6 +513,7 @@ "DE.Controllers.Main.txtDiagramTitle": "Título de diagrama", "DE.Controllers.Main.txtEditingMode": "Establecer el modo de edición...", "DE.Controllers.Main.txtEndOfFormula": "Fin de fórmula inesperado", + "DE.Controllers.Main.txtEnterDate": "Introducir una fecha", "DE.Controllers.Main.txtErrorLoadHistory": "Historia de carga falló", "DE.Controllers.Main.txtEvenPage": "Página par", "DE.Controllers.Main.txtFiguredArrows": "Formas de flecha", @@ -698,6 +733,7 @@ "DE.Controllers.Main.txtTableInd": "El índice de la tabla no puede ser cero", "DE.Controllers.Main.txtTableOfContents": "Tabla de contenidos", "DE.Controllers.Main.txtTooLarge": "El número es demasiado grande para darle formato", + "DE.Controllers.Main.txtTypeEquation": "Escribir una ecuación aquí.", "DE.Controllers.Main.txtUndefBookmark": "Marcador no definido", "DE.Controllers.Main.txtXAxis": "Eje X", "DE.Controllers.Main.txtYAxis": "Eje Y", @@ -715,11 +751,11 @@ "DE.Controllers.Main.waitText": "Por favor, espere...", "DE.Controllers.Main.warnBrowserIE9": "Este aplicación tiene baja capacidad en IE9. Utilice IE10 o superior", "DE.Controllers.Main.warnBrowserZoom": "La configuración actual de zoom de su navegador no está soportada por completo. Por favor restablezca zoom predeterminado pulsando Ctrl+0.", - "DE.Controllers.Main.warnLicenseExceeded": "Se ha excedido el número permitido de las conexiones simultáneas al servidor de documentos, y el documento se abrirá para sólo lectura.
Por favor, contacte con su administrador para recibir más información.", + "DE.Controllers.Main.warnLicenseExceeded": "Usted ha alcanzado el límite de conexiones simultáneas con %1 editores. Este documento se abrirá sólo para su visualización.
Por favor, contacte con su administrador para recibir más información.", "DE.Controllers.Main.warnLicenseExp": "Su licencia ha expirado.
Por favor, actualice su licencia y después recargue la página.", - "DE.Controllers.Main.warnLicenseUsersExceeded": "Se ha excedido el número permitido de los usuarios simultáneos, y el documento se abrirá para sólo lectura.
Por favor, contacte con su administrador para recibir más información.", - "DE.Controllers.Main.warnNoLicense": "Esta versión de los editores %1 tiene ciertas limitaciones para el número de conexiones simultáneas al servidor de documentos.
Si necesita más, por favor, considere comprar una licencia comercial.", - "DE.Controllers.Main.warnNoLicenseUsers": "Esta versión de editores %1 tiene ciertas limitaciones para usuarios simultáneos.
Si necesita más, por favor, considere comprar una licencia comercial.", + "DE.Controllers.Main.warnLicenseUsersExceeded": "Usted ha alcanzado el límite de usuarios para los editores de %1. Por favor, contacte con su administrador para recibir más información.", + "DE.Controllers.Main.warnNoLicense": "Usted ha alcanzado el límite de conexiones simultáneas con %1 editores. Este documento se abrirá sólo para su visualización.
Contacte con el equipo de ventas de %1 para conocer los términos de actualización personal.", + "DE.Controllers.Main.warnNoLicenseUsers": "Usted ha alcanzado el límite de usuarios para los editores de %1. Contacte con el equipo de ventas de %1 para conocer los términos de actualización personal.", "DE.Controllers.Main.warnProcessRightsChange": "El derecho de edición del archivo es denegado", "DE.Controllers.Navigation.txtBeginning": "Principio del documento", "DE.Controllers.Navigation.txtGotoBeginning": "Ir al principio de", @@ -1155,6 +1191,7 @@ "DE.Views.ControlSettingsDialog.textLock": "Cerrando", "DE.Views.ControlSettingsDialog.textName": "Título", "DE.Views.ControlSettingsDialog.textNone": "Ninguno", + "DE.Views.ControlSettingsDialog.textPlaceholder": "Marcador de posición", "DE.Views.ControlSettingsDialog.textShowAs": "Mostrar como", "DE.Views.ControlSettingsDialog.textSystemColor": "Sistema", "DE.Views.ControlSettingsDialog.textTag": "Etiqueta", @@ -1169,6 +1206,12 @@ "DE.Views.CustomColumnsDialog.textSeparator": "Divisor de columnas", "DE.Views.CustomColumnsDialog.textSpacing": "Espacio entre columnas", "DE.Views.CustomColumnsDialog.textTitle": "Columnas", + "DE.Views.DateTimeDialog.confirmDefault": "Establecer formato predeterminado para {0}: \"{1}\"", + "DE.Views.DateTimeDialog.textDefault": "Establecer como predeterminado", + "DE.Views.DateTimeDialog.textFormat": "Formatos", + "DE.Views.DateTimeDialog.textLang": "Idioma", + "DE.Views.DateTimeDialog.textUpdate": "Actualizar automáticamente", + "DE.Views.DateTimeDialog.txtTitle": "Fecha y hora", "DE.Views.DocumentHolder.aboveText": "Arriba", "DE.Views.DocumentHolder.addCommentText": "Añadir comentario", "DE.Views.DocumentHolder.advancedFrameText": "Ajustes avanzados de marco", @@ -1258,6 +1301,7 @@ "DE.Views.DocumentHolder.textFlipV": "Voltear verticalmente", "DE.Views.DocumentHolder.textFollow": "Seguir movimiento", "DE.Views.DocumentHolder.textFromFile": "De archivo", + "DE.Views.DocumentHolder.textFromStorage": "Desde almacenamiento", "DE.Views.DocumentHolder.textFromUrl": "De URL", "DE.Views.DocumentHolder.textJoinList": "Juntar con lista anterior", "DE.Views.DocumentHolder.textNest": "Tabla nido", @@ -1484,8 +1528,8 @@ "DE.Views.FileMenuPanels.ProtectDoc.txtEditWarning": "La edición eliminará", "DE.Views.FileMenuPanels.ProtectDoc.txtEncrypted": "Este documento ha sido", "DE.Views.FileMenuPanels.ProtectDoc.txtRequestedSignatures": "Este documento necesita", - "DE.Views.FileMenuPanels.ProtectDoc.txtSigned": "Las firmas válidas han sido", - "DE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "Algunos de los digitales", + "DE.Views.FileMenuPanels.ProtectDoc.txtSigned": "Se han añadido firmas válidas al documento. El documento está protegido frente a la edición.", + "DE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "Algunas de las firmas digitales del documento no son válidas o no han podido ser verificadas. El documento está protegido frente a la edición.", "DE.Views.FileMenuPanels.ProtectDoc.txtView": "Ver firmas", "DE.Views.FileMenuPanels.Settings.okButtonText": "Aplicar", "DE.Views.FileMenuPanels.Settings.strAlignGuides": "Activar guías de alineación", @@ -1499,6 +1543,9 @@ "DE.Views.FileMenuPanels.Settings.strForcesave": "Siempre guardar en el servidor (de lo contrario guardar en el servidor al cerrar documento)", "DE.Views.FileMenuPanels.Settings.strInputMode": "Activar jeroglíficos", "DE.Views.FileMenuPanels.Settings.strLiveComment": "Activar opción de demostración de comentarios", + "DE.Views.FileMenuPanels.Settings.strMacrosSettings": "Ajustes de macros", + "DE.Views.FileMenuPanels.Settings.strPaste": "Cortar, copiar y pegar", + "DE.Views.FileMenuPanels.Settings.strPasteButton": "Mostrar el botón Opciones de pegado cuando se pegue contenido", "DE.Views.FileMenuPanels.Settings.strResolvedComment": "Activar la visualización de los comentarios resueltos", "DE.Views.FileMenuPanels.Settings.strShowChanges": "Cambios de colaboración en tiempo real", "DE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Activar corrección ortográfica", @@ -1518,6 +1565,7 @@ "DE.Views.FileMenuPanels.Settings.textMinute": "Cada minuto", "DE.Views.FileMenuPanels.Settings.textOldVersions": "Hacer que los archivos sean compatibles con versiones anteriores de MS Word cuando se guarden como DOCX", "DE.Views.FileMenuPanels.Settings.txtAll": "Ver todo", + "DE.Views.FileMenuPanels.Settings.txtAutoCorrect": "Opciones de autocorrección", "DE.Views.FileMenuPanels.Settings.txtCacheMode": "Modo de caché predeterminado", "DE.Views.FileMenuPanels.Settings.txtCm": "Centímetro", "DE.Views.FileMenuPanels.Settings.txtFitPage": "Ajustar a la página", @@ -1529,8 +1577,15 @@ "DE.Views.FileMenuPanels.Settings.txtMac": "como OS X", "DE.Views.FileMenuPanels.Settings.txtNative": "Nativo", "DE.Views.FileMenuPanels.Settings.txtNone": "Ver Ningunos", + "DE.Views.FileMenuPanels.Settings.txtProofing": "Revisión", "DE.Views.FileMenuPanels.Settings.txtPt": "Punto", + "DE.Views.FileMenuPanels.Settings.txtRunMacros": "Habilitar todo", + "DE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "Habilitar todas las macros sin notificación ", "DE.Views.FileMenuPanels.Settings.txtSpellCheck": "Сorrección ortográfica", + "DE.Views.FileMenuPanels.Settings.txtStopMacros": "Deshabilitar todo", + "DE.Views.FileMenuPanels.Settings.txtStopMacrosDesc": "Deshabilitar todas las macros sin notificación", + "DE.Views.FileMenuPanels.Settings.txtWarnMacros": "Mostrar notificación", + "DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Deshabilitar todas las macros con notificación", "DE.Views.FileMenuPanels.Settings.txtWin": "como Windows", "DE.Views.HeaderFooterSettings.textBottomCenter": "Inferior centro", "DE.Views.HeaderFooterSettings.textBottomLeft": "Inferior izquierdo", @@ -1573,6 +1628,7 @@ "DE.Views.ImageSettings.textFitMargins": "Ajustar al margen", "DE.Views.ImageSettings.textFlip": "Volteo", "DE.Views.ImageSettings.textFromFile": "De archivo", + "DE.Views.ImageSettings.textFromStorage": "Desde almacenamiento", "DE.Views.ImageSettings.textFromUrl": "De URL", "DE.Views.ImageSettings.textHeight": "Altura", "DE.Views.ImageSettings.textHint270": "Girar 90° a la izquierda", @@ -1603,6 +1659,7 @@ "DE.Views.ImageSettingsAdvanced.textAngle": "Ángulo", "DE.Views.ImageSettingsAdvanced.textArrows": "Flechas", "DE.Views.ImageSettingsAdvanced.textAspectRatio": "Bloquear relación de aspecto", + "DE.Views.ImageSettingsAdvanced.textAutofit": "Autoajustar", "DE.Views.ImageSettingsAdvanced.textBeginSize": "Tamaño inicial", "DE.Views.ImageSettingsAdvanced.textBeginStyle": "Estilo inicial", "DE.Views.ImageSettingsAdvanced.textBelow": "abajo", @@ -1640,6 +1697,7 @@ "DE.Views.ImageSettingsAdvanced.textPositionPc": "Posición Relativa", "DE.Views.ImageSettingsAdvanced.textRelative": "en relación a", "DE.Views.ImageSettingsAdvanced.textRelativeWH": "Relativo", + "DE.Views.ImageSettingsAdvanced.textResizeFit": "Ajustar tamaño de la forma al texto", "DE.Views.ImageSettingsAdvanced.textRight": "Derecho", "DE.Views.ImageSettingsAdvanced.textRightMargin": "Margen derecho", "DE.Views.ImageSettingsAdvanced.textRightOf": "a la derecha de", @@ -1648,6 +1706,7 @@ "DE.Views.ImageSettingsAdvanced.textShape": "Ajustes de forma", "DE.Views.ImageSettingsAdvanced.textSize": "Tamaño", "DE.Views.ImageSettingsAdvanced.textSquare": "Cuadrado", + "DE.Views.ImageSettingsAdvanced.textTextBox": "Cuadro de texto", "DE.Views.ImageSettingsAdvanced.textTitle": "Imagen - Ajustes avanzados", "DE.Views.ImageSettingsAdvanced.textTitleChart": "Gráfico- Ajustes avanzados", "DE.Views.ImageSettingsAdvanced.textTitleShape": "Forma - ajustes avanzados", @@ -1924,6 +1983,7 @@ "DE.Views.ShapeSettings.textEmptyPattern": "Sin patrón", "DE.Views.ShapeSettings.textFlip": "Volteo", "DE.Views.ShapeSettings.textFromFile": "De archivo", + "DE.Views.ShapeSettings.textFromStorage": "Desde almacenamiento", "DE.Views.ShapeSettings.textFromUrl": "De URL", "DE.Views.ShapeSettings.textGradient": "Gradiente", "DE.Views.ShapeSettings.textGradientFill": "Relleno degradado", @@ -1938,6 +1998,7 @@ "DE.Views.ShapeSettings.textRadial": "Radial", "DE.Views.ShapeSettings.textRotate90": "Girar 90°", "DE.Views.ShapeSettings.textRotation": "Rotación", + "DE.Views.ShapeSettings.textSelectImage": "Seleccionar imagen", "DE.Views.ShapeSettings.textSelectTexture": "Seleccionar", "DE.Views.ShapeSettings.textStretch": "Estirar", "DE.Views.ShapeSettings.textStyle": "Estilo", @@ -1977,8 +2038,8 @@ "DE.Views.SignatureSettings.txtContinueEditing": "Editar de todas maneras", "DE.Views.SignatureSettings.txtEditWarning": "La edición eliminará", "DE.Views.SignatureSettings.txtRequestedSignatures": "Este documento necesita", - "DE.Views.SignatureSettings.txtSigned": "Las firmas válidas han sido", - "DE.Views.SignatureSettings.txtSignedInvalid": "Algunos de los digitales", + "DE.Views.SignatureSettings.txtSigned": "Se han añadido firmas válidas al documento. El documento está protegido frente a la edición.", + "DE.Views.SignatureSettings.txtSignedInvalid": "Algunas de las firmas digitales del documento no son válidas o no han podido ser verificadas. El documento está protegido frente a la edición.", "DE.Views.Statusbar.goToPageText": "Ir a página", "DE.Views.Statusbar.pageIndexText": "Página {0} de {1}", "DE.Views.Statusbar.tipFitPage": "Ajustar a la página", @@ -2168,6 +2229,7 @@ "DE.Views.Toolbar.capBtnBlankPage": "Página en blanco", "DE.Views.Toolbar.capBtnColumns": "Columnas", "DE.Views.Toolbar.capBtnComment": "Comentario", + "DE.Views.Toolbar.capBtnDateTime": "Fecha y hora", "DE.Views.Toolbar.capBtnInsChart": "Diagram", "DE.Views.Toolbar.capBtnInsControls": "Controles de contenido", "DE.Views.Toolbar.capBtnInsDropcap": "Quitar capitlización", @@ -2246,7 +2308,7 @@ "DE.Views.Toolbar.textPictureControl": "Imagen", "DE.Views.Toolbar.textPlainControl": "Texto sin formato", "DE.Views.Toolbar.textPortrait": "Vertical", - "DE.Views.Toolbar.textRemoveControl": "Elimine el control de contenido", + "DE.Views.Toolbar.textRemoveControl": "Eliminar control de contenido", "DE.Views.Toolbar.textRemWatermark": "Quitar marca de agua", "DE.Views.Toolbar.textRichControl": "Texto enriquecido", "DE.Views.Toolbar.textRight": "Derecho: ", @@ -2284,6 +2346,7 @@ "DE.Views.Toolbar.tipControls": "Insertar controles de contenido", "DE.Views.Toolbar.tipCopy": "Copiar", "DE.Views.Toolbar.tipCopyStyle": "Copiar estilo", + "DE.Views.Toolbar.tipDateTime": "Insertar la fecha y hora actuales", "DE.Views.Toolbar.tipDecFont": "Reducir tamaño de letra", "DE.Views.Toolbar.tipDecPrLeft": "Reducir sangría", "DE.Views.Toolbar.tipDropCap": "Insertar letra capital", @@ -2360,6 +2423,7 @@ "DE.Views.WatermarkSettingsDialog.textDiagonal": "Diagonal", "DE.Views.WatermarkSettingsDialog.textFont": "Fuente", "DE.Views.WatermarkSettingsDialog.textFromFile": "De archivo", + "DE.Views.WatermarkSettingsDialog.textFromStorage": "Desde almacenamiento", "DE.Views.WatermarkSettingsDialog.textFromUrl": "De URL", "DE.Views.WatermarkSettingsDialog.textHor": "Horizontal ", "DE.Views.WatermarkSettingsDialog.textImageW": "Marca de agua de imagen", @@ -2369,6 +2433,7 @@ "DE.Views.WatermarkSettingsDialog.textNewColor": "Color personalizado", "DE.Views.WatermarkSettingsDialog.textNone": "Ninguno", "DE.Views.WatermarkSettingsDialog.textScale": "Escala", + "DE.Views.WatermarkSettingsDialog.textSelect": "Seleccionar Imagen", "DE.Views.WatermarkSettingsDialog.textStrikeout": "Tachado", "DE.Views.WatermarkSettingsDialog.textText": "Texto", "DE.Views.WatermarkSettingsDialog.textTextW": "Marca de agua de texto", diff --git a/apps/documenteditor/main/locale/fr.json b/apps/documenteditor/main/locale/fr.json index 4b5914878..001857090 100644 --- a/apps/documenteditor/main/locale/fr.json +++ b/apps/documenteditor/main/locale/fr.json @@ -80,6 +80,7 @@ "Common.define.chartData.textPoint": "Nuages de points (XY)", "Common.define.chartData.textStock": "Boursier", "Common.define.chartData.textSurface": "Surface", + "Common.Translation.warnFileLocked": "Ce fichier a été modifié avec une autre application. Vous pouvez continuer à le modifier et l'enregistrer comme une copi.", "Common.UI.Calendar.textApril": "avril", "Common.UI.Calendar.textAugust": "août", "Common.UI.Calendar.textDecember": "décembre", @@ -113,6 +114,7 @@ "Common.UI.Calendar.textShortTuesday": "mar.", "Common.UI.Calendar.textShortWednesday": "mer.", "Common.UI.Calendar.textYears": "années", + "Common.UI.ColorButton.textNewColor": "Couleur personnalisée", "Common.UI.ComboBorderSize.txtNoBorders": "Pas de bordures", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Pas de bordures", "Common.UI.ComboDataView.emptyComboText": "Aucun style", @@ -127,7 +129,7 @@ "Common.UI.SearchDialog.textReplaceDef": "Saisissez le texte de remplacement", "Common.UI.SearchDialog.textSearchStart": "Entrez votre texte ici", "Common.UI.SearchDialog.textTitle": "Rechercher et remplacer", - "Common.UI.SearchDialog.textTitle2": "Trouver", + "Common.UI.SearchDialog.textTitle2": "Rechercher", "Common.UI.SearchDialog.textWholeWords": "Seulement les mots entiers", "Common.UI.SearchDialog.txtBtnHideReplace": "Cacher Remplacer", "Common.UI.SearchDialog.txtBtnReplace": "Remplacer", @@ -155,6 +157,9 @@ "Common.Views.About.txtPoweredBy": "Powered by", "Common.Views.About.txtTel": "tél.: ", "Common.Views.About.txtVersion": "Version ", + "Common.Views.AutoCorrectDialog.textBy": "Par:", + "Common.Views.AutoCorrectDialog.textReplace": "Remplacer:", + "Common.Views.AutoCorrectDialog.textTitle": "Correction automatique", "Common.Views.Chat.textSend": "Envoyer", "Common.Views.Comments.textAdd": "Ajouter", "Common.Views.Comments.textAddComment": "Ajouter", @@ -357,10 +362,21 @@ "Common.Views.SignSettingsDialog.textShowDate": "Afficher la date de signature à côté de la signature", "Common.Views.SignSettingsDialog.textTitle": "Mise en place de la signature", "Common.Views.SignSettingsDialog.txtEmpty": "Ce champ est obligatoire.", + "Common.Views.SymbolTableDialog.textCharacter": "Caractère", "Common.Views.SymbolTableDialog.textCode": "Valeur hexadécimale Unicode", + "Common.Views.SymbolTableDialog.textCopyright": "Signe Copyright", + "Common.Views.SymbolTableDialog.textDCQuote": "Fermer les guillemets", + "Common.Views.SymbolTableDialog.textDOQuote": "Ouvrir les guillemets", "Common.Views.SymbolTableDialog.textFont": "Police", + "Common.Views.SymbolTableDialog.textNBHyphen": "tiret insécable", + "Common.Views.SymbolTableDialog.textNBSpace": "Espace insécable", "Common.Views.SymbolTableDialog.textRange": "Plage", "Common.Views.SymbolTableDialog.textRecent": "Caractères spéciaux récemment utilisés", + "Common.Views.SymbolTableDialog.textRegistered": "Signe 'Registred'", + "Common.Views.SymbolTableDialog.textSCQuote": "Fermer l'apostrophe", + "Common.Views.SymbolTableDialog.textSection": "Signe de Section ", + "Common.Views.SymbolTableDialog.textSOQuote": "Ouvrir l'apostrophe", + "Common.Views.SymbolTableDialog.textSpecial": "symboles spéciaux", "Common.Views.SymbolTableDialog.textTitle": "Symbole", "DE.Controllers.LeftMenu.leavePageText": "Toutes les modifications non enregistrées dans ce document seront perdus.
Cliquez sur \"Annuler\", puis \"Enregistrer\" pour les sauver. Cliquez sur \"OK\" pour annuler toutes les modifications non enregistrées.", "DE.Controllers.LeftMenu.newDocumentTitle": "Document sans nom", @@ -408,7 +424,7 @@ "DE.Controllers.Main.errorSessionAbsolute": "Votre session a expiré. Veuillez recharger la page.", "DE.Controllers.Main.errorSessionIdle": "Le document n'a pas été modifié depuis trop longtemps. Veuillez recharger la page.", "DE.Controllers.Main.errorSessionToken": "La connexion au serveur a été interrompue. Veuillez recharger la page.", - "DE.Controllers.Main.errorStockChart": "Ordre des lignes est incorrect. Pour créer un graphique boursier organisez vos données sur la feuille de calcul dans l'ordre suivant:
cours à l'ouverture, cours maximal, cours minimal, cours à la clôture.", + "DE.Controllers.Main.errorStockChart": "Ordre lignes incorrect. Pour créer un diagramme boursier, positionnez les données sur la feuille de calcul dans l'ordre suivant :
cours à l'ouverture, cours maximal, cours minimal, cours à la clôture.", "DE.Controllers.Main.errorToken": "Le jeton de sécurité du document n’était pas formé correctement.
Veuillez contacter l'administrateur de Document Server.", "DE.Controllers.Main.errorTokenExpire": "Le jeton de sécurité du document a expiré.
Veuillez contactez l'administrateur de votre Document Server.", "DE.Controllers.Main.errorUpdateVersion": "La version du fichier a été changée. La page sera rechargée.", @@ -450,15 +466,18 @@ "DE.Controllers.Main.splitMaxColsErrorText": "Le nombre de colonnes doivent être inférieure à %1.", "DE.Controllers.Main.splitMaxRowsErrorText": "Le nombre de lignes doit être inférieure à %1.", "DE.Controllers.Main.textAnonymous": "Anonyme", + "DE.Controllers.Main.textApplyAll": "Appliquer à toutes les équations", "DE.Controllers.Main.textBuyNow": "Visiter le site web", "DE.Controllers.Main.textChangesSaved": "Toutes les modifications ont été enregistrées", "DE.Controllers.Main.textClose": "Fermer", "DE.Controllers.Main.textCloseTip": "Cliquez pour fermer le conseil", "DE.Controllers.Main.textContactUs": "Contacter l'équipe de ventes", "DE.Controllers.Main.textCustomLoader": "Veuillez noter que conformément aux clauses du contrat de licence vous n'êtes pas autorisé à changer le chargeur.
Veuillez contacter notre Service des Ventes pour obtenir le devis.", + "DE.Controllers.Main.textLearnMore": "En savoir plus", "DE.Controllers.Main.textLoadingDocument": "Chargement du document", "DE.Controllers.Main.textNoLicenseTitle": "La limite de la licence est atteinte", "DE.Controllers.Main.textPaidFeature": "Fonction payée", + "DE.Controllers.Main.textRemember": "Se souvenir de mon choix", "DE.Controllers.Main.textShape": "Forme", "DE.Controllers.Main.textStrict": "Mode strict", "DE.Controllers.Main.textTryUndoRedo": "Les fonctions annuler/rétablir sont désactivées pour le mode de co-édition rapide.
Cliquez sur le bouton \"Mode strict\" pour passer au mode de la co-édition stricte pour modifier le fichier sans interférence d'autres utilisateurs et envoyer vos modifications seulement après que vous les enregistrez. Vous pouvez basculer entre les modes de co-édition à l'aide de paramètres avancés d'éditeur.", @@ -478,6 +497,7 @@ "DE.Controllers.Main.txtDiagramTitle": "Titre du graphique", "DE.Controllers.Main.txtEditingMode": "Définissez le mode d'édition...", "DE.Controllers.Main.txtEndOfFormula": "Fin de Formule Inattendue.", + "DE.Controllers.Main.txtEnterDate": "Entrer une date.", "DE.Controllers.Main.txtErrorLoadHistory": "Chargement de histoire a échoué", "DE.Controllers.Main.txtEvenPage": "Page paire", "DE.Controllers.Main.txtFiguredArrows": "Flèches figurées", @@ -714,8 +734,8 @@ "DE.Controllers.Main.waitText": "Veuillez patienter...", "DE.Controllers.Main.warnBrowserIE9": "L'application est peu compatible avec IE9. Utilisez IE10 ou version plus récente", "DE.Controllers.Main.warnBrowserZoom": "Le paramètre actuel de zoom de votre navigateur n'est pas accepté. Veuillez rétablir le niveau de zoom par défaut en appuyant sur Ctrl+0.", - "DE.Controllers.Main.warnLicenseExp": "Votre licence a expiré.
Veuillez mettre à jour votre licence et actualisez la page.", "DE.Controllers.Main.warnLicenseExceeded": "Vous avez dépassé le nombre maximal de connexions simultanées aux éditeurs %1. Ce document sera ouvert à la lecture seulement.
Contactez votre administrateur pour en savoir davantage.", + "DE.Controllers.Main.warnLicenseExp": "Votre licence a expiré.
Veuillez mettre à jour votre licence et actualisez la page.", "DE.Controllers.Main.warnLicenseUsersExceeded": "Vous avez dépassé le nombre maximal d’utilisateurs des éditeurs %1. Contactez votre administrateur pour en savoir davantage.", "DE.Controllers.Main.warnNoLicense": "Vous avez dépassé le nombre maximal de connexions simultanées aux éditeurs %1. Ce document sera ouvert à la lecture seulement.
Contactez l’équipe des ventes %1 pour mettre à jour les termes de la licence.", "DE.Controllers.Main.warnNoLicenseUsers": "Vous avez dépassé le nombre maximal d’utilisateurs des éditeurs %1. Contactez l’équipe des ventes %1 pour mettre à jour les termes de la licence.", @@ -1168,6 +1188,11 @@ "DE.Views.CustomColumnsDialog.textSeparator": "Diviseur de colonne", "DE.Views.CustomColumnsDialog.textSpacing": "Espacement entre les colonnes", "DE.Views.CustomColumnsDialog.textTitle": "Colonnes", + "DE.Views.DateTimeDialog.textDefault": "Définir par défaut", + "DE.Views.DateTimeDialog.textFormat": "Formats", + "DE.Views.DateTimeDialog.textLang": "Langue", + "DE.Views.DateTimeDialog.textUpdate": "Mettre à jour automatiquement", + "DE.Views.DateTimeDialog.txtTitle": "Date et heure", "DE.Views.DocumentHolder.aboveText": "Au-dessus", "DE.Views.DocumentHolder.addCommentText": "Ajouter un commentaire", "DE.Views.DocumentHolder.advancedFrameText": "Paramètres avancés du cadre", @@ -1257,6 +1282,7 @@ "DE.Views.DocumentHolder.textFlipV": "Retourner verticalement", "DE.Views.DocumentHolder.textFollow": "Suivre le mouvement", "DE.Views.DocumentHolder.textFromFile": "D'un fichier", + "DE.Views.DocumentHolder.textFromStorage": "A partir de l'espace de stockage", "DE.Views.DocumentHolder.textFromUrl": "D'une URL", "DE.Views.DocumentHolder.textJoinList": "Rejoindre la liste précédente. ", "DE.Views.DocumentHolder.textNest": "Tableau imbriqué", @@ -1498,6 +1524,8 @@ "DE.Views.FileMenuPanels.Settings.strForcesave": "Toujours enregistrer sur le serveur ( sinon enregistrer sur le serveur lors de la fermeture du document )", "DE.Views.FileMenuPanels.Settings.strInputMode": "Activer des hiéroglyphes", "DE.Views.FileMenuPanels.Settings.strLiveComment": "Activer l'affichage des commentaires", + "DE.Views.FileMenuPanels.Settings.strMacrosSettings": "Réglages macros", + "DE.Views.FileMenuPanels.Settings.strPaste": "Couper,copier et coller", "DE.Views.FileMenuPanels.Settings.strResolvedComment": "Activer l'affichage des commentaires résolus", "DE.Views.FileMenuPanels.Settings.strShowChanges": "Visibilité des modifications en co-édition", "DE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Activer la vérification de l'orthographe", @@ -1517,6 +1545,7 @@ "DE.Views.FileMenuPanels.Settings.textMinute": "Chaque minute", "DE.Views.FileMenuPanels.Settings.textOldVersions": "Rendre les fichiers compatibles avec les anciennes versions de MS Word lorsqu'ils sont enregistrés au format DOCX", "DE.Views.FileMenuPanels.Settings.txtAll": "Surligner toutes les modifications", + "DE.Views.FileMenuPanels.Settings.txtAutoCorrect": "Options de correction automatique", "DE.Views.FileMenuPanels.Settings.txtCacheMode": "Mise en cache par défaut", "DE.Views.FileMenuPanels.Settings.txtCm": "Centimètre", "DE.Views.FileMenuPanels.Settings.txtFitPage": "Ajuster à la page", @@ -1529,7 +1558,11 @@ "DE.Views.FileMenuPanels.Settings.txtNative": "Natif", "DE.Views.FileMenuPanels.Settings.txtNone": "Surligner aucune modification", "DE.Views.FileMenuPanels.Settings.txtPt": "Point", + "DE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "Activer toutes les macros sans notification", "DE.Views.FileMenuPanels.Settings.txtSpellCheck": "Vérification de l'orthographe", + "DE.Views.FileMenuPanels.Settings.txtStopMacros": "Désactiver tout", + "DE.Views.FileMenuPanels.Settings.txtStopMacrosDesc": "Désactiver toutes les macros sans notification", + "DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Désactiver toutes les macros avec notification", "DE.Views.FileMenuPanels.Settings.txtWin": "comme Windows", "DE.Views.HeaderFooterSettings.textBottomCenter": "En bas au centre", "DE.Views.HeaderFooterSettings.textBottomLeft": "En bas à gauche", @@ -1572,6 +1605,7 @@ "DE.Views.ImageSettings.textFitMargins": "Ajuster aux marges", "DE.Views.ImageSettings.textFlip": "Retournement", "DE.Views.ImageSettings.textFromFile": "Depuis un fichier", + "DE.Views.ImageSettings.textFromStorage": "A partir de l'espace de stockage", "DE.Views.ImageSettings.textFromUrl": "D'une URL", "DE.Views.ImageSettings.textHeight": "Hauteur", "DE.Views.ImageSettings.textHint270": "Faire pivoter à gauche de 90°", @@ -1639,6 +1673,7 @@ "DE.Views.ImageSettingsAdvanced.textPositionPc": "Position relative", "DE.Views.ImageSettingsAdvanced.textRelative": "par rapport à", "DE.Views.ImageSettingsAdvanced.textRelativeWH": "Relatif", + "DE.Views.ImageSettingsAdvanced.textResizeFit": "Redimensionner la forme pour contenir le texte", "DE.Views.ImageSettingsAdvanced.textRight": "A droite", "DE.Views.ImageSettingsAdvanced.textRightMargin": "Marge droite", "DE.Views.ImageSettingsAdvanced.textRightOf": "à droite de", @@ -1647,6 +1682,7 @@ "DE.Views.ImageSettingsAdvanced.textShape": "Paramètres de la forme", "DE.Views.ImageSettingsAdvanced.textSize": "Taille", "DE.Views.ImageSettingsAdvanced.textSquare": "Carré", + "DE.Views.ImageSettingsAdvanced.textTextBox": "Zone de texte", "DE.Views.ImageSettingsAdvanced.textTitle": "Image - Paramètres avancés", "DE.Views.ImageSettingsAdvanced.textTitleChart": "Graphique - Paramètres avancés", "DE.Views.ImageSettingsAdvanced.textTitleShape": "Forme - Paramètres avancés", @@ -1923,6 +1959,7 @@ "DE.Views.ShapeSettings.textEmptyPattern": "Pas de modèles", "DE.Views.ShapeSettings.textFlip": "Retournement", "DE.Views.ShapeSettings.textFromFile": "Depuis un fichier", + "DE.Views.ShapeSettings.textFromStorage": "A partir de l'espace de stockage", "DE.Views.ShapeSettings.textFromUrl": "D'une URL", "DE.Views.ShapeSettings.textGradient": "Dégradé", "DE.Views.ShapeSettings.textGradientFill": "Remplissage en dégradé", @@ -1937,6 +1974,7 @@ "DE.Views.ShapeSettings.textRadial": "Radial", "DE.Views.ShapeSettings.textRotate90": "Faire pivoter de 90°", "DE.Views.ShapeSettings.textRotation": "Rotation", + "DE.Views.ShapeSettings.textSelectImage": "Sélectionner l'image", "DE.Views.ShapeSettings.textSelectTexture": "Sélectionner", "DE.Views.ShapeSettings.textStretch": "Étirement", "DE.Views.ShapeSettings.textStyle": "Style", @@ -2166,6 +2204,7 @@ "DE.Views.Toolbar.capBtnBlankPage": "Page Blanche ", "DE.Views.Toolbar.capBtnColumns": "Colonnes", "DE.Views.Toolbar.capBtnComment": "Commentaire", + "DE.Views.Toolbar.capBtnDateTime": "Date et heure", "DE.Views.Toolbar.capBtnInsChart": "Graphique", "DE.Views.Toolbar.capBtnInsControls": "Contrôles de contenu", "DE.Views.Toolbar.capBtnInsDropcap": "Lettrine", @@ -2235,7 +2274,6 @@ "DE.Views.Toolbar.textMarginsUsNormal": "US normale", "DE.Views.Toolbar.textMarginsWide": "Large", "DE.Views.Toolbar.textNewColor": "Couleur personnalisée", - "Common.UI.ColorButton.textNewColor": "Couleur personnalisée", "DE.Views.Toolbar.textNextPage": "Page suivante", "DE.Views.Toolbar.textNoHighlight": "Pas de surbrillance ", "DE.Views.Toolbar.textNone": "Aucune", @@ -2283,6 +2321,7 @@ "DE.Views.Toolbar.tipControls": "Insérer des contrôles de contenu", "DE.Views.Toolbar.tipCopy": "Copier", "DE.Views.Toolbar.tipCopyStyle": "Copier le style", + "DE.Views.Toolbar.tipDateTime": "Inserer la date et l'heure actuelle", "DE.Views.Toolbar.tipDecFont": "Réduire la taille de la police", "DE.Views.Toolbar.tipDecPrLeft": "Réduire le retrait", "DE.Views.Toolbar.tipDropCap": "Insérer une lettrine", @@ -2359,6 +2398,7 @@ "DE.Views.WatermarkSettingsDialog.textDiagonal": "Diagonale", "DE.Views.WatermarkSettingsDialog.textFont": "Police", "DE.Views.WatermarkSettingsDialog.textFromFile": "Depuis un fichier", + "DE.Views.WatermarkSettingsDialog.textFromStorage": "A partir de l'espace de stockage", "DE.Views.WatermarkSettingsDialog.textFromUrl": "D'une URL", "DE.Views.WatermarkSettingsDialog.textHor": "Horizontal", "DE.Views.WatermarkSettingsDialog.textImageW": "Image en filigrane", @@ -2368,6 +2408,7 @@ "DE.Views.WatermarkSettingsDialog.textNewColor": "Couleur personnalisée", "DE.Views.WatermarkSettingsDialog.textNone": "Aucun", "DE.Views.WatermarkSettingsDialog.textScale": "Échelle", + "DE.Views.WatermarkSettingsDialog.textSelect": "Sélectionner une image", "DE.Views.WatermarkSettingsDialog.textStrikeout": "Barré", "DE.Views.WatermarkSettingsDialog.textText": "Texte", "DE.Views.WatermarkSettingsDialog.textTextW": "Filigrane de texte", diff --git a/apps/documenteditor/main/locale/it.json b/apps/documenteditor/main/locale/it.json index 81b0f356e..39f879e0f 100644 --- a/apps/documenteditor/main/locale/it.json +++ b/apps/documenteditor/main/locale/it.json @@ -750,8 +750,8 @@ "DE.Controllers.Main.waitText": "Per favore, attendi...", "DE.Controllers.Main.warnBrowserIE9": "L'applicazione è poco compatibile con IE9. Usa IE10 o più recente", "DE.Controllers.Main.warnBrowserZoom": "Le impostazioni correnti di zoom del tuo browser non sono completamente supportate. Per favore, ritorna allo zoom predefinito premendo Ctrl+0.", - "DE.Controllers.Main.warnLicenseExp": "La tua licenza è scaduta.
Si prega di aggiornare la licenza e ricaricare la pagina.", "DE.Controllers.Main.warnLicenseExceeded": "Hai raggiunto il limite per le connessioni simultanee agli editor %1. Questo documento verrà aperto in sola lettura.
Contatta l’amministratore per saperne di più.", + "DE.Controllers.Main.warnLicenseExp": "La tua licenza è scaduta.
Si prega di aggiornare la licenza e ricaricare la pagina.", "DE.Controllers.Main.warnLicenseUsersExceeded": "Hai raggiunto il limite per gli utenti con accesso agli editor %1. Contatta l’amministratore per saperne di più.", "DE.Controllers.Main.warnNoLicense": "Hai raggiunto il limite per le connessioni simultanee agli editor %1. Questo documento verrà aperto in sola lettura.
Contatta il team di vendita di %1 per i termini di aggiornamento personali.", "DE.Controllers.Main.warnNoLicenseUsers": "Hai raggiunto il limite per gli utenti con accesso agli editor %1. Contatta il team di vendita di %1 per i termini di aggiornamento personali.", diff --git a/apps/documenteditor/main/locale/ja.json b/apps/documenteditor/main/locale/ja.json index fb64fcfe9..5c7d06ee0 100644 --- a/apps/documenteditor/main/locale/ja.json +++ b/apps/documenteditor/main/locale/ja.json @@ -80,7 +80,7 @@ "Common.define.chartData.textPoint": "点グラフ", "Common.define.chartData.textStock": "株価チャート", "Common.define.chartData.textSurface": "表面", - "Common.Translation.warnFileLocked": "文書が別のアプリで使用されています。編集を続けて、コピーとして保存しますか。", + "Common.Translation.warnFileLocked": "文書が別のアプリで使用されています。編集を続けて、コピーとして保存できます。", "Common.UI.Calendar.textApril": "四月", "Common.UI.Calendar.textAugust": "八月", "Common.UI.Calendar.textDecember": "十二月", @@ -113,6 +113,7 @@ "Common.UI.Calendar.textShortThursday": "木", "Common.UI.Calendar.textShortTuesday": "火", "Common.UI.Calendar.textShortWednesday": "水", + "Common.UI.Calendar.textYears": "年", "Common.UI.ColorButton.textNewColor": "カスタム色を追加", "Common.UI.ComboBorderSize.txtNoBorders": "罫線なし", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "罫線なし", @@ -194,15 +195,20 @@ "Common.Views.Header.textCompactView": "ツールバーを隠す", "Common.Views.Header.textHideLines": "ルーラを隠す", "Common.Views.Header.textHideStatusBar": "ステータス・バーを隠す", + "Common.Views.Header.textSaveBegin": "保存中", "Common.Views.Header.textSaveChanged": "更新された", "Common.Views.Header.textSaveEnd": "変更が保存された", "Common.Views.Header.textSaveExpander": "変更が保存された", + "Common.Views.Header.textZoom": "拡大図", "Common.Views.Header.tipAccessRights": "文書のアクセス許可のの管理", "Common.Views.Header.tipDownload": "ファイルをダウンロード", "Common.Views.Header.tipGoEdit": "現在のファイルを編集する", "Common.Views.Header.tipPrint": "印刷", "Common.Views.Header.tipRedo": "やり直す", + "Common.Views.Header.tipSave": "保存する", "Common.Views.Header.tipUndo": "元に戻す", + "Common.Views.Header.tipViewSettings": "設定の表示", + "Common.Views.Header.tipViewUsers": "ユーザーの表示と文書のアクセス権の管理", "Common.Views.Header.txtAccessRights": "アクセス権限の変更", "Common.Views.Header.txtRename": "名前の変更", "Common.Views.History.textCloseHistory": "履歴を閉じる", @@ -210,6 +216,7 @@ "Common.Views.History.textHideAll": "詳細な変更を隠す", "Common.Views.History.textRestore": "復元する", "Common.Views.History.textShow": "展開する", + "Common.Views.History.textShowAll": "詳細な変更を表示する", "Common.Views.ImageFromUrlDialog.textUrl": "画像URLの貼り付け", "Common.Views.ImageFromUrlDialog.txtEmpty": "このフィールドは必須項目です", "Common.Views.ImageFromUrlDialog.txtNotUrl": "このフィールドは「http://www.example.com」の形式のURLである必要があります。", @@ -219,20 +226,26 @@ "Common.Views.InsertTableDialog.txtMinText": "このフィールドの最小値は{0}です。", "Common.Views.InsertTableDialog.txtRows": "行数", "Common.Views.InsertTableDialog.txtTitle": "表のサイズ", + "Common.Views.LanguageDialog.labelSelect": "文書の言語を選択する", "Common.Views.OpenDialog.closeButtonText": "ファイルを閉じる", "Common.Views.OpenDialog.txtEncoding": "エンコード", "Common.Views.OpenDialog.txtIncorrectPwd": "パスワードが正しくありません。", "Common.Views.OpenDialog.txtPassword": "パスワード", "Common.Views.OpenDialog.txtPreview": "下見", + "Common.Views.OpenDialog.txtProtected": "パスワードを入力してファイルを開くと、ファイルの既存のパスワードがリセットされます。", "Common.Views.OpenDialog.txtTitle": "%1オプションの選択", "Common.Views.OpenDialog.txtTitleProtected": "保護ファイル", + "Common.Views.PasswordDialog.txtDescription": "この文書を保護するためのパスワードを設定してください", "Common.Views.PasswordDialog.txtIncorrectPwd": "先に入力したパスワードと一致しません。", "Common.Views.PasswordDialog.txtPassword": "パスワード", "Common.Views.PasswordDialog.txtRepeat": "パスワードを再入力", + "Common.Views.PasswordDialog.txtTitle": "パスワードの設定", "Common.Views.PluginDlg.textLoading": "読み込み中", "Common.Views.Plugins.groupCaption": "プラグイン", "Common.Views.Plugins.strPlugins": "プラグイン", "Common.Views.Plugins.textLoading": "読み込み中", + "Common.Views.Plugins.textStart": "スタート", + "Common.Views.Plugins.textStop": "停止", "Common.Views.Protection.hintAddPwd": "パスワードを使用して暗号化", "Common.Views.Protection.hintPwd": "パスワードを変更か削除する", "Common.Views.Protection.hintSignature": "デジタル署名かデジタル署名行を追加", @@ -241,6 +254,7 @@ "Common.Views.Protection.txtDeletePwd": "パスワード削除", "Common.Views.Protection.txtEncrypt": "暗号化する", "Common.Views.Protection.txtInvisibleSignature": "デジタル署名を追加", + "Common.Views.Protection.txtSignature": "サイン", "Common.Views.Protection.txtSignatureLine": "署名欄の追加", "Common.Views.RenameDialog.textName": "ファイル名", "Common.Views.ReviewChanges.hintNext": "次の変更箇所", @@ -249,12 +263,18 @@ "Common.Views.ReviewChanges.mniFromUrl": "URLからの文書", "Common.Views.ReviewChanges.mniSettings": "比較設定", "Common.Views.ReviewChanges.strFast": "ファスト", + "Common.Views.ReviewChanges.strFastDesc": "リアルタイムの共同編集です。すべての変更は自動的に保存されます。", "Common.Views.ReviewChanges.tipAcceptCurrent": "今の変更を反映する", + "Common.Views.ReviewChanges.tipCoAuthMode": "共同編集モードを設定する", "Common.Views.ReviewChanges.tipCommentRem": "コメントを削除する", "Common.Views.ReviewChanges.tipCommentRemCurrent": "現在のコメントを削除する", "Common.Views.ReviewChanges.tipCompare": "現在の文書を別の文書と比較する", + "Common.Views.ReviewChanges.tipHistory": "バージョン履歴を表示する", "Common.Views.ReviewChanges.tipRejectCurrent": "現在の変更を元に戻します。", "Common.Views.ReviewChanges.tipReview": "変更履歴", + "Common.Views.ReviewChanges.tipReviewView": "変更を表示するモードを選択してください", + "Common.Views.ReviewChanges.tipSetDocLang": "文書の言語を設定する", + "Common.Views.ReviewChanges.tipSetSpelling": "スペル チェック", "Common.Views.ReviewChanges.tipSharing": "文書のアクセス許可のの管理", "Common.Views.ReviewChanges.txtAccept": "同意する", "Common.Views.ReviewChanges.txtAcceptAll": "すべての変更を反映する", @@ -272,6 +292,7 @@ "Common.Views.ReviewChanges.txtDocLang": "言語", "Common.Views.ReviewChanges.txtFinal": "変更は承認", "Common.Views.ReviewChanges.txtFinalCap": "最終版", + "Common.Views.ReviewChanges.txtHistory": "バージョン履歴", "Common.Views.ReviewChanges.txtMarkup": "全ての変更(編集)", "Common.Views.ReviewChanges.txtMarkupCap": "マークアップ", "Common.Views.ReviewChanges.txtNext": "次の変更箇所", @@ -282,6 +303,8 @@ "Common.Views.ReviewChanges.txtRejectAll": "すべての変更を元に戻す", "Common.Views.ReviewChanges.txtRejectChanges": "変更を拒否する", "Common.Views.ReviewChanges.txtRejectCurrent": "現在の変更を元に戻します。", + "Common.Views.ReviewChanges.txtSharing": "共有する", + "Common.Views.ReviewChanges.txtSpelling": "スペル チェック", "Common.Views.ReviewChanges.txtTurnon": "変更履歴", "Common.Views.ReviewChanges.txtView": "表示モード", "Common.Views.ReviewChangesDialog.textTitle": "変更の確認", @@ -306,19 +329,28 @@ "Common.Views.SaveAsDlg.textLoading": "読み込み中", "Common.Views.SaveAsDlg.textTitle": "保存先のフォルダ", "Common.Views.SelectFileDlg.textLoading": "読み込み中", + "Common.Views.SelectFileDlg.textTitle": "データ・ソースを選択する", "Common.Views.SignDialog.textBold": "太字", "Common.Views.SignDialog.textCertificate": "証明書", "Common.Views.SignDialog.textChange": "変更する", "Common.Views.SignDialog.textInputName": "署名者の名前を入力", "Common.Views.SignDialog.textItalic": "斜体", + "Common.Views.SignDialog.textPurpose": "この文書にサインする目的", + "Common.Views.SignDialog.textSelect": "選択", "Common.Views.SignDialog.textSelectImage": "画像を選択する", + "Common.Views.SignDialog.textSignature": "署名は次のようになります", + "Common.Views.SignDialog.textTitle": "文書のサイン", + "Common.Views.SignDialog.textUseImage": "または画像を署名として使用するため、「画像の選択」をクリックしてください", "Common.Views.SignDialog.tipFontName": "フォント名", "Common.Views.SignDialog.tipFontSize": "フォントのサイズ", "Common.Views.SignSettingsDialog.textAllowComment": " 署名者が署名ダイアログにコメントを追加できるようにする", + "Common.Views.SignSettingsDialog.textInfo": "署名者情報", "Common.Views.SignSettingsDialog.textInfoEmail": "メール", "Common.Views.SignSettingsDialog.textInfoName": "名前", + "Common.Views.SignSettingsDialog.textInfoTitle": "署名者の役職", "Common.Views.SignSettingsDialog.textInstructions": "署名者への説明", "Common.Views.SignSettingsDialog.textShowDate": "署名欄に署名日を表示する", + "Common.Views.SignSettingsDialog.textTitle": "署名の設定", "Common.Views.SymbolTableDialog.textCharacter": "文字", "Common.Views.SymbolTableDialog.textCopyright": "著作権マーク", "Common.Views.SymbolTableDialog.textDCQuote": "閉じ二重引用符", @@ -337,7 +369,10 @@ "Common.Views.SymbolTableDialog.textRecent": "最近使用した記号", "Common.Views.SymbolTableDialog.textRegistered": "商標記号", "Common.Views.SymbolTableDialog.textSCQuote": "閉じ一重引用符", + "Common.Views.SymbolTableDialog.textSection": "節記号", + "Common.Views.SymbolTableDialog.textShortcut": "ショートカットキー", "Common.Views.SymbolTableDialog.textSOQuote": "開始単一引用符", + "Common.Views.SymbolTableDialog.textSpecial": "特殊文字", "Common.Views.SymbolTableDialog.textSymbols": "記号", "Common.Views.SymbolTableDialog.textTitle": "記号", "Common.Views.SymbolTableDialog.textTradeMark": "商標記号", @@ -361,6 +396,7 @@ "DE.Controllers.Main.downloadMergeTitle": "ダウンロード中", "DE.Controllers.Main.downloadTextText": "ドキュメントのダウンロード中...", "DE.Controllers.Main.downloadTitleText": "ドキュメントのダウンロード中", + "DE.Controllers.Main.errorAccessDeny": "権限のない操作をしようとしています。
ドキュメント・サーバー管理者に連絡してください。", "DE.Controllers.Main.errorBadImageUrl": "画像のURLが正しくありません", "DE.Controllers.Main.errorCoAuthoringDisconnect": "サーバーとの接続が失われました。今、文書を編集することができません。", "DE.Controllers.Main.errorConnectToServer": "文書を保存できませんでした。接続設定を確認するか、管理者にお問い合わせください。
OKボタンをクリックするとドキュメントをダウンロードするように求められます。", @@ -372,7 +408,7 @@ "DE.Controllers.Main.errorEditingDownloadas": "文書の処理中にエラーが発生しました。
PCにファイルのバックアップを保存するように「としてダウンロード」を使用してください。", "DE.Controllers.Main.errorEditingSaveas": "文書の処理中にエラーが発生しました。
PCにファイルのバックアップを保存するように「名前を付けて保存」を使用してください。", "DE.Controllers.Main.errorEmailClient": "メールクライアントが見つかりませんでした。", - "DE.Controllers.Main.errorFilePassProtect": "ドキュメントがパスワードで保護されているため開くことができません", + "DE.Controllers.Main.errorFilePassProtect": "文書がパスワードで保護されているため開くことができません", "DE.Controllers.Main.errorForceSave": "文書の保存中にエラーが発生しました。PCにファイルを保存するように「としてダウンロード」を使用し、または後で再試行してください。", "DE.Controllers.Main.errorKeyEncrypt": "不明なキーの記述子", "DE.Controllers.Main.errorKeyExpire": "署名キーは期限切れました。", @@ -419,10 +455,12 @@ "DE.Controllers.Main.splitMaxRowsErrorText": "行数は%1より小さくなければなりません。", "DE.Controllers.Main.textAnonymous": "匿名", "DE.Controllers.Main.textApplyAll": "全ての数式に適用する", + "DE.Controllers.Main.textBuyNow": "ウェブサイトを訪問する", "DE.Controllers.Main.textChangesSaved": "変更が保存された", "DE.Controllers.Main.textClose": "閉じる", "DE.Controllers.Main.textCloseTip": "ヒントを閉じるためにクリックください", "DE.Controllers.Main.textContactUs": "営業部を連絡する", + "DE.Controllers.Main.textCustomLoader": "ライセンスの条件によっては、ローダーを変更する権利がないことにご注意ください。
見積もりについては、営業部門にお問い合わせください。", "DE.Controllers.Main.textLearnMore": "詳細はこちら", "DE.Controllers.Main.textLoadingDocument": "ドキュメントを読み込んでいます", "DE.Controllers.Main.textNoLicenseTitle": "%1 接続の制限", @@ -485,6 +523,7 @@ "DE.Controllers.Main.txtShape_actionButtonInformation": "[情報]ボタン", "DE.Controllers.Main.txtShape_actionButtonMovie": "[ムービー]ボタン", "DE.Controllers.Main.txtShape_actionButtonReturn": "[戻る]ボタン", + "DE.Controllers.Main.txtShape_actionButtonSound": "音のボタン", "DE.Controllers.Main.txtShape_arc": "円弧", "DE.Controllers.Main.txtShape_bentArrow": "曲げ矢印", "DE.Controllers.Main.txtShape_bentConnector5": "カギ線コネクタ", @@ -605,6 +644,7 @@ "DE.Controllers.Main.txtShape_round2SameRect": "同じ辺の角を丸める矩形", "DE.Controllers.Main.txtShape_roundRect": "角丸四角形", "DE.Controllers.Main.txtShape_rtTriangle": "直角三角形", + "DE.Controllers.Main.txtShape_smileyFace": "絵文字", "DE.Controllers.Main.txtShape_spline": "曲線", "DE.Controllers.Main.txtShape_star10": "十芒星", "DE.Controllers.Main.txtShape_star12": "十二芒星", @@ -617,11 +657,14 @@ "DE.Controllers.Main.txtShape_star7": "七芒星", "DE.Controllers.Main.txtShape_star8": "八芒星", "DE.Controllers.Main.txtShape_sun": "太陽形", + "DE.Controllers.Main.txtShape_textRect": "テキストボックス", "DE.Controllers.Main.txtShape_trapezoid": "台形", "DE.Controllers.Main.txtShape_triangle": "三角形", "DE.Controllers.Main.txtShape_upArrow": "上矢印", "DE.Controllers.Main.txtShape_upArrowCallout": "上矢印吹き出し", "DE.Controllers.Main.txtShape_upDownArrow": "上下の矢印", + "DE.Controllers.Main.txtShape_verticalScroll": "縦スクロール", + "DE.Controllers.Main.txtShape_wave": "波", "DE.Controllers.Main.txtShape_wedgeEllipseCallout": "円形吹き出し", "DE.Controllers.Main.txtShape_wedgeRectCallout": "長方形の吹き出し", "DE.Controllers.Main.txtShape_wedgeRoundRectCallout": "角丸長方形の吹き出し", @@ -643,11 +686,14 @@ "DE.Controllers.Main.txtStyle_Normal": "正常", "DE.Controllers.Main.txtStyle_Quote": "引用", "DE.Controllers.Main.txtStyle_Subtitle": "小見出し", + "DE.Controllers.Main.txtStyle_Title": "タイトル", + "DE.Controllers.Main.txtSyntaxError": "構文間違い", "DE.Controllers.Main.txtTableOfContents": "目次", "DE.Controllers.Main.txtTooLarge": "数値が大きすぎて書式設定できません。", "DE.Controllers.Main.txtTypeEquation": "こちらで数式を入力してください", "DE.Controllers.Main.txtXAxis": "X 軸", "DE.Controllers.Main.txtYAxis": "Y 軸", + "DE.Controllers.Main.txtZeroDivide": "ゼロ除算", "DE.Controllers.Main.unknownErrorText": "不明なエラー", "DE.Controllers.Main.unsupportedBrowserErrorText": "お使いのブラウザがサポートされていません。", "DE.Controllers.Main.uploadDocFileCountMessage": "アップロードされた文書がありません", @@ -1018,6 +1064,7 @@ "DE.Views.BookmarksDialog.textHidden": "隠しブックマーク", "DE.Views.BookmarksDialog.textLocation": "位置", "DE.Views.BookmarksDialog.textName": "名前", + "DE.Views.BookmarksDialog.textSort": "並べ替え", "DE.Views.BookmarksDialog.textTitle": "ブックマーク", "DE.Views.BookmarksDialog.txtInvalidName": "ブックマーク名には、文字、数字、アンダースコアのみを使用でき、先頭は文字である必要があります", "DE.Views.CaptionDialog.textAdd": "ラベルを追加", @@ -1032,20 +1079,24 @@ "DE.Views.CaptionDialog.textEquation": "数式", "DE.Views.CaptionDialog.textExamples": " 例:表 2-A 、図 1.IV", "DE.Views.CaptionDialog.textExclude": "ラベルを図表番号から除外する", - "DE.Views.CaptionDialog.textFigure": "図", + "DE.Views.CaptionDialog.textFigure": "図形", "DE.Views.CaptionDialog.textHyphen": "ハイフン", "DE.Views.CaptionDialog.textInsert": "挿入する", "DE.Views.CaptionDialog.textLabel": "ラベル", "DE.Views.CaptionDialog.textLongDash": "長いダッシュ", "DE.Views.CaptionDialog.textNumbering": "番号付け", "DE.Views.CaptionDialog.textPeriod": "期間", + "DE.Views.CaptionDialog.textTable": "表", "DE.Views.CaptionDialog.textTitle": "図表番号の挿入", "DE.Views.CellsAddDialog.textCol": "列", "DE.Views.CellsAddDialog.textDown": "カーソルより下", + "DE.Views.CellsAddDialog.textLeft": "左に", + "DE.Views.CellsAddDialog.textRight": "右に", "DE.Views.CellsAddDialog.textRow": "行", "DE.Views.CellsAddDialog.textTitle": "複数を挿入する", "DE.Views.CellsAddDialog.textUp": "カーソルより上", "DE.Views.CellsRemoveDialog.textCol": "列全体を削除", + "DE.Views.CellsRemoveDialog.textLeft": "左方向にシフト", "DE.Views.CellsRemoveDialog.textRow": "行全体を削除", "DE.Views.CellsRemoveDialog.textTitle": "セルを削除する", "DE.Views.ChartSettings.textAdvanced": "詳細設定の表示", @@ -1067,6 +1118,7 @@ "DE.Views.ChartSettings.txtTitle": "グラフ", "DE.Views.ChartSettings.txtTopAndBottom": "上と下", "DE.Views.CompareSettingsDialog.textChar": "文字レベル", + "DE.Views.CompareSettingsDialog.textShow": "変更を表示する", "DE.Views.CompareSettingsDialog.textTitle": "比較設定", "DE.Views.ControlSettingsDialog.strGeneral": "一般的", "DE.Views.ControlSettingsDialog.textAdd": "追加", @@ -1086,8 +1138,12 @@ "DE.Views.ControlSettingsDialog.textFormat": "日付の表示形式", "DE.Views.ControlSettingsDialog.textLang": "言語", "DE.Views.ControlSettingsDialog.textLock": "ロック", + "DE.Views.ControlSettingsDialog.textName": "タイトル", "DE.Views.ControlSettingsDialog.textNone": "なし", "DE.Views.ControlSettingsDialog.textPlaceholder": "プレースホルダ", + "DE.Views.ControlSettingsDialog.textShowAs": "として示す", + "DE.Views.ControlSettingsDialog.textSystemColor": "システム", + "DE.Views.ControlSettingsDialog.textTag": "タグ", "DE.Views.ControlSettingsDialog.textTitle": "コンテンツ コントロール設定", "DE.Views.ControlSettingsDialog.textUnchecked": "[チェックしない]記号", "DE.Views.ControlSettingsDialog.textUp": "上", @@ -1098,6 +1154,8 @@ "DE.Views.CustomColumnsDialog.textSeparator": "列の区切り線", "DE.Views.CustomColumnsDialog.textSpacing": "列の間隔", "DE.Views.CustomColumnsDialog.textTitle": "列", + "DE.Views.DateTimeDialog.confirmDefault": "{0}に既定の形式を設定:\"{1}\"", + "DE.Views.DateTimeDialog.textDefault": "既定に設定", "DE.Views.DateTimeDialog.textFormat": "形式", "DE.Views.DateTimeDialog.textLang": "言語", "DE.Views.DateTimeDialog.textUpdate": "自動的に更新", @@ -1124,7 +1182,7 @@ "DE.Views.DocumentHolder.direct270Text": "270度回転", "DE.Views.DocumentHolder.direct90Text": "90度回転", "DE.Views.DocumentHolder.directHText": "水平", - "DE.Views.DocumentHolder.directionText": "文字の方向", + "DE.Views.DocumentHolder.directionText": "文字列の方向", "DE.Views.DocumentHolder.editChartText": "データ バーの編集", "DE.Views.DocumentHolder.editFooterText": "フッターの編集", "DE.Views.DocumentHolder.editHeaderText": "ヘッダーの編集", @@ -1164,6 +1222,9 @@ "DE.Views.DocumentHolder.splitCellsText": "セルの分割...", "DE.Views.DocumentHolder.splitCellTitleText": "セルの分割", "DE.Views.DocumentHolder.strDelete": "署名の削除", + "DE.Views.DocumentHolder.strDetails": "サインの詳細", + "DE.Views.DocumentHolder.strSetup": "署名の設定", + "DE.Views.DocumentHolder.strSign": "サイン", "DE.Views.DocumentHolder.styleText": "スタイルようにフォーマッティングする", "DE.Views.DocumentHolder.tableText": "テーブル", "DE.Views.DocumentHolder.textAlign": "整列", @@ -1203,12 +1264,17 @@ "DE.Views.DocumentHolder.textRotate": "回転させる", "DE.Views.DocumentHolder.textRotate270": "逆時計方向に90度回転", "DE.Views.DocumentHolder.textRotate90": "時計方向に90度回転", + "DE.Views.DocumentHolder.textSeparateList": "リストの分離", + "DE.Views.DocumentHolder.textSettings": "設定", + "DE.Views.DocumentHolder.textSeveral": "複数の行/列", "DE.Views.DocumentHolder.textShapeAlignBottom": "下揃え", "DE.Views.DocumentHolder.textShapeAlignCenter": "中央揃え", "DE.Views.DocumentHolder.textShapeAlignLeft": "左揃え", "DE.Views.DocumentHolder.textShapeAlignMiddle": "上下中央揃え", "DE.Views.DocumentHolder.textShapeAlignRight": "右揃え", "DE.Views.DocumentHolder.textShapeAlignTop": "上揃え", + "DE.Views.DocumentHolder.textStartNewList": "新しいリストを開始する", + "DE.Views.DocumentHolder.textStartNumberingFrom": "計数値の設定", "DE.Views.DocumentHolder.textTOC": "目次", "DE.Views.DocumentHolder.textTOCSettings": "目次設定", "DE.Views.DocumentHolder.textUndo": "元に戻す", @@ -1401,9 +1467,13 @@ "DE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "アクセス許可の変更", "DE.Views.FileMenuPanels.DocumentRights.txtRights": "権利を持っている者", "DE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "警告", + "DE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "パスワードを使って", "DE.Views.FileMenuPanels.ProtectDoc.strProtect": "文書を保護", + "DE.Views.FileMenuPanels.ProtectDoc.strSignature": "サインを使って", "DE.Views.FileMenuPanels.ProtectDoc.txtEdit": "文書を編集する", "DE.Views.FileMenuPanels.ProtectDoc.txtEditWarning": "編集すると、文書から署名が削除されます。
続行しますか?", + "DE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "文書のデジタル署名の一部が無効であるか、検証できませんでした。 文書は編集できないように保護されています。", + "DE.Views.FileMenuPanels.ProtectDoc.txtView": "署名の表示", "DE.Views.FileMenuPanels.Settings.okButtonText": "適用", "DE.Views.FileMenuPanels.Settings.strAlignGuides": "配置ガイドターンにします。", "DE.Views.FileMenuPanels.Settings.strAutoRecover": "自動バックアップをターンにします。", @@ -1432,11 +1502,12 @@ "DE.Views.FileMenuPanels.Settings.textAutoSave": "自動保存", "DE.Views.FileMenuPanels.Settings.textCompatible": "互換性", "DE.Views.FileMenuPanels.Settings.textDisabled": "無効", + "DE.Views.FileMenuPanels.Settings.textForceSave": "サーバーに保存する", "DE.Views.FileMenuPanels.Settings.textMinute": "1 分ごと", "DE.Views.FileMenuPanels.Settings.textOldVersions": " DOCXとして保存する場合は、MS Wordの古いバージョンと互換性のあるファイルにします", "DE.Views.FileMenuPanels.Settings.txtAll": "全ての表示", "DE.Views.FileMenuPanels.Settings.txtAutoCorrect": "オートコレクト設定", - "DE.Views.FileMenuPanels.Settings.txtCacheMode": "規定のキャッシュ モード", + "DE.Views.FileMenuPanels.Settings.txtCacheMode": "既定のキャッシュ モード", "DE.Views.FileMenuPanels.Settings.txtCm": "センチ", "DE.Views.FileMenuPanels.Settings.txtFitPage": "ページに合わせる", "DE.Views.FileMenuPanels.Settings.txtFitWidth": "幅を合わせる", @@ -1454,6 +1525,7 @@ "DE.Views.FileMenuPanels.Settings.txtSpellCheck": "スペル チェック", "DE.Views.FileMenuPanels.Settings.txtStopMacros": "全てを無効にする", "DE.Views.FileMenuPanels.Settings.txtStopMacrosDesc": "マクロを無効にして、通知しない", + "DE.Views.FileMenuPanels.Settings.txtWarnMacros": "通知を表示する", "DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "マクロを無効にして、通知する", "DE.Views.FileMenuPanels.Settings.txtWin": "Windowsのような", "DE.Views.HeaderFooterSettings.textBottomCenter": "左下", @@ -1462,6 +1534,7 @@ "DE.Views.HeaderFooterSettings.textBottomRight": "右下", "DE.Views.HeaderFooterSettings.textDiffFirst": "先頭ページのみ別指定\t", "DE.Views.HeaderFooterSettings.textDiffOdd": "奇数/偶数ページ別指定", + "DE.Views.HeaderFooterSettings.textFrom": "から始まる", "DE.Views.HeaderFooterSettings.textHeaderFromBottom": "下からのフッター位置", "DE.Views.HeaderFooterSettings.textHeaderFromTop": "上からのヘッダー位置", "DE.Views.HeaderFooterSettings.textInsertCurrent": "現在の位置に挿入", @@ -1522,6 +1595,7 @@ "DE.Views.ImageSettingsAdvanced.textAlignment": "整列", "DE.Views.ImageSettingsAdvanced.textAlt": "代替テキスト", "DE.Views.ImageSettingsAdvanced.textAltDescription": "説明", + "DE.Views.ImageSettingsAdvanced.textAltTitle": "タイトル", "DE.Views.ImageSettingsAdvanced.textAngle": "角", "DE.Views.ImageSettingsAdvanced.textArrows": "矢印", "DE.Views.ImageSettingsAdvanced.textAspectRatio": "縦横比の一定", @@ -1572,12 +1646,15 @@ "DE.Views.ImageSettingsAdvanced.textShape": "図形の設定", "DE.Views.ImageSettingsAdvanced.textSize": "サイズ", "DE.Views.ImageSettingsAdvanced.textSquare": "四角の", + "DE.Views.ImageSettingsAdvanced.textTextBox": "テキストボックス", "DE.Views.ImageSettingsAdvanced.textTitle": "画像 - 詳細設定", "DE.Views.ImageSettingsAdvanced.textTitleChart": "グラフー詳細設定", "DE.Views.ImageSettingsAdvanced.textTitleShape": "図形 - 詳細設定", "DE.Views.ImageSettingsAdvanced.textTop": "トップ", "DE.Views.ImageSettingsAdvanced.textTopMargin": "上余白", "DE.Views.ImageSettingsAdvanced.textVertical": "縦", + "DE.Views.ImageSettingsAdvanced.textVertically": "縦に", + "DE.Views.ImageSettingsAdvanced.textWeightArrows": "線&矢印", "DE.Views.ImageSettingsAdvanced.textWidth": "幅", "DE.Views.ImageSettingsAdvanced.textWrap": "折り返しの種類と配置", "DE.Views.ImageSettingsAdvanced.textWrapBehindTooltip": "背面", @@ -1608,6 +1685,7 @@ "DE.Views.Links.mniInsFootnote": "フットノートの挿入", "DE.Views.Links.mniNoteSettings": "ノートの設定", "DE.Views.Links.textContentsRemove": "目次の削除", + "DE.Views.Links.textContentsSettings": "設定", "DE.Views.Links.textGotoFootnote": "脚注へ移動", "DE.Views.Links.textUpdateAll": "テーブル全体の更新", "DE.Views.Links.textUpdatePages": "ページ番号の変更のみ", @@ -1630,6 +1708,7 @@ "DE.Views.ListSettingsDialog.txtLikeText": "テキストのように", "DE.Views.ListSettingsDialog.txtNewBullet": "新しい行頭文字", "DE.Views.ListSettingsDialog.txtNone": "なし", + "DE.Views.ListSettingsDialog.txtSize": "サイズ", "DE.Views.ListSettingsDialog.txtSymbol": "記号", "DE.Views.ListSettingsDialog.txtTitle": "リストの設定", "DE.Views.ListSettingsDialog.txtType": "タイプ", @@ -1694,6 +1773,7 @@ "DE.Views.NoteSettingsDialog.textApplyTo": "変更適用", "DE.Views.NoteSettingsDialog.textContinue": "継続的", "DE.Views.NoteSettingsDialog.textCustom": "ユーザー設定のマーク", + "DE.Views.NoteSettingsDialog.textDocument": "全ての文書", "DE.Views.NoteSettingsDialog.textEachPage": "ページごとに振り直し", "DE.Views.NoteSettingsDialog.textEachSection": "セクションごとに振り直し", "DE.Views.NoteSettingsDialog.textFootnote": "脚注", @@ -1704,6 +1784,7 @@ "DE.Views.NoteSettingsDialog.textNumFormat": "数の書式", "DE.Views.NoteSettingsDialog.textPageBottom": "ページの下部", "DE.Views.NoteSettingsDialog.textSection": "現在のセクション", + "DE.Views.NoteSettingsDialog.textStart": "から始まる", "DE.Views.NoteSettingsDialog.textTextBottom": "テキストより下", "DE.Views.NoteSettingsDialog.textTitle": "ノートの設定", "DE.Views.PageMarginsDialog.notcriticalErrorTitle": "警告", @@ -1819,6 +1900,7 @@ "DE.Views.RightMenu.txtMailMergeSettings": "差し込み印刷の設定", "DE.Views.RightMenu.txtParagraphSettings": "段落の設定", "DE.Views.RightMenu.txtShapeSettings": "図形の設定", + "DE.Views.RightMenu.txtSignatureSettings": "サインの設定", "DE.Views.RightMenu.txtTableSettings": "表の設定", "DE.Views.RightMenu.txtTextArtSettings": "テキストアートの設定", "DE.Views.ShapeSettings.strBackground": "背景色", @@ -1827,6 +1909,7 @@ "DE.Views.ShapeSettings.strFill": "塗りつぶし", "DE.Views.ShapeSettings.strForeground": "前景色", "DE.Views.ShapeSettings.strPattern": "パターン", + "DE.Views.ShapeSettings.strShadow": "影を表示する", "DE.Views.ShapeSettings.strSize": "サイズ", "DE.Views.ShapeSettings.strStroke": "画数", "DE.Views.ShapeSettings.strTransparency": "不透明度", @@ -1853,6 +1936,7 @@ "DE.Views.ShapeSettings.textRadial": "放射状", "DE.Views.ShapeSettings.textRotate90": "90度回転", "DE.Views.ShapeSettings.textRotation": "回転", + "DE.Views.ShapeSettings.textSelectImage": "画像の選択", "DE.Views.ShapeSettings.textSelectTexture": "選択", "DE.Views.ShapeSettings.textStretch": "ストレッチ", "DE.Views.ShapeSettings.textStyle": "スタイル", @@ -1880,10 +1964,16 @@ "DE.Views.ShapeSettings.txtWood": "木", "DE.Views.SignatureSettings.notcriticalErrorTitle": "警告", "DE.Views.SignatureSettings.strDelete": "署名の削除", + "DE.Views.SignatureSettings.strDetails": "署名の詳細", "DE.Views.SignatureSettings.strInvalid": "不正な署名", "DE.Views.SignatureSettings.strRequested": "必要な署名", + "DE.Views.SignatureSettings.strSetup": "署名の設定", + "DE.Views.SignatureSettings.strSign": "サイン", + "DE.Views.SignatureSettings.strSignature": "サイン", + "DE.Views.SignatureSettings.strSigner": "署名者", "DE.Views.SignatureSettings.txtContinueEditing": "無視して編集する", "DE.Views.SignatureSettings.txtEditWarning": "編集すると、文書から署名が削除されます。
続行しますか?", + "DE.Views.SignatureSettings.txtSignedInvalid": "文書のデジタル署名の一部が無効であるか、検証できませんでした。 文書は編集できないように保護されています。", "DE.Views.Statusbar.goToPageText": "ページに移動", "DE.Views.Statusbar.pageIndexText": "{1}から​​{0}ページ", "DE.Views.Statusbar.tipFitPage": "ページに合わせる", @@ -1912,11 +2002,16 @@ "DE.Views.TableOfContentsSettings.textLevels": "レベル", "DE.Views.TableOfContentsSettings.textNone": "なし", "DE.Views.TableOfContentsSettings.textRadioLevels": "アウトライン・レベル", + "DE.Views.TableOfContentsSettings.textRadioStyles": "選択されたスタイル", + "DE.Views.TableOfContentsSettings.textStyle": "スタイル", + "DE.Views.TableOfContentsSettings.textStyles": "スタイル", "DE.Views.TableOfContentsSettings.textTitle": "目次", "DE.Views.TableOfContentsSettings.txtClassic": "クラシック", "DE.Views.TableOfContentsSettings.txtCurrent": "現在", "DE.Views.TableOfContentsSettings.txtModern": "現代", "DE.Views.TableOfContentsSettings.txtOnline": "オンライン", + "DE.Views.TableOfContentsSettings.txtSimple": "簡単な", + "DE.Views.TableOfContentsSettings.txtStandard": "標準", "DE.Views.TableSettings.deleteColumnText": "列の削除", "DE.Views.TableSettings.deleteRowText": "行の削除", "DE.Views.TableSettings.deleteTableText": "表の削除", @@ -1952,6 +2047,7 @@ "DE.Views.TableSettings.textSelectBorders": "選択したスタイルを適用する罫線を選択してください。 ", "DE.Views.TableSettings.textTemplate": "テンプレートから選択する", "DE.Views.TableSettings.textTotal": "合計", + "DE.Views.TableSettings.textWidth": "幅", "DE.Views.TableSettings.tipAll": "外部の罫線と全ての内部の線", "DE.Views.TableSettings.tipBottom": "外部の罫線(下)だけを設定します。", "DE.Views.TableSettings.tipInner": "内部の線だけを設定します。", @@ -1975,6 +2071,7 @@ "DE.Views.TableSettingsAdvanced.textAllowSpacing": "セルの間隔を指定する", "DE.Views.TableSettingsAdvanced.textAlt": "代替テキスト", "DE.Views.TableSettingsAdvanced.textAltDescription": "説明", + "DE.Views.TableSettingsAdvanced.textAltTitle": "タイトル", "DE.Views.TableSettingsAdvanced.textAnchorText": "テキスト", "DE.Views.TableSettingsAdvanced.textAutofit": "自動的にセルのサイズを変更する", "DE.Views.TableSettingsAdvanced.textBackColor": "セルの背景色", @@ -2073,12 +2170,18 @@ "DE.Views.Toolbar.capBtnInsPagebreak": "区切り", "DE.Views.Toolbar.capBtnInsShape": "図形", "DE.Views.Toolbar.capBtnInsSymbol": "記号", + "DE.Views.Toolbar.capBtnInsTable": "表", + "DE.Views.Toolbar.capBtnInsTextart": "ワードアート", + "DE.Views.Toolbar.capBtnInsTextbox": "テキストボックス", "DE.Views.Toolbar.capBtnMargins": "余白", "DE.Views.Toolbar.capBtnPageOrient": "印刷の向き", + "DE.Views.Toolbar.capBtnPageSize": "サイズ", + "DE.Views.Toolbar.capBtnWatermark": "透かし", "DE.Views.Toolbar.capImgAlign": "整列", "DE.Views.Toolbar.capImgBackward": "背面へ移動", "DE.Views.Toolbar.capImgForward": "前面へ移動", "DE.Views.Toolbar.capImgGroup": "グループ", + "DE.Views.Toolbar.capImgWrapping": "折り返し", "DE.Views.Toolbar.mniCustomTable": "ユーザー設定​​の表の挿入", "DE.Views.Toolbar.mniDrawTable": "罫線を引く", "DE.Views.Toolbar.mniEditControls": "コントロールの設定", @@ -2185,6 +2288,7 @@ "DE.Views.Toolbar.tipHighlightColor": "強調表示の色", "DE.Views.Toolbar.tipImgAlign": "オブジェクトを配置する", "DE.Views.Toolbar.tipImgGroup": "グループ・オブジェクト", + "DE.Views.Toolbar.tipImgWrapping": "文字列の折り返し", "DE.Views.Toolbar.tipIncFont": "フォントサイズの増分", "DE.Views.Toolbar.tipIncPrLeft": "インデントを増やす", "DE.Views.Toolbar.tipInsertChart": "グラフの挿入", @@ -2259,7 +2363,12 @@ "DE.Views.WatermarkSettingsDialog.textLayout": "レイアウト", "DE.Views.WatermarkSettingsDialog.textNewColor": "カスタム色を追加", "DE.Views.WatermarkSettingsDialog.textNone": "なし", + "DE.Views.WatermarkSettingsDialog.textScale": "規模", "DE.Views.WatermarkSettingsDialog.textSelect": "画像を選択", + "DE.Views.WatermarkSettingsDialog.textText": "テキスト", + "DE.Views.WatermarkSettingsDialog.textTextW": "テキスト透かし", + "DE.Views.WatermarkSettingsDialog.textTitle": "透かし設定", + "DE.Views.WatermarkSettingsDialog.textTransparency": "半透明", "DE.Views.WatermarkSettingsDialog.textUnderline": "下線", "DE.Views.WatermarkSettingsDialog.tipFontName": "フォント名", "DE.Views.WatermarkSettingsDialog.tipFontSize": "フォントのサイズ" diff --git a/apps/documenteditor/main/locale/nb.json b/apps/documenteditor/main/locale/nb.json index 0726b3178..f72ce2390 100644 --- a/apps/documenteditor/main/locale/nb.json +++ b/apps/documenteditor/main/locale/nb.json @@ -24,15 +24,28 @@ "Common.Controllers.ReviewChanges.textRight": "Still opp høyre", "Common.Controllers.ReviewChanges.textShd": "Bakgrunnsfarge", "Common.Controllers.ReviewChanges.textTabs": "Bytt faner", + "Common.define.chartData.textArea": "Areal", + "Common.define.chartData.textBar": "Søyle", + "Common.define.chartData.textCharts": "Diagrammer", + "Common.define.chartData.textColumn": "Kolonne", + "Common.UI.Calendar.textApril": "april", + "Common.UI.Calendar.textAugust": "august", + "Common.UI.Calendar.textDecember": "desember", + "Common.UI.Calendar.textShortApril": "apr", + "Common.UI.Calendar.textShortAugust": "Aug", + "Common.UI.ColorButton.textNewColor": "Legg til ny egendefinert farge", "Common.UI.ExtendedColorDialog.addButtonText": "Legg til", "Common.UI.ExtendedColorDialog.textCurrent": "Nåværende", "Common.UI.SearchDialog.textMatchCase": "Følsom for store og små bokstaver", "Common.UI.Window.cancelButtonText": "Avbryt", "Common.UI.Window.closeButtonText": "Lukk", + "Common.UI.Window.textConfirmation": "Bekreftelse", "Common.UI.Window.textError": "Feil", "Common.UI.Window.textWarning": "Advarsel", "Common.Utils.Metric.txtCm": "cm", "Common.Views.About.txtAddress": "adresse:", + "Common.Views.AutoCorrectDialog.textBy": "Av:", + "Common.Views.AutoCorrectDialog.textTitle": "Autokorrektur", "Common.Views.Comments.textAdd": "Legg til", "Common.Views.Comments.textAddComment": "Tilføy", "Common.Views.Comments.textAddCommentToDoc": "Tilføy kommentar til", @@ -41,6 +54,7 @@ "Common.Views.Comments.textClose": "Lukk", "Common.Views.Comments.textComments": "Kommentarer", "Common.Views.Comments.textHintAddComment": "Legg til kommentar", + "Common.Views.CopyWarningDialog.textTitle": "Handlinger for Kopier, Klipp ut og Lim inn", "Common.Views.ExternalDiagramEditor.textClose": "Lukk", "Common.Views.ExternalDiagramEditor.textTitle": "Diagramredigering", "Common.Views.ExternalMergeEditor.textClose": "Lukk", @@ -52,8 +66,10 @@ "Common.Views.Header.tipViewUsers": "Vis brukere og administrer tilgangsrettigheter", "Common.Views.Header.txtAccessRights": "Endre tilgangsrettigheter", "Common.Views.History.textCloseHistory": "Lukk loggen", + "Common.Views.History.textHide": "Lukk", "Common.Views.OpenDialog.closeButtonText": "Lukk filen", "Common.Views.OpenDialog.txtTitle": "Velg %1 alternativer", + "Common.Views.PasswordDialog.txtIncorrectPwd": "Bekreftet passord er ikke identisk", "Common.Views.Protection.hintPwd": "Endre eller slett passord", "Common.Views.Protection.hintSignature": "Legg til digital signatur eller signaturlinje", "Common.Views.Protection.txtAddPwd": "Angi passord", @@ -62,14 +78,17 @@ "Common.Views.Protection.txtInvisibleSignature": "Legg til digital signatur", "Common.Views.Protection.txtSignatureLine": "Legg til signaturlinje", "Common.Views.RenameDialog.textName": "Filnavn", + "Common.Views.ReviewChanges.mniSettings": "Innstillinger for sammenlikning", "Common.Views.ReviewChanges.strFast": "Hurtig", "Common.Views.ReviewChanges.tipAcceptCurrent": "Godta endringen", + "Common.Views.ReviewChanges.tipCompare": "Sammenlikn dette dokumentet med et annet", "Common.Views.ReviewChanges.txtAccept": "Godta", "Common.Views.ReviewChanges.txtAcceptAll": "Godta alle endringer", "Common.Views.ReviewChanges.txtAcceptChanges": "Godta endringer", "Common.Views.ReviewChanges.txtAcceptCurrent": "Godta endringen", "Common.Views.ReviewChanges.txtChat": "Chat", "Common.Views.ReviewChanges.txtClose": "Lukk", + "Common.Views.ReviewChanges.txtCompare": "Sammenlikn", "Common.Views.ReviewChanges.txtFinal": "Alle endringer er godtatt", "Common.Views.ReviewChanges.txtMarkup": "Alle endringer (Redigering)", "Common.Views.ReviewChanges.txtOriginal": "Alle endringer er avvist (Forhåndsvisning)", @@ -85,6 +104,7 @@ "Common.Views.SignDialog.textCertificate": "Sertifikat", "Common.Views.SignDialog.textChange": "Endre", "Common.Views.SignSettingsDialog.textAllowComment": "Tillat at den som signerer legger til en kommentar i signaturdialogen", + "Common.Views.SymbolTableDialog.textCharacter": "Bokstav", "DE.Controllers.LeftMenu.leavePageText": "Alle ulagrede endringer i dokumentet vil ikke bli lagret.
Klikk \"Avbryt\" og så \"Lagre\" for å lagre endringene. Klikk \"OK\" for å forkaste alle ulagrede endringer.", "DE.Controllers.LeftMenu.notcriticalErrorTitle": "Advarsel", "DE.Controllers.Main.criticalErrorTitle": "Feil", @@ -92,15 +112,18 @@ "DE.Controllers.Main.errorEditingDownloadas": "Det oppstod en feil ved arbeid med dokumentet.
Bruk 'Last ned som...' opsjonen til å lagre en kopi av dokumentet til din lokale datamaskin.", "DE.Controllers.Main.errorEditingSaveas": "Det oppstod en feil ved arbeid med dokumentet.
Bruk opsjonen 'Lagre som...' til å lagre en kopi av dokumentet til din lokale datamaskin.", "DE.Controllers.Main.errorForceSave": "Det skjedde en feil ved lagring av filen. Bruk opsjonen 'Lagre som...' til å lagre filen til din lokale datamaskin eller prøv igjen senere.", + "DE.Controllers.Main.errorViewerDisconnect": "Mistet nettverksforbindelse. Du kan fremdeles se dokumentet,
men vil ikke kunne laste ned eller skrive det ut før nettverksforbindelsen er gjenopprettet og siden oppdatert.", "DE.Controllers.Main.notcriticalErrorTitle": "Advarsel", "DE.Controllers.Main.openErrorText": "Det har skjedd en feil ved åpning av filen", "DE.Controllers.Main.requestEditFailedTitleText": "Tilgang nektet", "DE.Controllers.Main.saveErrorText": "Det har skjedd en feil ved lagring av filen", "DE.Controllers.Main.textAnonymous": "Anonym", + "DE.Controllers.Main.textApplyAll": "Bruk på alle likninger", "DE.Controllers.Main.textBuyNow": "Besøk webside", "DE.Controllers.Main.textChangesSaved": "Alle endringer er lagret", "DE.Controllers.Main.textClose": "Lukk", "DE.Controllers.Main.textCloseTip": "Klikk for å lukke tipset", + "DE.Controllers.Main.textContactUs": "Kontakt salgsavdelingen", "DE.Controllers.Main.txtAbove": "over", "DE.Controllers.Main.txtBasicShapes": "Basisformer", "DE.Controllers.Main.txtBelow": "under", @@ -108,11 +131,30 @@ "DE.Controllers.Main.txtButtons": "Knapper", "DE.Controllers.Main.txtCallouts": "Henvisninger", "DE.Controllers.Main.txtCharts": "Diagram", + "DE.Controllers.Main.txtChoose": "Velg et punkt.", "DE.Controllers.Main.txtCurrentDocument": "Gjeldende dokument", "DE.Controllers.Main.txtDiagramTitle": "Diagramtittel", "DE.Controllers.Main.txtEvenPage": "Partallside", "DE.Controllers.Main.txtFiguredArrows": "Pilfigurer", "DE.Controllers.Main.txtSection": "-Seksjon", + "DE.Controllers.Main.txtShape_actionButtonBackPrevious": "Tilbake- eller forrigeknapp", + "DE.Controllers.Main.txtShape_actionButtonBeginning": "Startknapp", + "DE.Controllers.Main.txtShape_actionButtonBlank": "Tom knapp", + "DE.Controllers.Main.txtShape_arc": "Bue", + "DE.Controllers.Main.txtShape_bentArrow": "Buet pil", + "DE.Controllers.Main.txtShape_bentUpArrow": "Oppadbuet pil", + "DE.Controllers.Main.txtShape_bevel": "Skrå", + "DE.Controllers.Main.txtShape_can": "Kan", + "DE.Controllers.Main.txtShape_chevron": "Vinkel", + "DE.Controllers.Main.txtShape_circularArrow": "Sirkulær pil", + "DE.Controllers.Main.txtShape_cloud": "Sky", + "DE.Controllers.Main.txtShape_corner": "Hjørne", + "DE.Controllers.Main.txtShape_cube": "Kube", + "DE.Controllers.Main.txtShape_diagStripe": "Diagonal linje", + "DE.Controllers.Main.txtShape_diamond": "Diamant", + "DE.Controllers.Main.txtShape_lineWithArrow": "Pil", + "DE.Controllers.Main.txtShape_spline": "Kurve", + "DE.Controllers.Main.txtStyle_Caption": "Bildetekst", "DE.Controllers.Main.txtTableOfContents": "Innholdsfortegnelse", "DE.Controllers.Navigation.txtBeginning": "Starten av dokumentet", "DE.Controllers.Toolbar.notcriticalErrorTitle": "Advarsel", @@ -148,11 +190,21 @@ "DE.Controllers.Toolbar.txtBracket_Square_OpenOpen": "Klammeparantes", "DE.Controllers.Toolbar.txtBracket_SquareDouble": "Klammeparantes", "DE.Controllers.Toolbar.txtBracket_UppLim": "Klammeparantes", + "DE.Controllers.Toolbar.txtFractionDifferential_1": "Differensial", + "DE.Controllers.Toolbar.txtFractionDifferential_2": "Differensial", + "DE.Controllers.Toolbar.txtFractionDifferential_3": "Differensial", + "DE.Controllers.Toolbar.txtFractionDifferential_4": "Differensial", "DE.Controllers.Toolbar.txtFunction_Cos": "cosinus funksjon", "DE.Controllers.Toolbar.txtFunction_Cot": "Cotangens funksjon", + "DE.Controllers.Toolbar.txtFunction_Custom_2": "Cos 2x", "DE.Controllers.Toolbar.txtIntegralDouble": "Dobbeltintegral", "DE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup": "Dobbeltintegral", "DE.Controllers.Toolbar.txtIntegralDoubleSubSup": "Dobbeltintegral", + "DE.Controllers.Toolbar.txtLargeOperator_CoProd": "Samprodukt", + "DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSub": "Samprodukt", + "DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup": "Samprodukt", + "DE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub": "Samprodukt", + "DE.Controllers.Toolbar.txtLargeOperator_CoProd_SubSup": "Samprodukt", "DE.Controllers.Toolbar.txtLimitLog_Ln": "Naturlig logaritme", "DE.Controllers.Toolbar.txtMatrix_1_2": "1x2 tom matrise", "DE.Controllers.Toolbar.txtMatrix_1_3": "1x3 tom matrise", @@ -171,6 +223,7 @@ "DE.Controllers.Toolbar.txtOperator_DeltaEquals": "Delta er lik", "DE.Controllers.Toolbar.txtRadicalRoot_3": "Kubikkrot", "DE.Controllers.Toolbar.txtSymbol_about": "Omtrent", + "DE.Controllers.Toolbar.txtSymbol_additional": "Komplement", "DE.Controllers.Toolbar.txtSymbol_aleph": "Alef", "DE.Controllers.Toolbar.txtSymbol_alpha": "Alfa", "DE.Controllers.Toolbar.txtSymbol_approx": "Nesten lik", @@ -190,18 +243,45 @@ "DE.Views.BookmarksDialog.textAdd": "Legg til", "DE.Views.BookmarksDialog.textBookmarkName": "Bokmerk navnet", "DE.Views.BookmarksDialog.textClose": "Lukk", + "DE.Views.BookmarksDialog.textCopy": "Kopier", "DE.Views.BookmarksDialog.textDelete": "Slett", "DE.Views.BookmarksDialog.textTitle": "Bokmerker", "DE.Views.BookmarksDialog.txtInvalidName": "Bokmerkets navn kan bare inneholde bokstaver, tall og streker, og skal begynne med bokstaven", + "DE.Views.CaptionDialog.textAdd": "Legg til merkelapp", + "DE.Views.CaptionDialog.textAfter": "Etter", + "DE.Views.CaptionDialog.textBefore": "Før", + "DE.Views.CaptionDialog.textCaption": "Bildetekst", + "DE.Views.CaptionDialog.textChapter": "Kapittel starter med stil", + "DE.Views.CaptionDialog.textColon": "kolon", + "DE.Views.CaptionDialog.textDash": "tankestrek", + "DE.Views.CaptionDialog.textDelete": "Slett merkelapp", + "DE.Views.CellsAddDialog.textCol": "Kolonner", + "DE.Views.CellsAddDialog.textDown": "Under markøren", + "DE.Views.CellsAddDialog.textUp": "Over markøren", + "DE.Views.CellsRemoveDialog.textCol": "Slett hele kolonnen", + "DE.Views.CellsRemoveDialog.textRow": "Slett raden", + "DE.Views.CellsRemoveDialog.textTitle": "Slett celler", "DE.Views.ChartSettings.textChartType": "Endre diagramtype", "DE.Views.ChartSettings.textEditData": "Rediger data", "DE.Views.ChartSettings.textOriginalSize": "Standard størrelse", "DE.Views.ChartSettings.txtBehind": "Bak", "DE.Views.ChartSettings.txtInFront": "Foran", "DE.Views.ChartSettings.txtTitle": "Diagram", + "DE.Views.CompareSettingsDialog.textChar": "Bokstavnivå", + "DE.Views.CompareSettingsDialog.textTitle": "Innstillinger for sammenlikning", + "DE.Views.ControlSettingsDialog.textAdd": "Legg til", "DE.Views.ControlSettingsDialog.textAppearance": "Utseende", "DE.Views.ControlSettingsDialog.textApplyAll": "Bruk på alle", "DE.Views.ControlSettingsDialog.textBox": "Avgrensningsboks", + "DE.Views.ControlSettingsDialog.textCheckbox": "Avkrysningsboks", + "DE.Views.ControlSettingsDialog.textColor": "Farge", + "DE.Views.ControlSettingsDialog.textDate": "Datoformat", + "DE.Views.ControlSettingsDialog.textDelete": "Slett", + "DE.Views.ControlSettingsDialog.textTitle": "Innstillinger for innholdskontroll", + "DE.Views.ControlSettingsDialog.tipChange": "Endre symbol", + "DE.Views.ControlSettingsDialog.txtLockDelete": "Innholdskontroll kan ikke slettes", + "DE.Views.CustomColumnsDialog.textTitle": "Kolonner", + "DE.Views.DateTimeDialog.txtTitle": "Dato og tidspunkt", "DE.Views.DocumentHolder.aboveText": "Over", "DE.Views.DocumentHolder.addCommentText": "Tilføy kommentar", "DE.Views.DocumentHolder.advancedTableText": "Avanserte tabell-innstillinger", @@ -230,10 +310,14 @@ "DE.Views.DocumentHolder.textArrange": "Ordne", "DE.Views.DocumentHolder.textArrangeForward": "Flytt fremover", "DE.Views.DocumentHolder.textArrangeFront": "Plasser fremst", + "DE.Views.DocumentHolder.textCells": "Celler", + "DE.Views.DocumentHolder.textContentControls": "Innholdskontroll", "DE.Views.DocumentHolder.textContinueNumbering": "Fortsett nummerering", "DE.Views.DocumentHolder.textCopy": "Kopier", + "DE.Views.DocumentHolder.textCrop": "Beskjære", "DE.Views.DocumentHolder.textCut": "Klipp ut", "DE.Views.DocumentHolder.textDistributeRows": "Fordel rader", + "DE.Views.DocumentHolder.textEditControls": "Innstillinger for innholdskontroll", "DE.Views.DocumentHolder.textEditWrapBoundary": "Rediger ombrytningsgrense", "DE.Views.DocumentHolder.textShapeAlignBottom": "Still opp bunn", "DE.Views.DocumentHolder.textShapeAlignCenter": "Still opp senter", @@ -243,6 +327,7 @@ "DE.Views.DocumentHolder.textShapeAlignTop": "Still opp topp", "DE.Views.DocumentHolder.textTOC": "Innholdsfortegnelse", "DE.Views.DocumentHolder.textTOCSettings": "Innstillinger for innholdsfortegnelsen", + "DE.Views.DocumentHolder.toDictionaryText": "Legg til ordbok", "DE.Views.DocumentHolder.txtAddBottom": "Legg til bunnramme", "DE.Views.DocumentHolder.txtAddFractionBar": "Legg til brøkstrek", "DE.Views.DocumentHolder.txtAddHor": "Legg til horisontal linje", @@ -263,6 +348,7 @@ "DE.Views.DocumentHolder.txtDeleteCharsAndSeparators": "Slett de omsluttende tegnene og seperatorer", "DE.Views.DocumentHolder.txtDeleteEq": "Slett ligning", "DE.Views.DocumentHolder.txtDeleteGroupChar": "Slett bokstav", + "DE.Views.DocumentHolder.txtEmpty": "(Tomt)", "DE.Views.DocumentHolder.txtFractionLinear": "Endre til lineær brøk", "DE.Views.DocumentHolder.txtFractionSkewed": "Endre til skjev brøk", "DE.Views.DocumentHolder.txtFractionStacked": "Endre til stablet brøk", @@ -285,15 +371,21 @@ "DE.Views.DropcapSettingsAdvanced.textColumn": "Kolonne", "DE.Views.DropcapSettingsAdvanced.textExact": "Nøyaktig", "DE.Views.DropcapSettingsAdvanced.textLeft": "Venstre", + "DE.Views.EditListItemDialog.textValueError": "Det finnes allerede en gjenstand med samme verdi.", "DE.Views.FileMenu.btnCloseMenuCaption": "Lukk menyen", "DE.Views.FileMenu.btnCreateNewCaption": "Opprett ny", "DE.Views.FileMenu.btnReturnCaption": "Tilbake til dokument", "DE.Views.FileMenu.btnRightsCaption": "Tilgangsrettigheter...", "DE.Views.FileMenu.btnSettingsCaption": "Avanserte innstillinger...", "DE.Views.FileMenu.btnToEditCaption": "Rediger dokument", + "DE.Views.FileMenuPanels.DocumentInfo.okButtonText": "Bruk", + "DE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Legg til forfatter", + "DE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Legg til tekst", "DE.Views.FileMenuPanels.DocumentInfo.txtAppName": "Applikasjon", "DE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Forfatter", "DE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Endre tilgangsrettigheter", + "DE.Views.FileMenuPanels.DocumentInfo.txtComment": "Kommentar", + "DE.Views.FileMenuPanels.DocumentInfo.txtCreated": "Opprettet", "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Symboler", "DE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Endre tilgangsrettigheter", "DE.Views.FileMenuPanels.ProtectDoc.strSignature": "Med signatur", @@ -302,6 +394,7 @@ "DE.Views.FileMenuPanels.Settings.okButtonText": "Bruk", "DE.Views.FileMenuPanels.Settings.strFast": "Hurtig", "DE.Views.FileMenuPanels.Settings.strForcesave": "Lagre alltid til tjeneren (eller lagre til tjeneren når dokumentet lukkes)", + "DE.Views.FileMenuPanels.Settings.strPaste": "Klipp ut, kopier og lim inn", "DE.Views.FileMenuPanels.Settings.strZoom": "Standard zoom-verdi", "DE.Views.FileMenuPanels.Settings.text10Minutes": "Hvert 10. minutt", "DE.Views.FileMenuPanels.Settings.text30Minutes": "Hvert 30. minutt", @@ -310,21 +403,31 @@ "DE.Views.FileMenuPanels.Settings.textAlignGuides": "Hjelpelinjer", "DE.Views.FileMenuPanels.Settings.textAutoRecover": "Automatisk gjenoppretting", "DE.Views.FileMenuPanels.Settings.textAutoSave": "Autolagre", + "DE.Views.FileMenuPanels.Settings.textCompatible": "Kompatibilitet", "DE.Views.FileMenuPanels.Settings.textDisabled": "Deaktivert", "DE.Views.FileMenuPanels.Settings.textMinute": "Hvert minutt", "DE.Views.FileMenuPanels.Settings.txtAll": "Vis alt", + "DE.Views.FileMenuPanels.Settings.txtAutoCorrect": "Alternativer for autokorrektur...", "DE.Views.FileMenuPanels.Settings.txtCm": "Centimeter", "DE.Views.FileMenuPanels.Settings.txtInch": "Tomme", "DE.Views.FileMenuPanels.Settings.txtInput": "Alternativ inndata", "DE.Views.FileMenuPanels.Settings.txtMac": "som OS X", + "DE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "Aktiver alle makroer uten varsling", + "DE.Views.FileMenuPanels.Settings.txtStopMacros": "Deaktiver alt", + "DE.Views.FileMenuPanels.Settings.txtStopMacrosDesc": "Deaktiver alle makroer uten varsling", + "DE.Views.FileMenuPanels.Settings.txtWarnMacros": "Vis varsling", + "DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Deaktiver alle makroer med et varsel", "DE.Views.FileMenuPanels.Settings.txtWin": "som Windows", "DE.Views.HeaderFooterSettings.textBottomCenter": "Bunn senter", "DE.Views.HeaderFooterSettings.textBottomLeft": "Margin bunn", "DE.Views.HeaderFooterSettings.textBottomPage": "Nederst på siden", "DE.Views.HeaderFooterSettings.textBottomRight": "Bunn høyre", + "DE.Views.HeaderFooterSettings.textDiffFirst": "Ulik førsteside", + "DE.Views.HeaderFooterSettings.textDiffOdd": "Ulike odde- og parsider", "DE.Views.HyperlinkSettingsDialog.textDisplay": "Vis", "DE.Views.HyperlinkSettingsDialog.txtBeginning": "Starten av dokumentet", "DE.Views.HyperlinkSettingsDialog.txtBookmarks": "Bokmerker", + "DE.Views.ImageSettings.textCrop": "Beskjære", "DE.Views.ImageSettings.textEdit": "Rediger", "DE.Views.ImageSettings.textEditObject": "Rediger objekt", "DE.Views.ImageSettings.textOriginalSize": "Standard størrelse", @@ -336,6 +439,7 @@ "DE.Views.ImageSettingsAdvanced.textAltDescription": "Beskrivelse", "DE.Views.ImageSettingsAdvanced.textAngle": "Vinkel", "DE.Views.ImageSettingsAdvanced.textArrows": "Piler", + "DE.Views.ImageSettingsAdvanced.textAutofit": "Autotilpass", "DE.Views.ImageSettingsAdvanced.textBeginSize": "Startstørrelse", "DE.Views.ImageSettingsAdvanced.textBeginStyle": "Startstil", "DE.Views.ImageSettingsAdvanced.textBelow": "under", @@ -346,6 +450,7 @@ "DE.Views.ImageSettingsAdvanced.textCenter": "Senter", "DE.Views.ImageSettingsAdvanced.textCharacter": "Tegn", "DE.Views.ImageSettingsAdvanced.textColumn": "Kolonne", + "DE.Views.ImageSettingsAdvanced.textKeepRatio": "Konstant størrelsesforhold", "DE.Views.ImageSettingsAdvanced.textLeft": "Venstre", "DE.Views.ImageSettingsAdvanced.textOriginalSize": "Standard størrelse", "DE.Views.ImageSettingsAdvanced.textOverlap": "Tillat overlapping", @@ -360,10 +465,16 @@ "DE.Views.LeftMenu.tipSupport": "Tilbakemelding og støtte", "DE.Views.LeftMenu.txtDeveloper": "UTVIKLERMODUS", "DE.Views.Links.capBtnBookmarks": "Lag bokmerke", + "DE.Views.Links.capBtnCaption": "Bildetekst", "DE.Views.Links.capBtnInsContents": "Innholdsfortegnelse", "DE.Views.Links.mniDelFootnote": "Slett alle fotnoter", "DE.Views.Links.tipBookmarks": "Opprett et bokmerke", "DE.Views.Links.tipInsertHyperlink": "Tilføy lenke", + "DE.Views.ListSettingsDialog.textAuto": "Automatisk", + "DE.Views.ListSettingsDialog.textCenter": "Senter", + "DE.Views.ListSettingsDialog.txtAlign": "Justering", + "DE.Views.ListSettingsDialog.txtBullet": "Punkt", + "DE.Views.ListSettingsDialog.txtColor": "Farge", "DE.Views.MailMergeEmailDlg.textAttachDocx": "Legg ved som DOCX", "DE.Views.MailMergeEmailDlg.textAttachPdf": "Legg ved som PDF", "DE.Views.MailMergeEmailDlg.textFileName": "Filnavn", @@ -375,6 +486,7 @@ "DE.Views.MailMergeSettings.textEditData": "Rediger mottagerliste", "DE.Views.MailMergeSettings.textSendMsg": "Alle meldinger er klargjort og vil bli sendt innen kort tid.
Dette vil avhenge av hastigheten på din epost-tjener.
Du kan fortsette å jobbe med dokumentet eller lukke det. Når oppgaven er fullført vil du få en melding om dette på din registrerte epost-adresse.", "DE.Views.MailMergeSettings.txtFromToError": "\"Fra\"-verdien må være mindre enn \"Til\"-verdien", + "DE.Views.Navigation.txtCollapse": "Lukk alt", "DE.Views.Navigation.txtDemote": "Degrader", "DE.Views.NoteSettingsDialog.textApply": "Bruk", "DE.Views.NoteSettingsDialog.textApplyTo": "Bruk endringer på", @@ -397,21 +509,30 @@ "DE.Views.ParagraphSettingsAdvanced.strAllCaps": "Store bokstaver", "DE.Views.ParagraphSettingsAdvanced.strBorders": "Linjer & Fyll", "DE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Venstre", + "DE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter": "Etter", + "DE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore": "Før", "DE.Views.ParagraphSettingsAdvanced.textAlign": "Oppstilling", + "DE.Views.ParagraphSettingsAdvanced.textAtLeast": "Minst", "DE.Views.ParagraphSettingsAdvanced.textBackColor": "Bakgrunnsfarge", + "DE.Views.ParagraphSettingsAdvanced.textBodyText": "Grunnleggende tekst", "DE.Views.ParagraphSettingsAdvanced.textBorderColor": "Linjefarge", + "DE.Views.ParagraphSettingsAdvanced.textBorderDesc": "Trykk på diagram eller bruk knappene for å velge kanter og bruke valgt stil på dem", "DE.Views.ParagraphSettingsAdvanced.textBorderWidth": "Linjestørrelse", "DE.Views.ParagraphSettingsAdvanced.textBottom": "Bunn", + "DE.Views.ParagraphSettingsAdvanced.textCentered": "Sentrert", "DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Tegnavstand", "DE.Views.ParagraphSettingsAdvanced.textDefault": "Standard fane", "DE.Views.ParagraphSettingsAdvanced.textLeft": "Venstre", + "DE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(ingen)", "DE.Views.ParagraphSettingsAdvanced.textTabCenter": "Senter", "DE.Views.ParagraphSettingsAdvanced.textTabLeft": "Venstre", "DE.Views.ParagraphSettingsAdvanced.textTabPosition": "Tabulator posisjon", + "DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Auto", "DE.Views.RightMenu.txtChartSettings": "Diagram innstillinger", "DE.Views.ShapeSettings.strBackground": "Bakgrunnsfarge", "DE.Views.ShapeSettings.strChange": "Endre autofigur", "DE.Views.ShapeSettings.strColor": "Farge", + "DE.Views.ShapeSettings.textColor": "Fyllfarge", "DE.Views.ShapeSettings.textDirection": "Retning", "DE.Views.ShapeSettings.txtBehind": "Bak", "DE.Views.ShapeSettings.txtBrownPaper": "Gråpapir", @@ -429,12 +550,17 @@ "DE.Views.TableSettings.deleteColumnText": "Slett kolonne", "DE.Views.TableSettings.deleteRowText": "Slett rad", "DE.Views.TableSettings.deleteTableText": "Slett tabell", + "DE.Views.TableSettings.textAddFormula": "Legg til formel", "DE.Views.TableSettings.textBackColor": "Bakgrunnsfarge", "DE.Views.TableSettings.textBanded": "Bundet", "DE.Views.TableSettings.textBorderColor": "Farge", "DE.Views.TableSettings.textBorders": "Linjestil", "DE.Views.TableSettings.textCellSize": "Cellestørrelse", + "DE.Views.TableSettings.textColumns": "Kolonner", "DE.Views.TableSettings.textDistributeRows": "Fordel rader", + "DE.Views.TableSettings.txtTable_Accent": "Lesetegn", + "DE.Views.TableSettings.txtTable_Colorful": "Fargerik", + "DE.Views.TableSettings.txtTable_Dark": "Mørk", "DE.Views.TableSettingsAdvanced.textAlign": "Oppstilling", "DE.Views.TableSettingsAdvanced.textAlignment": "Oppstilling", "DE.Views.TableSettingsAdvanced.textAllowSpacing": "Tillat avstand mellom cellene", @@ -444,6 +570,7 @@ "DE.Views.TableSettingsAdvanced.textBackColor": "Bakgrunnsfarge", "DE.Views.TableSettingsAdvanced.textBelow": "under", "DE.Views.TableSettingsAdvanced.textBorderColor": "Linjefarge", + "DE.Views.TableSettingsAdvanced.textBorderDesc": "Trykk på diagram eller bruk knappene for å velge kanter og bruke valgt stil på dem", "DE.Views.TableSettingsAdvanced.textBordersBackgroung": "Linjer & Bakgrunn", "DE.Views.TableSettingsAdvanced.textBorderWidth": "Linjestørrelse", "DE.Views.TableSettingsAdvanced.textBottom": "Bunn", @@ -463,9 +590,15 @@ "DE.Views.TableSettingsAdvanced.txtCm": "Centimeter", "DE.Views.TableSettingsAdvanced.txtInch": "Tomme", "DE.Views.TextArtSettings.strColor": "Farge", + "DE.Views.TextArtSettings.textColor": "Fyllfarge", "DE.Views.TextArtSettings.textDirection": "Retning", + "DE.Views.Toolbar.capBtnAddComment": "Legg til kommentar", "DE.Views.Toolbar.capBtnBlankPage": "Tom side", + "DE.Views.Toolbar.capBtnColumns": "Kolonner", + "DE.Views.Toolbar.capBtnComment": "Kommentar", + "DE.Views.Toolbar.capBtnDateTime": "Dato og tidspunkt", "DE.Views.Toolbar.capBtnInsChart": "Diagram", + "DE.Views.Toolbar.capBtnInsControls": "Innholdskontroller", "DE.Views.Toolbar.capBtnInsImage": "Bilde", "DE.Views.Toolbar.capBtnInsPagebreak": "Brudd", "DE.Views.Toolbar.capBtnInsTable": "Tabell", @@ -476,16 +609,20 @@ "DE.Views.Toolbar.textAutoColor": "Automatisk", "DE.Views.Toolbar.textBold": "Fet", "DE.Views.Toolbar.textBottom": "Bunn:", + "DE.Views.Toolbar.textCheckboxControl": "Avkrysningsboks", "DE.Views.Toolbar.textColumnsCustom": "Egendefinerte kolonner", "DE.Views.Toolbar.textColumnsLeft": "Venstre", + "DE.Views.Toolbar.textContPage": "Sammenhengende side", + "DE.Views.Toolbar.textDateControl": "Dato", + "DE.Views.Toolbar.textEditWatermark": "Egendefinert vannmerke", "DE.Views.Toolbar.textEvenPage": "Partallside", "DE.Views.Toolbar.textMarginsNarrow": "Smal", "DE.Views.Toolbar.textNewColor": "Legg til ny egendefinert farge", - "Common.UI.ColorButton.textNewColor": "Legg til ny egendefinert farge", "DE.Views.Toolbar.textPageMarginsCustom": "Egendefinerte marginer", "DE.Views.Toolbar.textPageSizeCustom": "Egendefinert sidestørrelse", "DE.Views.Toolbar.textStyleMenuDelete": "Slett stil", "DE.Views.Toolbar.textStyleMenuDeleteAll": "Slett alle brukerdefinerte formateringer", + "DE.Views.Toolbar.textTabCollaboration": "Samarbeid", "DE.Views.Toolbar.textTabFile": "Fil", "DE.Views.Toolbar.textTitleError": "Feil", "DE.Views.Toolbar.tipAlignCenter": "Still opp senter", @@ -496,13 +633,22 @@ "DE.Views.Toolbar.tipClearStyle": "Fjern formatering", "DE.Views.Toolbar.tipColorSchemas": "Endre fargeoppsett", "DE.Views.Toolbar.tipCopy": "Kopier", + "DE.Views.Toolbar.tipCopyStyle": "Kopier stil", "DE.Views.Toolbar.tipDecFont": "Reduser skriftstørrelsen", "DE.Views.Toolbar.tipDecPrLeft": "Reduser innrykk", "DE.Views.Toolbar.tipEditHeader": "Rediger topptekst eller bunntekst", "DE.Views.Toolbar.tipImgAlign": "Still opp objekter", "DE.Views.Toolbar.tipMarkers": "Kulepunkt", "DE.Views.Toolbar.tipSendForward": "Flytt fremover", + "DE.Views.Toolbar.txtMarginAlign": "Juster i forhold til marg", + "DE.Views.Toolbar.txtObjectsAlign": "Juster valgte objekter", + "DE.Views.Toolbar.txtPageAlign": "Juster i forhold til side", "DE.Views.Toolbar.txtScheme3": "Spiss", "DE.Views.Toolbar.txtScheme4": "Aspekt", - "DE.Views.Toolbar.txtScheme5": "Borgerlig" + "DE.Views.Toolbar.txtScheme5": "Borgerlig", + "DE.Views.Toolbar.txtScheme6": "Mengde", + "DE.Views.WatermarkSettingsDialog.textAuto": "Auto", + "DE.Views.WatermarkSettingsDialog.textBold": "Fet", + "DE.Views.WatermarkSettingsDialog.textDiagonal": "Diagonal", + "DE.Views.WatermarkSettingsDialog.textNewColor": "Legg til ny egendefinert farge" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/nl.json b/apps/documenteditor/main/locale/nl.json index e4534da8f..c39c261fe 100644 --- a/apps/documenteditor/main/locale/nl.json +++ b/apps/documenteditor/main/locale/nl.json @@ -10,6 +10,7 @@ "Common.Controllers.ExternalMergeEditor.warningText": "Het object is gedeactiveerd omdat het wordt bewerkt door een andere gebruiker.", "Common.Controllers.ExternalMergeEditor.warningTitle": "Waarschuwing", "Common.Controllers.History.notcriticalErrorTitle": "Waarschuwing", + "Common.Controllers.ReviewChanges.textAcceptBeforeCompare": "Om documenten te vergelijken, worden alle bijgehouden wijzigingen als geaccepteerd beschouwd. Wil u doorgaan?", "Common.Controllers.ReviewChanges.textAtLeast": "ten minste", "Common.Controllers.ReviewChanges.textAuto": "automatisch", "Common.Controllers.ReviewChanges.textBaseline": "Basislijn", @@ -68,15 +69,52 @@ "Common.Controllers.ReviewChanges.textTableRowsDel": "Tabel Rijen verwijderd", "Common.Controllers.ReviewChanges.textTabs": "Tabs wijzigen", "Common.Controllers.ReviewChanges.textUnderline": "Onderstrepen", + "Common.Controllers.ReviewChanges.textUrl": "Plak een document-URL", "Common.Controllers.ReviewChanges.textWidow": "Zwevende regels voorkomen", "Common.define.chartData.textArea": "Vlak", "Common.define.chartData.textBar": "Staaf", + "Common.define.chartData.textCharts": "Grafieken", "Common.define.chartData.textColumn": "Kolom", "Common.define.chartData.textLine": "Lijn", "Common.define.chartData.textPie": "Cirkel", "Common.define.chartData.textPoint": "Spreiding", "Common.define.chartData.textStock": "Voorraad", "Common.define.chartData.textSurface": "Oppervlak", + "Common.Translation.warnFileLocked": "Het bestand wordt bewerkt in een andere app. U kunt doorgaan met bewerken en als kopie opslaan.", + "Common.UI.Calendar.textApril": "april", + "Common.UI.Calendar.textAugust": "augustus", + "Common.UI.Calendar.textDecember": "december", + "Common.UI.Calendar.textFebruary": "februari", + "Common.UI.Calendar.textJanuary": "januari", + "Common.UI.Calendar.textJuly": "juli", + "Common.UI.Calendar.textJune": "juni", + "Common.UI.Calendar.textMarch": "maart", + "Common.UI.Calendar.textMay": "mei", + "Common.UI.Calendar.textMonths": "Maand", + "Common.UI.Calendar.textNovember": "november", + "Common.UI.Calendar.textOctober": "oktober", + "Common.UI.Calendar.textSeptember": "september", + "Common.UI.Calendar.textShortApril": "apr", + "Common.UI.Calendar.textShortAugust": "aug", + "Common.UI.Calendar.textShortDecember": "dec", + "Common.UI.Calendar.textShortFebruary": "feb", + "Common.UI.Calendar.textShortFriday": "vri", + "Common.UI.Calendar.textShortJanuary": "jan", + "Common.UI.Calendar.textShortJuly": "jul", + "Common.UI.Calendar.textShortJune": "jun", + "Common.UI.Calendar.textShortMarch": "maa", + "Common.UI.Calendar.textShortMay": "mei", + "Common.UI.Calendar.textShortMonday": "ma", + "Common.UI.Calendar.textShortNovember": "nov", + "Common.UI.Calendar.textShortOctober": "okt", + "Common.UI.Calendar.textShortSaturday": "za", + "Common.UI.Calendar.textShortSeptember": "sep", + "Common.UI.Calendar.textShortSunday": "zo", + "Common.UI.Calendar.textShortThursday": "do", + "Common.UI.Calendar.textShortTuesday": "di", + "Common.UI.Calendar.textShortWednesday": "wo", + "Common.UI.Calendar.textYears": "jaren", + "Common.UI.ColorButton.textNewColor": "Nieuwe aangepaste kleur toevoegen", "Common.UI.ComboBorderSize.txtNoBorders": "Geen randen", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Geen randen", "Common.UI.ComboDataView.emptyComboText": "Geen stijlen", @@ -119,6 +157,10 @@ "Common.Views.About.txtPoweredBy": "Aangedreven door", "Common.Views.About.txtTel": "Tel.:", "Common.Views.About.txtVersion": "Versie", + "Common.Views.AutoCorrectDialog.textBy": "Door:", + "Common.Views.AutoCorrectDialog.textMathCorrect": "Wiskundige autocorrectie", + "Common.Views.AutoCorrectDialog.textReplace": "Vervangen:", + "Common.Views.AutoCorrectDialog.textTitle": "Automatische spellingscontrole", "Common.Views.Chat.textSend": "Verzenden", "Common.Views.Comments.textAdd": "Toevoegen", "Common.Views.Comments.textAddComment": "Opmerking toevoegen", @@ -167,6 +209,7 @@ "Common.Views.Header.tipRedo": "Opnieuw", "Common.Views.Header.tipSave": "Opslaan", "Common.Views.Header.tipUndo": "Ongedaan maken", + "Common.Views.Header.tipUndock": "Ontkoppel in een apart venster", "Common.Views.Header.tipViewSettings": "Weergave-instellingen", "Common.Views.Header.tipViewUsers": "Gebruikers weergeven en toegangsrechten voor documenten beheren", "Common.Views.Header.txtAccessRights": "Toegangsrechten wijzigen", @@ -177,6 +220,7 @@ "Common.Views.History.textRestore": "Herstellen", "Common.Views.History.textShow": "Uitvouwen", "Common.Views.History.textShowAll": "Details wijzigingen tonen", + "Common.Views.History.textVer": "ver.", "Common.Views.ImageFromUrlDialog.textUrl": "URL van een afbeelding plakken:", "Common.Views.ImageFromUrlDialog.txtEmpty": "Dit veld is vereist", "Common.Views.ImageFromUrlDialog.txtNotUrl": "Dit veld moet een URL in de notatie \"http://www.voorbeeld.com\" bevatten", @@ -193,6 +237,7 @@ "Common.Views.OpenDialog.txtIncorrectPwd": "Wachtwoord is niet juist", "Common.Views.OpenDialog.txtPassword": "Wachtwoord", "Common.Views.OpenDialog.txtPreview": "Voorbeeld", + "Common.Views.OpenDialog.txtProtected": "Nadat u het wachtwoord heeft ingevoerd en het bestand heeft geopend, wordt het huidige wachtwoord voor het bestand gereset.", "Common.Views.OpenDialog.txtTitle": "Opties voor %1 kiezen", "Common.Views.OpenDialog.txtTitleProtected": "Beschermd bestand", "Common.Views.PasswordDialog.txtDescription": "Pas een wachtwoord toe om dit document te beveiligen", @@ -220,12 +265,19 @@ "Common.Views.RenameDialog.txtInvalidName": "De bestandsnaam mag geen van de volgende tekens bevatten:", "Common.Views.ReviewChanges.hintNext": "Naar Volgende Wijziging", "Common.Views.ReviewChanges.hintPrev": "Naar Vorige Wijziging", + "Common.Views.ReviewChanges.mniFromFile": "Document van bestand", + "Common.Views.ReviewChanges.mniFromStorage": "Document van opslag", + "Common.Views.ReviewChanges.mniFromUrl": "Document van URL", + "Common.Views.ReviewChanges.mniSettings": "Vergelijking instellingen", "Common.Views.ReviewChanges.strFast": "Snel", "Common.Views.ReviewChanges.strFastDesc": "Real-time samenwerken. Alle wijzigingen worden automatisch opgeslagen.", "Common.Views.ReviewChanges.strStrict": "Strikt", "Common.Views.ReviewChanges.strStrictDesc": "Gebruik de 'Opslaan' knop om de wijzigingen van u en andere te synchroniseren.", "Common.Views.ReviewChanges.tipAcceptCurrent": "Huidige wijziging accepteren", "Common.Views.ReviewChanges.tipCoAuthMode": "Zet samenwerkings modus", + "Common.Views.ReviewChanges.tipCommentRem": "Alle opmerkingen verwijderen", + "Common.Views.ReviewChanges.tipCommentRemCurrent": "Verwijder huidige opmerking", + "Common.Views.ReviewChanges.tipCompare": "Vergelijk huidig document met een ander document.", "Common.Views.ReviewChanges.tipHistory": "Toon versie geschiedenis", "Common.Views.ReviewChanges.tipRejectCurrent": "Huidige wijziging afwijzen", "Common.Views.ReviewChanges.tipReview": "Wijzigingen Bijhouden", @@ -240,6 +292,12 @@ "Common.Views.ReviewChanges.txtChat": "Chat", "Common.Views.ReviewChanges.txtClose": "Sluiten", "Common.Views.ReviewChanges.txtCoAuthMode": "Modus Gezamenlijk bewerken", + "Common.Views.ReviewChanges.txtCommentRemAll": "Alle commentaar verwijderen", + "Common.Views.ReviewChanges.txtCommentRemCurrent": "Verwijder huidige opmerking", + "Common.Views.ReviewChanges.txtCommentRemMy": "Verwijder al mijn commentaar", + "Common.Views.ReviewChanges.txtCommentRemMyCurrent": "Verwijder mijn huidige opmerkingen", + "Common.Views.ReviewChanges.txtCommentRemove": "Verwijderen", + "Common.Views.ReviewChanges.txtCompare": "Vergelijken", "Common.Views.ReviewChanges.txtDocLang": "Taal", "Common.Views.ReviewChanges.txtFinal": "Alle veranderingen geaccepteerd (Voorbeeld)", "Common.Views.ReviewChanges.txtFinalCap": "Einde", @@ -272,6 +330,9 @@ "Common.Views.ReviewPopover.textCancel": "Annuleren", "Common.Views.ReviewPopover.textClose": "Sluiten", "Common.Views.ReviewPopover.textEdit": "OK", + "Common.Views.ReviewPopover.textFollowMove": "Track verplaatsen", + "Common.Views.ReviewPopover.textMention": "+vermelding zal de gebruiker toegang geven tot het document en een email sturen", + "Common.Views.ReviewPopover.textMentionNotify": "+genoemde zal de gebruiker via email melden", "Common.Views.ReviewPopover.textOpenAgain": "Opnieuw openen", "Common.Views.ReviewPopover.textReply": "Beantwoorden", "Common.Views.ReviewPopover.textResolve": "Oplossen", @@ -302,6 +363,33 @@ "Common.Views.SignSettingsDialog.textShowDate": "Toon signeer datum in handtekening regel", "Common.Views.SignSettingsDialog.textTitle": "Handtekening opzet", "Common.Views.SignSettingsDialog.txtEmpty": "Dit veld is vereist", + "Common.Views.SymbolTableDialog.textCharacter": "Character", + "Common.Views.SymbolTableDialog.textCode": "Unicode HEX-waarde", + "Common.Views.SymbolTableDialog.textCopyright": "Copyright teken", + "Common.Views.SymbolTableDialog.textDCQuote": "Aanhalingsteken sluiten", + "Common.Views.SymbolTableDialog.textDOQuote": "Dubbel aanhalingsteken openen", + "Common.Views.SymbolTableDialog.textEllipsis": "Horizontale ellips", + "Common.Views.SymbolTableDialog.textEmDash": "streep", + "Common.Views.SymbolTableDialog.textEmSpace": "Spatie", + "Common.Views.SymbolTableDialog.textEnDash": "Korte streep", + "Common.Views.SymbolTableDialog.textEnSpace": "Korte spatie", + "Common.Views.SymbolTableDialog.textFont": "Lettertype", + "Common.Views.SymbolTableDialog.textNBHyphen": "Niet-afbrekenden koppelteken", + "Common.Views.SymbolTableDialog.textNBSpace": "niet-afbrekende spatie", + "Common.Views.SymbolTableDialog.textPilcrow": "Alineateken", + "Common.Views.SymbolTableDialog.textQEmSpace": "1/4 Em spatie", + "Common.Views.SymbolTableDialog.textRange": "Bereik", + "Common.Views.SymbolTableDialog.textRecent": "Recent gebruikte symbolen", + "Common.Views.SymbolTableDialog.textRegistered": "Geregistreerd teken", + "Common.Views.SymbolTableDialog.textSCQuote": "Enkele aanhalingsteken sluiten", + "Common.Views.SymbolTableDialog.textSection": "Sectie Teken", + "Common.Views.SymbolTableDialog.textShortcut": "Sneltoets", + "Common.Views.SymbolTableDialog.textSHyphen": "Zacht koppelteken", + "Common.Views.SymbolTableDialog.textSOQuote": "Een enkel citaat openen", + "Common.Views.SymbolTableDialog.textSpecial": "speciale karakters", + "Common.Views.SymbolTableDialog.textSymbols": "Symbolen", + "Common.Views.SymbolTableDialog.textTitle": "symbool", + "Common.Views.SymbolTableDialog.textTradeMark": "Handelsmerk symbool", "DE.Controllers.LeftMenu.leavePageText": "Alle niet-opgeslagen wijzigingen in dit document zullen verloren gaan.
Klik op \"Annuleren\" en dan op \"Opslaan\" om de wijzigingen op te slaan. Klik \"OK\" om de wijzigingen te negeren.", "DE.Controllers.LeftMenu.newDocumentTitle": "Naamloos document", "DE.Controllers.LeftMenu.notcriticalErrorTitle": "Waarschuwing", @@ -310,8 +398,10 @@ "DE.Controllers.LeftMenu.textNoTextFound": "De gegevens waarnaar u zoekt, zijn niet gevonden. Pas uw zoekopties aan.", "DE.Controllers.LeftMenu.textReplaceSkipped": "De vervanging is uitgevoerd. {0} gevallen zijn overgeslagen.", "DE.Controllers.LeftMenu.textReplaceSuccess": "De zoekactie is uitgevoerd. Vervangen items: {0}", + "DE.Controllers.LeftMenu.txtCompatible": "Het document wordt opgeslagen in het nieuwe formaat. Het maakt het mogelijk om alle editor functies te gebruiken, maar kan de lay-out van het document beïnvloeden.
Gebruik de optie 'Compatibiliteit' van de geavanceerde instellingen als u de bestanden compatibel wilt maken met oudere MS Word-versies.", "DE.Controllers.LeftMenu.txtUntitled": "Naamloos", "DE.Controllers.LeftMenu.warnDownloadAs": "Als u doorgaat met opslaan in deze indeling, gaan alle kenmerken verloren en blijft alleen de tekst behouden.
Wilt u doorgaan?", + "DE.Controllers.LeftMenu.warnDownloadAsRTF": "Als u doorgaat met opslaan in deze indeling, kan een deel van de opmaak verloren gaan.
Weet u zeker dat u wilt doorgaan?", "DE.Controllers.Main.applyChangesTextText": "Wijzigingen worden geladen...", "DE.Controllers.Main.applyChangesTitleText": "Wijzigingen worden geladen", "DE.Controllers.Main.convertationTimeoutText": "Time-out voor conversie overschreden.", @@ -325,13 +415,18 @@ "DE.Controllers.Main.errorAccessDeny": "U probeert een actie uit te voeren waarvoor u geen rechten hebt.
Neem contact op met de beheerder van de documentserver.", "DE.Controllers.Main.errorBadImageUrl": "URL afbeelding is onjuist", "DE.Controllers.Main.errorCoAuthoringDisconnect": "Verbinding met server is verbroken. Het document kan op dit moment niet worden bewerkt.", + "DE.Controllers.Main.errorCompare": "De functie Documenten vergelijken is niet beschikbaar tijdens gezamenlijk bewerken.", "DE.Controllers.Main.errorConnectToServer": "Het document kan niet worden opgeslagen. Controleer de verbindingsinstellingen of neem contact op met de beheerder.
Wanneer u op de knop 'OK' klikt, wordt u gevraagd het document te downloaden.", "DE.Controllers.Main.errorDatabaseConnection": "Externe fout.
Fout in databaseverbinding. Neem contact op met Support als deze fout zich blijft voordoen.", + "DE.Controllers.Main.errorDataEncrypted": "Versleutelde aanpassingen zijn ontvangen, deze kunnen niet ontsleuteld worden.", "DE.Controllers.Main.errorDataRange": "Onjuist gegevensbereik.", "DE.Controllers.Main.errorDefaultMessage": "Foutcode: %1", + "DE.Controllers.Main.errorDirectUrl": "Controleer de link naar het document.
Deze link moet een directe link naar het bestand zijn om te downloaden.", "DE.Controllers.Main.errorEditingDownloadas": "Er is een fout ontstaan tijdens het werken met het document.
Gebruik de 'Opslaan als...' optie om het bestand als backup op te slaan op uw computer.", "DE.Controllers.Main.errorEditingSaveas": "Er is een fout ontstaan tijdens het werken met het document.
Gebruik de 'Opslaan als...' optie om het bestand als backup op te slaan op uw computer.", + "DE.Controllers.Main.errorEmailClient": "Er is geen e-mail client gevonden.", "DE.Controllers.Main.errorFilePassProtect": "Het bestand is beschermd met een wachtwoord en kan niet worden geopend.", + "DE.Controllers.Main.errorFileSizeExceed": "De bestandsgrootte overschrijdt de limiet die is ingesteld voor uw server.
Neem contact op met uw Document Server-beheerder voor details.", "DE.Controllers.Main.errorForceSave": "Er is een fout ontstaan bij het opslaan van het bestand. Gebruik de 'Download als' knop om het bestand op te slaan op uw computer of probeer het later nog eens.", "DE.Controllers.Main.errorKeyEncrypt": "Onbekende sleuteldescriptor", "DE.Controllers.Main.errorKeyExpire": "Sleuteldescriptor vervallen", @@ -346,6 +441,7 @@ "DE.Controllers.Main.errorToken": "Het token voor de documentbeveiliging heeft niet de juiste indeling.
Neem contact op met de beheerder van de documentserver.", "DE.Controllers.Main.errorTokenExpire": "Het token voor de documentbeveiliging is vervallen.
Neem contact op met de beheerder van de documentserver.", "DE.Controllers.Main.errorUpdateVersion": "De bestandsversie is gewijzigd. De pagina wordt opnieuw geladen.", + "DE.Controllers.Main.errorUpdateVersionOnDisconnect": "De internetverbinding is hersteld en de bestandsversie is gewijzigd.
Voordat u verder kunt werken, moet u het bestand downloaden of de inhoud kopiëren om er zeker van te zijn dat er niets verloren gaat, en deze pagina vervolgens opnieuw laden.", "DE.Controllers.Main.errorUserDrop": "Toegang tot het bestand is op dit moment niet mogelijk.", "DE.Controllers.Main.errorUsersExceed": "Het onder het prijsplan toegestane aantal gebruikers is overschreden", "DE.Controllers.Main.errorViewerDisconnect": "Verbinding is verbroken. U kunt het document nog wel bekijken,
maar u kunt het pas downloaden of afdrukken als de verbinding is hersteld.", @@ -383,15 +479,20 @@ "DE.Controllers.Main.splitMaxColsErrorText": "Het aantal kolommen moet kleiner zijn dan %1.", "DE.Controllers.Main.splitMaxRowsErrorText": "Het aantal rijen moet minder zijn dan %1.", "DE.Controllers.Main.textAnonymous": "Anoniem", + "DE.Controllers.Main.textApplyAll": "Toepassen op alle vergelijkingen", "DE.Controllers.Main.textBuyNow": "Website bezoeken", "DE.Controllers.Main.textChangesSaved": "Alle wijzigingen zijn opgeslagen", "DE.Controllers.Main.textClose": "Sluiten", "DE.Controllers.Main.textCloseTip": "Klik om de tip te sluiten", "DE.Controllers.Main.textContactUs": "Contact opnemen met Verkoop", + "DE.Controllers.Main.textConvertEquation": "Deze vergelijking is gemaakt met een oude versie van de vergelijkingseditor die niet langer wordt ondersteund. Om deze te bewerken, converteert u de vergelijking naar de Office Math ML-indeling.
Nu converteren?", "DE.Controllers.Main.textCustomLoader": "Volgens de voorwaarden van de licentie heeft u geen recht om de lader aan te passen.
Neem contact op met onze verkoopafdeling voor een offerte.", + "DE.Controllers.Main.textHasMacros": "Het bestand bevat automatische macro's.
Wilt u macro's uitvoeren?", + "DE.Controllers.Main.textLearnMore": "Meer informatie", "DE.Controllers.Main.textLoadingDocument": "Document wordt geladen", "DE.Controllers.Main.textNoLicenseTitle": "Only Office verbindingslimiet", "DE.Controllers.Main.textPaidFeature": "Betaalde optie", + "DE.Controllers.Main.textRemember": "Onthoud voorkeur", "DE.Controllers.Main.textShape": "Vorm", "DE.Controllers.Main.textStrict": "Strikte modus", "DE.Controllers.Main.textTryUndoRedo": "De functies Ongedaan maken/Opnieuw worden uitgeschakeld in de modus Snel gezamenlijk bewerken.
Klik op de knop 'Strikte modus' om over te schakelen naar de strikte modus voor gezamenlijk bewerken. U kunt het bestand dan zonder interferentie van andere gebruikers bewerken en uw wijzigingen verzenden wanneer u die opslaat. U kunt schakelen tussen de modi voor gezamenlijke bewerking via Geavanceerde instellingen van de editor.", @@ -404,57 +505,145 @@ "DE.Controllers.Main.txtBelow": "Onder", "DE.Controllers.Main.txtBookmarkError": "Fout! Bladwijzer is niet gedefinieerd.", "DE.Controllers.Main.txtButtons": "Knoppen", - "DE.Controllers.Main.txtCallouts": "Callouts", + "DE.Controllers.Main.txtCallouts": "Legenda", "DE.Controllers.Main.txtCharts": "Grafieken", + "DE.Controllers.Main.txtChoose": "Kies een item", "DE.Controllers.Main.txtCurrentDocument": "Huidig document", "DE.Controllers.Main.txtDiagramTitle": "Grafiektitel", "DE.Controllers.Main.txtEditingMode": "Bewerkmodus instellen...", + "DE.Controllers.Main.txtEndOfFormula": "Onverwacht einde van de formule", + "DE.Controllers.Main.txtEnterDate": "Vul een datum in", "DE.Controllers.Main.txtErrorLoadHistory": "Laden historie mislukt", "DE.Controllers.Main.txtEvenPage": "Even pagina", "DE.Controllers.Main.txtFiguredArrows": "Pijlvormen", "DE.Controllers.Main.txtFirstPage": "Eerste pagina", "DE.Controllers.Main.txtFooter": "Voettekst", + "DE.Controllers.Main.txtFormulaNotInTable": "De formule in niet in het tabel", "DE.Controllers.Main.txtHeader": "Koptekst", "DE.Controllers.Main.txtHyperlink": "Hyperlink", + "DE.Controllers.Main.txtIndTooLarge": "Index te groot", "DE.Controllers.Main.txtLines": "Lijnen", + "DE.Controllers.Main.txtMainDocOnly": "Fout! alleen hoofddocument", "DE.Controllers.Main.txtMath": "Wiskunde", + "DE.Controllers.Main.txtMissArg": "Missende parameter", + "DE.Controllers.Main.txtMissOperator": "Ontbrekende operator", "DE.Controllers.Main.txtNeedSynchronize": "U hebt updates", "DE.Controllers.Main.txtNoTableOfContents": "Geen regels voor de inhoudsopgave gevonden", + "DE.Controllers.Main.txtNoText": "Fout! Geen gespecificeerde tekst in document", + "DE.Controllers.Main.txtNotInTable": "Is niet in tabel", + "DE.Controllers.Main.txtNotValidBookmark": "Fout! Geen geldige zelf referentie voor bladwijzers.", "DE.Controllers.Main.txtOddPage": "Oneven pagina", "DE.Controllers.Main.txtOnPage": "op pagina", "DE.Controllers.Main.txtRectangles": "Rechthoeken", "DE.Controllers.Main.txtSameAsPrev": "Zelfde als vorige", "DE.Controllers.Main.txtSection": "-Sectie", "DE.Controllers.Main.txtSeries": "Serie", + "DE.Controllers.Main.txtShape_accentBorderCallout1": "Legenda met lijn 1 (Rand en Accentbalk)", + "DE.Controllers.Main.txtShape_accentBorderCallout2": "Legenda met lijn 2 (Rand met accentbalk)", + "DE.Controllers.Main.txtShape_accentBorderCallout3": "Legenda met lijn 3 (Rand met accent balk)", + "DE.Controllers.Main.txtShape_accentCallout1": "Legenda met lijn 1 (accentbalk)", + "DE.Controllers.Main.txtShape_accentCallout2": "Legenda met lijn 1(accentbalk)", + "DE.Controllers.Main.txtShape_accentCallout3": "Legenda met lijn 3 (accent balk)", "DE.Controllers.Main.txtShape_actionButtonBackPrevious": "Terug of vorige button", "DE.Controllers.Main.txtShape_actionButtonBeginning": "Begin button", "DE.Controllers.Main.txtShape_actionButtonBlank": "Lege button", "DE.Controllers.Main.txtShape_actionButtonDocument": "Document knop", + "DE.Controllers.Main.txtShape_actionButtonEnd": "Beëindigen", + "DE.Controllers.Main.txtShape_actionButtonForwardNext": "'Volgende' knop", "DE.Controllers.Main.txtShape_actionButtonHelp": "Help knop", "DE.Controllers.Main.txtShape_actionButtonHome": "Start knop", + "DE.Controllers.Main.txtShape_actionButtonInformation": "Informatieknop", "DE.Controllers.Main.txtShape_actionButtonMovie": "Film knop", + "DE.Controllers.Main.txtShape_actionButtonReturn": "Return-knop", + "DE.Controllers.Main.txtShape_actionButtonSound": "Geluid knop", "DE.Controllers.Main.txtShape_arc": "Boog", "DE.Controllers.Main.txtShape_bentArrow": "Gebogen pijl", + "DE.Controllers.Main.txtShape_bentConnector5": "Rechthoekige verbinding", + "DE.Controllers.Main.txtShape_bentConnector5WithArrow": "Rechthoekige verbinding met peil", + "DE.Controllers.Main.txtShape_bentConnector5WithTwoArrows": "Rechthoekige verbinding met dubbele peilen", "DE.Controllers.Main.txtShape_bentUpArrow": "Naar boven gebogen pijl", "DE.Controllers.Main.txtShape_bevel": "Schuin", "DE.Controllers.Main.txtShape_blockArc": "Blokboog", + "DE.Controllers.Main.txtShape_borderCallout1": "Legenda met lijn 1", + "DE.Controllers.Main.txtShape_borderCallout2": "Legenda met lijn 2", + "DE.Controllers.Main.txtShape_borderCallout3": "Legenda met lijn 3", + "DE.Controllers.Main.txtShape_bracePair": "Dubbele accolades", + "DE.Controllers.Main.txtShape_callout1": "Legenda met lijn 1 (Geen rand)", + "DE.Controllers.Main.txtShape_callout2": "Legenda met lijn 2 (geen rand)", + "DE.Controllers.Main.txtShape_callout3": "Legenda met lijn 3 (Geen rand)", + "DE.Controllers.Main.txtShape_can": "Emmer", "DE.Controllers.Main.txtShape_chevron": "Chevron", "DE.Controllers.Main.txtShape_chord": "Akkoord", "DE.Controllers.Main.txtShape_circularArrow": "Ronde pijl", "DE.Controllers.Main.txtShape_cloud": "Cloud", + "DE.Controllers.Main.txtShape_cloudCallout": "Cloud legenda", "DE.Controllers.Main.txtShape_corner": "Hoek", "DE.Controllers.Main.txtShape_cube": "Kubus", + "DE.Controllers.Main.txtShape_curvedConnector3": "Gebogen verbinding", + "DE.Controllers.Main.txtShape_curvedConnector3WithArrow": "Gebogen verbinding met pijlen", + "DE.Controllers.Main.txtShape_curvedConnector3WithTwoArrows": "Gebogen verbinding met dubbele peilen", + "DE.Controllers.Main.txtShape_curvedDownArrow": "Gebogen pijl naar beneden", + "DE.Controllers.Main.txtShape_curvedLeftArrow": "Gebogen pijl naar links", + "DE.Controllers.Main.txtShape_curvedRightArrow": "Gebogen pijl naar rechts", + "DE.Controllers.Main.txtShape_curvedUpArrow": "Gebogen pijl naar boven", + "DE.Controllers.Main.txtShape_decagon": "Tienhoek", + "DE.Controllers.Main.txtShape_diagStripe": "Diagonale Strepen", "DE.Controllers.Main.txtShape_diamond": "Diamant", + "DE.Controllers.Main.txtShape_dodecagon": "Twaalfhoek", "DE.Controllers.Main.txtShape_donut": "Donut", "DE.Controllers.Main.txtShape_doubleWave": "Dubbele golf", "DE.Controllers.Main.txtShape_downArrow": "Pijl omlaag", + "DE.Controllers.Main.txtShape_downArrowCallout": "Legenda met peil naar beneden", + "DE.Controllers.Main.txtShape_ellipse": "Ovaal", + "DE.Controllers.Main.txtShape_ellipseRibbon": "Gebogen lint naar beneden", + "DE.Controllers.Main.txtShape_ellipseRibbon2": "Gebogen lint naar boven", + "DE.Controllers.Main.txtShape_flowChartAlternateProcess": "Alternatief proces stroomdiagram ", + "DE.Controllers.Main.txtShape_flowChartCollate": "Stroomdiagram: Sorteren", + "DE.Controllers.Main.txtShape_flowChartConnector": "Stroomdiagram: Verbinden", + "DE.Controllers.Main.txtShape_flowChartDecision": "Stroomdiagram: Beslissingen", + "DE.Controllers.Main.txtShape_flowChartDelay": "Stroomdiagram: Vertraging", + "DE.Controllers.Main.txtShape_flowChartDisplay": "Stroomdiagram: Beeldscherm", + "DE.Controllers.Main.txtShape_flowChartDocument": "Stroomdiagram: Document", + "DE.Controllers.Main.txtShape_flowChartExtract": "Stroomdiagram: Extractie", + "DE.Controllers.Main.txtShape_flowChartInputOutput": "Stroomdiagram: gegevens", + "DE.Controllers.Main.txtShape_flowChartInternalStorage": "Stroomdiagram: Interne opslag", + "DE.Controllers.Main.txtShape_flowChartMagneticDisk": "Stroomdiagram: Magnetische schijf", + "DE.Controllers.Main.txtShape_flowChartMagneticDrum": "Stroomdiagram: Opslag met directe toegang", + "DE.Controllers.Main.txtShape_flowChartMagneticTape": "Stroomdiagram: Sequentiële toegang", + "DE.Controllers.Main.txtShape_flowChartManualInput": "Stroomdiagram: Handmatige invoer", + "DE.Controllers.Main.txtShape_flowChartManualOperation": "Stroomdiagram: Handmatige bewerking", + "DE.Controllers.Main.txtShape_flowChartMerge": "Stroomdiagram: Samenvoegen", + "DE.Controllers.Main.txtShape_flowChartMultidocument": "Stroomdiagram: Meerdere documenten", + "DE.Controllers.Main.txtShape_flowChartOffpageConnector": "Stroomdiagram: Verbinding naar andere pagina", + "DE.Controllers.Main.txtShape_flowChartOnlineStorage": "Stroomdiagram: Opgeslagen gegevens", + "DE.Controllers.Main.txtShape_flowChartOr": "Stroomdiagram: Of", + "DE.Controllers.Main.txtShape_flowChartPredefinedProcess": "Stroomdiagram: Voorgedefinieerd", + "DE.Controllers.Main.txtShape_flowChartPreparation": "Stroomdiagram: Voorbereiding", + "DE.Controllers.Main.txtShape_flowChartProcess": "Stroomdiagram: Proces", + "DE.Controllers.Main.txtShape_flowChartPunchedCard": "Kaartdiagram", + "DE.Controllers.Main.txtShape_flowChartPunchedTape": "Stroomdiagram: Ponsband", + "DE.Controllers.Main.txtShape_flowChartSort": "Stroomdiagram: Sorteren", + "DE.Controllers.Main.txtShape_flowChartSummingJunction": "Stroomdiagram: Samenvoeging", + "DE.Controllers.Main.txtShape_flowChartTerminator": "Stroomdiagram: Beëindigen ", + "DE.Controllers.Main.txtShape_foldedCorner": "Ezelsoor", "DE.Controllers.Main.txtShape_frame": "Kader", "DE.Controllers.Main.txtShape_halfFrame": "Half kader", "DE.Controllers.Main.txtShape_heart": "Hart", + "DE.Controllers.Main.txtShape_heptagon": "Zevenhoek", + "DE.Controllers.Main.txtShape_hexagon": "zeshoek", "DE.Controllers.Main.txtShape_homePlate": "Vijfhoek", + "DE.Controllers.Main.txtShape_horizontalScroll": "Horizontaal scrollen", "DE.Controllers.Main.txtShape_irregularSeal1": "Explosie 1", "DE.Controllers.Main.txtShape_irregularSeal2": "Explosie 2", "DE.Controllers.Main.txtShape_leftArrow": "Pijl links", + "DE.Controllers.Main.txtShape_leftArrowCallout": "Legenda met peil naar links", + "DE.Controllers.Main.txtShape_leftBrace": "Haakje links", + "DE.Controllers.Main.txtShape_leftBracket": "Links hoekige haak", + "DE.Controllers.Main.txtShape_leftRightArrow": "Peil naar links en rechts", + "DE.Controllers.Main.txtShape_leftRightArrowCallout": "Legenda met peil naar rechts", + "DE.Controllers.Main.txtShape_leftRightUpArrow": "Peil naar links, rechts en boven", + "DE.Controllers.Main.txtShape_leftUpArrow": "Peil naar links en boven", + "DE.Controllers.Main.txtShape_lightningBolt": "Bliksemschicht", "DE.Controllers.Main.txtShape_line": "Lijn", "DE.Controllers.Main.txtShape_lineWithArrow": "Pijl", "DE.Controllers.Main.txtShape_lineWithTwoArrows": "Dubbele pijl", @@ -466,14 +655,34 @@ "DE.Controllers.Main.txtShape_mathPlus": "Plus", "DE.Controllers.Main.txtShape_moon": "Maan", "DE.Controllers.Main.txtShape_noSmoking": "\"Nee\" Symbool", + "DE.Controllers.Main.txtShape_notchedRightArrow": "Pijl naar rechts met kerf", + "DE.Controllers.Main.txtShape_octagon": "Achthoek", + "DE.Controllers.Main.txtShape_parallelogram": "Parallellogram", "DE.Controllers.Main.txtShape_pentagon": "Vijfhoek", "DE.Controllers.Main.txtShape_pie": "Cirkel", "DE.Controllers.Main.txtShape_plaque": "Onderteken", "DE.Controllers.Main.txtShape_plus": "Plus", "DE.Controllers.Main.txtShape_polyline1": "Krabbel", + "DE.Controllers.Main.txtShape_polyline2": "vrije vorm", + "DE.Controllers.Main.txtShape_quadArrow": "Peil in vier richtingen", + "DE.Controllers.Main.txtShape_quadArrowCallout": "Legenda met pijl in vier richtingen", "DE.Controllers.Main.txtShape_rect": "Vierhoek", + "DE.Controllers.Main.txtShape_ribbon": "Lint naar beneden", + "DE.Controllers.Main.txtShape_ribbon2": "Lint naar boven", "DE.Controllers.Main.txtShape_rightArrow": "Pijl rechts", + "DE.Controllers.Main.txtShape_rightArrowCallout": "Legenda met pijl naar rechts", + "DE.Controllers.Main.txtShape_rightBrace": "Haak Rechts", + "DE.Controllers.Main.txtShape_rightBracket": "accolade rechts", + "DE.Controllers.Main.txtShape_round1Rect": "Ronde enkele rechthoek", + "DE.Controllers.Main.txtShape_round2DiagRect": "Ronde diagonale rechthoek", + "DE.Controllers.Main.txtShape_round2SameRect": "Ronde rechthoek met dezelfde zijhoek", + "DE.Controllers.Main.txtShape_roundRect": "Afgeronde driehoek", + "DE.Controllers.Main.txtShape_rtTriangle": "Driehoek naar rechts", "DE.Controllers.Main.txtShape_smileyFace": "Smiley", + "DE.Controllers.Main.txtShape_snip1Rect": "Snip Single Corner Rectangle", + "DE.Controllers.Main.txtShape_snip2DiagRect": "Knip Diagonale Hoek Rechthoek", + "DE.Controllers.Main.txtShape_snip2SameRect": "Knip Rechthoek in hoek aan dezelfde zijde", + "DE.Controllers.Main.txtShape_snipRoundRect": "Knip en rond enkele hoek rechthoek", "DE.Controllers.Main.txtShape_spline": "Kromming", "DE.Controllers.Main.txtShape_star10": "10-Punt ster", "DE.Controllers.Main.txtShape_star12": "12-Punt ster", @@ -485,13 +694,23 @@ "DE.Controllers.Main.txtShape_star6": "6-Punt ster", "DE.Controllers.Main.txtShape_star7": "7-Punt ster", "DE.Controllers.Main.txtShape_star8": "8-Punt ster", + "DE.Controllers.Main.txtShape_stripedRightArrow": "Pijl naar rechts met strepen", "DE.Controllers.Main.txtShape_sun": "Zon", "DE.Controllers.Main.txtShape_teardrop": "Traan", "DE.Controllers.Main.txtShape_textRect": "Tekstvak", + "DE.Controllers.Main.txtShape_trapezoid": "Trapezium", "DE.Controllers.Main.txtShape_triangle": "Driehoek", "DE.Controllers.Main.txtShape_upArrow": "Pijl omhoog", + "DE.Controllers.Main.txtShape_upArrowCallout": "Legenda met peil omhoog", + "DE.Controllers.Main.txtShape_upDownArrow": "Peil naar boven en beneden", + "DE.Controllers.Main.txtShape_uturnArrow": "U-bocht pijl", + "DE.Controllers.Main.txtShape_verticalScroll": "Verticale scrolling", "DE.Controllers.Main.txtShape_wave": "Golf", + "DE.Controllers.Main.txtShape_wedgeEllipseCallout": "Ovale legenda", + "DE.Controllers.Main.txtShape_wedgeRectCallout": "Rechthoekige legenda", + "DE.Controllers.Main.txtShape_wedgeRoundRectCallout": "Afgeronde rechthoekige Legenda", "DE.Controllers.Main.txtStarsRibbons": "Sterren en linten", + "DE.Controllers.Main.txtStyle_Caption": "Onderschrift", "DE.Controllers.Main.txtStyle_footnote_text": "Voetnoot tekst", "DE.Controllers.Main.txtStyle_Heading_1": "Kop 1", "DE.Controllers.Main.txtStyle_Heading_2": "Kop 2", @@ -510,20 +729,30 @@ "DE.Controllers.Main.txtStyle_Subtitle": "Subtitel", "DE.Controllers.Main.txtStyle_Title": "Titel", "DE.Controllers.Main.txtSyntaxError": "Syntax error", + "DE.Controllers.Main.txtTableInd": "Tabelindex mag niet nul zijn", "DE.Controllers.Main.txtTableOfContents": "Inhoudsopgave", + "DE.Controllers.Main.txtTooLarge": "te groot getal om te formatteren", + "DE.Controllers.Main.txtTypeEquation": "Typ hier een vergelijking.", + "DE.Controllers.Main.txtUndefBookmark": "Ongedefinieerde bladwijzer", "DE.Controllers.Main.txtXAxis": "X-as", "DE.Controllers.Main.txtYAxis": "Y-as", "DE.Controllers.Main.txtZeroDivide": "Nul delen", "DE.Controllers.Main.unknownErrorText": "Onbekende fout.", "DE.Controllers.Main.unsupportedBrowserErrorText": "Uw browser wordt niet ondersteund.", + "DE.Controllers.Main.uploadDocExtMessage": "Onbekend documentformaat.", + "DE.Controllers.Main.uploadDocFileCountMessage": "Geen documenten ge-upload", + "DE.Controllers.Main.uploadDocSizeMessage": "Maximale documentgrootte overschreden.", "DE.Controllers.Main.uploadImageExtMessage": "Onbekende afbeeldingsindeling.", "DE.Controllers.Main.uploadImageFileCountMessage": "Geen afbeeldingen geüpload.", "DE.Controllers.Main.uploadImageSizeMessage": "Maximale afbeeldingsgrootte overschreden.", "DE.Controllers.Main.uploadImageTextText": "Afbeelding wordt geüpload...", "DE.Controllers.Main.uploadImageTitleText": "Afbeelding wordt geüpload", + "DE.Controllers.Main.waitText": "Een moment...", "DE.Controllers.Main.warnBrowserIE9": "Met IE9 heeft de toepassing beperkte mogelijkheden. Gebruik IE10 of hoger.", "DE.Controllers.Main.warnBrowserZoom": "De huidige zoominstelling van uw browser wordt niet ondersteund. Zet de zoominstelling terug op de standaardwaarde door op Ctrl+0 te drukken.", + "DE.Controllers.Main.warnLicenseExceeded": "Het aantal gelijktijdige verbindingen met de document server heeft het maximum overschreven. Het document zal geopend worden in een alleen-lezen modus.
Neem contact op met de beheerder voor meer informatie.", "DE.Controllers.Main.warnLicenseExp": "Uw licentie is vervallen.
Werk uw licentie bij en vernieuw de pagina.", + "DE.Controllers.Main.warnLicenseUsersExceeded": "U heeft de gebruikerslimiet voor %1 editors bereikt. Neem contact op met uw beheerder voor meer informatie.", "DE.Controllers.Main.warnNoLicense": "Deze versie van %1 bevat limieten voor het aantal gelijktijdige gebruikers.
Indien meer nodig is, upgrade dan de huidige licentie of schaf een commerciële licentie aan.", "DE.Controllers.Main.warnNoLicenseUsers": "Deze versie van %1 bevat limieten voor het aantal gelijktijdige gebruikers.
Indien meer nodig is, upgrade dan de huidige licentie of schaf een commerciële licentie aan.", "DE.Controllers.Main.warnProcessRightsChange": "Het recht om het bestand te bewerken is u ontzegd.", @@ -541,6 +770,7 @@ "DE.Controllers.Toolbar.textFontSizeErr": "De ingevoerde waarde is onjuist.
Voer een waarde tussen 1 en 100 in", "DE.Controllers.Toolbar.textFraction": "Breuken", "DE.Controllers.Toolbar.textFunction": "Functies", + "DE.Controllers.Toolbar.textInsert": "Invoegen", "DE.Controllers.Toolbar.textIntegral": "Integralen", "DE.Controllers.Toolbar.textLargeOperator": "Grote operators", "DE.Controllers.Toolbar.textLimitAndLog": "Limieten en logaritmen", @@ -870,17 +1100,54 @@ "DE.Controllers.Toolbar.txtSymbol_zeta": "Zeta", "DE.Controllers.Viewport.textFitPage": "Aan pagina aanpassen", "DE.Controllers.Viewport.textFitWidth": "Aan breedte aanpassen", + "DE.Views.AddNewCaptionLabelDialog.textLabel": "Label:", + "DE.Views.AddNewCaptionLabelDialog.textLabelError": "Label mag niet leeg zijn", "DE.Views.BookmarksDialog.textAdd": "Toevoegen", "DE.Views.BookmarksDialog.textBookmarkName": "Bladwijzer naam", "DE.Views.BookmarksDialog.textClose": "Sluiten", "DE.Views.BookmarksDialog.textCopy": "Kopiëren", "DE.Views.BookmarksDialog.textDelete": "Verwijder", + "DE.Views.BookmarksDialog.textGetLink": "Link ophalen", "DE.Views.BookmarksDialog.textGoto": "Ga naar", "DE.Views.BookmarksDialog.textHidden": "Verborgen bladwijzers", "DE.Views.BookmarksDialog.textLocation": "Locatie", "DE.Views.BookmarksDialog.textName": "Naam", "DE.Views.BookmarksDialog.textSort": "Sorteren op", "DE.Views.BookmarksDialog.textTitle": "Bladwijzers", + "DE.Views.BookmarksDialog.txtInvalidName": "De naam van de bladwijzer mag alleen letters, cijfers en onderstrepingstekens bevatten en moet beginnen met de letter", + "DE.Views.CaptionDialog.textAdd": "Toevoegen label", + "DE.Views.CaptionDialog.textAfter": "Na", + "DE.Views.CaptionDialog.textBefore": "Voor", + "DE.Views.CaptionDialog.textCaption": "Selectiekader", + "DE.Views.CaptionDialog.textChapter": "Hoofdstuk begint met stijl", + "DE.Views.CaptionDialog.textChapterInc": "Inclusief hoofdstuknummer", + "DE.Views.CaptionDialog.textColon": "Dubbele punt", + "DE.Views.CaptionDialog.textDash": "Streepje", + "DE.Views.CaptionDialog.textDelete": "verwijder label", + "DE.Views.CaptionDialog.textEquation": "Vergelijking", + "DE.Views.CaptionDialog.textExamples": "Voorbeelden: tabel 2-A, afbeelding 1.IV", + "DE.Views.CaptionDialog.textExclude": "Label uitsluiten van bijschrift", + "DE.Views.CaptionDialog.textFigure": "Figuur", + "DE.Views.CaptionDialog.textHyphen": "Koppelteken", + "DE.Views.CaptionDialog.textInsert": "Invoegen", + "DE.Views.CaptionDialog.textLabel": "Label", + "DE.Views.CaptionDialog.textLongDash": "lange streep", + "DE.Views.CaptionDialog.textNumbering": "Nummering", + "DE.Views.CaptionDialog.textPeriod": "Punt", + "DE.Views.CaptionDialog.textSeparator": "Gebruik een scheidingsteken", + "DE.Views.CaptionDialog.textTable": "Tabel", + "DE.Views.CaptionDialog.textTitle": "Bijschrift invoegen", + "DE.Views.CellsAddDialog.textCol": "Kolommen", + "DE.Views.CellsAddDialog.textDown": "Onder de cursor", + "DE.Views.CellsAddDialog.textLeft": "Naar links", + "DE.Views.CellsAddDialog.textRight": "Naar rechts", + "DE.Views.CellsAddDialog.textRow": "Rijen", + "DE.Views.CellsAddDialog.textTitle": "Meerdere invoegen", + "DE.Views.CellsAddDialog.textUp": "Boven de cursor", + "DE.Views.CellsRemoveDialog.textCol": "verwijder volledig kolom ", + "DE.Views.CellsRemoveDialog.textLeft": "Verplaats cellen naar links", + "DE.Views.CellsRemoveDialog.textRow": "verwijder volledige rij", + "DE.Views.CellsRemoveDialog.textTitle": "verwijder cellen", "DE.Views.ChartSettings.textAdvanced": "Geavanceerde instellingen tonen", "DE.Views.ChartSettings.textChartType": "Grafiektype wijzigen", "DE.Views.ChartSettings.textEditData": "Gegevens bewerken", @@ -899,22 +1166,51 @@ "DE.Views.ChartSettings.txtTight": "Strak", "DE.Views.ChartSettings.txtTitle": "Grafiek", "DE.Views.ChartSettings.txtTopAndBottom": "Boven en onder", + "DE.Views.CompareSettingsDialog.textChar": "Lettertype niveau", + "DE.Views.CompareSettingsDialog.textShow": "Wijzigingen weergeven op", + "DE.Views.CompareSettingsDialog.textTitle": "Vergelijking instellingen", + "DE.Views.CompareSettingsDialog.textWord": "Woordniveau", + "DE.Views.ControlSettingsDialog.strGeneral": "Algemeen", + "DE.Views.ControlSettingsDialog.textAdd": "Toevoegen", "DE.Views.ControlSettingsDialog.textAppearance": "Verschijning", "DE.Views.ControlSettingsDialog.textApplyAll": "Op alles toepassen", + "DE.Views.ControlSettingsDialog.textBox": "Selectiekader", + "DE.Views.ControlSettingsDialog.textChange": "Bewerken", + "DE.Views.ControlSettingsDialog.textCheckbox": "Selectievak", + "DE.Views.ControlSettingsDialog.textChecked": "Geselecteerd symbool", "DE.Views.ControlSettingsDialog.textColor": "Kleur", + "DE.Views.ControlSettingsDialog.textCombobox": "Keuzelijst", + "DE.Views.ControlSettingsDialog.textDate": "Formaat datum", + "DE.Views.ControlSettingsDialog.textDelete": "Verwijderen", + "DE.Views.ControlSettingsDialog.textDisplayName": "Naam weergeven", + "DE.Views.ControlSettingsDialog.textDown": "Onder", + "DE.Views.ControlSettingsDialog.textDropDown": "Keuzelijst", + "DE.Views.ControlSettingsDialog.textFormat": "Geef de datum als volgt weer", + "DE.Views.ControlSettingsDialog.textLang": "Taal", "DE.Views.ControlSettingsDialog.textLock": "Vergrendeling", "DE.Views.ControlSettingsDialog.textName": "Titel", "DE.Views.ControlSettingsDialog.textNone": "Geen", + "DE.Views.ControlSettingsDialog.textPlaceholder": "Tijdelijke aanduiding", "DE.Views.ControlSettingsDialog.textShowAs": "Tonen als", "DE.Views.ControlSettingsDialog.textSystemColor": "Systeem", "DE.Views.ControlSettingsDialog.textTag": "Tag", "DE.Views.ControlSettingsDialog.textTitle": "Inhoud beheer instellingen", + "DE.Views.ControlSettingsDialog.textUnchecked": "Niet aangevinkt symbool", + "DE.Views.ControlSettingsDialog.textUp": "Omhoog", + "DE.Views.ControlSettingsDialog.textValue": "Waarde", + "DE.Views.ControlSettingsDialog.tipChange": "Verander symbool", "DE.Views.ControlSettingsDialog.txtLockDelete": "Inhoud beheer kan niet verwijderd worden", "DE.Views.ControlSettingsDialog.txtLockEdit": "Inhoud kan niet aangepast worden", "DE.Views.CustomColumnsDialog.textColumns": "Aantal kolommen", "DE.Views.CustomColumnsDialog.textSeparator": "Scheidingsmarkering kolommen", "DE.Views.CustomColumnsDialog.textSpacing": "Afstand tussen kolommen", "DE.Views.CustomColumnsDialog.textTitle": "Kolommen", + "DE.Views.DateTimeDialog.confirmDefault": "Stel de standaardindeling in voor {0}: \"{1}\"", + "DE.Views.DateTimeDialog.textDefault": "stel in als standaard", + "DE.Views.DateTimeDialog.textFormat": "Formaat", + "DE.Views.DateTimeDialog.textLang": "Taal", + "DE.Views.DateTimeDialog.textUpdate": "Automatisch updaten", + "DE.Views.DateTimeDialog.txtTitle": "Datum & Tijd", "DE.Views.DocumentHolder.aboveText": "Boven", "DE.Views.DocumentHolder.addCommentText": "Opmerking toevoegen", "DE.Views.DocumentHolder.advancedFrameText": "Geavanceerde frame-instellingen", @@ -988,10 +1284,13 @@ "DE.Views.DocumentHolder.textArrangeBackward": "Naar Achteren Verplaatsen", "DE.Views.DocumentHolder.textArrangeForward": "Naar Voren Verplaatsen", "DE.Views.DocumentHolder.textArrangeFront": "Naar voorgrond brengen", + "DE.Views.DocumentHolder.textCells": "cells", "DE.Views.DocumentHolder.textContentControls": "Inhoud beheer", + "DE.Views.DocumentHolder.textContinueNumbering": "Voortzetten nummering", "DE.Views.DocumentHolder.textCopy": "Kopiëren", "DE.Views.DocumentHolder.textCrop": "Uitsnijden", "DE.Views.DocumentHolder.textCropFill": "Vulling", + "DE.Views.DocumentHolder.textCropFit": "Aanpassen", "DE.Views.DocumentHolder.textCut": "Knippen", "DE.Views.DocumentHolder.textDistributeCols": "Kolommen verdelen", "DE.Views.DocumentHolder.textDistributeRows": "Rijen verdelen", @@ -999,10 +1298,14 @@ "DE.Views.DocumentHolder.textEditWrapBoundary": "Rand tekstterugloop bewerken", "DE.Views.DocumentHolder.textFlipH": "Horizontaal omdraaien", "DE.Views.DocumentHolder.textFlipV": "Verticaal omdraaien", + "DE.Views.DocumentHolder.textFollow": "Track verplaatsen", "DE.Views.DocumentHolder.textFromFile": "Van bestand", + "DE.Views.DocumentHolder.textFromStorage": "Van Opslag", "DE.Views.DocumentHolder.textFromUrl": "Van URL", + "DE.Views.DocumentHolder.textJoinList": "aan vorige lijst verbinden", "DE.Views.DocumentHolder.textNest": "Geneste tabel", "DE.Views.DocumentHolder.textNextPage": "Volgende pagina", + "DE.Views.DocumentHolder.textNumberingValue": "Nummeringswaarde", "DE.Views.DocumentHolder.textPaste": "Plakken", "DE.Views.DocumentHolder.textPrevPage": "Vorige pagina", "DE.Views.DocumentHolder.textRefreshField": "Ververs veld", @@ -1012,7 +1315,9 @@ "DE.Views.DocumentHolder.textRotate": "Draaien", "DE.Views.DocumentHolder.textRotate270": "Draaien 90° linksom", "DE.Views.DocumentHolder.textRotate90": "Draaien 90° rechtsom", + "DE.Views.DocumentHolder.textSeparateList": "Afzonderlijke lijst", "DE.Views.DocumentHolder.textSettings": "Instellingen", + "DE.Views.DocumentHolder.textSeveral": "Meerdere rijen / kolommen", "DE.Views.DocumentHolder.textShapeAlignBottom": "Onder uitlijnen", "DE.Views.DocumentHolder.textShapeAlignCenter": "Midden uitlijnen", "DE.Views.DocumentHolder.textShapeAlignLeft": "Links uitlijnen", @@ -1020,6 +1325,7 @@ "DE.Views.DocumentHolder.textShapeAlignRight": "Rechts uitlijnen", "DE.Views.DocumentHolder.textShapeAlignTop": "Boven uitlijnen", "DE.Views.DocumentHolder.textStartNewList": "Start nieuwe lijst", + "DE.Views.DocumentHolder.textStartNumberingFrom": "Nummeringswaarde instellen", "DE.Views.DocumentHolder.textTOC": "Inhoudsopgave", "DE.Views.DocumentHolder.textTOCSettings": "Inhoudsopgave instellingen", "DE.Views.DocumentHolder.textUndo": "Ongedaan maken", @@ -1028,6 +1334,7 @@ "DE.Views.DocumentHolder.textUpdateTOC": "Inhoudsopgave verversen", "DE.Views.DocumentHolder.textWrap": "Terugloopstijl", "DE.Views.DocumentHolder.tipIsLocked": "Dit element wordt op dit moment bewerkt door een andere gebruiker.", + "DE.Views.DocumentHolder.toDictionaryText": "Toevoegen aan woordenboek", "DE.Views.DocumentHolder.txtAddBottom": "Onderrand toevoegen", "DE.Views.DocumentHolder.txtAddFractionBar": "Deelteken toevoegen", "DE.Views.DocumentHolder.txtAddHor": "Horizontale lijn toevoegen", @@ -1052,6 +1359,7 @@ "DE.Views.DocumentHolder.txtDeleteRadical": "Wortel verwijderen", "DE.Views.DocumentHolder.txtDistribHor": "Horizontaal verdelen", "DE.Views.DocumentHolder.txtDistribVert": "Verticaal verdelen", + "DE.Views.DocumentHolder.txtEmpty": "(Leeg)", "DE.Views.DocumentHolder.txtFractionLinear": "Wijzigen in Lineaire breuk", "DE.Views.DocumentHolder.txtFractionSkewed": "Wijzigen in Schuine breuk", "DE.Views.DocumentHolder.txtFractionStacked": "Wijzigen in Gestapelde breuk", @@ -1078,6 +1386,7 @@ "DE.Views.DocumentHolder.txtInsertArgAfter": "Argument invoegen na", "DE.Views.DocumentHolder.txtInsertArgBefore": "Argument invoegen vóór", "DE.Views.DocumentHolder.txtInsertBreak": "Handmatig einde invoegen", + "DE.Views.DocumentHolder.txtInsertCaption": "Bijschrift invoegen", "DE.Views.DocumentHolder.txtInsertEqAfter": "Vergelijking invoegen na", "DE.Views.DocumentHolder.txtInsertEqBefore": "Vergelijking invoegen vóór", "DE.Views.DocumentHolder.txtKeepTextOnly": "Alleen tekst behouden", @@ -1090,6 +1399,7 @@ "DE.Views.DocumentHolder.txtOverwriteCells": "Cellen overschrijven", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Behoud bronopmaak", "DE.Views.DocumentHolder.txtPressLink": "Druk op Ctrl en klik op koppeling", + "DE.Views.DocumentHolder.txtPrintSelection": "Selectie afdrukken", "DE.Views.DocumentHolder.txtRemFractionBar": "Deelteken verwijderen", "DE.Views.DocumentHolder.txtRemLimit": "Limiet verwijderen", "DE.Views.DocumentHolder.txtRemoveAccentChar": "Accentteken verwijderen", @@ -1156,6 +1466,10 @@ "DE.Views.DropcapSettingsAdvanced.textWidth": "Breedte", "DE.Views.DropcapSettingsAdvanced.tipFontName": "Lettertype", "DE.Views.DropcapSettingsAdvanced.txtNoBorders": "Geen randen", + "DE.Views.EditListItemDialog.textDisplayName": "Naam weergeven", + "DE.Views.EditListItemDialog.textNameError": "Weergaven naam mag niet leeg zijn", + "DE.Views.EditListItemDialog.textValue": "Waarde", + "DE.Views.EditListItemDialog.textValueError": "Er bestaat al een item met dezelfde waarde.", "DE.Views.FileMenu.btnBackCaption": "Naar documenten", "DE.Views.FileMenu.btnCloseMenuCaption": "Menu sluiten", "DE.Views.FileMenu.btnCreateNewCaption": "Nieuw maken", @@ -1180,18 +1494,28 @@ "DE.Views.FileMenuPanels.CreateNew.newDescriptionText": "Maak een nieuw leeg tekstdocument waarop u stijlen kunt toepassen en dat u in bewerksessies kunt opmaken nadat het is gemaakt. Of kies een van de sjablonen om een document van een bepaald type of met een bepaald doel te starten. In de sjabloon zijn sommige stijlen al toegepast.", "DE.Views.FileMenuPanels.CreateNew.newDocumentText": "Nieuw tekstdocument", "DE.Views.FileMenuPanels.CreateNew.noTemplatesText": "Er zijn geen sjablonen", + "DE.Views.FileMenuPanels.DocumentInfo.okButtonText": "Toepassen", + "DE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Voeg auteur toe", + "DE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Tekst toevoegen", "DE.Views.FileMenuPanels.DocumentInfo.txtAppName": "Applicatie", "DE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Auteur", "DE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Toegangsrechten wijzigen", + "DE.Views.FileMenuPanels.DocumentInfo.txtComment": "Opmerking", + "DE.Views.FileMenuPanels.DocumentInfo.txtCreated": "Aangemaakt", "DE.Views.FileMenuPanels.DocumentInfo.txtLoading": "Laden...", + "DE.Views.FileMenuPanels.DocumentInfo.txtModifyBy": "Laatst aangepast door", + "DE.Views.FileMenuPanels.DocumentInfo.txtModifyDate": "Laatst aangepast", + "DE.Views.FileMenuPanels.DocumentInfo.txtOwner": "Eigenaar", "DE.Views.FileMenuPanels.DocumentInfo.txtPages": "Pagina's", "DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs": "Alinea's", "DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Locatie", "DE.Views.FileMenuPanels.DocumentInfo.txtRights": "Personen met rechten", "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Symbolen met spaties", "DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Statistieken", + "DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Onderwerp", "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Symbolen", "DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Titel document", + "DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Geupload", "DE.Views.FileMenuPanels.DocumentInfo.txtWords": "Woorden", "DE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Toegangsrechten wijzigen", "DE.Views.FileMenuPanels.DocumentRights.txtRights": "Personen met rechten", @@ -1218,6 +1542,9 @@ "DE.Views.FileMenuPanels.Settings.strForcesave": "Altijd op server opslaan (anders op server opslaan bij sluiten document)", "DE.Views.FileMenuPanels.Settings.strInputMode": "Hiërogliefen inschakelen", "DE.Views.FileMenuPanels.Settings.strLiveComment": "Weergave van opmerkingen inschakelen", + "DE.Views.FileMenuPanels.Settings.strMacrosSettings": "Macro instellingen", + "DE.Views.FileMenuPanels.Settings.strPaste": "Knippen, kopiëren en plakken", + "DE.Views.FileMenuPanels.Settings.strPasteButton": "Toon de knop Plakopties wanneer de inhoud is geplakt", "DE.Views.FileMenuPanels.Settings.strResolvedComment": "Weergave van opgeloste opmerkingen inschakelen", "DE.Views.FileMenuPanels.Settings.strShowChanges": "Wijzigingen in realtime samenwerking", "DE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Optie voor spellingcontrole inschakelen", @@ -1231,10 +1558,14 @@ "DE.Views.FileMenuPanels.Settings.textAlignGuides": "Uitlijningshulplijnen", "DE.Views.FileMenuPanels.Settings.textAutoRecover": "AutoHerstel", "DE.Views.FileMenuPanels.Settings.textAutoSave": "Automatisch opslaan", + "DE.Views.FileMenuPanels.Settings.textCompatible": "compatibiliteit", "DE.Views.FileMenuPanels.Settings.textDisabled": "Gedeactiveerd", "DE.Views.FileMenuPanels.Settings.textForceSave": "Opslaan op server", "DE.Views.FileMenuPanels.Settings.textMinute": "Elke minuut", + "DE.Views.FileMenuPanels.Settings.textOldVersions": "Maak de bestanden compatibel met oudere MS Word-versies wanneer ze worden opgeslagen als DOCX", "DE.Views.FileMenuPanels.Settings.txtAll": "Alles weergeven", + "DE.Views.FileMenuPanels.Settings.txtAutoCorrect": "Instellingen automatische spellingscontrole", + "DE.Views.FileMenuPanels.Settings.txtCacheMode": "standaard cache modus", "DE.Views.FileMenuPanels.Settings.txtCm": "Centimeter", "DE.Views.FileMenuPanels.Settings.txtFitPage": "Aan pagina aanpassen", "DE.Views.FileMenuPanels.Settings.txtFitWidth": "Aan breedte aanpassen", @@ -1245,8 +1576,15 @@ "DE.Views.FileMenuPanels.Settings.txtMac": "als OS X", "DE.Views.FileMenuPanels.Settings.txtNative": "Native", "DE.Views.FileMenuPanels.Settings.txtNone": "Geen weergeven", + "DE.Views.FileMenuPanels.Settings.txtProofing": "Controlleren", "DE.Views.FileMenuPanels.Settings.txtPt": "Punt", + "DE.Views.FileMenuPanels.Settings.txtRunMacros": "Alles inschakelen", + "DE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "Schakel alle macro's in zonder een notificatie", "DE.Views.FileMenuPanels.Settings.txtSpellCheck": "Spellingcontrole", + "DE.Views.FileMenuPanels.Settings.txtStopMacros": "Alles uitschakelen", + "DE.Views.FileMenuPanels.Settings.txtStopMacrosDesc": "Schakel alle macro's uit zonder melding", + "DE.Views.FileMenuPanels.Settings.txtWarnMacros": "Weergeef notificatie", + "DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Schakel alle macro's uit met een melding", "DE.Views.FileMenuPanels.Settings.txtWin": "als Windows", "DE.Views.HeaderFooterSettings.textBottomCenter": "Middenonder", "DE.Views.HeaderFooterSettings.textBottomLeft": "Linksonder", @@ -1283,10 +1621,13 @@ "DE.Views.ImageSettings.textAdvanced": "Geavanceerde instellingen tonen", "DE.Views.ImageSettings.textCrop": "Uitsnijden", "DE.Views.ImageSettings.textCropFill": "Vulling", + "DE.Views.ImageSettings.textCropFit": "Aanpassen", "DE.Views.ImageSettings.textEdit": "Bewerken", "DE.Views.ImageSettings.textEditObject": "Object bewerken", "DE.Views.ImageSettings.textFitMargins": "Aan Marge Aanpassen", + "DE.Views.ImageSettings.textFlip": "Draaien", "DE.Views.ImageSettings.textFromFile": "Van bestand", + "DE.Views.ImageSettings.textFromStorage": "Van Opslag", "DE.Views.ImageSettings.textFromUrl": "Van URL", "DE.Views.ImageSettings.textHeight": "Hoogte", "DE.Views.ImageSettings.textHint270": "Draaien 90° linksom", @@ -1296,6 +1637,7 @@ "DE.Views.ImageSettings.textInsert": "Afbeelding vervangen", "DE.Views.ImageSettings.textOriginalSize": "Standaardgrootte", "DE.Views.ImageSettings.textRotate90": "Draaien 90°", + "DE.Views.ImageSettings.textRotation": "Draaien", "DE.Views.ImageSettings.textSize": "Grootte", "DE.Views.ImageSettings.textWidth": "Breedte", "DE.Views.ImageSettings.textWrap": "Terugloopstijl", @@ -1316,6 +1658,7 @@ "DE.Views.ImageSettingsAdvanced.textAngle": "Hoek", "DE.Views.ImageSettingsAdvanced.textArrows": "Pijlen", "DE.Views.ImageSettingsAdvanced.textAspectRatio": "Hoogte-breedteverhouding vergrendelen", + "DE.Views.ImageSettingsAdvanced.textAutofit": "Automatisch passend maken", "DE.Views.ImageSettingsAdvanced.textBeginSize": "Begingrootte", "DE.Views.ImageSettingsAdvanced.textBeginStyle": "Beginstijl", "DE.Views.ImageSettingsAdvanced.textBelow": "onder", @@ -1331,8 +1674,10 @@ "DE.Views.ImageSettingsAdvanced.textEndSize": "Eindgrootte", "DE.Views.ImageSettingsAdvanced.textEndStyle": "Eindstijl", "DE.Views.ImageSettingsAdvanced.textFlat": "Plat", + "DE.Views.ImageSettingsAdvanced.textFlipped": "Gedraaid", "DE.Views.ImageSettingsAdvanced.textHeight": "Hoogte", "DE.Views.ImageSettingsAdvanced.textHorizontal": "Horizontaal", + "DE.Views.ImageSettingsAdvanced.textHorizontally": "Horizontaal", "DE.Views.ImageSettingsAdvanced.textJoinType": "Type join", "DE.Views.ImageSettingsAdvanced.textKeepRatio": "Constante verhoudingen", "DE.Views.ImageSettingsAdvanced.textLeft": "Links", @@ -1351,19 +1696,23 @@ "DE.Views.ImageSettingsAdvanced.textPositionPc": "Relatieve positie", "DE.Views.ImageSettingsAdvanced.textRelative": "ten opzichte van", "DE.Views.ImageSettingsAdvanced.textRelativeWH": "Relatief", + "DE.Views.ImageSettingsAdvanced.textResizeFit": "Formaat aanpassen aan tekst", "DE.Views.ImageSettingsAdvanced.textRight": "Rechts", "DE.Views.ImageSettingsAdvanced.textRightMargin": "Rechtermarge", "DE.Views.ImageSettingsAdvanced.textRightOf": "rechts van", + "DE.Views.ImageSettingsAdvanced.textRotation": "Draaien", "DE.Views.ImageSettingsAdvanced.textRound": "Rond", "DE.Views.ImageSettingsAdvanced.textShape": "Vorminstellingen", "DE.Views.ImageSettingsAdvanced.textSize": "Grootte", "DE.Views.ImageSettingsAdvanced.textSquare": "Vierkant", + "DE.Views.ImageSettingsAdvanced.textTextBox": "Tekstvak", "DE.Views.ImageSettingsAdvanced.textTitle": "Afbeelding - Geavanceerde instellingen", "DE.Views.ImageSettingsAdvanced.textTitleChart": "Grafiek - Geavanceerde instellingen", "DE.Views.ImageSettingsAdvanced.textTitleShape": "Vorm - Geavanceerde instellingen", "DE.Views.ImageSettingsAdvanced.textTop": "Boven", "DE.Views.ImageSettingsAdvanced.textTopMargin": "Bovenmarge", "DE.Views.ImageSettingsAdvanced.textVertical": "Verticaal", + "DE.Views.ImageSettingsAdvanced.textVertically": "Verticaal ", "DE.Views.ImageSettingsAdvanced.textWeightArrows": "Gewichten & Pijlen", "DE.Views.ImageSettingsAdvanced.textWidth": "Breedte", "DE.Views.ImageSettingsAdvanced.textWrap": "Terugloopstijl", @@ -1385,6 +1734,7 @@ "DE.Views.LeftMenu.txtDeveloper": "ONTWIKKELAARSMODUS", "DE.Views.LeftMenu.txtTrial": "TEST MODUS", "DE.Views.Links.capBtnBookmarks": "Bladwijzer", + "DE.Views.Links.capBtnCaption": "Onderschrift", "DE.Views.Links.capBtnContentsUpdate": "Verversen", "DE.Views.Links.capBtnInsContents": "Inhoudsopgave", "DE.Views.Links.capBtnInsFootnote": "Voetnoot", @@ -1399,10 +1749,28 @@ "DE.Views.Links.textUpdateAll": "Volledige tabel verversen", "DE.Views.Links.textUpdatePages": "Alleen paginanummers verversen", "DE.Views.Links.tipBookmarks": "Maak een bladwijzer", + "DE.Views.Links.tipCaption": "Bijschrift invoegen", "DE.Views.Links.tipContents": "Inhoudsopgave toevoegen", "DE.Views.Links.tipContentsUpdate": "Inhoudsopgave verversen", "DE.Views.Links.tipInsertHyperlink": "Hyperlink toevoegen", "DE.Views.Links.tipNotes": "Voetnoten invoegen of bewerken", + "DE.Views.ListSettingsDialog.textAuto": "Automatisch", + "DE.Views.ListSettingsDialog.textCenter": "Midden", + "DE.Views.ListSettingsDialog.textLeft": "Links", + "DE.Views.ListSettingsDialog.textLevel": "Niveau", + "DE.Views.ListSettingsDialog.textPreview": "Voorbeeld", + "DE.Views.ListSettingsDialog.textRight": "Rechts", + "DE.Views.ListSettingsDialog.txtAlign": "Uitlijning", + "DE.Views.ListSettingsDialog.txtBullet": "punt", + "DE.Views.ListSettingsDialog.txtColor": "Kleur", + "DE.Views.ListSettingsDialog.txtFont": "Lettertype en symbool", + "DE.Views.ListSettingsDialog.txtLikeText": "Als een text", + "DE.Views.ListSettingsDialog.txtNewBullet": "Nieuw opsommingsteken", + "DE.Views.ListSettingsDialog.txtNone": "geen", + "DE.Views.ListSettingsDialog.txtSize": "Grootte", + "DE.Views.ListSettingsDialog.txtSymbol": "symbool", + "DE.Views.ListSettingsDialog.txtTitle": "Lijst instellingen", + "DE.Views.ListSettingsDialog.txtType": "Type", "DE.Views.MailMergeEmailDlg.filePlaceholder": "PDF", "DE.Views.MailMergeEmailDlg.okButtonText": "Verzenden", "DE.Views.MailMergeEmailDlg.subjectPlaceholder": "Thema", @@ -1481,13 +1849,25 @@ "DE.Views.NoteSettingsDialog.textTitle": "Instellingen voor notities", "DE.Views.PageMarginsDialog.notcriticalErrorTitle": "Waarschuwing", "DE.Views.PageMarginsDialog.textBottom": "Onder", + "DE.Views.PageMarginsDialog.textGutter": "Goot", + "DE.Views.PageMarginsDialog.textGutterPosition": "Goot positie", + "DE.Views.PageMarginsDialog.textInside": "binnenin", + "DE.Views.PageMarginsDialog.textLandscape": "Liggend", "DE.Views.PageMarginsDialog.textLeft": "Links", + "DE.Views.PageMarginsDialog.textMirrorMargins": "Gespiegelde marges", + "DE.Views.PageMarginsDialog.textMultiplePages": "Meerdere pagina's", + "DE.Views.PageMarginsDialog.textNormal": "Normaal", + "DE.Views.PageMarginsDialog.textOrientation": "Oriëntatie ", + "DE.Views.PageMarginsDialog.textOutside": "Buiten", + "DE.Views.PageMarginsDialog.textPortrait": "Staand", + "DE.Views.PageMarginsDialog.textPreview": "Voorbeeld", "DE.Views.PageMarginsDialog.textRight": "Rechts", "DE.Views.PageMarginsDialog.textTitle": "Marges", "DE.Views.PageMarginsDialog.textTop": "Boven", "DE.Views.PageMarginsDialog.txtMarginsH": "Boven- en ondermarges zijn te hoog voor de opgegeven paginahoogte", "DE.Views.PageMarginsDialog.txtMarginsW": "Linker- en rechtermarge zijn te breed voor opgegeven paginabreedte", "DE.Views.PageSizeDialog.textHeight": "Hoogte", + "DE.Views.PageSizeDialog.textPreset": "Voorinstelling", "DE.Views.PageSizeDialog.textTitle": "Paginaformaat", "DE.Views.PageSizeDialog.textWidth": "Breedte", "DE.Views.PageSizeDialog.txtCustom": "Aangepast", @@ -1508,32 +1888,51 @@ "DE.Views.ParagraphSettingsAdvanced.strBorders": "Randen & opvulling", "DE.Views.ParagraphSettingsAdvanced.strBreakBefore": "Pagina-einde vóór", "DE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Dubbel doorhalen", + "DE.Views.ParagraphSettingsAdvanced.strIndent": "Inspringen", "DE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Links", + "DE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing": "Regelafstand", + "DE.Views.ParagraphSettingsAdvanced.strIndentsOutlinelevel": "Omlijningsdikte", "DE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Rechts", + "DE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter": "Na", + "DE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore": "Voor", + "DE.Views.ParagraphSettingsAdvanced.strIndentsSpecial": "Speciaal", "DE.Views.ParagraphSettingsAdvanced.strKeepLines": "Regels bijeenhouden", "DE.Views.ParagraphSettingsAdvanced.strKeepNext": "Bij volgende alinea houden", "DE.Views.ParagraphSettingsAdvanced.strMargins": "Opvulling", "DE.Views.ParagraphSettingsAdvanced.strOrphan": "Zwevende regels voorkomen", "DE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Lettertype", "DE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "Inspringingen en plaatsing", + "DE.Views.ParagraphSettingsAdvanced.strParagraphLine": "alinea- en pagina-einde", "DE.Views.ParagraphSettingsAdvanced.strParagraphPosition": "Plaatsing", "DE.Views.ParagraphSettingsAdvanced.strSmallCaps": "Kleine hoofdletters", + "DE.Views.ParagraphSettingsAdvanced.strSomeParagraphSpace": "Voeg geen interval toe tussen alinea's met dezelfde stijl", + "DE.Views.ParagraphSettingsAdvanced.strSpacing": "Afstand", "DE.Views.ParagraphSettingsAdvanced.strStrike": "Doorhalen", "DE.Views.ParagraphSettingsAdvanced.strSubscript": "Subscript", "DE.Views.ParagraphSettingsAdvanced.strSuperscript": "Superscript", "DE.Views.ParagraphSettingsAdvanced.strTabs": "Tab", "DE.Views.ParagraphSettingsAdvanced.textAlign": "Uitlijning", + "DE.Views.ParagraphSettingsAdvanced.textAtLeast": "ten minste", + "DE.Views.ParagraphSettingsAdvanced.textAuto": "Meerdere", "DE.Views.ParagraphSettingsAdvanced.textBackColor": "Achtergrondkleur", + "DE.Views.ParagraphSettingsAdvanced.textBodyText": "basistext", "DE.Views.ParagraphSettingsAdvanced.textBorderColor": "Randkleur", "DE.Views.ParagraphSettingsAdvanced.textBorderDesc": "Klik op het diagram of gebruik de knoppen om randen te selecteren en er de gekozen stijl op toe te passen", "DE.Views.ParagraphSettingsAdvanced.textBorderWidth": "Randgrootte", "DE.Views.ParagraphSettingsAdvanced.textBottom": "Onder", + "DE.Views.ParagraphSettingsAdvanced.textCentered": "Gecentreerd", "DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Tekenafstand", "DE.Views.ParagraphSettingsAdvanced.textDefault": "Standaardtabblad", "DE.Views.ParagraphSettingsAdvanced.textEffects": "Effecten", + "DE.Views.ParagraphSettingsAdvanced.textExact": "exact", + "DE.Views.ParagraphSettingsAdvanced.textFirstLine": "Eerste alinea", + "DE.Views.ParagraphSettingsAdvanced.textHanging": "Hangend", + "DE.Views.ParagraphSettingsAdvanced.textJustified": "Uitgevuld", "DE.Views.ParagraphSettingsAdvanced.textLeader": "Leader", "DE.Views.ParagraphSettingsAdvanced.textLeft": "Links", + "DE.Views.ParagraphSettingsAdvanced.textLevel": "Niveau", "DE.Views.ParagraphSettingsAdvanced.textNone": "Geen", + "DE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(geen)", "DE.Views.ParagraphSettingsAdvanced.textPosition": "Positie", "DE.Views.ParagraphSettingsAdvanced.textRemove": "Verwijderen", "DE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Alles verwijderen", @@ -1554,6 +1953,7 @@ "DE.Views.ParagraphSettingsAdvanced.tipOuter": "Alleen buitenrand instellen", "DE.Views.ParagraphSettingsAdvanced.tipRight": "Alleen rechterrand instellen", "DE.Views.ParagraphSettingsAdvanced.tipTop": "Alleen bovenrand instellen", + "DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Automatisch", "DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Geen randen", "DE.Views.RightMenu.txtChartSettings": "Grafiekinstellingen", "DE.Views.RightMenu.txtHeaderFooterSettings": "Instellingen kop- en voettekst", @@ -1570,6 +1970,7 @@ "DE.Views.ShapeSettings.strFill": "Vulling", "DE.Views.ShapeSettings.strForeground": "Voorgrondkleur", "DE.Views.ShapeSettings.strPattern": "Patroon", + "DE.Views.ShapeSettings.strShadow": "Weergeef schaduw", "DE.Views.ShapeSettings.strSize": "Grootte", "DE.Views.ShapeSettings.strStroke": "Streek", "DE.Views.ShapeSettings.strTransparency": "Ondoorzichtigheid", @@ -1579,7 +1980,9 @@ "DE.Views.ShapeSettings.textColor": "Kleuropvulling", "DE.Views.ShapeSettings.textDirection": "Richting", "DE.Views.ShapeSettings.textEmptyPattern": "Geen patroon", + "DE.Views.ShapeSettings.textFlip": "Draaien", "DE.Views.ShapeSettings.textFromFile": "Van bestand", + "DE.Views.ShapeSettings.textFromStorage": "Van Opslag", "DE.Views.ShapeSettings.textFromUrl": "Van URL", "DE.Views.ShapeSettings.textGradient": "Kleurovergang", "DE.Views.ShapeSettings.textGradientFill": "Vulling met kleurovergang", @@ -1593,6 +1996,8 @@ "DE.Views.ShapeSettings.textPatternFill": "Patroon", "DE.Views.ShapeSettings.textRadial": "Radiaal", "DE.Views.ShapeSettings.textRotate90": "Draaien 90°", + "DE.Views.ShapeSettings.textRotation": "Draaien", + "DE.Views.ShapeSettings.textSelectImage": "selecteer afbeelding", "DE.Views.ShapeSettings.textSelectTexture": "Selecteren", "DE.Views.ShapeSettings.textStretch": "Uitrekken", "DE.Views.ShapeSettings.textStyle": "Stijl", @@ -1647,7 +2052,11 @@ "DE.Views.StyleTitleDialog.textTitle": "Titel", "DE.Views.StyleTitleDialog.txtEmpty": "Dit veld is vereist", "DE.Views.StyleTitleDialog.txtNotEmpty": "Veld mag niet leeg zijn", + "DE.Views.StyleTitleDialog.txtSameAs": "Hetzelfde als een nieuwe stijl gemaakt", + "DE.Views.TableFormulaDialog.textBookmark": "Bladwijzer plakken", + "DE.Views.TableFormulaDialog.textFormat": "Getalnotatie", "DE.Views.TableFormulaDialog.textFormula": "Formule", + "DE.Views.TableFormulaDialog.textInsertFunction": "Plak functie", "DE.Views.TableFormulaDialog.textTitle": "Formule instellingen", "DE.Views.TableOfContentsSettings.strAlign": "Paginanummers rechts uitlijnen", "DE.Views.TableOfContentsSettings.strLinks": "Inhoudsopgave als link gebruiken", @@ -1665,6 +2074,7 @@ "DE.Views.TableOfContentsSettings.txtClassic": "Klassiek", "DE.Views.TableOfContentsSettings.txtCurrent": "Huidig", "DE.Views.TableOfContentsSettings.txtModern": "Modern", + "DE.Views.TableOfContentsSettings.txtOnline": "Online", "DE.Views.TableOfContentsSettings.txtSimple": "Simpel", "DE.Views.TableOfContentsSettings.txtStandard": "Standaard", "DE.Views.TableSettings.deleteColumnText": "Kolom verwijderen", @@ -1714,6 +2124,14 @@ "DE.Views.TableSettings.tipRight": "Alleen buitenrand rechts instellen", "DE.Views.TableSettings.tipTop": "Alleen buitenrand boven instellen", "DE.Views.TableSettings.txtNoBorders": "Geen randen", + "DE.Views.TableSettings.txtTable_Accent": "Accent", + "DE.Views.TableSettings.txtTable_Colorful": "Kleurrijk", + "DE.Views.TableSettings.txtTable_Dark": "Donker", + "DE.Views.TableSettings.txtTable_GridTable": "Rastertafel", + "DE.Views.TableSettings.txtTable_Light": "licht", + "DE.Views.TableSettings.txtTable_ListTable": "Lijst tafel", + "DE.Views.TableSettings.txtTable_PlainTable": "Leeg tabel", + "DE.Views.TableSettings.txtTable_TableGrid": "Tabel raster", "DE.Views.TableSettingsAdvanced.textAlign": "Uitlijning", "DE.Views.TableSettingsAdvanced.textAlignment": "Uitlijning", "DE.Views.TableSettingsAdvanced.textAllowSpacing": "Afstand tussen cellen", @@ -1805,9 +2223,11 @@ "DE.Views.TextArtSettings.textTemplate": "Sjabloon", "DE.Views.TextArtSettings.textTransform": "Transformeren", "DE.Views.TextArtSettings.txtNoBorders": "Geen lijn", + "DE.Views.Toolbar.capBtnAddComment": "Opmerking toevoegen", "DE.Views.Toolbar.capBtnBlankPage": "Lege pagina", "DE.Views.Toolbar.capBtnColumns": "Kolommen", "DE.Views.Toolbar.capBtnComment": "Opmerking", + "DE.Views.Toolbar.capBtnDateTime": "Datum & Tijd", "DE.Views.Toolbar.capBtnInsChart": "Grafiek", "DE.Views.Toolbar.capBtnInsControls": "Inhoud beheer", "DE.Views.Toolbar.capBtnInsDropcap": "Initiaal", @@ -1816,37 +2236,48 @@ "DE.Views.Toolbar.capBtnInsImage": "Afbeelding", "DE.Views.Toolbar.capBtnInsPagebreak": "Pagina-eindes", "DE.Views.Toolbar.capBtnInsShape": "Vorm", + "DE.Views.Toolbar.capBtnInsSymbol": "symbool", "DE.Views.Toolbar.capBtnInsTable": "Tabel", "DE.Views.Toolbar.capBtnInsTextart": "Text Art", "DE.Views.Toolbar.capBtnInsTextbox": "Tekstvak", "DE.Views.Toolbar.capBtnMargins": "Marges", "DE.Views.Toolbar.capBtnPageOrient": "Oriëntatie ", "DE.Views.Toolbar.capBtnPageSize": "Grootte", + "DE.Views.Toolbar.capBtnWatermark": "Watermerk", "DE.Views.Toolbar.capImgAlign": "Uitlijnen", "DE.Views.Toolbar.capImgBackward": "Naar achteren verplaatsen", "DE.Views.Toolbar.capImgForward": "Naar voren verplaatsen", "DE.Views.Toolbar.capImgGroup": "Groep", "DE.Views.Toolbar.capImgWrapping": "Tekstterugloop", "DE.Views.Toolbar.mniCustomTable": "Aangepaste tabel invoegen", + "DE.Views.Toolbar.mniDrawTable": "Teken Tabel", "DE.Views.Toolbar.mniEditControls": "Beheer instellingen", "DE.Views.Toolbar.mniEditDropCap": "Instellingen decoratieve initiaal", "DE.Views.Toolbar.mniEditFooter": "Voettekst bewerken", "DE.Views.Toolbar.mniEditHeader": "Koptekst bewerken", + "DE.Views.Toolbar.mniEraseTable": "Tabel wissen", "DE.Views.Toolbar.mniHiddenBorders": "Verborgen tabelranden", "DE.Views.Toolbar.mniHiddenChars": "Niet-afdrukbare tekens", + "DE.Views.Toolbar.mniHighlightControls": "Markeer Instellingen", "DE.Views.Toolbar.mniImageFromFile": "Afbeelding uit bestand", + "DE.Views.Toolbar.mniImageFromStorage": "Afbeelding van opslag", "DE.Views.Toolbar.mniImageFromUrl": "Afbeelding van URL", "DE.Views.Toolbar.strMenuNoFill": "Geen vulling", "DE.Views.Toolbar.textAutoColor": "Automatisch", "DE.Views.Toolbar.textBold": "Vet", "DE.Views.Toolbar.textBottom": "Onder:", + "DE.Views.Toolbar.textCheckboxControl": "Selectievak", "DE.Views.Toolbar.textColumnsCustom": "Aangepaste kolommen", "DE.Views.Toolbar.textColumnsLeft": "Links", "DE.Views.Toolbar.textColumnsOne": "Eén", "DE.Views.Toolbar.textColumnsRight": "Rechts", "DE.Views.Toolbar.textColumnsThree": "Drie", "DE.Views.Toolbar.textColumnsTwo": "Twee", + "DE.Views.Toolbar.textComboboxControl": "Keuzelijst", "DE.Views.Toolbar.textContPage": "Doorlopende pagina", + "DE.Views.Toolbar.textDateControl": "Datum", + "DE.Views.Toolbar.textDropdownControl": "Keuzelijst", + "DE.Views.Toolbar.textEditWatermark": "Aangepast watermerk", "DE.Views.Toolbar.textEvenPage": "Even pagina", "DE.Views.Toolbar.textInMargin": "In marge", "DE.Views.Toolbar.textInsColumnBreak": "Invoegen kolomeinde", @@ -1858,6 +2289,7 @@ "DE.Views.Toolbar.textItalic": "Cursief", "DE.Views.Toolbar.textLandscape": "Liggend", "DE.Views.Toolbar.textLeft": "Links:", + "DE.Views.Toolbar.textListSettings": "Lijst instellingen", "DE.Views.Toolbar.textMarginsLast": "Laatste aangepaste", "DE.Views.Toolbar.textMarginsModerate": "Gemiddeld", "DE.Views.Toolbar.textMarginsNarrow": "Smal", @@ -1865,15 +2297,17 @@ "DE.Views.Toolbar.textMarginsUsNormal": "Normaal (VS)", "DE.Views.Toolbar.textMarginsWide": "Breed", "DE.Views.Toolbar.textNewColor": "Nieuwe aangepaste kleur toevoegen", - "Common.UI.ColorButton.textNewColor": "Nieuwe aangepaste kleur toevoegen", "DE.Views.Toolbar.textNextPage": "Volgende pagina", + "DE.Views.Toolbar.textNoHighlight": "Geen accentuering", "DE.Views.Toolbar.textNone": "Geen", "DE.Views.Toolbar.textOddPage": "Oneven pagina", "DE.Views.Toolbar.textPageMarginsCustom": "Aangepaste marges", "DE.Views.Toolbar.textPageSizeCustom": "Aangepast paginaformaat", + "DE.Views.Toolbar.textPictureControl": "Afbeelding", "DE.Views.Toolbar.textPlainControl": "Platte tekst inhoud beheer toevoegen", "DE.Views.Toolbar.textPortrait": "Staand", "DE.Views.Toolbar.textRemoveControl": "Inhoud beheer verwijderen", + "DE.Views.Toolbar.textRemWatermark": "Watermerk verwijderen", "DE.Views.Toolbar.textRichControl": "Uitgebreide tekst inhoud beheer toevoegen", "DE.Views.Toolbar.textRight": "Rechts:", "DE.Views.Toolbar.textStrikeout": "Doorhalen", @@ -1902,6 +2336,7 @@ "DE.Views.Toolbar.tipAlignLeft": "Links uitlijnen", "DE.Views.Toolbar.tipAlignRight": "Rechts uitlijnen", "DE.Views.Toolbar.tipBack": "Terug", + "DE.Views.Toolbar.tipBlankPage": "Invoegen nieuwe pagina", "DE.Views.Toolbar.tipChangeChart": "Grafiektype wijzigen", "DE.Views.Toolbar.tipClearStyle": "Stijl wissen", "DE.Views.Toolbar.tipColorSchemas": "Kleurenschema wijzigen", @@ -1909,6 +2344,7 @@ "DE.Views.Toolbar.tipControls": "Inhoud beheer toevoegen", "DE.Views.Toolbar.tipCopy": "Kopiëren", "DE.Views.Toolbar.tipCopyStyle": "Stijl kopiëren", + "DE.Views.Toolbar.tipDateTime": "Invoegen huidige datum en tijd", "DE.Views.Toolbar.tipDecFont": "Tekengrootte verminderen", "DE.Views.Toolbar.tipDecPrLeft": "Inspringing verkleinen", "DE.Views.Toolbar.tipDropCap": "Decoratieve initiaal invoegen", @@ -1927,6 +2363,7 @@ "DE.Views.Toolbar.tipInsertImage": "Afbeelding invoegen", "DE.Views.Toolbar.tipInsertNum": "Paginanummer invoegen", "DE.Views.Toolbar.tipInsertShape": "AutoVorm invoegen", + "DE.Views.Toolbar.tipInsertSymbol": "Invoegen symbool", "DE.Views.Toolbar.tipInsertTable": "Tabel invoegen", "DE.Views.Toolbar.tipInsertText": "Tekstvak invoegen", "DE.Views.Toolbar.tipInsertTextArt": "Text Art Invoegen", @@ -1951,6 +2388,7 @@ "DE.Views.Toolbar.tipShowHiddenChars": "Niet-afdrukbare tekens", "DE.Views.Toolbar.tipSynchronize": "Het document is gewijzigd door een andere gebruiker. Klik om uw wijzigingen op te slaan en de updates opnieuw te laden.", "DE.Views.Toolbar.tipUndo": "Ongedaan maken", + "DE.Views.Toolbar.tipWatermark": "Bewerken watermerk", "DE.Views.Toolbar.txtDistribHor": "Horizontaal verdelen", "DE.Views.Toolbar.txtDistribVert": "Verticaal verdelen", "DE.Views.Toolbar.txtMarginAlign": "Uitlijnen naar marge", @@ -1976,5 +2414,30 @@ "DE.Views.Toolbar.txtScheme6": "Concours", "DE.Views.Toolbar.txtScheme7": "Vermogen", "DE.Views.Toolbar.txtScheme8": "Stroom", - "DE.Views.Toolbar.txtScheme9": "Gieterij" + "DE.Views.Toolbar.txtScheme9": "Gieterij", + "DE.Views.WatermarkSettingsDialog.textAuto": "Automatisch", + "DE.Views.WatermarkSettingsDialog.textBold": "Vet", + "DE.Views.WatermarkSettingsDialog.textColor": "Tekstkleur", + "DE.Views.WatermarkSettingsDialog.textDiagonal": "Diagonaal", + "DE.Views.WatermarkSettingsDialog.textFont": "Lettertype", + "DE.Views.WatermarkSettingsDialog.textFromFile": "Van bestand", + "DE.Views.WatermarkSettingsDialog.textFromStorage": "Van Opslag", + "DE.Views.WatermarkSettingsDialog.textFromUrl": "Van URL", + "DE.Views.WatermarkSettingsDialog.textHor": "Horizontaal", + "DE.Views.WatermarkSettingsDialog.textImageW": "Afbeelding watermerk", + "DE.Views.WatermarkSettingsDialog.textItalic": "Cursief", + "DE.Views.WatermarkSettingsDialog.textLanguage": "Taal", + "DE.Views.WatermarkSettingsDialog.textLayout": "Indeling", + "DE.Views.WatermarkSettingsDialog.textNewColor": "Nieuwe aangepaste kleur toevoegen", + "DE.Views.WatermarkSettingsDialog.textNone": "geen", + "DE.Views.WatermarkSettingsDialog.textScale": "Schaal", + "DE.Views.WatermarkSettingsDialog.textSelect": "Selecteer afbeelding", + "DE.Views.WatermarkSettingsDialog.textStrikeout": "Doorhalen", + "DE.Views.WatermarkSettingsDialog.textText": "Tekst", + "DE.Views.WatermarkSettingsDialog.textTextW": "Tekst watermerk", + "DE.Views.WatermarkSettingsDialog.textTitle": "Watermerk Instellingen", + "DE.Views.WatermarkSettingsDialog.textTransparency": "semi-transparant", + "DE.Views.WatermarkSettingsDialog.textUnderline": "Onderstreept", + "DE.Views.WatermarkSettingsDialog.tipFontName": "Lettertype", + "DE.Views.WatermarkSettingsDialog.tipFontSize": "Tekengrootte" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/pt.json b/apps/documenteditor/main/locale/pt.json index edb65d930..cb96326aa 100644 --- a/apps/documenteditor/main/locale/pt.json +++ b/apps/documenteditor/main/locale/pt.json @@ -560,8 +560,8 @@ "DE.Controllers.Main.waitText": "Aguarde...", "DE.Controllers.Main.warnBrowserIE9": "O aplicativo tem baixa capacidade no IE9. Usar IE10 ou superior", "DE.Controllers.Main.warnBrowserZoom": "A configuração de zoom atual de seu navegador não é completamente suportada. Redefina para o zoom padrão pressionando Ctrl+0.", - "DE.Controllers.Main.warnLicenseExp": "Sua licença expirou.
Atualize sua licença e refresque a página.", "DE.Controllers.Main.warnLicenseExceeded": "Você atingiu o limite de conexões simultâneas para editores %1. Este documento será aberto apenas para visualização.
Entre em contato com seu administrador para saber mais.", + "DE.Controllers.Main.warnLicenseExp": "Sua licença expirou.
Atualize sua licença e refresque a página.", "DE.Controllers.Main.warnLicenseUsersExceeded": "Você atingiu o limite de usuários para editores %1. Entre em contato com seu administrador para saber mais.", "DE.Controllers.Main.warnNoLicense": "Você atingiu o limite de conexões simultâneas para editores %1. Este documento será aberto apenas para visualização.
Entre em contato com a equipe de vendas da %1 para obter os termos de atualização pessoais.", "DE.Controllers.Main.warnNoLicenseUsers": "Você atingiu o limite de usuários para editores %1.
Entre em contato com a equipe de vendas da %1 para obter os termos de atualização pessoais.", diff --git a/apps/documenteditor/main/locale/ru.json b/apps/documenteditor/main/locale/ru.json index 0ffa405c9..693d85077 100644 --- a/apps/documenteditor/main/locale/ru.json +++ b/apps/documenteditor/main/locale/ru.json @@ -80,7 +80,7 @@ "Common.define.chartData.textPoint": "Точечная", "Common.define.chartData.textStock": "Биржевая", "Common.define.chartData.textSurface": "Поверхность", - "Common.Translation.warnFileLocked": "Документ используется другим приложением. Вы можете продолжить редактирование и сохранить его как копию.", + "Common.Translation.warnFileLocked": "Файл редактируется в другом приложении. Вы можете продолжить редактирование и сохранить его как копию.", "Common.UI.Calendar.textApril": "Апрель", "Common.UI.Calendar.textAugust": "Август", "Common.UI.Calendar.textDecember": "Декабрь", @@ -750,8 +750,8 @@ "DE.Controllers.Main.waitText": "Пожалуйста, подождите...", "DE.Controllers.Main.warnBrowserIE9": "В IE9 приложение имеет низкую производительность. Используйте IE10 или более позднюю версию.", "DE.Controllers.Main.warnBrowserZoom": "Текущее значение масштаба страницы в браузере поддерживается не полностью. Вернитесь к масштабу по умолчанию, нажав Ctrl+0.", - "DE.Controllers.Main.warnLicenseExp": "Истек срок действия лицензии.
Обновите лицензию, а затем обновите страницу.", "DE.Controllers.Main.warnLicenseExceeded": "Вы достигли лимита на одновременные подключения к редакторам %1. Этот документ будет открыт только на просмотр.
Свяжитесь с администратором, чтобы узнать больше.", + "DE.Controllers.Main.warnLicenseExp": "Истек срок действия лицензии.
Обновите лицензию, а затем обновите страницу.", "DE.Controllers.Main.warnLicenseUsersExceeded": "Вы достигли лимита на количество пользователей редакторов %1.
Свяжитесь с администратором, чтобы узнать больше.", "DE.Controllers.Main.warnNoLicense": "Вы достигли лимита на одновременные подключения к редакторам %1. Этот документ будет открыт на просмотр.
Напишите в отдел продаж %1, чтобы обсудить индивидуальные условия лицензирования.", "DE.Controllers.Main.warnNoLicenseUsers": "Вы достигли лимита на одновременные подключения к редакторам %1.
Напишите в отдел продаж %1, чтобы обсудить индивидуальные условия лицензирования.", diff --git a/apps/documenteditor/main/locale/sk.json b/apps/documenteditor/main/locale/sk.json index 16be7408b..9b5a91215 100644 --- a/apps/documenteditor/main/locale/sk.json +++ b/apps/documenteditor/main/locale/sk.json @@ -49,6 +49,9 @@ "Common.Controllers.ReviewChanges.textParaDeleted": "Odstránený odsek", "Common.Controllers.ReviewChanges.textParaFormatted": "Formátovaný odsek", "Common.Controllers.ReviewChanges.textParaInserted": "Vložený odsek", + "Common.Controllers.ReviewChanges.textParaMoveFromDown": "Presunuté nadol:", + "Common.Controllers.ReviewChanges.textParaMoveFromUp": "Presunuté nahor:", + "Common.Controllers.ReviewChanges.textParaMoveTo": "Presunuté:", "Common.Controllers.ReviewChanges.textPosition": "Pozícia", "Common.Controllers.ReviewChanges.textRight": "Zarovnať doprava", "Common.Controllers.ReviewChanges.textShape": "Tvar", @@ -60,17 +63,53 @@ "Common.Controllers.ReviewChanges.textStrikeout": "Prečiarknuť", "Common.Controllers.ReviewChanges.textSubScript": "Dolný index", "Common.Controllers.ReviewChanges.textSuperScript": "Horný index", + "Common.Controllers.ReviewChanges.textTableChanged": "Nastavenia tabuľky zmenené", + "Common.Controllers.ReviewChanges.textTableRowsAdd": "Riadky tabuľky pridané", + "Common.Controllers.ReviewChanges.textTableRowsDel": "Riadky tabuľky odstránené", "Common.Controllers.ReviewChanges.textTabs": "Zmeniť tabuľky", "Common.Controllers.ReviewChanges.textUnderline": "Podčiarknuť", "Common.Controllers.ReviewChanges.textWidow": "Ovládanie okien", "Common.define.chartData.textArea": "Plošný graf", "Common.define.chartData.textBar": "Pruhový graf", + "Common.define.chartData.textCharts": "Grafy", "Common.define.chartData.textColumn": "Stĺpec", "Common.define.chartData.textLine": "Čiara/líniový graf", "Common.define.chartData.textPie": "Koláčový graf", "Common.define.chartData.textPoint": "Bodový graf", "Common.define.chartData.textStock": "Akcie/burzový graf", "Common.define.chartData.textSurface": "Povrch", + "Common.UI.Calendar.textApril": "apríl", + "Common.UI.Calendar.textAugust": "august", + "Common.UI.Calendar.textDecember": "december", + "Common.UI.Calendar.textFebruary": "február", + "Common.UI.Calendar.textJanuary": "január", + "Common.UI.Calendar.textJuly": "júl", + "Common.UI.Calendar.textJune": "jún", + "Common.UI.Calendar.textMarch": "marec", + "Common.UI.Calendar.textMay": "máj", + "Common.UI.Calendar.textNovember": "november", + "Common.UI.Calendar.textOctober": "október", + "Common.UI.Calendar.textSeptember": "september", + "Common.UI.Calendar.textShortApril": "apr.", + "Common.UI.Calendar.textShortAugust": "aug.", + "Common.UI.Calendar.textShortDecember": "dec.", + "Common.UI.Calendar.textShortFebruary": "feb.", + "Common.UI.Calendar.textShortFriday": "pi", + "Common.UI.Calendar.textShortJanuary": "jan.", + "Common.UI.Calendar.textShortJuly": "júl", + "Common.UI.Calendar.textShortJune": "jún", + "Common.UI.Calendar.textShortMarch": "mar.", + "Common.UI.Calendar.textShortMay": "máj", + "Common.UI.Calendar.textShortMonday": "po", + "Common.UI.Calendar.textShortNovember": "nov.", + "Common.UI.Calendar.textShortOctober": "okt.", + "Common.UI.Calendar.textShortSaturday": "so", + "Common.UI.Calendar.textShortSeptember": "sep.", + "Common.UI.Calendar.textShortSunday": "ne", + "Common.UI.Calendar.textShortThursday": "št", + "Common.UI.Calendar.textShortTuesday": "út", + "Common.UI.Calendar.textShortWednesday": "st", + "Common.UI.ColorButton.textNewColor": "Pridať novú vlastnú farbu", "Common.UI.ComboBorderSize.txtNoBorders": "Bez orámovania", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Bez orámovania", "Common.UI.ComboDataView.emptyComboText": "Žiadne štýly", @@ -113,6 +152,8 @@ "Common.Views.About.txtPoweredBy": "Poháňaný ", "Common.Views.About.txtTel": "tel.:", "Common.Views.About.txtVersion": "Verzia", + "Common.Views.AutoCorrectDialog.textBy": "Od:", + "Common.Views.AutoCorrectDialog.textTitle": "Automatická oprava", "Common.Views.Chat.textSend": "Poslať", "Common.Views.Comments.textAdd": "Pridať", "Common.Views.Comments.textAddComment": "Pridať komentár", @@ -143,9 +184,9 @@ "Common.Views.ExternalMergeEditor.textClose": "Zatvoriť", "Common.Views.ExternalMergeEditor.textSave": "Uložiť a Zatvoriť", "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.labelCoUsersDescr": "Používatelia, ktorí súbor práve upravujú:", "Common.Views.Header.textAdvSettings": "Pokročilé nastavenia", - "Common.Views.Header.textBack": "Prejsť do Dokumentov", + "Common.Views.Header.textBack": "Otvoriť umiestnenie súboru", "Common.Views.Header.textSaveBegin": "Ukladanie...", "Common.Views.Header.textSaveChanged": "Modifikovaný", "Common.Views.Header.textSaveEnd": "Všetky zmeny boli uložené", @@ -176,6 +217,7 @@ "Common.Views.InsertTableDialog.txtTitle": "Veľkosť tabuľky", "Common.Views.InsertTableDialog.txtTitleSplit": "Rozdeliť bunku", "Common.Views.LanguageDialog.labelSelect": "Vybrať jazyk dokumentu", + "Common.Views.OpenDialog.closeButtonText": "Zatvoriť súbor", "Common.Views.OpenDialog.txtEncoding": "Kódovanie", "Common.Views.OpenDialog.txtIncorrectPwd": "Heslo je nesprávne.", "Common.Views.OpenDialog.txtPassword": "Heslo", @@ -189,18 +231,27 @@ "Common.Views.Plugins.textLoading": "Nahrávanie", "Common.Views.Plugins.textStart": "Začať/začiatok", "Common.Views.Plugins.textStop": "Stop", + "Common.Views.Protection.hintAddPwd": "Šifrovať heslom", "Common.Views.Protection.hintPwd": "Zmeniť alebo odstrániť heslo", "Common.Views.Protection.hintSignature": "Pridajte riadok digitálneho podpisu alebo podpisu", "Common.Views.Protection.txtAddPwd": "Pridajte heslo", "Common.Views.Protection.txtChangePwd": "Zmeniť heslo", "Common.Views.Protection.txtDeletePwd": "Odstrániť heslo", + "Common.Views.Protection.txtEncrypt": "Šifrovať", "Common.Views.Protection.txtInvisibleSignature": "Pridajte digitálny podpis", "Common.Views.Protection.txtSignature": "Podpis", + "Common.Views.Protection.txtSignatureLine": "Pridať riadok na podpis", "Common.Views.RenameDialog.textName": "Názov súboru", "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.mniFromFile": "Dokument zo súboru", + "Common.Views.ReviewChanges.mniFromStorage": "Dokument z úložiska", + "Common.Views.ReviewChanges.mniFromUrl": "Dokument z URL", + "Common.Views.ReviewChanges.mniSettings": "Nastavenia porovnávania", + "Common.Views.ReviewChanges.strFast": "Rýchly", "Common.Views.ReviewChanges.tipAcceptCurrent": "Akceptovať aktuálnu zmenu", + "Common.Views.ReviewChanges.tipCompare": "Porovnať súčasný dokument s iným", "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", @@ -210,11 +261,15 @@ "Common.Views.ReviewChanges.txtAcceptAll": "Akceptovať všetky zmeny", "Common.Views.ReviewChanges.txtAcceptChanges": "Akceptovať zmeny", "Common.Views.ReviewChanges.txtAcceptCurrent": "Akceptovať aktuálnu zmenu", + "Common.Views.ReviewChanges.txtChat": "Rozhovor", "Common.Views.ReviewChanges.txtClose": "Zatvoriť", "Common.Views.ReviewChanges.txtCoAuthMode": "Režim spoločnej úpravy", + "Common.Views.ReviewChanges.txtCompare": "Porovnať", "Common.Views.ReviewChanges.txtDocLang": "Jazyk", "Common.Views.ReviewChanges.txtFinal": "Všetky zmeny prijaté (ukážka)", + "Common.Views.ReviewChanges.txtFinalCap": "Posledný", "Common.Views.ReviewChanges.txtMarkup": "Všetky zmeny (upravované)", + "Common.Views.ReviewChanges.txtMarkupCap": "Vyznačenie", "Common.Views.ReviewChanges.txtNext": "Nasledujúci", "Common.Views.ReviewChanges.txtOriginal": "Všetky zmeny boli zamietnuté (ukážka)", "Common.Views.ReviewChanges.txtPrev": "Predchádzajúci", @@ -239,6 +294,9 @@ "Common.Views.ReviewPopover.textCancel": "Zrušiť", "Common.Views.ReviewPopover.textClose": "Zatvoriť", "Common.Views.ReviewPopover.textEdit": "OK", + "Common.Views.ReviewPopover.textOpenAgain": "Znova otvoriť", + "Common.Views.SaveAsDlg.textLoading": "Načítavanie", + "Common.Views.SelectFileDlg.textLoading": "Načítavanie", "Common.Views.SignDialog.textBold": "Tučné", "Common.Views.SignDialog.textCertificate": "Certifikát", "Common.Views.SignDialog.textChange": "Zmeniť", @@ -260,8 +318,14 @@ "Common.Views.SignSettingsDialog.textInfoTitle": "Názov signatára", "Common.Views.SignSettingsDialog.textInstructions": "Pokyny pre signatára", "Common.Views.SignSettingsDialog.textShowDate": "Zobraziť dátum podpisu v riadku podpisu", - "Common.Views.SignSettingsDialog.textTitle": "Nastavenia Podpisu", + "Common.Views.SignSettingsDialog.textTitle": "Nastavenia podpisu", "Common.Views.SignSettingsDialog.txtEmpty": "Toto pole sa vyžaduje", + "Common.Views.SymbolTableDialog.textCharacter": "Symbol", + "Common.Views.SymbolTableDialog.textCopyright": "Znak autorských práv", + "Common.Views.SymbolTableDialog.textDCQuote": "Uzatvárajúca úvodzovka", + "Common.Views.SymbolTableDialog.textFont": "Písmo", + "Common.Views.SymbolTableDialog.textQEmSpace": "Medzera 1/4 Em", + "Common.Views.SymbolTableDialog.textSCQuote": "Uzatvárajúca úvodzovka", "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", "DE.Controllers.LeftMenu.notcriticalErrorTitle": "Upozornenie", @@ -271,6 +335,7 @@ "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ť?", + "DE.Controllers.LeftMenu.warnDownloadAsRTF": "Ak budete pokračovať v ukladaní tohto formátu, časť z formátovania sa môže stratiť.
Ste si istí, že chcete pokračovať?", "DE.Controllers.Main.applyChangesTextText": "Načítavanie zmien...", "DE.Controllers.Main.applyChangesTitleText": "Načítavanie zmien", "DE.Controllers.Main.convertationTimeoutText": "Prekročený čas konverzie.", @@ -286,13 +351,16 @@ "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.", "DE.Controllers.Main.errorDatabaseConnection": "Externá chyba.
Chyba spojenia databázy. Prosím, kontaktujte podporu ak chyba pretrváva. ", + "DE.Controllers.Main.errorDataEncrypted": "Boli prijaté zašifrované zmeny, nemožno ich dekódovať.", "DE.Controllers.Main.errorDataRange": "Nesprávny rozsah údajov.", "DE.Controllers.Main.errorDefaultMessage": "Kód chyby: %1", + "DE.Controllers.Main.errorEditingDownloadas": "Pri práci s dokumentom došlo k chybe.
Použite voľbu \"Stiahnuť ako...\" a uložte si záložnú kópiu súboru na svoj počítač.", + "DE.Controllers.Main.errorEditingSaveas": "Pri práci s dokumentom došlo k chybe.
Použite voľbu \"Uložiť ako...\" a uložte si záložnú kópiu súboru na svoj počítač.", "DE.Controllers.Main.errorFilePassProtect": "Dokument je chránený heslom a nie je možné ho otvoriť.", "DE.Controllers.Main.errorForceSave": "Pri ukladaní súboru sa vyskytla chyba. Ak chcete súbor uložiť na pevný disk počítača, použite možnosť 'Prevziať ako' alebo to skúste znova neskôr.", "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.errorMailMergeLoadFile": "Načítavanie zlyhalo. Vyberte iný súbor.", "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.", @@ -339,13 +407,15 @@ "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.textApplyAll": "Použiť na všetky rovnice", "DE.Controllers.Main.textBuyNow": "Navštíviť webovú stránku", "DE.Controllers.Main.textChangesSaved": "Všetky zmeny boli uložené", "DE.Controllers.Main.textClose": "Zatvoriť", "DE.Controllers.Main.textCloseTip": "Kliknutím zavrite tip", "DE.Controllers.Main.textContactUs": "Kontaktujte predajcu", + "DE.Controllers.Main.textLearnMore": "Viac informácií", "DE.Controllers.Main.textLoadingDocument": "Načítavanie dokumentu", - "DE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE obmedzenie pripojenia", + "DE.Controllers.Main.textNoLicenseTitle": "Bol dosiahnutý limit licencie", "DE.Controllers.Main.textShape": "Tvar", "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.", @@ -360,24 +430,95 @@ "DE.Controllers.Main.txtButtons": "Tlačidlá", "DE.Controllers.Main.txtCallouts": "Popisky obrázku", "DE.Controllers.Main.txtCharts": "Grafy", + "DE.Controllers.Main.txtChoose": "Zvolte položku.", + "DE.Controllers.Main.txtCurrentDocument": "Aktuálny dokument", "DE.Controllers.Main.txtDiagramTitle": "Názov grafu", "DE.Controllers.Main.txtEditingMode": "Nastaviť režim úprav ...", + "DE.Controllers.Main.txtEnterDate": "Zadajte dátum.", "DE.Controllers.Main.txtErrorLoadHistory": "Načítavanie histórie zlyhalo", "DE.Controllers.Main.txtEvenPage": "Párna stránka", "DE.Controllers.Main.txtFiguredArrows": "Šipky", "DE.Controllers.Main.txtFirstPage": "Prvá strana", "DE.Controllers.Main.txtFooter": "Päta stránky", "DE.Controllers.Main.txtHeader": "Hlavička", + "DE.Controllers.Main.txtHyperlink": "Hypertextový odkaz", "DE.Controllers.Main.txtLines": "Riadky", + "DE.Controllers.Main.txtMainDocOnly": "Chyba! Iba hlavný dokument.", "DE.Controllers.Main.txtMath": "Matematika", "DE.Controllers.Main.txtNeedSynchronize": "Máte aktualizácie", + "DE.Controllers.Main.txtNoText": "Chyba! V dokumente nie je žiaden text špecifikovaného štýlu.", "DE.Controllers.Main.txtOddPage": "Nepárna strana", "DE.Controllers.Main.txtOnPage": "na strane", "DE.Controllers.Main.txtRectangles": "Obdĺžniky", "DE.Controllers.Main.txtSameAsPrev": "Rovnaký ako predchádzajúci", "DE.Controllers.Main.txtSection": "-Sekcia", "DE.Controllers.Main.txtSeries": "Rady", + "DE.Controllers.Main.txtShape_actionButtonBackPrevious": "Tlačítko Späť alebo Predchádzajúci", + "DE.Controllers.Main.txtShape_actionButtonBeginning": "Tlačítko Začiatok", + "DE.Controllers.Main.txtShape_actionButtonBlank": "Prázdne tlačítko", + "DE.Controllers.Main.txtShape_actionButtonDocument": "Tlačítko Dokument", + "DE.Controllers.Main.txtShape_actionButtonEnd": "Tlačítko Koniec", + "DE.Controllers.Main.txtShape_actionButtonHelp": "Tlačítko Nápoveda", + "DE.Controllers.Main.txtShape_arc": "Oblúk", + "DE.Controllers.Main.txtShape_bentArrow": "Ohnutá šípka", + "DE.Controllers.Main.txtShape_bentUpArrow": "Šípka ohnutá hore", + "DE.Controllers.Main.txtShape_bevel": "Skosenie", + "DE.Controllers.Main.txtShape_blockArc": "Časť kruhu", + "DE.Controllers.Main.txtShape_bracePair": "Dvojitá zátvorka", + "DE.Controllers.Main.txtShape_can": "Môže", + "DE.Controllers.Main.txtShape_chevron": "Chevron", + "DE.Controllers.Main.txtShape_circularArrow": "okrúhla šípka", + "DE.Controllers.Main.txtShape_cloud": "Cloud", + "DE.Controllers.Main.txtShape_corner": "Roh", + "DE.Controllers.Main.txtShape_cube": "Kocka", + "DE.Controllers.Main.txtShape_curvedConnector3": "Zakrivený konektor", + "DE.Controllers.Main.txtShape_curvedConnector3WithArrow": "Konektor v tvare zakrivenej šípky", + "DE.Controllers.Main.txtShape_curvedConnector3WithTwoArrows": "Konektor v tvare zakrivenej dvojitej šípky", + "DE.Controllers.Main.txtShape_curvedDownArrow": "Šípka zahnutá nadol", + "DE.Controllers.Main.txtShape_curvedLeftArrow": "Šípka zahnutá doľava", + "DE.Controllers.Main.txtShape_curvedRightArrow": "Šípka zahnutá doprava", + "DE.Controllers.Main.txtShape_curvedUpArrow": "Šípka zahnutá nahor", + "DE.Controllers.Main.txtShape_decagon": "Desaťuhoľník", + "DE.Controllers.Main.txtShape_diagStripe": "Priečny prúžok", + "DE.Controllers.Main.txtShape_diamond": "Diamant", + "DE.Controllers.Main.txtShape_dodecagon": "Dvanásťuhoľník", + "DE.Controllers.Main.txtShape_donut": "Šiška", + "DE.Controllers.Main.txtShape_doubleWave": "Dvojitá vlnovka", + "DE.Controllers.Main.txtShape_downArrow": "Šípka dole", + "DE.Controllers.Main.txtShape_ellipse": "Elipsa", + "DE.Controllers.Main.txtShape_ellipseRibbon": "Pruh zahnutý nadol", + "DE.Controllers.Main.txtShape_ellipseRibbon2": "Pruh zahnutý nahor", + "DE.Controllers.Main.txtShape_flowChartAlternateProcess": "Vývojový diagram: Vystriedať proces", + "DE.Controllers.Main.txtShape_flowChartPunchedCard": "Vývojový diagram: Karta", + "DE.Controllers.Main.txtShape_frame": "Rámček", + "DE.Controllers.Main.txtShape_heart": "Srdce", + "DE.Controllers.Main.txtShape_irregularSeal1": "Výbuch 1", + "DE.Controllers.Main.txtShape_irregularSeal2": "Výbuch 2", + "DE.Controllers.Main.txtShape_leftArrow": "Ľavá šípka", + "DE.Controllers.Main.txtShape_line": "Čiara", + "DE.Controllers.Main.txtShape_lineWithArrow": "Šípka", + "DE.Controllers.Main.txtShape_lineWithTwoArrows": "Dvojitá šípka", + "DE.Controllers.Main.txtShape_mathDivide": "Rozdelenie", + "DE.Controllers.Main.txtShape_mathEqual": "Rovná sa", + "DE.Controllers.Main.txtShape_mathMinus": "Mínus", + "DE.Controllers.Main.txtShape_mathNotEqual": "Nerovná sa", + "DE.Controllers.Main.txtShape_noSmoking": "Symbol \"Nie\"", + "DE.Controllers.Main.txtShape_ribbon": "Spodný pruh", + "DE.Controllers.Main.txtShape_spline": "Krivka", + "DE.Controllers.Main.txtShape_star10": "10-cípa hviezda", + "DE.Controllers.Main.txtShape_star12": "12-cípa hviezda", + "DE.Controllers.Main.txtShape_star16": "16-cípa hviezda", + "DE.Controllers.Main.txtShape_star24": "24-cípa hviezda", + "DE.Controllers.Main.txtShape_star32": "32-cípa hviezda", + "DE.Controllers.Main.txtShape_star4": "4-cípa hviezda", + "DE.Controllers.Main.txtShape_star5": "5-cípa hviezda", + "DE.Controllers.Main.txtShape_star6": "6-cípa hviezda", + "DE.Controllers.Main.txtShape_star7": "7-cípa hviezda", + "DE.Controllers.Main.txtShape_star8": "8-cípa hviezda", + "DE.Controllers.Main.txtShape_sun": "Slnko", "DE.Controllers.Main.txtStarsRibbons": "Hviezdy a stuhy", + "DE.Controllers.Main.txtStyle_Caption": "Popis", + "DE.Controllers.Main.txtStyle_footnote_text": "Poznámka pod čiarou", "DE.Controllers.Main.txtStyle_Heading_1": "Nadpis 1", "DE.Controllers.Main.txtStyle_Heading_2": "Nadpis 2", "DE.Controllers.Main.txtStyle_Heading_3": "Nadpis 3", @@ -408,6 +549,7 @@ "DE.Controllers.Main.warnLicenseExp": "Vaša licencia vypršala.
Prosím, aktualizujte si svoju licenciu a obnovte stránku.", "DE.Controllers.Main.warnNoLicense": "Táto verzia aplikácie %1 editors má určité obmedzenia pre súbežné pripojenia k dokumentovému serveru.
Ak potrebujete viac, zvážte aktualizáciu aktuálnej licencie alebo zakúpenie komerčnej.", "DE.Controllers.Main.warnProcessRightsChange": "Bolo vám zamietnuté právo upravovať súbor.", + "DE.Controllers.Navigation.txtBeginning": "Začiatok dokumentu", "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", @@ -420,6 +562,7 @@ "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.textInsert": "Vložiť", "DE.Controllers.Toolbar.textIntegral": "Integrály", "DE.Controllers.Toolbar.textLargeOperator": "Veľké operátory", "DE.Controllers.Toolbar.textLimitAndLog": "Limity a logaritmy", @@ -749,11 +892,37 @@ "DE.Controllers.Toolbar.txtSymbol_zeta": "Zéta", "DE.Controllers.Viewport.textFitPage": "Prispôsobiť na stranu", "DE.Controllers.Viewport.textFitWidth": "Prispôsobiť na šírku", + "DE.Views.AddNewCaptionLabelDialog.textLabel": "Štítok:", "DE.Views.BookmarksDialog.textAdd": "Pridať", "DE.Views.BookmarksDialog.textBookmarkName": "Názov záložky", "DE.Views.BookmarksDialog.textClose": "Zatvoriť", + "DE.Views.BookmarksDialog.textCopy": "Kopírovať", "DE.Views.BookmarksDialog.textDelete": "Vymazať", + "DE.Views.BookmarksDialog.textGetLink": "Získať odkaz", + "DE.Views.BookmarksDialog.textGoto": "Ísť na", + "DE.Views.BookmarksDialog.textLocation": "Umiestnenie", "DE.Views.BookmarksDialog.textTitle": "Záložky", + "DE.Views.BookmarksDialog.txtInvalidName": "Názov záložky môže obsahovať iba písmená, číslice a podčiarknutia a mal by začínať písmenom", + "DE.Views.CaptionDialog.textAdd": "Pridať štítok", + "DE.Views.CaptionDialog.textAfter": "Za", + "DE.Views.CaptionDialog.textBefore": "Pred", + "DE.Views.CaptionDialog.textCaption": "Popis", + "DE.Views.CaptionDialog.textChapter": "Kapitola začína so štýlom", + "DE.Views.CaptionDialog.textColon": "Dvojbodka ", + "DE.Views.CaptionDialog.textDash": "spojovník", + "DE.Views.CaptionDialog.textDelete": "Vymaž označenie", + "DE.Views.CaptionDialog.textEquation": "Rovnica", + "DE.Views.CaptionDialog.textExamples": "Príklady: Tabuľka 2-A, Obrázok 1.IV", + "DE.Views.CaptionDialog.textExclude": "Vylúčiť značku z titulku", + "DE.Views.CaptionDialog.textFigure": "Pozícia", + "DE.Views.CaptionDialog.textInsert": "Vložiť", + "DE.Views.CaptionDialog.textLabel": "Štítok", + "DE.Views.CellsAddDialog.textCol": "Stĺpce", + "DE.Views.CellsAddDialog.textDown": "Pod kurzorom", + "DE.Views.CellsAddDialog.textUp": "Nad kurzorom", + "DE.Views.CellsRemoveDialog.textCol": "Vymaž celý stĺpec", + "DE.Views.CellsRemoveDialog.textRow": "Vymaž celý riadok", + "DE.Views.CellsRemoveDialog.textTitle": "Odstrániť bunky", "DE.Views.ChartSettings.textAdvanced": "Zobraziť pokročilé nastavenia", "DE.Views.ChartSettings.textChartType": "Zmeniť typ grafu", "DE.Views.ChartSettings.textEditData": "Upravovať dáta", @@ -772,10 +941,37 @@ "DE.Views.ChartSettings.txtTight": "Tesný", "DE.Views.ChartSettings.txtTitle": "Graf", "DE.Views.ChartSettings.txtTopAndBottom": "Hore a dole", + "DE.Views.CompareSettingsDialog.textChar": "Úroveň grafického symbolu", + "DE.Views.CompareSettingsDialog.textTitle": "Nastavenia porovnávania", + "DE.Views.ControlSettingsDialog.strGeneral": "Všeobecné", + "DE.Views.ControlSettingsDialog.textAdd": "Pridať", + "DE.Views.ControlSettingsDialog.textAppearance": "Vzhľad", + "DE.Views.ControlSettingsDialog.textApplyAll": "Použiť na všetko", + "DE.Views.ControlSettingsDialog.textBox": "Ohraničovací rámik", + "DE.Views.ControlSettingsDialog.textChange": "Upraviť", + "DE.Views.ControlSettingsDialog.textCheckbox": "Zaškrtávacie políčko", + "DE.Views.ControlSettingsDialog.textChecked": "Zaškrtnutý symbol", + "DE.Views.ControlSettingsDialog.textColor": "Farba", + "DE.Views.ControlSettingsDialog.textCombobox": "Zmiešaná schránka", + "DE.Views.ControlSettingsDialog.textDate": "Formát dátumu", + "DE.Views.ControlSettingsDialog.textDelete": "Odstrániť", + "DE.Views.ControlSettingsDialog.textDisplayName": "Meno/názov na zobrazenie", + "DE.Views.ControlSettingsDialog.textDown": "Dole", + "DE.Views.ControlSettingsDialog.textDropDown": "Rozbaľovací zoznam", + "DE.Views.ControlSettingsDialog.textFormat": "Zobraz dátum takto", + "DE.Views.ControlSettingsDialog.textLang": "Jazyk", + "DE.Views.ControlSettingsDialog.textNone": "žiadny", + "DE.Views.ControlSettingsDialog.textTitle": "Nastavenia kontroly obsahu", + "DE.Views.ControlSettingsDialog.tipChange": "Zmeniť symbol", + "DE.Views.ControlSettingsDialog.txtLockDelete": "Kontrolu obsahu nemožno vymazať", + "DE.Views.ControlSettingsDialog.txtLockEdit": "Obsah nie je možné upravovať", "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.DateTimeDialog.textFormat": "Formáty", + "DE.Views.DateTimeDialog.textLang": "Jazyk", + "DE.Views.DateTimeDialog.txtTitle": "Dátum a čas", "DE.Views.DocumentHolder.aboveText": "Nad", "DE.Views.DocumentHolder.addCommentText": "Pridať komentár", "DE.Views.DocumentHolder.advancedFrameText": "Pokročilé nastavenia rámčeka", @@ -785,6 +981,7 @@ "DE.Views.DocumentHolder.alignmentText": "Zarovnanie", "DE.Views.DocumentHolder.belowText": "pod", "DE.Views.DocumentHolder.breakBeforeText": "Zlom strany pred", + "DE.Views.DocumentHolder.bulletsText": "Odrážky a číslovanie", "DE.Views.DocumentHolder.cellAlignText": "Vertikálne zarovnanie bunky", "DE.Views.DocumentHolder.cellText": "Bunka", "DE.Views.DocumentHolder.centerText": "Stred", @@ -845,10 +1042,22 @@ "DE.Views.DocumentHolder.textArrangeBackward": "Posunúť späť", "DE.Views.DocumentHolder.textArrangeForward": "Posunúť vpred", "DE.Views.DocumentHolder.textArrangeFront": "Premiestniť do popredia", + "DE.Views.DocumentHolder.textCells": "Bunky", + "DE.Views.DocumentHolder.textContentControls": "Kontrola obsahu", + "DE.Views.DocumentHolder.textContinueNumbering": "Pokračovať v číslovaní", "DE.Views.DocumentHolder.textCopy": "Kopírovať", + "DE.Views.DocumentHolder.textCrop": "Orezať", + "DE.Views.DocumentHolder.textCropFill": "Vyplniť", + "DE.Views.DocumentHolder.textCropFit": "Prispôsobiť", "DE.Views.DocumentHolder.textCut": "Vystrihnúť", + "DE.Views.DocumentHolder.textDistributeCols": "Rozdeliť stĺpce", + "DE.Views.DocumentHolder.textDistributeRows": "Rozložiť riadky", + "DE.Views.DocumentHolder.textEditControls": "Nastavenia kontroly obsahu", "DE.Views.DocumentHolder.textEditWrapBoundary": "Upraviť okrajovú obálku", + "DE.Views.DocumentHolder.textFlipH": "Prevrátiť horizontálne", + "DE.Views.DocumentHolder.textFlipV": "Prevrátiť vertikálne", "DE.Views.DocumentHolder.textFromFile": "Zo súboru", + "DE.Views.DocumentHolder.textFromStorage": "Z úložiska", "DE.Views.DocumentHolder.textFromUrl": "Z URL adresy ", "DE.Views.DocumentHolder.textNextPage": "Ďalšia stránka", "DE.Views.DocumentHolder.textPaste": "Vložiť", @@ -863,6 +1072,7 @@ "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ľ.", + "DE.Views.DocumentHolder.toDictionaryText": "Pridať do slovníka", "DE.Views.DocumentHolder.txtAddBottom": "Pridať spodné orámovanie", "DE.Views.DocumentHolder.txtAddFractionBar": "Pridať lištu zlomkov", "DE.Views.DocumentHolder.txtAddHor": "Pridať vodorovnú čiaru", @@ -885,6 +1095,9 @@ "DE.Views.DocumentHolder.txtDeleteEq": "Odstrániť rovnicu", "DE.Views.DocumentHolder.txtDeleteGroupChar": "Odstrániť znak", "DE.Views.DocumentHolder.txtDeleteRadical": "Odstrániť odmocninu", + "DE.Views.DocumentHolder.txtDistribHor": "Rozložiť horizontálne", + "DE.Views.DocumentHolder.txtDistribVert": "Rozložiť vertikálne", + "DE.Views.DocumentHolder.txtEmpty": "(Prázdne)", "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", @@ -987,7 +1200,10 @@ "DE.Views.DropcapSettingsAdvanced.textWidth": "Šírka", "DE.Views.DropcapSettingsAdvanced.tipFontName": "Písmo", "DE.Views.DropcapSettingsAdvanced.txtNoBorders": "Bez orámovania", - "DE.Views.FileMenu.btnBackCaption": "Prejsť do Dokumentov", + "DE.Views.EditListItemDialog.textDisplayName": "Meno/názov na zobrazenie", + "DE.Views.EditListItemDialog.textNameError": "Názov na zobrazenie nesmie byť prázdny.", + "DE.Views.EditListItemDialog.textValueError": "Položka s rovnakou hodnotou už existuje.", + "DE.Views.FileMenu.btnBackCaption": "Otvoriť umiestnenie súboru", "DE.Views.FileMenu.btnCloseMenuCaption": "Zatvoriť menu", "DE.Views.FileMenu.btnCreateNewCaption": "Vytvoriť nový", "DE.Views.FileMenu.btnDownloadCaption": "Stiahnuť ako...", @@ -995,7 +1211,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.btnProtectCaption": "Ochrániť/podpísať", + "DE.Views.FileMenu.btnProtectCaption": "Ochrániť", "DE.Views.FileMenu.btnRecentFilesCaption": "Otvoriť nedávne...", "DE.Views.FileMenu.btnRenameCaption": "Premenovať ..", "DE.Views.FileMenu.btnReturnCaption": "Späť k Dokumentu", @@ -1010,23 +1226,34 @@ "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", + "DE.Views.FileMenuPanels.DocumentInfo.okButtonText": "Použiť", + "DE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Pridať autora", + "DE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Pridať text", + "DE.Views.FileMenuPanels.DocumentInfo.txtAppName": "Aplikácia", "DE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Autor", "DE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Zmeniť prístupové práva", + "DE.Views.FileMenuPanels.DocumentInfo.txtComment": "Komentár", + "DE.Views.FileMenuPanels.DocumentInfo.txtCreated": "Vytvorené", "DE.Views.FileMenuPanels.DocumentInfo.txtLoading": "Nahrávanie...", + "DE.Views.FileMenuPanels.DocumentInfo.txtModifyBy": "Naposledy upravil(a) ", + "DE.Views.FileMenuPanels.DocumentInfo.txtModifyDate": "Naposledy upravené", + "DE.Views.FileMenuPanels.DocumentInfo.txtOwner": "Vlastník", "DE.Views.FileMenuPanels.DocumentInfo.txtPages": "Strany", "DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs": "Odseky", "DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Umiestnenie", "DE.Views.FileMenuPanels.DocumentInfo.txtRights": "Osoby s oprávneniami", "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Symboly s medzerami", "DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Štatistiky", + "DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Predmet", "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Symboly", - "DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Názov dokumentu", + "DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Názov", "DE.Views.FileMenuPanels.DocumentInfo.txtWords": "Slová", "DE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Zmeniť prístupové práva", "DE.Views.FileMenuPanels.DocumentRights.txtRights": "Osoby s oprávneniami", "DE.Views.FileMenuPanels.ProtectDoc.strProtect": "Ochrániť dokument", "DE.Views.FileMenuPanels.ProtectDoc.strSignature": "Podpis", "DE.Views.FileMenuPanels.ProtectDoc.txtEdit": "Upraviť dokument", + "DE.Views.FileMenuPanels.ProtectDoc.txtEditWarning": "Upravovanie odstráni z dokumentu podpisy
Ste si istí, že chcete pokračovať?", "DE.Views.FileMenuPanels.Settings.okButtonText": "Použiť", "DE.Views.FileMenuPanels.Settings.strAlignGuides": "Zapnúť tipy zarovnávania", "DE.Views.FileMenuPanels.Settings.strAutoRecover": "Zapnúť automatickú obnovu", @@ -1039,6 +1266,7 @@ "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.strPaste": "Vystrihni, skopíruj a vlep", "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", @@ -1052,10 +1280,13 @@ "DE.Views.FileMenuPanels.Settings.textAlignGuides": "Nápoveda zarovnania", "DE.Views.FileMenuPanels.Settings.textAutoRecover": "Automatická obnova", "DE.Views.FileMenuPanels.Settings.textAutoSave": "Automatické ukladanie", + "DE.Views.FileMenuPanels.Settings.textCompatible": "Kompatibilita", "DE.Views.FileMenuPanels.Settings.textDisabled": "Zakázané", "DE.Views.FileMenuPanels.Settings.textForceSave": "Uložiť na Server", "DE.Views.FileMenuPanels.Settings.textMinute": "Každú minútu", "DE.Views.FileMenuPanels.Settings.txtAll": "Zobraziť všetko", + "DE.Views.FileMenuPanels.Settings.txtAutoCorrect": "Možnosti automatickej opravy...", + "DE.Views.FileMenuPanels.Settings.txtCacheMode": "Prednastavený mód cache", "DE.Views.FileMenuPanels.Settings.txtCm": "Centimeter", "DE.Views.FileMenuPanels.Settings.txtFitPage": "Prispôsobiť na stranu", "DE.Views.FileMenuPanels.Settings.txtFitWidth": "Prispôsobiť na šírku", @@ -1067,7 +1298,12 @@ "DE.Views.FileMenuPanels.Settings.txtNative": "Pôvodný", "DE.Views.FileMenuPanels.Settings.txtNone": "Zobraziť žiadne", "DE.Views.FileMenuPanels.Settings.txtPt": "Bod", + "DE.Views.FileMenuPanels.Settings.txtRunMacros": "Povoliť všetko", + "DE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "Povoliť všetky makrá bez oznámenia", "DE.Views.FileMenuPanels.Settings.txtSpellCheck": "Kontrola pravopisu", + "DE.Views.FileMenuPanels.Settings.txtStopMacros": "Zablokovať všetko", + "DE.Views.FileMenuPanels.Settings.txtStopMacrosDesc": "Zablokovať všetky makrá bez upozornenia", + "DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Zablokovať všetky makrá s upozornením", "DE.Views.FileMenuPanels.Settings.txtWin": "ako Windows", "DE.Views.HeaderFooterSettings.textBottomCenter": "Dole v strede", "DE.Views.HeaderFooterSettings.textBottomLeft": "Dole vľavo", @@ -1079,7 +1315,9 @@ "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.textPageNumbering": "Číslovanie strany", "DE.Views.HeaderFooterSettings.textPosition": "Pozícia", + "DE.Views.HeaderFooterSettings.textPrev": "Pokračovať z predošlej sekcie", "DE.Views.HeaderFooterSettings.textSameAs": "Odkaz na predchádzajúci", "DE.Views.HeaderFooterSettings.textTopCenter": "Hore v strede", "DE.Views.HeaderFooterSettings.textTopLeft": "Hore vľavo", @@ -1090,16 +1328,24 @@ "DE.Views.HyperlinkSettingsDialog.textTitle": "Nastavenie hypertextového odkazu", "DE.Views.HyperlinkSettingsDialog.textTooltip": "Popis", "DE.Views.HyperlinkSettingsDialog.textUrl": "Odkaz na", + "DE.Views.HyperlinkSettingsDialog.txtBeginning": "Začiatok dokumentu", "DE.Views.HyperlinkSettingsDialog.txtBookmarks": "Záložky", "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.textCrop": "Orezať", + "DE.Views.ImageSettings.textCropFill": "Vyplniť", + "DE.Views.ImageSettings.textCropFit": "Prispôsobiť", "DE.Views.ImageSettings.textEdit": "Upraviť", "DE.Views.ImageSettings.textEditObject": "Upraviť objekt", "DE.Views.ImageSettings.textFitMargins": "Prispôsobiť na okraj", + "DE.Views.ImageSettings.textFlip": "Prevrátiť", "DE.Views.ImageSettings.textFromFile": "Zo súboru", + "DE.Views.ImageSettings.textFromStorage": "Z úložiska", "DE.Views.ImageSettings.textFromUrl": "Z URL adresy ", "DE.Views.ImageSettings.textHeight": "Výška", + "DE.Views.ImageSettings.textHintFlipH": "Prevrátiť horizontálne", + "DE.Views.ImageSettings.textHintFlipV": "Prevrátiť vertikálne", "DE.Views.ImageSettings.textInsert": "Nahradiť obrázok", "DE.Views.ImageSettings.textOriginalSize": "Predvolená veľkosť", "DE.Views.ImageSettings.textSize": "Veľkosť", @@ -1119,8 +1365,10 @@ "DE.Views.ImageSettingsAdvanced.textAltDescription": "Popis", "DE.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. ", "DE.Views.ImageSettingsAdvanced.textAltTitle": "Názov", + "DE.Views.ImageSettingsAdvanced.textAngle": "Uhol", "DE.Views.ImageSettingsAdvanced.textArrows": "Šípky", "DE.Views.ImageSettingsAdvanced.textAspectRatio": "Uzamknúť/zaistiť pomer strán ", + "DE.Views.ImageSettingsAdvanced.textAutofit": "Automatické prispôsobenie", "DE.Views.ImageSettingsAdvanced.textBeginSize": "Veľkosť začiatku", "DE.Views.ImageSettingsAdvanced.textBeginStyle": "Štýl začiatku", "DE.Views.ImageSettingsAdvanced.textBelow": "pod", @@ -1136,6 +1384,7 @@ "DE.Views.ImageSettingsAdvanced.textEndSize": "Veľkosť konca", "DE.Views.ImageSettingsAdvanced.textEndStyle": "Štýl konca", "DE.Views.ImageSettingsAdvanced.textFlat": "Plochý", + "DE.Views.ImageSettingsAdvanced.textFlipped": "Prevrátený", "DE.Views.ImageSettingsAdvanced.textHeight": "Výška", "DE.Views.ImageSettingsAdvanced.textHorizontal": "Vodorovný", "DE.Views.ImageSettingsAdvanced.textJoinType": "Typ pripojenia", @@ -1189,10 +1438,25 @@ "DE.Views.LeftMenu.txtDeveloper": "VÝVOJÁRSKY REŽIM", "DE.Views.LeftMenu.txtTrial": "Skúšobný režim", "DE.Views.Links.capBtnBookmarks": "Záložka", + "DE.Views.Links.capBtnCaption": "Popis", "DE.Views.Links.capBtnInsFootnote": "Poznámka pod čiarou", + "DE.Views.Links.capBtnInsLink": "Hypertextový odkaz", + "DE.Views.Links.confirmDeleteFootnotes": "Chcete odstrániť všetky poznámky pod čiarou?", "DE.Views.Links.mniDelFootnote": "Odstrániť všetky poznámky pod čiarou", + "DE.Views.Links.mniInsFootnote": "Vložiť poznámku pod čiarou", "DE.Views.Links.textContentsSettings": "Nastavenia", + "DE.Views.Links.textGotoFootnote": "Prejdite na Poznámky pod čiarou", + "DE.Views.Links.tipBookmarks": "Vytvoriť záložku", "DE.Views.Links.tipInsertHyperlink": "Pridať odkaz", + "DE.Views.Links.tipNotes": "Vložiť alebo editovať poznámky pod čiarou", + "DE.Views.ListSettingsDialog.textAuto": "Automaticky", + "DE.Views.ListSettingsDialog.textCenter": "Stred", + "DE.Views.ListSettingsDialog.textLeft": "Vľavo", + "DE.Views.ListSettingsDialog.textLevel": "Úroveň", + "DE.Views.ListSettingsDialog.txtAlign": "Zarovnanie", + "DE.Views.ListSettingsDialog.txtBullet": "Odrážka", + "DE.Views.ListSettingsDialog.txtColor": "Farba", + "DE.Views.ListSettingsDialog.txtNone": "žiadne", "DE.Views.MailMergeEmailDlg.filePlaceholder": "PDF", "DE.Views.MailMergeEmailDlg.okButtonText": "Poslať", "DE.Views.MailMergeEmailDlg.subjectPlaceholder": "Téma", @@ -1240,7 +1504,10 @@ "DE.Views.MailMergeSettings.txtPrev": "K predchádzajúcemu záznamu", "DE.Views.MailMergeSettings.txtUntitled": "Neoznačený", "DE.Views.MailMergeSettings.warnProcessMailMerge": "Spustenie zlúčenia zlyhalo", + "DE.Views.Navigation.txtCollapse": "Zbaliť všetko", + "DE.Views.Navigation.txtEmptyItem": "Prázdne záhlavie", "DE.Views.Navigation.txtExpand": "Rozbaliť všetko", + "DE.Views.Navigation.txtExpandToLevel": "Rozšíriť na úroveň", "DE.Views.NoteSettingsDialog.textApply": "Použiť", "DE.Views.NoteSettingsDialog.textApplyTo": "Použiť zmeny na", "DE.Views.NoteSettingsDialog.textContinue": "Nepretržitý", @@ -1261,7 +1528,10 @@ "DE.Views.NoteSettingsDialog.textTitle": "Nastavenia poznámok", "DE.Views.PageMarginsDialog.notcriticalErrorTitle": "Upozornenie", "DE.Views.PageMarginsDialog.textBottom": "Dole", + "DE.Views.PageMarginsDialog.textLandscape": "Na šírku", "DE.Views.PageMarginsDialog.textLeft": "Vľavo", + "DE.Views.PageMarginsDialog.textNormal": "Normálny", + "DE.Views.PageMarginsDialog.textOrientation": "Orientácia", "DE.Views.PageMarginsDialog.textRight": "Vpravo", "DE.Views.PageMarginsDialog.textTitle": "Okraje", "DE.Views.PageMarginsDialog.textTop": "Hore", @@ -1270,6 +1540,7 @@ "DE.Views.PageSizeDialog.textHeight": "Výška", "DE.Views.PageSizeDialog.textTitle": "Veľkosť stránky", "DE.Views.PageSizeDialog.textWidth": "Šírka", + "DE.Views.PageSizeDialog.txtCustom": "Vlastný", "DE.Views.ParagraphSettings.strLineHeight": "Riadkovanie", "DE.Views.ParagraphSettings.strParagraphSpacing": "Riadkovanie medzi odstavcami", "DE.Views.ParagraphSettings.strSomeParagraphSpace": "Nepridávať medzeru medzi odseky s rovnakým štýlom", @@ -1288,7 +1559,10 @@ "DE.Views.ParagraphSettingsAdvanced.strBreakBefore": "Zlom strany pred", "DE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Dvojité prečiarknutie", "DE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Vľavo", + "DE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing": "Riadkovanie", "DE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Vpravo", + "DE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter": "Za", + "DE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore": "Pred", "DE.Views.ParagraphSettingsAdvanced.strKeepLines": "Zviazať riadky dohromady", "DE.Views.ParagraphSettingsAdvanced.strKeepNext": "Zviazať s nasledujúcim", "DE.Views.ParagraphSettingsAdvanced.strMargins": "Vnútorné osadenie", @@ -1297,20 +1571,31 @@ "DE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "Odsadenie a umiestnenie", "DE.Views.ParagraphSettingsAdvanced.strParagraphPosition": "Umiestnenie", "DE.Views.ParagraphSettingsAdvanced.strSmallCaps": "Malé písmená", + "DE.Views.ParagraphSettingsAdvanced.strSomeParagraphSpace": "Nepridávať medzeru medzi odseky s rovnakým štýlom", "DE.Views.ParagraphSettingsAdvanced.strStrike": "Prečiarknutie", "DE.Views.ParagraphSettingsAdvanced.strSubscript": "Dolný index", "DE.Views.ParagraphSettingsAdvanced.strSuperscript": "Horný index", "DE.Views.ParagraphSettingsAdvanced.strTabs": "Tabulátor", "DE.Views.ParagraphSettingsAdvanced.textAlign": "Zarovnanie", + "DE.Views.ParagraphSettingsAdvanced.textAtLeast": "Najmenej", "DE.Views.ParagraphSettingsAdvanced.textBackColor": "Farba pozadia", + "DE.Views.ParagraphSettingsAdvanced.textBodyText": "Základný text", "DE.Views.ParagraphSettingsAdvanced.textBorderColor": "Farba orámovania", "DE.Views.ParagraphSettingsAdvanced.textBorderDesc": "Kliknutím na diagram alebo pomocou tlačidiel vyberte orámovanie a aplikujte zvolený štýl", "DE.Views.ParagraphSettingsAdvanced.textBorderWidth": "Veľkosť orámovania", "DE.Views.ParagraphSettingsAdvanced.textBottom": "Dole", + "DE.Views.ParagraphSettingsAdvanced.textCentered": "Vycentrované", "DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Medzery medzi písmenami", "DE.Views.ParagraphSettingsAdvanced.textDefault": "Predvolený tabulátor", "DE.Views.ParagraphSettingsAdvanced.textEffects": "Efekty", + "DE.Views.ParagraphSettingsAdvanced.textExact": "presne", + "DE.Views.ParagraphSettingsAdvanced.textFirstLine": "Prvý riadok", + "DE.Views.ParagraphSettingsAdvanced.textJustified": "Podľa okrajov", + "DE.Views.ParagraphSettingsAdvanced.textLeader": "Vodítko", "DE.Views.ParagraphSettingsAdvanced.textLeft": "Vľavo", + "DE.Views.ParagraphSettingsAdvanced.textLevel": "Úroveň", + "DE.Views.ParagraphSettingsAdvanced.textNone": "žiadny", + "DE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(žiadne)", "DE.Views.ParagraphSettingsAdvanced.textPosition": "Pozícia", "DE.Views.ParagraphSettingsAdvanced.textRemove": "Odstrániť", "DE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Odstrániť všetko", @@ -1331,6 +1616,7 @@ "DE.Views.ParagraphSettingsAdvanced.tipOuter": "Nastaviť len vonkajšie orámovanie", "DE.Views.ParagraphSettingsAdvanced.tipRight": "Nastaviť len pravé orámovanie", "DE.Views.ParagraphSettingsAdvanced.tipTop": "Nastaviť len horné orámovanie", + "DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Automaticky", "DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Bez orámovania", "DE.Views.RightMenu.txtChartSettings": "Nastavenia grafu", "DE.Views.RightMenu.txtHeaderFooterSettings": "Nastavenie hlavičky a päty", @@ -1356,10 +1642,14 @@ "DE.Views.ShapeSettings.textColor": "Vyplniť farbou", "DE.Views.ShapeSettings.textDirection": "Smer", "DE.Views.ShapeSettings.textEmptyPattern": "Bez vzoru", + "DE.Views.ShapeSettings.textFlip": "Prevrátiť", "DE.Views.ShapeSettings.textFromFile": "Zo súboru", + "DE.Views.ShapeSettings.textFromStorage": "Z úložiska", "DE.Views.ShapeSettings.textFromUrl": "Z URL adresy ", "DE.Views.ShapeSettings.textGradient": "Prechod", "DE.Views.ShapeSettings.textGradientFill": "Výplň prechodom", + "DE.Views.ShapeSettings.textHintFlipH": "Prevrátiť horizontálne", + "DE.Views.ShapeSettings.textHintFlipV": "Prevrátiť vertikálne", "DE.Views.ShapeSettings.textImageTexture": "Obrázok alebo textúra", "DE.Views.ShapeSettings.textLinear": "Lineárny/čiarový", "DE.Views.ShapeSettings.textNoFill": "Bez výplne", @@ -1395,6 +1685,8 @@ "DE.Views.SignatureSettings.strSign": "Podpísať", "DE.Views.SignatureSettings.strSignature": "Podpis", "DE.Views.SignatureSettings.strValid": "Platné podpisy", + "DE.Views.SignatureSettings.txtContinueEditing": "Aj tak uprav", + "DE.Views.SignatureSettings.txtEditWarning": "Upravovanie odstráni z dokumentu podpisy
Ste si istí, že chcete pokračovať?", "DE.Views.Statusbar.goToPageText": "Ísť na stranu", "DE.Views.Statusbar.pageIndexText": "Strana {0} z {1}", "DE.Views.Statusbar.tipFitPage": "Prispôsobiť na stranu", @@ -1409,7 +1701,16 @@ "DE.Views.StyleTitleDialog.textTitle": "Názov", "DE.Views.StyleTitleDialog.txtEmpty": "Toto pole sa vyžaduje", "DE.Views.StyleTitleDialog.txtNotEmpty": "Pole nesmie byť prázdne", + "DE.Views.TableFormulaDialog.textFormula": "Vzorec", + "DE.Views.TableOfContentsSettings.textBuildTable": "Zostaviť tabuľku obsahu z", + "DE.Views.TableOfContentsSettings.textLeader": "Vodítko", + "DE.Views.TableOfContentsSettings.textLevel": "Stupeň", + "DE.Views.TableOfContentsSettings.textLevels": "Stupne", + "DE.Views.TableOfContentsSettings.textNone": "žiadny", "DE.Views.TableOfContentsSettings.textStyle": "Štýl", + "DE.Views.TableOfContentsSettings.txtClassic": "Klasický", + "DE.Views.TableOfContentsSettings.txtCurrent": "Aktuálny", + "DE.Views.TableOfContentsSettings.txtOnline": "Online", "DE.Views.TableSettings.deleteColumnText": "Odstrániť stĺpec", "DE.Views.TableSettings.deleteRowText": "Odstrániť riadok", "DE.Views.TableSettings.deleteTableText": "Odstrániť tabuľku", @@ -1425,6 +1726,7 @@ "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", + "DE.Views.TableSettings.textAddFormula": "Pridať vzorec", "DE.Views.TableSettings.textAdvanced": "Zobraziť pokročilé nastavenia", "DE.Views.TableSettings.textBackColor": "Farba pozadia", "DE.Views.TableSettings.textBanded": "Pruhovaný/pásikovaný", @@ -1432,10 +1734,13 @@ "DE.Views.TableSettings.textBorders": "Štýl orámovania", "DE.Views.TableSettings.textCellSize": "Veľkosť bunky", "DE.Views.TableSettings.textColumns": "Stĺpce", + "DE.Views.TableSettings.textDistributeCols": "Rozdeliť stĺpce", + "DE.Views.TableSettings.textDistributeRows": "Rozložiť riadky", "DE.Views.TableSettings.textEdit": "Riadky a stĺpce", "DE.Views.TableSettings.textEmptyTemplate": "Žiadne šablóny", "DE.Views.TableSettings.textFirst": "Prvý", "DE.Views.TableSettings.textHeader": "Hlavička", + "DE.Views.TableSettings.textHeight": "Výška", "DE.Views.TableSettings.textLast": "Trvať/posledný", "DE.Views.TableSettings.textRows": "Riadky", "DE.Views.TableSettings.textSelectBorders": "Vyberte orámovanie, ktoré chcete zmeniť podľa vyššie uvedeného štýlu", @@ -1452,6 +1757,9 @@ "DE.Views.TableSettings.tipRight": "Nastaviť len pravé vonkajšie orámovanie", "DE.Views.TableSettings.tipTop": "Nastaviť len horné vonkajšie orámovanie", "DE.Views.TableSettings.txtNoBorders": "Bez orámovania", + "DE.Views.TableSettings.txtTable_Accent": "Akcent", + "DE.Views.TableSettings.txtTable_Colorful": "Farebné", + "DE.Views.TableSettings.txtTable_Dark": "Tmavý", "DE.Views.TableSettingsAdvanced.textAlign": "Zarovnanie", "DE.Views.TableSettingsAdvanced.textAlignment": "Zarovnanie", "DE.Views.TableSettingsAdvanced.textAllowSpacing": "Medzera medzi bunkami", @@ -1543,9 +1851,13 @@ "DE.Views.TextArtSettings.textTemplate": "Šablóna", "DE.Views.TextArtSettings.textTransform": "Transformovať", "DE.Views.TextArtSettings.txtNoBorders": "Bez čiary", + "DE.Views.Toolbar.capBtnAddComment": "Pridať komentár", + "DE.Views.Toolbar.capBtnBlankPage": "Prázdná stránka", "DE.Views.Toolbar.capBtnColumns": "Stĺpce", "DE.Views.Toolbar.capBtnComment": "Komentár", + "DE.Views.Toolbar.capBtnDateTime": "Dátum a čas", "DE.Views.Toolbar.capBtnInsChart": "Graf", + "DE.Views.Toolbar.capBtnInsControls": "Kontroly obsahu", "DE.Views.Toolbar.capBtnInsDropcap": "Iniciála", "DE.Views.Toolbar.capBtnInsEquation": "Rovnica", "DE.Views.Toolbar.capBtnInsHeader": "Záhlavie/päta", @@ -1564,9 +1876,12 @@ "DE.Views.Toolbar.capImgGroup": "Skupina", "DE.Views.Toolbar.capImgWrapping": "Obal", "DE.Views.Toolbar.mniCustomTable": "Vložiť vlastnú tabuľku", + "DE.Views.Toolbar.mniDrawTable": "Nakresli tabuľku", + "DE.Views.Toolbar.mniEditControls": "Nastavenia ovládacieho prvku", "DE.Views.Toolbar.mniEditDropCap": "Nastavenie Iniciály", "DE.Views.Toolbar.mniEditFooter": "Upraviť pätu", "DE.Views.Toolbar.mniEditHeader": "Upraviť hlavičku", + "DE.Views.Toolbar.mniEraseTable": "Vymazať tabuľku", "DE.Views.Toolbar.mniHiddenBorders": "Skryté orámovania tabuľky", "DE.Views.Toolbar.mniHiddenChars": "Formátovacie značky", "DE.Views.Toolbar.mniImageFromFile": "Obrázok zo súboru", @@ -1575,13 +1890,18 @@ "DE.Views.Toolbar.textAutoColor": "Automaticky", "DE.Views.Toolbar.textBold": "Tučné", "DE.Views.Toolbar.textBottom": "Dole", + "DE.Views.Toolbar.textCheckboxControl": "Zaškrtávacie políčko", "DE.Views.Toolbar.textColumnsCustom": "Vlastné stĺpce", "DE.Views.Toolbar.textColumnsLeft": "Vľavo", "DE.Views.Toolbar.textColumnsOne": "Jeden", "DE.Views.Toolbar.textColumnsRight": "Vpravo", "DE.Views.Toolbar.textColumnsThree": "Tri", "DE.Views.Toolbar.textColumnsTwo": "Dva", + "DE.Views.Toolbar.textComboboxControl": "Zmiešaná schránka", "DE.Views.Toolbar.textContPage": "Súvislá/neprerušovaná strana", + "DE.Views.Toolbar.textDateControl": "Dátum", + "DE.Views.Toolbar.textDropdownControl": "Rozbaľovací zoznam", + "DE.Views.Toolbar.textEditWatermark": "Vlastný vodoznak", "DE.Views.Toolbar.textEvenPage": "Párna stránka", "DE.Views.Toolbar.textInMargin": "V okraji", "DE.Views.Toolbar.textInsColumnBreak": "Vložiť stĺpcové zalomenie ", @@ -1600,7 +1920,6 @@ "DE.Views.Toolbar.textMarginsUsNormal": "US Štandard", "DE.Views.Toolbar.textMarginsWide": "Široký", "DE.Views.Toolbar.textNewColor": "Pridať novú vlastnú farbu", - "Common.UI.ColorButton.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", @@ -1617,6 +1936,7 @@ "DE.Views.Toolbar.textStyleMenuUpdate": "Aktualizovať z výberu", "DE.Views.Toolbar.textSubscript": "Dolný index", "DE.Views.Toolbar.textSuperscript": "Horný index", + "DE.Views.Toolbar.textTabCollaboration": "Spolupráca", "DE.Views.Toolbar.textTabFile": "Súbor", "DE.Views.Toolbar.textTabHome": "Hlavná stránka", "DE.Views.Toolbar.textTabInsert": "Vložiť", @@ -1655,6 +1975,7 @@ "DE.Views.Toolbar.tipInsertImage": "Vložiť obrázok", "DE.Views.Toolbar.tipInsertNum": "Vložiť číslo stránky", "DE.Views.Toolbar.tipInsertShape": "Vložiť automatický tvar", + "DE.Views.Toolbar.tipInsertSymbol": "Vložiť symbol", "DE.Views.Toolbar.tipInsertTable": "Vložiť tabuľku", "DE.Views.Toolbar.tipInsertText": "Vložiť text", "DE.Views.Toolbar.tipInsertTextArt": "Vložiť Text Art", @@ -1679,6 +2000,12 @@ "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.", "DE.Views.Toolbar.tipUndo": "Krok späť", + "DE.Views.Toolbar.tipWatermark": "Uprav vodoznak", + "DE.Views.Toolbar.txtDistribHor": "Rozložiť horizontálne", + "DE.Views.Toolbar.txtDistribVert": "Rozložiť vertikálne", + "DE.Views.Toolbar.txtMarginAlign": "Zarovnať k okraju", + "DE.Views.Toolbar.txtObjectsAlign": "Zarovnať označené objekty", + "DE.Views.Toolbar.txtPageAlign": "Zarovnať ku strane", "DE.Views.Toolbar.txtScheme1": "Kancelária", "DE.Views.Toolbar.txtScheme10": "Medián", "DE.Views.Toolbar.txtScheme11": "Metro", @@ -1699,5 +2026,21 @@ "DE.Views.Toolbar.txtScheme6": "Dav", "DE.Views.Toolbar.txtScheme7": "Spravodlivosť", "DE.Views.Toolbar.txtScheme8": "Prietok", - "DE.Views.Toolbar.txtScheme9": "Zlieváreň" + "DE.Views.Toolbar.txtScheme9": "Zlieváreň", + "DE.Views.WatermarkSettingsDialog.textAuto": "Automaticky", + "DE.Views.WatermarkSettingsDialog.textBold": "Tučné", + "DE.Views.WatermarkSettingsDialog.textDiagonal": "Diagonálny", + "DE.Views.WatermarkSettingsDialog.textFont": "Písmo", + "DE.Views.WatermarkSettingsDialog.textFromFile": "Zo súboru", + "DE.Views.WatermarkSettingsDialog.textFromStorage": "Z úložiska", + "DE.Views.WatermarkSettingsDialog.textFromUrl": "Z URL adresy ", + "DE.Views.WatermarkSettingsDialog.textHor": "Vodorovný", + "DE.Views.WatermarkSettingsDialog.textImageW": "Vodoznak na obrázku", + "DE.Views.WatermarkSettingsDialog.textItalic": "Kurzíva", + "DE.Views.WatermarkSettingsDialog.textLanguage": "Jazyk", + "DE.Views.WatermarkSettingsDialog.textLayout": "Rozloženie", + "DE.Views.WatermarkSettingsDialog.textNewColor": "Pridať novú vlastnú farbu", + "DE.Views.WatermarkSettingsDialog.textNone": "žiadny", + "DE.Views.WatermarkSettingsDialog.tipFontName": "Názov písma", + "DE.Views.WatermarkSettingsDialog.tipFontSize": "Veľkosť písma" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/sl.json b/apps/documenteditor/main/locale/sl.json index 203bf45a4..ec6bb5f4c 100644 --- a/apps/documenteditor/main/locale/sl.json +++ b/apps/documenteditor/main/locale/sl.json @@ -222,6 +222,7 @@ "Common.Views.ReviewChanges.tipCompare": "Primerjaj trenutni dokument z drugim", "Common.Views.ReviewChanges.txtAccept": "Accept", "Common.Views.ReviewChanges.txtAcceptAll": "Accept All Changes", + "Common.Views.ReviewChanges.txtAcceptChanges": "Sprejmi spremembe", "Common.Views.ReviewChanges.txtAcceptCurrent": "Accept Current Changes", "Common.Views.ReviewChanges.txtChat": "Pogovor", "Common.Views.ReviewChanges.txtClose": "Close", @@ -268,6 +269,7 @@ "Common.Views.SymbolTableDialog.textCharacter": "Znak", "Common.Views.SymbolTableDialog.textCopyright": "Znak za Copyright ©", "Common.Views.SymbolTableDialog.textFont": "Ime pisave", + "Common.Views.SymbolTableDialog.textQEmSpace": "1/4 prostora", "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": "Neimenovan dokument", "DE.Controllers.LeftMenu.notcriticalErrorTitle": "Warning", @@ -317,6 +319,7 @@ "DE.Controllers.Main.mailMergeLoadFileText": "Loading Data Source...", "DE.Controllers.Main.mailMergeLoadFileTitle": "Loading Data Source", "DE.Controllers.Main.notcriticalErrorTitle": "Opozorilo", + "DE.Controllers.Main.openErrorText": "Prišlo je do težave med odpiranjem datoteke.", "DE.Controllers.Main.openTextText": "Odpiranje dokumenta...", "DE.Controllers.Main.openTitleText": "Odpiranje dokumenta", "DE.Controllers.Main.printTextText": "Tiskanje dokumenta...", @@ -324,6 +327,7 @@ "DE.Controllers.Main.reloadButtonText": "Osveži stran", "DE.Controllers.Main.requestEditFailedMessageText": "Nekdo v tem trenutku ureja ta dokument. Prosim ponovno poskusite kasneje.", "DE.Controllers.Main.requestEditFailedTitleText": "Dostop zavrnjen", + "DE.Controllers.Main.saveErrorText": "Prišlo je do težave med shranjevanjem datoteke.", "DE.Controllers.Main.savePreparingText": "Priprava za shranjevanje", "DE.Controllers.Main.savePreparingTitle": "Priprava za shranjevanje. Prosim počakajte...", "DE.Controllers.Main.saveTextText": "Shranjevanje dokumenta...", @@ -344,6 +348,7 @@ "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.titleServerVersion": "Urednik je bil posodobljen", "DE.Controllers.Main.titleUpdateVersion": "Različica spremenjena", + "DE.Controllers.Main.txtAbove": "Nad", "DE.Controllers.Main.txtArt": "Your text here", "DE.Controllers.Main.txtBasicShapes": "Osnovne oblike", "DE.Controllers.Main.txtBookmarkError": "Težava! Zaznamek ni definiran", @@ -382,6 +387,16 @@ "DE.Controllers.Main.txtShape_pie": "Tortni grafikon", "DE.Controllers.Main.txtShape_plaque": "Podpiši", "DE.Controllers.Main.txtShape_plus": "Plus", + "DE.Controllers.Main.txtShape_star10": "10-kraka zvezda", + "DE.Controllers.Main.txtShape_star12": "12-kraka zvezda", + "DE.Controllers.Main.txtShape_star16": "16-kraka zvezda", + "DE.Controllers.Main.txtShape_star24": "24-kraka zvezda", + "DE.Controllers.Main.txtShape_star32": "32-kraka zvezda", + "DE.Controllers.Main.txtShape_star4": "4-kraka zvezda", + "DE.Controllers.Main.txtShape_star5": "5-kraka zvezda", + "DE.Controllers.Main.txtShape_star6": "6-kraka zvezda", + "DE.Controllers.Main.txtShape_star7": "7-kraka zvezda", + "DE.Controllers.Main.txtShape_star8": "8-kraka zvezda", "DE.Controllers.Main.txtShape_sun": "Sonce", "DE.Controllers.Main.txtShape_textRect": "Polje z besedilom", "DE.Controllers.Main.txtShape_upArrow": "Puščica: gor", @@ -761,6 +776,7 @@ "DE.Views.BookmarksDialog.textName": "Ime", "DE.Views.BookmarksDialog.textTitle": "Zaznamki", "DE.Views.CaptionDialog.textAdd": "Dodaj oznako", + "DE.Views.CaptionDialog.textAfter": "po", "DE.Views.CaptionDialog.textBefore": "Pred", "DE.Views.CaptionDialog.textDelete": "Izbriši oznako", "DE.Views.CaptionDialog.textInsert": "Vstavi", @@ -770,6 +786,7 @@ "DE.Views.CaptionDialog.textTitle": "Vstavi citat", "DE.Views.CellsAddDialog.textCol": "Stolpci", "DE.Views.CellsAddDialog.textRow": "Vrstice", + "DE.Views.CellsAddDialog.textUp": "Nad kazalcem", "DE.Views.CellsRemoveDialog.textTitle": "Izbriši celice", "DE.Views.ChartSettings.textAdvanced": "Prikaži napredne nastavitve", "DE.Views.ChartSettings.textChartType": "Spremeni vrsto razpredelnice", @@ -1167,6 +1184,7 @@ "DE.Views.ImageSettings.txtTight": "Tesen", "DE.Views.ImageSettings.txtTopAndBottom": "Vrh in Dno", "DE.Views.ImageSettingsAdvanced.strMargins": "Oblazinjenje besedila", + "DE.Views.ImageSettingsAdvanced.textAbsoluteWH": "Absolutno", "DE.Views.ImageSettingsAdvanced.textAlignment": "Poravnava", "DE.Views.ImageSettingsAdvanced.textArrows": "Puščice", "DE.Views.ImageSettingsAdvanced.textBeginSize": "Začetna velikost", @@ -1338,6 +1356,7 @@ "DE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Dvojno prečrtanje", "DE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Levo", "DE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Desno", + "DE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter": "po", "DE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore": "Pred", "DE.Views.ParagraphSettingsAdvanced.strKeepLines": "Linije ohrani skupaj", "DE.Views.ParagraphSettingsAdvanced.strKeepNext": "Ohrani z naslednjim", @@ -1520,6 +1539,7 @@ "DE.Views.TableSettings.tipRight": "Nastavi le zunanjo desno mejo", "DE.Views.TableSettings.tipTop": "Nastavi le zunanjo zgornjo mejo", "DE.Views.TableSettings.txtNoBorders": "Ni mej", + "DE.Views.TableSettings.txtTable_Accent": "Preglas", "DE.Views.TableSettings.txtTable_Colorful": "Pisano", "DE.Views.TableSettings.txtTable_Dark": "Temen", "DE.Views.TableSettingsAdvanced.textAlign": "Poravnava", @@ -1577,6 +1597,7 @@ "DE.Views.TableSettingsAdvanced.tipTableOuterCellAll": "Nastavi zunanjo mejo in meje za vse notranje celice", "DE.Views.TableSettingsAdvanced.tipTableOuterCellInner": "Nastavi zunanjo mejo in vertikalne ter horizontalne črte za notranje celice", "DE.Views.TableSettingsAdvanced.tipTableOuterCellOuter": "Nastavi zunanjo mejo tabele in zunanje meje za notranje celice", + "DE.Views.TableSettingsAdvanced.txtCm": "Centimeter", "DE.Views.TableSettingsAdvanced.txtInch": "Palec", "DE.Views.TableSettingsAdvanced.txtNoBorders": "Ni mej", "DE.Views.TableSettingsAdvanced.txtPercent": "Odstotek", @@ -1612,6 +1633,7 @@ "DE.Views.Toolbar.capBtnPageOrient": "Usmerjenost", "DE.Views.Toolbar.capBtnPageSize": "Velikost", "DE.Views.Toolbar.capBtnWatermark": "Vodni žig", + "DE.Views.Toolbar.capImgAlign": "Poravnava", "DE.Views.Toolbar.capImgBackward": "Premakni v ozadje", "DE.Views.Toolbar.capImgGroup": "Skupina", "DE.Views.Toolbar.mniCustomTable": "Vstavi tabelo po more", @@ -1669,6 +1691,7 @@ "DE.Views.Toolbar.textStyleMenuUpdate": "Update from selection", "DE.Views.Toolbar.textSubscript": "Pripis", "DE.Views.Toolbar.textSuperscript": "Nadpis", + "DE.Views.Toolbar.textTabCollaboration": "Skupinsko delo", "DE.Views.Toolbar.textTabFile": "Datoteka", "DE.Views.Toolbar.textTabHome": "Domov", "DE.Views.Toolbar.textTabInsert": "Vstavi", diff --git a/apps/documenteditor/main/locale/uk.json b/apps/documenteditor/main/locale/uk.json index 1c3398607..01f3661b7 100644 --- a/apps/documenteditor/main/locale/uk.json +++ b/apps/documenteditor/main/locale/uk.json @@ -193,6 +193,7 @@ "Common.Views.Plugins.textLoading": "Завантаження", "Common.Views.Plugins.textStart": "Початок", "Common.Views.Plugins.textStop": "Зупинитись", + "Common.Views.Protection.txtAddPwd": "Додати пароль", "Common.Views.Protection.txtInvisibleSignature": "Додати цифровий підпис", "Common.Views.RenameDialog.textName": "Ім'я файлу", "Common.Views.RenameDialog.txtInvalidName": "Ім'я файлу не може містити жодного з наступних символів:", @@ -247,6 +248,7 @@ "Common.Views.ReviewChangesDialog.txtRejectAll": "Відхилити усі зміни", "Common.Views.ReviewChangesDialog.txtRejectCurrent": "Відхилити поточну зміну", "Common.Views.ReviewPopover.textAdd": "Додати", + "Common.Views.ReviewPopover.textAddReply": "Додати відповідь", "Common.Views.ReviewPopover.textCancel": "Скасувати", "Common.Views.ReviewPopover.textClose": "Закрити", "Common.Views.ReviewPopover.textEdit": "Гаразд", @@ -366,8 +368,10 @@ "DE.Controllers.Main.txtRectangles": "Прямокутники", "DE.Controllers.Main.txtSeries": "Серії", "DE.Controllers.Main.txtShape_actionButtonHome": "Кнопка Домівка", + "DE.Controllers.Main.txtShape_arc": "Дуга", "DE.Controllers.Main.txtShape_cloud": "Хмара", "DE.Controllers.Main.txtShape_corner": "Кут", + "DE.Controllers.Main.txtShape_cube": "Куб", "DE.Controllers.Main.txtShape_spline": "Крива", "DE.Controllers.Main.txtStarsRibbons": "Зірки та стрічки", "DE.Controllers.Main.txtStyle_footnote_text": "Текст виноски", @@ -750,8 +754,13 @@ "DE.Views.BookmarksDialog.textClose": "Закрити", "DE.Views.BookmarksDialog.textCopy": "Копіювати", "DE.Views.BookmarksDialog.textDelete": "Вилучити", + "DE.Views.BookmarksDialog.textGoto": "Перейти", "DE.Views.BookmarksDialog.textHidden": "Приховані закладки", "DE.Views.BookmarksDialog.textTitle": "Закладки", + "DE.Views.CaptionDialog.textAdd": "Додати мітку", + "DE.Views.CaptionDialog.textAfter": "Після", + "DE.Views.CaptionDialog.textDash": "тире", + "DE.Views.CellsAddDialog.textUp": "Над курсором", "DE.Views.CellsRemoveDialog.textLeft": "Пересунути комірки ліворуч", "DE.Views.CellsRemoveDialog.textTitle": "Вилучити комірки", "DE.Views.ChartSettings.textAdvanced": "Показати додаткові налаштування", @@ -775,6 +784,7 @@ "DE.Views.CompareSettingsDialog.textTitle": "Налаштування порівняння", "DE.Views.ControlSettingsDialog.textAdd": "Додати", "DE.Views.ControlSettingsDialog.textApplyAll": "Застосувати до всього", + "DE.Views.ControlSettingsDialog.textChange": "Редагувати", "DE.Views.ControlSettingsDialog.textColor": "Колір", "DE.Views.ControlSettingsDialog.textDelete": "Вилучити", "DE.Views.ControlSettingsDialog.textDisplayName": "Ім'я для показу", @@ -902,6 +912,7 @@ "DE.Views.DocumentHolder.txtDeleteEq": "Вилучити рівняння", "DE.Views.DocumentHolder.txtDeleteGroupChar": "Вилучити символ", "DE.Views.DocumentHolder.txtDeleteRadical": "Вилучити корінь", + "DE.Views.DocumentHolder.txtEmpty": "(Пусто)", "DE.Views.DocumentHolder.txtFractionLinear": "Зміна до лінійної фракції", "DE.Views.DocumentHolder.txtFractionSkewed": "Зміна перекошеної фракції", "DE.Views.DocumentHolder.txtFractionStacked": "Зміна складеної фракції", @@ -1032,6 +1043,7 @@ "DE.Views.FileMenuPanels.CreateNew.noTemplatesText": "Немає шаблонів", "DE.Views.FileMenuPanels.DocumentInfo.okButtonText": "Застосувати", "DE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Додати автора", + "DE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Додати текст", "DE.Views.FileMenuPanels.DocumentInfo.txtAppName": "Застосунок", "DE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Автор", "DE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Змінити права доступу", @@ -1339,6 +1351,8 @@ "DE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Подвійне перекреслення", "DE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Лівий", "DE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Право", + "DE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter": "Після", + "DE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore": "Перед", "DE.Views.ParagraphSettingsAdvanced.strKeepLines": "Тримайте лінії разом", "DE.Views.ParagraphSettingsAdvanced.strKeepNext": "Зберегати з текстом", "DE.Views.ParagraphSettingsAdvanced.strMargins": "Набивання", @@ -1381,6 +1395,7 @@ "DE.Views.ParagraphSettingsAdvanced.tipOuter": "Встановити лише зовнішній край", "DE.Views.ParagraphSettingsAdvanced.tipRight": "Встановити лише праву межу", "DE.Views.ParagraphSettingsAdvanced.tipTop": "Встановити лише верхню межу", + "DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Авто", "DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Немає кордонів", "DE.Views.RightMenu.txtChartSettings": "Налаштування діаграми", "DE.Views.RightMenu.txtHeaderFooterSettings": "Параметри заголовка та нижнього колонтитула", @@ -1596,6 +1611,7 @@ "DE.Views.Toolbar.capBtnAddComment": "Додати коментар", "DE.Views.Toolbar.capBtnColumns": "Колонки", "DE.Views.Toolbar.capBtnComment": "Коментар", + "DE.Views.Toolbar.capBtnDateTime": "Дата та час", "DE.Views.Toolbar.capBtnInsChart": "Діаграма", "DE.Views.Toolbar.capBtnInsDropcap": "Буквиця", "DE.Views.Toolbar.capBtnInsEquation": "Рівняння", @@ -1735,6 +1751,7 @@ "DE.Views.Toolbar.tipShowHiddenChars": "недруковані символи", "DE.Views.Toolbar.tipSynchronize": "Документ був змінений іншим користувачем. Будь ласка, натисніть, щоб зберегти зміни та перезавантажити оновлення.", "DE.Views.Toolbar.tipUndo": "Скасувати", + "DE.Views.Toolbar.txtMarginAlign": "Вирівняти відносно поля", "DE.Views.Toolbar.txtScheme1": "Офіс", "DE.Views.Toolbar.txtScheme10": "Медіана", "DE.Views.Toolbar.txtScheme11": "Метро", @@ -1756,6 +1773,7 @@ "DE.Views.Toolbar.txtScheme7": "Власний", "DE.Views.Toolbar.txtScheme8": "Розпливатися", "DE.Views.Toolbar.txtScheme9": "Ливарня", + "DE.Views.WatermarkSettingsDialog.textAuto": "Авто", "DE.Views.WatermarkSettingsDialog.textBold": "Грубий", "DE.Views.WatermarkSettingsDialog.textColor": "Колір тексту", "DE.Views.WatermarkSettingsDialog.textItalic": "Курсив", diff --git a/apps/documenteditor/main/locale/zh.json b/apps/documenteditor/main/locale/zh.json index 6b65762c1..4f1f6a4f0 100644 --- a/apps/documenteditor/main/locale/zh.json +++ b/apps/documenteditor/main/locale/zh.json @@ -80,6 +80,7 @@ "Common.define.chartData.textPoint": "XY(散射)", "Common.define.chartData.textStock": "股票", "Common.define.chartData.textSurface": "平面", + "Common.Translation.warnFileLocked": "另一个应用正在编辑本文件。你仍然可以继续编辑此文件,你可以将你的编辑保存成另一个拷贝。", "Common.UI.Calendar.textApril": "四月", "Common.UI.Calendar.textAugust": "八月", "Common.UI.Calendar.textDecember": "十二月", @@ -113,6 +114,7 @@ "Common.UI.Calendar.textShortTuesday": "星期二", "Common.UI.Calendar.textShortWednesday": "我们", "Common.UI.Calendar.textYears": "年", + "Common.UI.ColorButton.textNewColor": "添加新的自定义颜色", "Common.UI.ComboBorderSize.txtNoBorders": "没有边框", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "没有边框", "Common.UI.ComboDataView.emptyComboText": "没有风格", @@ -155,6 +157,10 @@ "Common.Views.About.txtPoweredBy": "技术支持", "Common.Views.About.txtTel": "电话:", "Common.Views.About.txtVersion": "版本", + "Common.Views.AutoCorrectDialog.textBy": "依据", + "Common.Views.AutoCorrectDialog.textMathCorrect": "数学自动修正", + "Common.Views.AutoCorrectDialog.textReplace": "替换:", + "Common.Views.AutoCorrectDialog.textTitle": "自动修正", "Common.Views.Chat.textSend": "发送", "Common.Views.Comments.textAdd": "添加", "Common.Views.Comments.textAddComment": "发表评论", @@ -357,11 +363,30 @@ "Common.Views.SignSettingsDialog.textShowDate": "在签名行中显示签名日期", "Common.Views.SignSettingsDialog.textTitle": "签名设置", "Common.Views.SignSettingsDialog.txtEmpty": "这是必填栏", + "Common.Views.SymbolTableDialog.textCharacter": "字符", "Common.Views.SymbolTableDialog.textCode": "Unicode十六进制值", + "Common.Views.SymbolTableDialog.textCopyright": "版权所有标识", + "Common.Views.SymbolTableDialog.textDCQuote": "后双引号", + "Common.Views.SymbolTableDialog.textDOQuote": "前双引号", + "Common.Views.SymbolTableDialog.textEllipsis": "横向省略号", + "Common.Views.SymbolTableDialog.textEmDash": "破折号", + "Common.Views.SymbolTableDialog.textEnDash": "半破折号", "Common.Views.SymbolTableDialog.textFont": "字体 ", + "Common.Views.SymbolTableDialog.textNBHyphen": "不换行连词符", + "Common.Views.SymbolTableDialog.textNBSpace": "不换行空格", + "Common.Views.SymbolTableDialog.textPilcrow": "段落标识", "Common.Views.SymbolTableDialog.textRange": "范围", "Common.Views.SymbolTableDialog.textRecent": "最近使用的符号", + "Common.Views.SymbolTableDialog.textRegistered": "注册商标标识", + "Common.Views.SymbolTableDialog.textSCQuote": "后单引号", + "Common.Views.SymbolTableDialog.textSection": "章节标识", + "Common.Views.SymbolTableDialog.textShortcut": "快捷键", + "Common.Views.SymbolTableDialog.textSHyphen": "软连词符", + "Common.Views.SymbolTableDialog.textSOQuote": "前单引号", + "Common.Views.SymbolTableDialog.textSpecial": "特殊字符", + "Common.Views.SymbolTableDialog.textSymbols": "符号", "Common.Views.SymbolTableDialog.textTitle": "符号", + "Common.Views.SymbolTableDialog.textTradeMark": "商标标识", "DE.Controllers.LeftMenu.leavePageText": "本文档中的所有未保存的更改都将丢失。
单击“取消”,然后单击“保存”保存。单击“确定”以放弃所有未保存的更改。", "DE.Controllers.LeftMenu.newDocumentTitle": "未命名的文档", "DE.Controllers.LeftMenu.notcriticalErrorTitle": "警告", @@ -387,6 +412,7 @@ "DE.Controllers.Main.errorAccessDeny": "您正在尝试执行您没有权限的操作。
请联系您的文档服务器管理员.", "DE.Controllers.Main.errorBadImageUrl": "图片地址不正确", "DE.Controllers.Main.errorCoAuthoringDisconnect": "服务器连接丢失。该文档现在无法编辑", + "DE.Controllers.Main.errorCompare": "协作编辑状态下,无法使用文件比对功能。", "DE.Controllers.Main.errorConnectToServer": "这份文件无法保存。请检查连接设置或联系您的管理员。
当你点击“OK”按钮,系统将提示您下载文档。", "DE.Controllers.Main.errorDatabaseConnection": "外部错误。
数据库连接错误。如果错误仍然存​​在,请联系支持人员。", "DE.Controllers.Main.errorDataEncrypted": "加密更改已收到,无法对其解密。", @@ -403,6 +429,7 @@ "DE.Controllers.Main.errorKeyExpire": "密钥过期", "DE.Controllers.Main.errorMailMergeLoadFile": "加载失败", "DE.Controllers.Main.errorMailMergeSaveFile": "合并失败", + "DE.Controllers.Main.errorPasteSlicerError": "无法将表格分法从一个工作表中复制到另一个。
请再试一次。可尝试选取整个表格和分法。", "DE.Controllers.Main.errorProcessSaveResult": "保存失败", "DE.Controllers.Main.errorServerVersion": "该编辑版本已经更新。该页面将被重新加载以应用更改。", "DE.Controllers.Main.errorSessionAbsolute": "文档编辑会话已过期。请重新加载页面。", @@ -450,15 +477,20 @@ "DE.Controllers.Main.splitMaxColsErrorText": "列数必须小于%1。", "DE.Controllers.Main.splitMaxRowsErrorText": "行数必须小于%1。", "DE.Controllers.Main.textAnonymous": "匿名", + "DE.Controllers.Main.textApplyAll": "应用到所有公式", "DE.Controllers.Main.textBuyNow": "访问网站", "DE.Controllers.Main.textChangesSaved": "所有更改已保存", "DE.Controllers.Main.textClose": "关闭", "DE.Controllers.Main.textCloseTip": "点击关闭提示", "DE.Controllers.Main.textContactUs": "联系销售", + "DE.Controllers.Main.textConvertEquation": "这个公式是由一个早期版本的公式编辑器创建的。这个版本现在不受支持了。要想编辑这个公式,你需要将其转换成 Office Math ML 格式.
现在转换吗?", "DE.Controllers.Main.textCustomLoader": "请注意,根据许可条款您无权更改加载程序。
请联系我们的销售部门获取报价。", + "DE.Controllers.Main.textHasMacros": "这个文件带有自动宏。
是否要运行宏?", + "DE.Controllers.Main.textLearnMore": "了解更多", "DE.Controllers.Main.textLoadingDocument": "文件加载中…", "DE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE开源版本", "DE.Controllers.Main.textPaidFeature": "付费功能", + "DE.Controllers.Main.textRemember": "记住我的选择", "DE.Controllers.Main.textShape": "形状", "DE.Controllers.Main.textStrict": "严格模式", "DE.Controllers.Main.textTryUndoRedo": "对于快速的协同编辑模式,取消/重做功能是禁用的。< br >单击“严格模式”按钮切换到严格co-editing模式编辑该文件没有其他用户干扰和发送您的更改只后你拯救他们。您可以使用编辑器高级设置在编辑模式之间切换。", @@ -478,6 +510,7 @@ "DE.Controllers.Main.txtDiagramTitle": "图表标题", "DE.Controllers.Main.txtEditingMode": "设置编辑模式..", "DE.Controllers.Main.txtEndOfFormula": "意外的公式结尾", + "DE.Controllers.Main.txtEnterDate": "输入日期。", "DE.Controllers.Main.txtErrorLoadHistory": "历史加载失败", "DE.Controllers.Main.txtEvenPage": "偶数页", "DE.Controllers.Main.txtFiguredArrows": "图形箭头", @@ -697,6 +730,7 @@ "DE.Controllers.Main.txtTableInd": "表格索引不能为零", "DE.Controllers.Main.txtTableOfContents": "目录", "DE.Controllers.Main.txtTooLarge": "数字太大,无法设定格式", + "DE.Controllers.Main.txtTypeEquation": "在这里输入公式。", "DE.Controllers.Main.txtUndefBookmark": "未定义书签", "DE.Controllers.Main.txtXAxis": "X轴", "DE.Controllers.Main.txtYAxis": "Y轴", @@ -1154,6 +1188,7 @@ "DE.Views.ControlSettingsDialog.textLock": "锁定", "DE.Views.ControlSettingsDialog.textName": "标题", "DE.Views.ControlSettingsDialog.textNone": "无", + "DE.Views.ControlSettingsDialog.textPlaceholder": "占位符", "DE.Views.ControlSettingsDialog.textShowAs": "显示为", "DE.Views.ControlSettingsDialog.textSystemColor": "系统", "DE.Views.ControlSettingsDialog.textTag": "标签", @@ -1168,6 +1203,12 @@ "DE.Views.CustomColumnsDialog.textSeparator": "列分隔符", "DE.Views.CustomColumnsDialog.textSpacing": "列之间的间距", "DE.Views.CustomColumnsDialog.textTitle": "列", + "DE.Views.DateTimeDialog.confirmDefault": "设置{0}:{1}的默认格式", + "DE.Views.DateTimeDialog.textDefault": "设为默认", + "DE.Views.DateTimeDialog.textFormat": "格式", + "DE.Views.DateTimeDialog.textLang": "语言", + "DE.Views.DateTimeDialog.textUpdate": "自动更新", + "DE.Views.DateTimeDialog.txtTitle": "日期、时间", "DE.Views.DocumentHolder.aboveText": "以上", "DE.Views.DocumentHolder.addCommentText": "发表评论", "DE.Views.DocumentHolder.advancedFrameText": "框架高级设置", @@ -1257,6 +1298,7 @@ "DE.Views.DocumentHolder.textFlipV": "垂直翻转", "DE.Views.DocumentHolder.textFollow": "跟随移动", "DE.Views.DocumentHolder.textFromFile": "从文件导入", + "DE.Views.DocumentHolder.textFromStorage": "来自存储设备", "DE.Views.DocumentHolder.textFromUrl": "从URL", "DE.Views.DocumentHolder.textJoinList": "联接上一个列表", "DE.Views.DocumentHolder.textNest": "下一个表格", @@ -1498,6 +1540,9 @@ "DE.Views.FileMenuPanels.Settings.strForcesave": "始终保存到服务器(否则在文档关闭时保存到服务器)", "DE.Views.FileMenuPanels.Settings.strInputMode": "该又是象形文字", "DE.Views.FileMenuPanels.Settings.strLiveComment": "打开评论的显示", + "DE.Views.FileMenuPanels.Settings.strMacrosSettings": "宏设置", + "DE.Views.FileMenuPanels.Settings.strPaste": "剪切、拷贝、黏贴", + "DE.Views.FileMenuPanels.Settings.strPasteButton": "在执行粘贴操作后显示“粘贴选项”按钮", "DE.Views.FileMenuPanels.Settings.strResolvedComment": "打开已解决的注释的显示", "DE.Views.FileMenuPanels.Settings.strShowChanges": "实时协作变更", "DE.Views.FileMenuPanels.Settings.strSpellCheckMode": "打开拼写检查选项", @@ -1517,6 +1562,7 @@ "DE.Views.FileMenuPanels.Settings.textMinute": "每一分钟", "DE.Views.FileMenuPanels.Settings.textOldVersions": "将文件保存为DOCX时,使其与较旧的MS-Word版本兼容", "DE.Views.FileMenuPanels.Settings.txtAll": "查看全部", + "DE.Views.FileMenuPanels.Settings.txtAutoCorrect": "自动修正选项...", "DE.Views.FileMenuPanels.Settings.txtCacheMode": "默认缓存模式", "DE.Views.FileMenuPanels.Settings.txtCm": "厘米", "DE.Views.FileMenuPanels.Settings.txtFitPage": "适合页面", @@ -1528,8 +1574,15 @@ "DE.Views.FileMenuPanels.Settings.txtMac": "作为OS X", "DE.Views.FileMenuPanels.Settings.txtNative": "本地", "DE.Views.FileMenuPanels.Settings.txtNone": "无查看", + "DE.Views.FileMenuPanels.Settings.txtProofing": "审订", "DE.Views.FileMenuPanels.Settings.txtPt": "点", + "DE.Views.FileMenuPanels.Settings.txtRunMacros": "启动所有项目", + "DE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "启动所有不带通知的宏", "DE.Views.FileMenuPanels.Settings.txtSpellCheck": "拼写检查", + "DE.Views.FileMenuPanels.Settings.txtStopMacros": "解除所有项目", + "DE.Views.FileMenuPanels.Settings.txtStopMacrosDesc": "解除所有不带通知的宏", + "DE.Views.FileMenuPanels.Settings.txtWarnMacros": "显示通知", + "DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "解除所有带通知的宏", "DE.Views.FileMenuPanels.Settings.txtWin": "作为Windows", "DE.Views.HeaderFooterSettings.textBottomCenter": "底部中心", "DE.Views.HeaderFooterSettings.textBottomLeft": "左下", @@ -1572,6 +1625,7 @@ "DE.Views.ImageSettings.textFitMargins": "适合边距", "DE.Views.ImageSettings.textFlip": "翻转", "DE.Views.ImageSettings.textFromFile": "从文件导入", + "DE.Views.ImageSettings.textFromStorage": "来自存储设备", "DE.Views.ImageSettings.textFromUrl": "从URL", "DE.Views.ImageSettings.textHeight": "高度", "DE.Views.ImageSettings.textHint270": "逆时针旋转90°", @@ -1602,6 +1656,7 @@ "DE.Views.ImageSettingsAdvanced.textAngle": "角度", "DE.Views.ImageSettingsAdvanced.textArrows": "箭头", "DE.Views.ImageSettingsAdvanced.textAspectRatio": "锁定宽高比", + "DE.Views.ImageSettingsAdvanced.textAutofit": "自动适应", "DE.Views.ImageSettingsAdvanced.textBeginSize": "初始大小", "DE.Views.ImageSettingsAdvanced.textBeginStyle": "初始风格", "DE.Views.ImageSettingsAdvanced.textBelow": "下面", @@ -1639,6 +1694,7 @@ "DE.Views.ImageSettingsAdvanced.textPositionPc": "相对位置", "DE.Views.ImageSettingsAdvanced.textRelative": "关系到", "DE.Views.ImageSettingsAdvanced.textRelativeWH": "相对的", + "DE.Views.ImageSettingsAdvanced.textResizeFit": "调整形状以适应文本", "DE.Views.ImageSettingsAdvanced.textRight": "对", "DE.Views.ImageSettingsAdvanced.textRightMargin": "右页边距", "DE.Views.ImageSettingsAdvanced.textRightOf": "在 - 的右边", @@ -1647,6 +1703,7 @@ "DE.Views.ImageSettingsAdvanced.textShape": "形状设置", "DE.Views.ImageSettingsAdvanced.textSize": "大小", "DE.Views.ImageSettingsAdvanced.textSquare": "正方形", + "DE.Views.ImageSettingsAdvanced.textTextBox": "文本框", "DE.Views.ImageSettingsAdvanced.textTitle": "图片 - 高级设置", "DE.Views.ImageSettingsAdvanced.textTitleChart": "图 - 高级设置", "DE.Views.ImageSettingsAdvanced.textTitleShape": "形状 - 高级设置", @@ -1702,9 +1759,11 @@ "DE.Views.ListSettingsDialog.textPreview": "预览", "DE.Views.ListSettingsDialog.textRight": "右", "DE.Views.ListSettingsDialog.txtAlign": "校准", + "DE.Views.ListSettingsDialog.txtBullet": "项目点", "DE.Views.ListSettingsDialog.txtColor": "颜色", "DE.Views.ListSettingsDialog.txtFont": "字体和符号", "DE.Views.ListSettingsDialog.txtLikeText": "像文字一样", + "DE.Views.ListSettingsDialog.txtNewBullet": "添加一个新的项目点", "DE.Views.ListSettingsDialog.txtNone": "无", "DE.Views.ListSettingsDialog.txtSize": "大小", "DE.Views.ListSettingsDialog.txtSymbol": "符号", @@ -1865,6 +1924,7 @@ "DE.Views.ParagraphSettingsAdvanced.textEffects": "效果", "DE.Views.ParagraphSettingsAdvanced.textExact": "精确", "DE.Views.ParagraphSettingsAdvanced.textFirstLine": "第一行", + "DE.Views.ParagraphSettingsAdvanced.textHanging": "悬挂", "DE.Views.ParagraphSettingsAdvanced.textJustified": "正当", "DE.Views.ParagraphSettingsAdvanced.textLeader": "前导符", "DE.Views.ParagraphSettingsAdvanced.textLeft": "左", @@ -1920,6 +1980,7 @@ "DE.Views.ShapeSettings.textEmptyPattern": "无图案", "DE.Views.ShapeSettings.textFlip": "翻转", "DE.Views.ShapeSettings.textFromFile": "从文件导入", + "DE.Views.ShapeSettings.textFromStorage": "来自存储设备", "DE.Views.ShapeSettings.textFromUrl": "从URL", "DE.Views.ShapeSettings.textGradient": "渐变", "DE.Views.ShapeSettings.textGradientFill": "渐变填充", @@ -1934,6 +1995,7 @@ "DE.Views.ShapeSettings.textRadial": "径向", "DE.Views.ShapeSettings.textRotate90": "旋转90°", "DE.Views.ShapeSettings.textRotation": "旋转", + "DE.Views.ShapeSettings.textSelectImage": "选取图片", "DE.Views.ShapeSettings.textSelectTexture": "请选择", "DE.Views.ShapeSettings.textStretch": "伸展", "DE.Views.ShapeSettings.textStyle": "类型", @@ -2163,6 +2225,7 @@ "DE.Views.Toolbar.capBtnBlankPage": "空白页", "DE.Views.Toolbar.capBtnColumns": "列", "DE.Views.Toolbar.capBtnComment": "批注", + "DE.Views.Toolbar.capBtnDateTime": "日期、时间", "DE.Views.Toolbar.capBtnInsChart": "图表", "DE.Views.Toolbar.capBtnInsControls": "内容控件", "DE.Views.Toolbar.capBtnInsDropcap": "下沉", @@ -2232,7 +2295,6 @@ "DE.Views.Toolbar.textMarginsUsNormal": "美国标准", "DE.Views.Toolbar.textMarginsWide": "宽", "DE.Views.Toolbar.textNewColor": "添加新的自定义颜色", - "Common.UI.ColorButton.textNewColor": "添加新的自定义颜色", "DE.Views.Toolbar.textNextPage": "下一页", "DE.Views.Toolbar.textNoHighlight": "无高亮", "DE.Views.Toolbar.textNone": "无", @@ -2280,6 +2342,7 @@ "DE.Views.Toolbar.tipControls": "插入内容控件", "DE.Views.Toolbar.tipCopy": "复制", "DE.Views.Toolbar.tipCopyStyle": "复制样式", + "DE.Views.Toolbar.tipDateTime": "插入当前日期和时间", "DE.Views.Toolbar.tipDecFont": "递减字体大小", "DE.Views.Toolbar.tipDecPrLeft": "减少缩进", "DE.Views.Toolbar.tipDropCap": "插入下沉", @@ -2356,6 +2419,7 @@ "DE.Views.WatermarkSettingsDialog.textDiagonal": " 斜线的", "DE.Views.WatermarkSettingsDialog.textFont": "字体 ", "DE.Views.WatermarkSettingsDialog.textFromFile": "从文件导入", + "DE.Views.WatermarkSettingsDialog.textFromStorage": "来自存储设备", "DE.Views.WatermarkSettingsDialog.textFromUrl": "从URL导入", "DE.Views.WatermarkSettingsDialog.textHor": "水平的", "DE.Views.WatermarkSettingsDialog.textImageW": "图像水印", @@ -2365,6 +2429,7 @@ "DE.Views.WatermarkSettingsDialog.textNewColor": "添加新的自定义颜色", "DE.Views.WatermarkSettingsDialog.textNone": "无", "DE.Views.WatermarkSettingsDialog.textScale": "规模", + "DE.Views.WatermarkSettingsDialog.textSelect": "选择图像", "DE.Views.WatermarkSettingsDialog.textStrikeout": "删除线", "DE.Views.WatermarkSettingsDialog.textText": "文本", "DE.Views.WatermarkSettingsDialog.textTextW": "文本水印", diff --git a/apps/documenteditor/main/resources/help/en/Contents.json b/apps/documenteditor/main/resources/help/en/Contents.json index fa06325cc..87cb63d90 100644 --- a/apps/documenteditor/main/resources/help/en/Contents.json +++ b/apps/documenteditor/main/resources/help/en/Contents.json @@ -13,7 +13,8 @@ {"src": "UsageInstructions/SetPageParameters.htm", "name": "Set page parameters", "headername": "Page formatting"}, {"src": "UsageInstructions/NonprintingCharacters.htm", "name": "Show/hide nonprinting characters" }, {"src": "UsageInstructions/SectionBreaks.htm", "name": "Insert section breaks" }, - {"src": "UsageInstructions/InsertHeadersFooters.htm", "name": "Insert headers and footers"}, + { "src": "UsageInstructions/InsertHeadersFooters.htm", "name": "Insert headers and footers" }, + {"src": "UsageInstructions/InsertDateTime.htm", "name": "Insert date and time"}, {"src": "UsageInstructions/InsertPageNumbers.htm", "name": "Insert page numbers"}, { "src": "UsageInstructions/InsertFootnotes.htm", "name": "Insert footnotes" }, { "src": "UsageInstructions/InsertBookmarks.htm", "name": "Add bookmarks" }, @@ -46,7 +47,8 @@ {"src": "UsageInstructions/InsertContentControls.htm", "name": "Insert content controls" }, {"src": "UsageInstructions/CreateTableOfContents.htm", "name": "Create table of contents" }, {"src": "UsageInstructions/UseMailMerge.htm", "name": "Use mail merge", "headername": "Mail Merge"}, - {"src": "UsageInstructions/InsertEquation.htm", "name": "Insert equations", "headername": "Math equations" }, + { "src": "UsageInstructions/InsertEquation.htm", "name": "Insert equations", "headername": "Math equations" }, + {"src": "UsageInstructions/MathAutoCorrect.htm", "name": "Use Math AutoCorrect" }, {"src": "HelpfulHints/CollaborativeEditing.htm", "name": "Collaborative document editing", "headername": "Document co-editing"}, { "src": "HelpfulHints/Review.htm", "name": "Document Review" }, {"src": "HelpfulHints/Comparison.htm", "name": "Compare documents"}, diff --git a/apps/documenteditor/main/resources/help/en/HelpfulHints/About.htm b/apps/documenteditor/main/resources/help/en/HelpfulHints/About.htm index 4eb3a18d1..f91959e39 100644 --- a/apps/documenteditor/main/resources/help/en/HelpfulHints/About.htm +++ b/apps/documenteditor/main/resources/help/en/HelpfulHints/About.htm @@ -13,13 +13,13 @@
-

About Document Editor

-

Document Editor is an online application that lets you look through +

About the Document Editor

+

The Document Editor is an online application that allows you to view through and edit documents directly in your browser.

-

Using Document Editor, you can perform various editing operations like in any desktop editor, +

Using the Document Editor, you can perform various editing operations like in any desktop editor, print the edited documents keeping all the formatting details or download them onto your computer hard disk drive - as DOCX, PDF, ODT, TXT, DOTX, PDF/A, OTT, RTF, HTML files.

-

To view the current software version and licensor details in the online version, click the About icon icon at the left sidebar. To view the current software version and licensor details in the desktop version, select the About menu item at the left sidebar of the main program window.

+ of your computer as DOCX, PDF, ODT, TXT, DOTX, PDF/A, OTT, RTF, HTML files.

+

To view the current software version and licensor details in the online version, click the About icon icon on the left sidebar. To view the current software version and licensor details in the desktop version, select the About menu item on the left sidebar of the main program window.

\ No newline at end of file diff --git a/apps/documenteditor/main/resources/help/en/HelpfulHints/AdvancedSettings.htm b/apps/documenteditor/main/resources/help/en/HelpfulHints/AdvancedSettings.htm index 28f7267c1..5491f2729 100644 --- a/apps/documenteditor/main/resources/help/en/HelpfulHints/AdvancedSettings.htm +++ b/apps/documenteditor/main/resources/help/en/HelpfulHints/AdvancedSettings.htm @@ -13,22 +13,23 @@
-

Advanced Settings of Document Editor

-

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 click the View settings View settings icon icon on the right side of the editor header and select the Advanced settings option.

+

Advanced Settings of the Document Editor

+

The Document Editor allows you to change its advanced settings. To access them, open the File tab on the top toolbar and select the Advanced Settings... option. You can also click the View settings View settings icon icon on the right side of the editor header and select the Advanced settings option.

The advanced settings are:

To save the changes you made, click the Apply button.

diff --git a/apps/documenteditor/main/resources/help/en/HelpfulHints/CollaborativeEditing.htm b/apps/documenteditor/main/resources/help/en/HelpfulHints/CollaborativeEditing.htm index 39c5bcb4b..4229ad2fd 100644 --- a/apps/documenteditor/main/resources/help/en/HelpfulHints/CollaborativeEditing.htm +++ b/apps/documenteditor/main/resources/help/en/HelpfulHints/CollaborativeEditing.htm @@ -14,13 +14,13 @@

Collaborative Document Editing

-

Document Editor offers you the possibility to work at a document collaboratively with other users. This feature includes:

+

The Document Editor allows you to collaboratively work on a document with other users. This feature includes:

Connecting to the online version

@@ -28,34 +28,34 @@

Co-editing

-

Document Editor allows to select one of the two available co-editing modes:

+

The Document Editor allows you to select one of the two available co-editing modes:

-

The mode can be selected in the Advanced Settings. It's also possible to choose the necessary mode using the Co-editing Mode icon Co-editing Mode icon at the Collaboration tab of the top toolbar:

+

The mode can be selected in the Advanced Settings. It's also possible to choose the required mode using the Co-editing Mode icon Co-editing Mode icon on the Collaboration tab of the top toolbar:

Co-editing Mode menu

Note: when you co-edit a document in the Fast mode, the possibility to Redo the last undone operation is not available.

-

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 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 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 when they are editing the text.

+

The number of users who are working on the current document is displayed on the right side of the editor header - Number of users icon. If you want to see who exactly is 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, comment, fill forms 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. It's also possible to set access rights using the Sharing icon Sharing icon at the Collaboration tab of the top toolbar.

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 tab at the top toolbar, select the Advanced Settings... option and choose between none, all and last real-time 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 on the top toolbar, select the Advanced Settings... option and choose between none, all and last real-time 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.

+

You can use this tool to coordinate the co-editing process on-the-fly, for example, to distribute tasks and paragraphs to be edited by the collaborators, 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 they are deleted.

To access the chat and leave a message for other users,

    -
  1. click the Chat icon icon at the left sidebar, or
    +
  2. click the Chat icon icon on the left sidebar, or
    switch to the Collaboration tab of the top toolbar and click the Chat icon Chat button,
  3. enter your text into the corresponding field below,
  4. press the Send button.

All the messages left by users will be displayed on the panel on the left. If there are new messages you haven't read yet, the chat icon will look like this - Chat icon.

-

To close the panel with chat messages, click the Chat icon icon at the left sidebar or the Chat icon Chat button at the top toolbar once again.

+

To close the panel with chat messages, click the Chat icon icon on the left sidebar or the Chat icon Chat button at the top toolbar once again.

Comments

It's possible to work with comments in the offline mode, without connecting to the online version.

@@ -64,28 +64,28 @@
  • select a text passage where you think there is an error or problem,
  • switch to the Insert or Collaboration 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
    + use the Comments icon icon on 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 contextual menu,
  • -
  • enter the needed text,
  • +
  • enter the required text,
  • click the Add Comment/Add button.
  • -

    The comment will be seen on the Comments 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, type in your reply text in the entry field and press the Reply button.

    +

    The comment will be seen on the Comments panel on the left. Any other user can answer 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, type in your reply in the entry field and press the Reply button.

    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.

    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 added comments using the icons in the comment balloon or at the Comments panel on the left:

    +

    You can manage the added comments using the icons in the comment balloon or on the Comments panel on the left:

    Adding mentions

    -

    When entering comments, you can use the mentions feature that allows to attract somebody's attention to the comment and send a notification to the mentioned user via email and Talk.

    +

    When entering comments, you can use the mentions feature that allows you to attract somebody's attention to the comment and send a notification to the mentioned user via email and Talk.

    To add a mention enter the "+" or "@" sign anywhere in the comment text - a list of the portal users will open. To simplify the search process, you can start typing a name in the comment field - the user list will change as you type. Select the necessary person from the list. If the file has not yet been shared with the mentioned user, the Sharing Settings window will open. Read only access type is selected by default. Change it if necessary and click OK.

    The mentioned user will receive an email notification that he/she has been mentioned in a comment. If the file has been shared, the user will also receive a corresponding notification.

    To remove comments,

      -
    1. click the Remove comment icon Remove button at the Collaboration tab of the top toolbar,
    2. +
    3. click the Remove comment icon Remove button on the Collaboration tab of the top toolbar,
    4. select the necessary option from the menu:
    -

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

    +

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

    \ No newline at end of file diff --git a/apps/documenteditor/main/resources/help/en/HelpfulHints/Comparison.htm b/apps/documenteditor/main/resources/help/en/HelpfulHints/Comparison.htm index 0b7c7ab6b..857497b92 100644 --- a/apps/documenteditor/main/resources/help/en/HelpfulHints/Comparison.htm +++ b/apps/documenteditor/main/resources/help/en/HelpfulHints/Comparison.htm @@ -15,33 +15,33 @@

    Compare documents

    Note: this option is available in the paid online version only starting from Document Server v. 5.5.

    -

    If you need to compare and merge two documents, you can use the document Compare feature. It allows to display the differences between two documents and merge the documents by accepting the changes one by one or all at once.

    +

    If you need to compare and merge two documents, you can use the document Compare feature. It allows displaying the differences between two documents and merge the documents by accepting the changes one by one or all at once.

    After comparing and merging two documents, the result will be stored on the portal as a new version of the original file.

    If you do not need to merge documents which are being compared, you can reject all the changes so that the original document remains unchanged.

    Choose a document for comparison

    To compare two documents, open the original document that you need to compare and select the second document for comparison:

      -
    1. switch to the Collaboration tab at the top toolbar and press the Compare button Compare button,
    2. +
    3. switch to the Collaboration tab on the top toolbar and press the Compare button Compare button,
    4. select one of the following options to load the document:

    When the second document for comparison is selected, the comparison process will start and the document will look as if it was opened in the Review mode. All the changes are highlighted with a color, and you can view the changes, navigate between them, accept or reject them one by one or all the changes at once. It's also possible to change the display mode and see how the document looks before comparison, in the process of comparison, or how it will look after comparison if you accept all changes.

    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:

    +

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

    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:

    +

    Use the To Previous Change button Previous and the To Next Change button Next buttons on the top toolbar to navigate through the changes.

    +

    To accept the currently selected change, you can:

    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:

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

    Additional info on the comparison feature

    -
    Method of the comparison
    +
    Method of comparison

    Documents are compared by words. If a word contains a change of at least one character (e.g. if a character was removed or replaced), in the result, the difference will be displayed as the change of the entire word, not the character.

    The image below illustrates the case when the original file contains the word 'Characters' and the document for comparison contains the word 'Character'.

    Compare documents - method

    diff --git a/apps/documenteditor/main/resources/help/en/HelpfulHints/KeyboardShortcuts.htm b/apps/documenteditor/main/resources/help/en/HelpfulHints/KeyboardShortcuts.htm index baa6f8176..52b32ca02 100644 --- a/apps/documenteditor/main/resources/help/en/HelpfulHints/KeyboardShortcuts.htm +++ b/apps/documenteditor/main/resources/help/en/HelpfulHints/KeyboardShortcuts.htm @@ -28,7 +28,7 @@ Open 'File' panel Alt+F ⌥ Option+F - Open the File panel to save, download, print the current document, view its info, create a new document or open an existing one, access Document Editor help or advanced settings. + Open the File panel panel to save, download, print the current document, view its info, create a new document or open an existing one, access the Document Editor Help Center or advanced settings. Open 'Find and Replace' dialog box @@ -46,7 +46,7 @@ Repeat the last 'Find' action ⇧ Shift+F4 ⇧ Shift+F4,
    ⌘ Cmd+G,
    ⌘ Cmd+⇧ Shift+F4 - Repeat the Find action which has been performed before the key combination press. + Repeat the previous Find performed before the key combination was pressed. Open 'Comments' panel @@ -70,49 +70,55 @@ Save document Ctrl+S ^ Ctrl+S,
    ⌘ Cmd+S - Save all the changes to the document currently edited with Document Editor. The active file will be saved with its current file name, location, and file format. + Save all the changes to the document currently edited with The Document Editor. The active file will be saved with its current file name, location, and file format. Print document Ctrl+P ^ Ctrl+P,
    ⌘ Cmd+P - Print the document with one of the available printers or save it to a file. + Print the document with one of the available printers or save it as a file. Download As... Ctrl+⇧ Shift+S ^ Ctrl+⇧ Shift+S,
    ⌘ Cmd+⇧ Shift+S - Open the Download as... panel to save the currently edited document to the computer hard disk drive in one of the supported formats: DOCX, PDF, ODT, TXT, DOTX, PDF/A, OTT, RTF, HTML. + Open the Download as... panel to save the currently edited document to the hard disk drive of your computer in one of the supported formats: DOCX, PDF, ODT, TXT, DOTX, PDF/A, OTT, RTF, HTML. Full screen F11 - Switch to the full screen view to fit Document Editor into your screen. + Switch to the full screen view to fit the Document Editor into your screen. Help menu F1 F1 - Open Document Editor Help menu. + Open the Document Editor Help menu. Open existing file (Desktop Editors) Ctrl+O - On the Open local file tab in Desktop Editors, opens the standard dialog box that allows to select an existing file. + On the Open local file tab in the Desktop Editors, opens the standard dialog box that allows to select an existing file. Close file (Desktop Editors) Ctrl+W,
    Ctrl+F4 ^ Ctrl+W,
    ⌘ Cmd+W - Close the current document window in Desktop Editors. + Close the current document window in the Desktop Editors. Element contextual menu ⇧ Shift+F10 ⇧ Shift+F10 Open the selected element contextual menu. + + + Reset the ‘Zoom’ parameter + Ctrl+0 + ^ Ctrl+0 or ⌘ Cmd+0 + Reset the ‘Zoom’ parameter of the current document to a default 100%. Navigation @@ -276,7 +282,7 @@ Create nonbreaking hyphen - Ctrl+⇧ Shift+Hyphen + Ctrl+⇧ Shift+_ ^ Ctrl+⇧ Shift+Hyphen Create a hyphen between characters which cannot be used to start a new line. @@ -416,25 +422,25 @@ Bold Ctrl+B ^ Ctrl+B,
    ⌘ Cmd+B - Make the font of the selected text fragment bold giving it more weight. + Make the font of the selected text fragment darker and heavier than normal. Italic Ctrl+I ^ Ctrl+I,
    ⌘ Cmd+I - Make the font of the selected text fragment italicized giving it some right side tilt. + Make the font of the selected text fragment italicized and slightly slanted. Underline Ctrl+U ^ Ctrl+U,
    ⌘ Cmd+U - Make the selected text fragment underlined with the line going under the letters. + Make the selected text fragment underlined with a line going below the letters. Strikeout Ctrl+5 ^ Ctrl+5,
    ⌘ Cmd+5 - Make the selected text fragment struck out with the line going through the letters. + Make the selected text fragment struck out with a line going through the letters. Subscript @@ -658,6 +664,24 @@ Alt+= Insert a formula at the current cursor position. + + + Insert an em dash + Alt+Ctrl+Num- + + Insert an em dash ‘—’ within the current document and to the right of the cursor. + + + Insert a non-breaking hyphen + Ctrl+⇧ Shift+_ + ^ Ctrl+⇧ Shift+Hyphen + Insert a non-breaking hyphen ‘-’ within the current document and to the right of the cursor. + + + Insert a no-break space + Ctrl+⇧ Shift+␣ Spacebar + ^ Ctrl+⇧ Shift+␣ Spacebar + Insert a no-break space ‘o’ within the current document and to the right of the cursor. diff --git a/apps/documenteditor/main/resources/help/en/HelpfulHints/Navigation.htm b/apps/documenteditor/main/resources/help/en/HelpfulHints/Navigation.htm index f8d603c2e..41e6ee35b 100644 --- a/apps/documenteditor/main/resources/help/en/HelpfulHints/Navigation.htm +++ b/apps/documenteditor/main/resources/help/en/HelpfulHints/Navigation.htm @@ -14,7 +14,7 @@

    View Settings and Navigation Tools

    -

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

    +

    The 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 on the right side of the editor header 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: @@ -28,8 +28,10 @@

  • 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 (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 right to extend the sidebar width. To restore its original width move the border to the left.

    +

    + When the Comments or Chat panel is opened, the width of the left sidebar 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 right to extend the width of the sidebar. 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. diff --git a/apps/documenteditor/main/resources/help/en/HelpfulHints/Review.htm b/apps/documenteditor/main/resources/help/en/HelpfulHints/Review.htm index 193dc9fcf..f6e3c5129 100644 --- a/apps/documenteditor/main/resources/help/en/HelpfulHints/Review.htm +++ b/apps/documenteditor/main/resources/help/en/HelpfulHints/Review.htm @@ -14,14 +14,14 @@

    Document Review

    -

    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.

    +

    When somebody shares a file with you using the review permissions, you need to apply the document Review feature.

    +

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

    +

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

    Enable the Track Changes feature

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

    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.

    View changes

    @@ -31,29 +31,29 @@

    Click the double-crossed text in the original position and use the Follow Move button arrow in the change pop-up window to go to the new location of the text.

    Click the double-underlined text in the new position and use the Follow Move button arrow in the change pop-up window to go to to the original location of the text.

    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:

    +

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

    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.

    +

    Use the To Previous Change button Previous and the To Next Change button Next buttons on the top toolbar to navigate through the changes.

    To accept the currently selected change you can:

    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:

    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.

    +

    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/Search.htm b/apps/documenteditor/main/resources/help/en/HelpfulHints/Search.htm index 60f27953b..031a3912c 100644 --- a/apps/documenteditor/main/resources/help/en/HelpfulHints/Search.htm +++ b/apps/documenteditor/main/resources/help/en/HelpfulHints/Search.htm @@ -14,16 +14,16 @@

    Search and Replace Function

    -

    To search for the needed characters, words or phrases used in the currently edited document, - click the Search icon icon situated at the left sidebar or use the Ctrl+F key combination.

    +

    To search for the required characters, words or phrases used in the currently edited document, + click the Search icon icon situated on the left sidebar or use the Ctrl+F key combination.

    The Find and Replace window will open:

    Find and Replace Window

    1. Type in your inquiry into the corresponding data entry field.
    2. Specify search parameters by clicking the Search options icon icon and checking the necessary options:
    3. Click one of the arrow buttons at the bottom right corner of the window. @@ -32,7 +32,7 @@

    The first occurrence of the required characters in the selected direction will be highlighted on the page. If it is not the word you are looking for, click the selected button again to find the next occurrence of the characters you entered.

    -

    To replace one or more occurrences of the found characters click the Replace link below the data entry field or use the Ctrl+H key combination. The Find and Replace window will change:

    +

    To replace one or more occurrences of the found characters, click the Replace link below the data entry field or use the Ctrl+H key combination. The Find and Replace window will change:

    Find and Replace Window

    1. Type in the replacement text into the bottom data entry field.
    2. diff --git a/apps/documenteditor/main/resources/help/en/HelpfulHints/SpellChecking.htm b/apps/documenteditor/main/resources/help/en/HelpfulHints/SpellChecking.htm index db7f80f86..adb6e6c5a 100644 --- a/apps/documenteditor/main/resources/help/en/HelpfulHints/SpellChecking.htm +++ b/apps/documenteditor/main/resources/help/en/HelpfulHints/SpellChecking.htm @@ -14,16 +14,16 @@

      Spell-checking

      -

      Document Editor allows you to check the spelling of your text in a certain language and correct mistakes while editing. In the desktop version, it's also possible to add words into a custom dictionary which is common for all three editors.

      -

      First of all, choose a language for your document. Click the Set Document Language icon Set Document Language icon at 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.

      +

      The Document Editor allows you to check the spelling of your text in a certain language and correct mistakes while editing. In the desktop version, it's also possible to add words into a custom dictionary which is common for all three editors.

      +

      First of all, choose a language for your document. Click the Set Document Language icon Set Document Language icon on the status bar. In the opened window, select the required 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.

      +

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

      To enable the spell checking option, you can:

      -

      Incorrectly spelled words will be underlined by a red line.

      +

      all misspelled words will be underlined by a red line.

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

    -

    Once the style is modified, all the paragraphs within the document formatted using this style will change their appearance correspondingly.

    +

    Once the style is modified, all the paragraphs in the document formatted with this style will change their appearance correspondingly.

    To create a completely new style:

    1. Format a text passage as you need.
    2. @@ -46,13 +46,13 @@
    3. or select the edited text passage with the mouse, drop-down the style gallery and click the New style from selection option.
    4. -
    5. Set the new style parameters in the Create New Style window that opens: -

      Create New Style window

      - +
    6. Set the new style parameters in the opened Create New Style window: +

      Create New Style window

      +

    The created style will be added to the style gallery.

    diff --git a/apps/documenteditor/main/resources/help/en/UsageInstructions/InsertAutoshapes.htm b/apps/documenteditor/main/resources/help/en/UsageInstructions/InsertAutoshapes.htm index 8dd444ab3..bf37d125e 100644 --- a/apps/documenteditor/main/resources/help/en/UsageInstructions/InsertAutoshapes.htm +++ b/apps/documenteditor/main/resources/help/en/UsageInstructions/InsertAutoshapes.htm @@ -18,22 +18,24 @@

    To add an autoshape to your document,

    1. switch to the Insert tab of the top toolbar,
    2. -
    3. click the Shape icon Shape icon at the top toolbar,
    4. +
    5. click the Shape icon Shape icon on 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. -
    9. place the mouse cursor where you want the shape to be put,
    10. -
    11. once the autoshape is added you can change its size, position and properties. -

      Note: to add a caption within the autoshape make sure the shape is selected on the page and start typing your text. The text you add in this way becomes a part of the autoshape (when you move or rotate the shape, the text moves or rotates with it).

      +
    12. place the mouse cursor where the shape should be added,
    13. +
    14. once the autoshape is added, you can change its size, position and properties. +

      Note: to add a caption to an autoshape, make sure the required shape is selected on the page and start typing your text. The added text becomes a part of the autoshape (when you move or rotate the shape, the text moves or rotates with it).

    It's also possible to add a caption to the autoshape. To learn more on how to work with captions for autoshapes, you can refer to this article.

    Move and resize autoshapes

    -

    Reshaping autoshapeTo change the autoshape size, drag small squares Square icon situated on the shape edges. To maintain the original proportions of the selected autoshape while resizing, hold down the Shift key and drag one of the corner icons. +

    Reshaping autoshapeTo change the autoshape size, drag small squares Square icon situated on the shape edges. To maintain the original proportions of the selected autoshape while resizing, hold down the Shift key and drag one of the corner icons.

    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 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 alter the autoshape position, use the Arrow icon that appears after hovering your mouse cursor over the autoshape. Drag the autoshape to the required position without releasing the mouse button. + When you move the autoshape, the guide lines are displayed to help you precisely position the object on the page (if the selected wrapping style is not inline). + 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.

    Note: the list of keyboard shortcuts that can be used when working with objects is available here. @@ -42,9 +44,9 @@

    Adjust autoshape settings

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

    -

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

    +

    If you select the square, tight, through, or top and bottom styles, 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:

    +

    The Position tab is available only if the selected wrapping style is not inline. This tab contains the following parameters that vary depending on the selected wrapping style:

    Chart - 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 chart.

    +

    The Alternative Text tab allows specifying a Title and Description which will be read to the people with vision or cognitive impairments to help them better understand what information the chart contains.

    \ No newline at end of file diff --git a/apps/documenteditor/main/resources/help/en/UsageInstructions/InsertContentControls.htm b/apps/documenteditor/main/resources/help/en/UsageInstructions/InsertContentControls.htm index f4d6acceb..bb55fe798 100644 --- a/apps/documenteditor/main/resources/help/en/UsageInstructions/InsertContentControls.htm +++ b/apps/documenteditor/main/resources/help/en/UsageInstructions/InsertContentControls.htm @@ -14,31 +14,31 @@

    Insert content controls

    -

    Content controls are objects containing different types of contents, such as text, objects etc. Depending on the selected content control type, you can create a form with input fields that can be filled in by other users, or protect some parts of the document from being edited or deleted etc.

    -

    Note: the possibility to add new content controls is available in the paid version only. In the free Community version, you can edit existing content controls, as well as copy and paste them.

    +

    Content controls are objects containing different types of contents, such as text, objects etc. Depending on the selected content control type, you can create a form with input fields that can be filled in by other users, or protect some parts of the document from being edited or deleted, etc.

    +

    Note: the feature to add new content controls is available in the paid version only. In the free Community version, you can edit existing content controls, as well as copy and paste them.

    Currently, you can add the following types of content controls: Plain Text, Rich Text, Picture, Combo box, Drop-down list, Date, Check box.

    Adding content controls

    Create a new Plain Text content control
      -
    1. position the insertion point within a line of the text where you want the control to be added,
      or select a text passage you want to become the control contents.
    2. +
    3. position the insertion point within the text line where the content control should be added,
      or select a text passage to transform it into a content control.
    4. switch to the Insert tab of the top toolbar.
    5. click the arrow next to the Content Controls icon Content Controls icon.
    6. choose the Plain Text option from the menu.
    -

    The control will be inserted at the insertion point within a line of the existing text. Replace the default text within the control ("Your text here") with your own one: select the default text, and type in a new text or copy a text passage from anywhere and paste it into the content control. Plain text content controls do not allow adding line breaks and cannot contain other objects such as images, tables etc.

    +

    The content control will be inserted at the insertion point within existing text line. Replace the default text within the content control ("Your text here") with your own text: select the default text, and type in a new text or copy a text passage from anywhere and paste it into the content control. The Plain text content controls do not allow adding line breaks and cannot contain other objects such as images, tables, etc.

    New plain text content control

    Create a new Rich Text content control
      -
    1. position the insertion point at the end of a paragraph after which you want the control to be added,
      or select one or more of the existing paragraphs you want to become the control contents.
    2. +
    3. position the insertion point within the text line where the content control should be added,
      or select one or more of the existing paragraphs you want to become the control contents.
    4. switch to the Insert tab of the top toolbar.
    5. click the arrow next to the Content Controls icon Content Controls icon.
    6. choose the Rich Text option from the menu.
    7. @@ -50,24 +50,24 @@
    8. position the insertion point within a line of the text where you want the control to be added.
    9. switch to the Insert tab of the top toolbar.
    10. click the arrow next to the Content Controls icon Content Controls icon.
    11. -
    12. choose the Picture option from the menu - the control will be inserted at the insertion point.
    13. +
    14. choose the Picture option from the menu - the content control will be inserted at the insertion point.
    15. click the Insert image icon image icon in the button above the content control border - a standard file selection window will open. Choose an image stored on your computer and click Open.

    The selected image will be displayed within the content control. To replace the image, click the Insert image icon image icon in the button above the content control border and select another image.

    New picture content control

    Create a new Combo box or Drop-down list content control
    -

    The Combo box and Drop-down list content controls contain a drop-down list with a set of choices. They can be created in nearly the same way. The main difference between them is that the selected value in the drop-down list cannot be edited, while the selected value in the combo box can be replaced with your own one.

    +

    The Combo box and Drop-down list content controls contain a drop-down list with a set of choices. They can be created amost in the same way. The main difference between them is that the selected value in the drop-down list cannot be edited, while the selected value in the combo box can be replaced.

    1. position the insertion point within a line of the text where you want the control to be added.
    2. switch to the Insert tab of the top toolbar.
    3. click the arrow next to the Content Controls icon Content Controls icon.
    4. choose the Combo box or Drop-down list option from the menu - the control will be inserted at the insertion point.
    5. right-click the added control and choose the Content control settings option from the contextual menu.
    6. -
    7. in the the Content Control Settings window that opens switch to the Combo box or Drop-down list tab, depending on the selected content control type. +
    8. in the the opened Content Control Settings window, switch to the Combo box or Drop-down list tab, depending on the selected content control type.

      Combo box settings window

    9. - to add a new list item, click the Add button and fill in the available fields in the window that opens: + to add a new list item, click the Add button and fill in the available fields in the the opened window:

      Combo box - adding value

      1. specify the necessary text in the Display name field, e.g. Yes, No, Other. This text will be displayed in the content control within the document.
      2. @@ -79,17 +79,17 @@
      3. when all the necessary choices are set, click the OK button to save the settings and close the window.

      New combo box content control

      -

      You can click the arrow button in the right part of the added Combo box or Drop-down list content control to open the item list and choose the necessary one. Once the necessary item is selected from the Combo box, you can edit the displayed text replacing it with your own one entirely or partially. The Drop-down list does not allow to edit the selected item.

      +

      You can click the arrow button in the right part of the added Combo box or Drop-down list content control to open the item list and choose the necessary one. Once the necessary item is selected from the Combo box, you can edit the displayed text by replacing it with your text entirely or partially. The Drop-down list does not allow editing the selected item.

      Combo box content control

      Create a new Date content control
        -
      1. position the insertion point within a line of the text where you want the control to be added.
      2. +
      3. position the insertion point within the text where content control should be added.
      4. switch to the Insert tab of the top toolbar.
      5. click the arrow next to the Content Controls icon Content Controls icon.
      6. -
      7. choose the Date option from the menu - the control with the current date will be inserted at the insertion point.
      8. -
      9. right-click the added control and choose the Content control settings option from the contextual menu.
      10. +
      11. choose the Date option from the menu - the content control with the current date will be inserted at the insertion point.
      12. +
      13. right-click the added content control and choose the Content control settings option from the contextual menu.
      14. - in the the Content Control Settings window that opens switch to the Date format tab. + in the opened Content Control Settings window, switch to the Date format tab.

        Date settings window

      15. choose the necessary Language and select the necessary date format in the Display the date like this list.
      16. @@ -100,16 +100,16 @@

        Date content control

        Create a new Check box content control
          -
        1. position the insertion point within a line of the text where you want the control to be added.
        2. +
        3. position the insertion point within the text line where the content control should be added.
        4. switch to the Insert tab of the top toolbar.
        5. click the arrow next to the Content Controls icon Content Controls icon.
        6. -
        7. choose the Check box option from the menu - the control will be inserted at the insertion point.
        8. -
        9. right-click the added control and choose the Content control settings option from the contextual menu.
        10. +
        11. choose the Check box option from the menu - the content control will be inserted at the insertion point.
        12. +
        13. right-click the added content control and choose the Content control settings option from the contextual menu.
        14. - in the the Content Control Settings window that opens switch to the Check box tab. + in the opened Content Control Settings window, switch to the Check box tab.

          Check box settings window

        15. -
        16. click the Checked symbol button to specify the necessary symbol for the selected check box or the Unchecked symbol to select how the cleared check box should look like. The Symbol window will open. To learn more on how to work with symbols, you can refer to this article.
        17. +
        18. click the Checked symbol button to specify the necessary symbol for the selected check box or the Unchecked symbol to select how the cleared check box should look like. The Symbol window will open. To learn more on how to work with symbols, please refer to this article.
        19. when the symbols are specified, click the OK button to save the settings and close the window.

        The added check box is displayed in the unchecked mode.

        @@ -117,49 +117,49 @@

        If you click the added check box it will be checked with the symbol selected in the Checked symbol list.

        Check box content control

        -

        Note: The content control border is visible when the control is selected only. The borders do not appear on a printed version.

        +

        Note: The content control border is only visible when the control is selected. The borders do not appear on a printed version.

        Moving content controls

        -

        Controls can be moved to another place in the document: click the button to the left of the control border to select the control and drag it without releasing the mouse button to another position in the document text.

        +

        Content controls can be moved to another place in the document: click the button on the left of the control border to select the control and drag it without releasing the mouse button to another position in the text.

        Moving content control

        You can also copy and paste content controls: select the necessary control and use the Ctrl+C/Ctrl+V key combinations.

        Editing plain text and rich text content controls

        -

        Text within the plain text and rich text content controls can be formatted using the icons on the top toolbar: you can adjust the font type, size, color, apply decoration styles and formatting presets. It's also possible to use the Paragraph - Advanced settings window accessible from the contextual menu or from the right sidebar to change the text properties. Text within rich text content controls can be formatted like a regular text of the document, i.e. you can set line spacing, change paragraph indents, adjust tab stops.

        +

        Text within plain text and rich text content controls can be formatted by using the icons on the top toolbar: you can adjust the font type, size, color, apply decoration styles and formatting presets. It's also possible to use the Paragraph - Advanced settings window accessible from the contextual menu or from the right sidebar to change the text properties. Text within rich text content controls can be formatted like a regular text, i.e. you can set line spacing, change paragraph indents, adjust tab stops, etc.

        Changing content control settings

        No matter which type of content controls is selected, you can change the content control settings in the General and Locking sections of the Content Control Settings window.

        To open the content control settings, you can proceed in the following ways:

          -
        • Select the necessary content control, click the arrow next to the Content Controls icon Content Controls icon at the top toolbar and select the Control Settings option from the menu.
        • +
        • Select the necessary content control, click the arrow next to the Content Controls icon Content Controls icon on the top toolbar and select the Control Settings option from the menu.
        • Right-click anywhere within the content control and use the Content control settings option from the contextual menu.
        -

        A new window will open. At the General tab, you can adjust the following settings:

        +

        A new window will open. Ot the General tab, you can adjust the following settings:

        Content Control settings window - General

          -
        • Specify the content control Title or Tag in the corresponding fields. The title will be displayed when the control is selected in the document. Tags are used to identify content controls so that you can make reference to them in your code.
        • -
        • Choose if you want to display the content control with a Bounding box or not. Use the None option to display the control without the bounding box. If you select the Bounding box option, you can choose this box Color using the field below. Click the Apply to All button to apply the specified Appearance settings to all the content controls in the document.
        • +
        • Specify the content control Title, Placeholder, or Tag in the corresponding fields. The title will be displayed when the control is selected. The placeholder is the main text displayed within the content control element. Tags are used to identify content controls so that you can make a reference to them in your code.
        • +
        • Choose if you want to display the content control with a Bounding box or not. Use the None option to display the control without the bounding box. If you select the Bounding box option, you can choose the Color of this box using the field below. Click the Apply to All button to apply the specified Appearance settings to all the content controls in the document.
        -

        At the Locking tab, you can protect the content control from being deleted or edited using the following settings:

        +

        On the Locking tab, you can protect the content control from being deleted or edited using the following settings:

        Content Control settings window - Locking

        • Content control cannot be deleted - check this box to protect the content control from being deleted.
        • Contents cannot be edited - check this box to protect the contents of the content control from being edited.
        -

        For certain types of content controls, the third tab is also available that contains the settings specific for the selected content control type only: Combo box, Drop-down list, Date, Check box. These settings are described above in the sections about adding the corresponding content controls.

        +

        For certain types of content controls, the third tab that contains the specific settings for the selected content control type is also available: Combo box, Drop-down list, Date, Check box. These settings are described above in the sections about adding the corresponding content controls.

        Click the OK button within the settings window to apply the changes.

        It's also possible to highlight content controls with a certain color. To highlight controls with a color:

          -
        1. Click the button to the left of the control border to select the control,
        2. -
        3. Click the arrow next to the Content Controls icon Content Controls icon at the top toolbar,
        4. +
        5. Click the button on the left of the control border to select the control,
        6. +
        7. Click the arrow next to the Content Controls icon Content Controls icon on the top toolbar,
        8. Select the Highlight Settings option from the menu,
        9. -
        10. Select the necessary color on the available palettes: Theme Colors, Standard Colors or specify a new Custom Color. To remove previously applied color highlighting, use the No highlighting option.
        11. +
        12. Choose the required color from the available palettes: Theme Colors, Standard Colors or specify a new Custom Color. To remove previously applied color highlighting, use the No highlighting option.

        The selected highlight options will be applied to all the content controls in the document.

        Removing content controls

        -

        To remove a control and leave all its contents, click the content control to select it, then proceed in one of the following ways:

        +

        To remove a content control and leave all its contents, select a content control, then proceed in one of the following ways:

          -
        • Click the arrow next to the Content Controls icon Content Controls icon at the top toolbar and select the Remove content control option from the menu.
        • +
        • Click the arrow next to the Content Controls icon Content Controls icon on the top toolbar and select the Remove content control option from the menu.
        • Right-click the content control and use the Remove content control option from the contextual menu.

        To remove a control and all its contents, select the necessary control and press the Delete key on the keyboard.

        diff --git a/apps/documenteditor/main/resources/help/en/UsageInstructions/InsertDateTime.htm b/apps/documenteditor/main/resources/help/en/UsageInstructions/InsertDateTime.htm new file mode 100644 index 000000000..77a6e0e0a --- /dev/null +++ b/apps/documenteditor/main/resources/help/en/UsageInstructions/InsertDateTime.htm @@ -0,0 +1,41 @@ + + + + Insert date and time + + + + + + + +
        +
        + +
        +

        Insert date and time

        +

        To isnert Date and time into your document,

        +
          +
        1. put the cursor where you want to insert Date and time,
        2. +
        3. switch to the Insert tab of the top toolbar,
        4. +
        5. click the Date & time Date and time icon icon on the top toolbar,
        6. +
        7. + in the Date & time window that will appear, specify the following parameters: +
            +
          • Select the required language.
          • +
          • Select one of the suggested formats.
          • +
          • + Check the Update automatically checkbox to let the date & time update automatically based on the current state. +

            + Note: you can also update the date and time manually by using the Refresh field option from the contextual menu. +

            +
          • +
          • Click the Set as default button to make the current format the default for this language.
          • +
          +
        8. +
        9. Click the OK button.
        10. +
        +

        Date and time window

        +
        + + \ No newline at end of file diff --git a/apps/documenteditor/main/resources/help/en/UsageInstructions/InsertDropCap.htm b/apps/documenteditor/main/resources/help/en/UsageInstructions/InsertDropCap.htm index c113e67bc..2188c0b0e 100644 --- a/apps/documenteditor/main/resources/help/en/UsageInstructions/InsertDropCap.htm +++ b/apps/documenteditor/main/resources/help/en/UsageInstructions/InsertDropCap.htm @@ -14,12 +14,12 @@

        Insert a drop cap

        -

        A Drop cap is the first letter of a paragraph that is much larger than others and takes up several lines in height.

        +

        A drop cap is a large capital letter used at the beginning of a paragraph or section. The size of a drop cap is usually several lines.

        To add a drop cap,

          -
        1. put the cursor within the paragraph you need,
        2. +
        3. place the cursor within the required paragraph,
        4. switch to the Insert tab of the top toolbar,
        5. -
        6. click the Drop Cap icon Drop Cap icon at the top toolbar,
        7. +
        8. click the Drop Cap icon Drop Cap icon on the top toolbar,
        9. 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.
          • @@ -28,40 +28,40 @@

        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 Home tab of 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 on 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 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 delete the added drop cap, select it, click the Drop Cap icon Drop Cap icon on 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 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:

        +

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

        Drop Cap - Advanced Settings

        -

        The Drop Cap tab allows to set the following parameters:

        +

        The Drop Cap tab allows adjusting the following parameters:

          -
        • Position - is used to change the drop cap placement. Select the In Text or In Margin option, or click None to delete the drop cap.
        • -
        • Font - is used to select one of the fonts from the list of the available ones.
        • -
        • Height in rows - is used to specify how many lines the drop cap should span. It's possible to select a value from 1 to 10.
        • -
        • Distance from text - is used to specify the amount of space between the text of the paragraph and the right border of the frame that surrounds the drop cap.
        • +
        • Position is used to change the placement of a drop cap. Select the In Text or In Margin option, or click None to delete the drop cap.
        • +
        • Font is used to select a font from the list of the available fonts.
        • +
        • Height in rows is used to define how many lines a drop cap should span. It's possible to select a value from 1 to 10.
        • +
        • Distance from text is used to specify the amount of spacing between the text of the paragraph and the right border of the drop cap frame.

        Drop Cap - Advanced Settings

        -

        The Borders & Fill tab allows to add a border around the drop cap and adjust its parameters. They are the following:

        +

        The Borders & Fill tab allows adding a border around a drop cap and adjusting its parameters. They are the following:

        • Border parameters (size, color and presence or absence) - set the border size, select its color and choose the borders (top, bottom, left, right or their combination) you want to apply these settings to.
        • Background color - choose the color for the drop cap background.

        Drop Cap - Advanced Settings

        -

        The Margins tab allows to set the distance between the drop cap and the Top, Bottom, Left and Right borders around it (if the borders have previously been added).

        +

        The Margins tab allows setting the distance between the drop cap and the Top, Bottom, Left and Right borders around it (if the borders have previously been added).


        Once the drop cap is added you can also change the Frame parameters. To access them, right click within the frame and select the Frame Advanced Settings from the menu. The Frame - Advanced Settings window will open:

        Frame - Advanced Settings

        -

        The Frame tab allows to set the following parameters:

        +

        The Frame tab allows adjusting the following parameters:

          -
        • Position - is used to select the Inline or Flow wrapping style. Or you can click None to delete the frame.
        • -
        • Width and Height - are used to change the frame dimensions. The Auto option allows to automatically adjust the frame size to fit the drop cap in it. The Exactly option allows to specify fixed values. The At least option is used to set the minimum height value (if you change the drop cap size, the frame height changes accordingly, but it cannot be less than the specified value).
        • -
        • Horizontal parameters are used either to set the frame exact position in the selected units of measurement relative to a margin, page or column, or to align the frame (left, center or right) relative to one of these reference points. You can also set the horizontal Distance from text i.e. the amount of space between the vertical frame borders and the text of the paragraph.
        • -
        • Vertical parameters are used either to set the frame exact position in the selected units of measurement relative to a margin, page or paragraph, or to align the frame (top, center or bottom) relative to one of these reference points. You can also set the vertical Distance from text i.e. the amount of space between the horizontal frame borders and the text of the paragraph.
        • -
        • Move with text - controls whether the frame moves as the paragraph to which it is anchored moves.
        • +
        • Position is used to select the Inline or Flow wrapping style. You can also click None to delete the frame.
        • +
        • Width and Height are used to change the frame dimensions. The Auto option allows automatically adjusting the frame size to fit the drop cap. The Exactly option allows specifying fixed values. The At least option is used to set the minimum height value (if you change the drop cap size, the frame height changes accordingly, but it cannot be less than the specified value).
        • +
        • Horizontal parameters are used either to set the exact position of the frame in the selected units of measurement with respect to a margin, page or column, or to align the frame (left, center or right) with respect to one of these reference points. You can also set the horizontal Distance from text i.e. the amount of space between the vertical frame borders and the text of the paragraph.
        • +
        • Vertical parameters are used either to set the exact position of the frame is the selected units of measurement with respect to a margin, page or paragraph, or to align the frame (top, center or bottom) with respect to one of these reference points. You can also set the vertical Distance from text i.e. the amount of space between the horizontal frame borders and the text of the paragraph.
        • +
        • Move with text is used to make sure that the frame moves as the paragraph to which it is anchored.
        -

        The Borders & Fill and Margins tabs allow to set just the same parameters as at the tabs of the same name in the Drop Cap - Advanced Settings window.

        +

        The Borders & Fill and Margins allow adjusting the same parameters as the corresponding tabs in the Drop Cap - Advanced Settings window.

        diff --git a/apps/documenteditor/main/resources/help/en/UsageInstructions/InsertEquation.htm b/apps/documenteditor/main/resources/help/en/UsageInstructions/InsertEquation.htm index 0b408110c..9b1b355ad 100644 --- a/apps/documenteditor/main/resources/help/en/UsageInstructions/InsertEquation.htm +++ b/apps/documenteditor/main/resources/help/en/UsageInstructions/InsertEquation.htm @@ -14,29 +14,29 @@

        Insert equations

        -

        Document Editor allows you to build equations using the built-in templates, edit them, insert special characters (including mathematical operators, Greek letters, accents etc.).

        +

        The Document Editor allows you to build equations using the built-in templates, edit them, insert special characters (including mathematical operators, Greek letters, accents, etc.).

        Add a new equation

        To insert an equation from the gallery,

        1. put the cursor within the necessary line ,
        2. switch to the Insert tab of the top toolbar,
        3. -
        4. click the arrow next to the Equation icon Equation icon at the top toolbar,
        5. +
        6. click the arrow next to the Equation icon Equation icon on the top toolbar,
        7. 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,
        8. 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 Home tab of 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 to the left or to the right, click on the equation box and use the Align Left icon or Align Right icon icon on 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.

        +

        Each equation template represents a set of slots. A 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.

        -

        It's also possible to add a caption to the equation. To learn more on how to work with captions for equations, you can refer to this article.

        +

        It's also possible to add a caption to the equation. To learn more on how to work with captions for equations, please refer to this article.

        Enter values

        -

        The insertion point specifies where the next character you enter will appear. To position the insertion point precisely, click within a placeholder and use the keyboard arrows to move the insertion point by one character left/right or one line up/down.

        +

        The insertion point specifies where the next character will appear. To position the insertion point precisely, click within the placeholder and use the keyboard arrows to move the insertion point by one character left/right or one line up/down.

        If you need to create a new placeholder below the slot with the insertion point within the selected template, press Enter.

        Edited Equation

        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 Equation icon Equation menu at the Insert tab of the top toolbar,
        • +
        • insert a special character using the Symbols palette from the Equation icon Equation menu on the Insert tab of the top toolbar or typing them from the keyboard (see the Math AutoСorrect option description),
        • 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.

        @@ -49,18 +49,18 @@

        Note: currently, equations cannot be entered using the linear format, i.e. \sqrt(4&x^3).

        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.

        +

        If the equation is too long and does not fit a single line, automatic line breaking occurs while typing. 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 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.

        +

        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 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 it. The selected part will be highlighted in blue. Then use the necessary buttons on the Home tab of the top toolbar to format the selected part. 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 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).
        • To change the Scripts position relating to text, you can right-click on the equation that includes scripts and select the Scripts before/after text option from the menu.
        • To change the argument size for Scripts, Radicals, Integrals, Large Operators, Limits and Logarithms, Operators as well as for overbraces/underbraces and templates with grouping characters from the Accents group, you can right-click on the argument you want to change and select the Increase/Decrease argument size option from the menu.
        • To specify whether an empty degree placeholder should be displayed or not for a Radical, you can right-click on the radical and select the Hide/Show degree option from the menu.
        • To specify whether an empty limit placeholder should be displayed or not for an Integral or Large Operator, you can right-click on the equation and select the Hide/Show top/bottom limit option from the menu.
        • -
        • To change the limits position relating to the integral or operator sign for Integrals or Large Operators, you can right-click on the equation and select the Change limits location option from the menu. The limits can be displayed to the right of the operator sign (as subscripts and superscripts) or directly above and below the operator sign.
        • +
        • To change the limits position relating to the integral or operator sign for Integrals or Large Operators, you can right-click on the equation and select the Change limits location option from the menu. The limits can be displayed on the right of the operator sign (as subscripts and superscripts) or directly above and below the operator sign.
        • To change the limits position relating to text for Limits and Logarithms and templates with grouping characters from the Accents group, you can right-click on the equation and select the Limit over/under text option from the menu.
        • To choose which of the Brackets should be displayed, you can right-click on the expression within them and select the Hide/Show opening/closing bracket option from the menu.
        • To control the Brackets size, you can right-click on the expression within them. The Stretch brackets option is selected by default so that the brackets can grow according to the expression within them, but you can deselect this option to prevent brackets from stretching. When this option is activated, you can also use the Match brackets to argument height option.
        • @@ -75,11 +75,11 @@
        • To align elements within a Matrix column horizontally, you can right-click on a placeholder within the column, select the Column Alignment option from the menu, then select the alignment type: Left, Center, or Right.

        Delete equation elements

        -

        To delete a part of the equation, select the part you want to delete by dragging the mouse or holding down the Shift key and using the arrow buttons, then press the Delete key on the keyboard.

        +

        To delete a part of the equation, select it by dragging the mouse or holding down the Shift key and using the arrow buttons, then press the Delete key on the keyboard.

        A slot can only be deleted together with the template it belongs to.

        To delete the entire equation, select it completely by dragging the mouse or double-clicking on the equation box and press the Delete key on the keyboard.

        Delete Equation -

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

        +

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

        • To delete a Radical, you can right-click on it and select the Delete radical option from the menu.
        • To delete a Subscript and/or Superscript, you can right-click on the expression that contains them and select the Remove subscript/superscript option from the menu. If the expression contains scripts that go before text, the Remove scripts option is available.
        • diff --git a/apps/documenteditor/main/resources/help/en/UsageInstructions/InsertFootnotes.htm b/apps/documenteditor/main/resources/help/en/UsageInstructions/InsertFootnotes.htm index c41ae5ef0..7871eb8f1 100644 --- a/apps/documenteditor/main/resources/help/en/UsageInstructions/InsertFootnotes.htm +++ b/apps/documenteditor/main/resources/help/en/UsageInstructions/InsertFootnotes.htm @@ -14,14 +14,14 @@

          Insert footnotes

          -

          You can add footnotes to provide explanations or comments for certain sentences or terms used in your text, make references to the sources etc.

          +

          You can insert footnotes to add explanations or comments for certain sentences or terms used in your text, make references to the sources, etc.

          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. position the insertion point at the end of the text passage that you want to add the footnote to,
          4. switch to the References tab of the top toolbar,
          5. -
          6. click the Footnote icon Footnote icon at the top toolbar, or
            +
          7. click the Footnote icon Footnote icon on 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.

            +

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

          8. type in the footnote text.
          @@ -29,17 +29,17 @@

          Footnotes

          If you hover the mouse pointer over the footnote mark in the document text, a small pop-up window with the footnote text appears.

          Footnote text

          -

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

          +

          To easily navigate through the added footnotes in the text of the document,

            -
          1. click the arrow next to the Footnote icon Footnote icon at the References tab of the top toolbar,
          2. +
          3. click the arrow next to the Footnote icon Footnote icon on the References 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 Footnote icon Footnote icon at the References tab of the top toolbar,
          2. +
          3. click the arrow next to the Footnote icon Footnote icon on the References tab of the top toolbar,
          4. select the Notes Settings option from the menu,
          5. -
          6. change the current parameters in the Notes Settings window that opens: +
          7. change the current parameters in the Notes Settings window that will appear:

            Footnotes Settings window

            • Set the Location of footnotes on the page selecting one of the available options: @@ -55,26 +55,26 @@
            • Numbering - select a way to number your footnotes:
              • Continuous - to number footnotes sequentially throughout the document,
              • -
              • Restart each section - to start footnote numbering with the number 1 (or some other specified character) at the beginning of each section,
              • -
              • Restart each page - to start footnote numbering with the number 1 (or some other specified character) at the beginning of each page.
              • +
              • Restart each section - to start footnote numbering with 1 (or another specified character) at the beginning of each section,
              • +
              • Restart each page - to start footnote numbering with 1 (or another specified character) at the beginning of each page.
            • Custom Mark - set a special character or a word you want to use as the footnote mark (e.g. * or Note1). Enter the necessary character/word into the text entry field and click the Insert button at the bottom of the Notes Settings window.
          8. -
          9. Use the Apply changes to drop-down list to select if you want to apply the specified notes settings to the Whole document or the Current section only. -

            Note: to use different footnotes formatting in separate parts of the document, you need to add section breaks first.

            +
          10. Use the Apply changes to drop-down list if you want to apply the specified notes settings to the Whole document or the Current section only. +

            Note: to use different footnotes formatting in separate parts of the document, you need to add section breaks first.

        -
      17. When ready, click the Apply button.
      18. +
      19. When you finish, click the Apply button.

      -

      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 remove a single footnote, position the insertion point directly before the footnote mark in the 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 Footnote icon Footnote icon at the References tab of the top toolbar,
      2. +
      3. click the arrow next to the Footnote icon Footnote icon on the References 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 3ce7b066c..7adaf8bab 100644 --- a/apps/documenteditor/main/resources/help/en/UsageInstructions/InsertHeadersFooters.htm +++ b/apps/documenteditor/main/resources/help/en/UsageInstructions/InsertHeadersFooters.htm @@ -14,28 +14,28 @@

      Insert headers and footers

      -

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

      +

      To add a new header or footer to your document or edit one that already exists,

      1. switch to the Insert tab of the top toolbar,
      2. -
      3. click the Header/Footer icon Header/Footer icon at the top toolbar,
      4. +
      5. click the Header/Footer icon Header/Footer icon on the top toolbar,
      6. select one of the following options:
        • Edit Header to insert or edit the header text.
        • Edit Footer to insert or edit the footer text.
      7. -
      8. change the current parameters for headers or footers at the right sidebar: -

        Right Sidebar - Header and Footer Settings

        -
          -
        • Set the Position of text relative to the top (for headers) or bottom (for footers) of the page.
        • -
        • Check the Different first page box to apply a different header or footer to the very first page or in case you don't want to add any header/ footer to it at all.
        • -
        • Use the Different odd and even pages box to add different headers/footer for odd and even pages.
        • -
        • The Link to Previous option is available in case you've previously added sections into your document. If not, it will be grayed out. Moreover, this option is also unavailable for the very first section (i.e. when a header or footer that belongs to the first section is selected). By default, this box is checked, so that the same headers/footers are applied to all the sections. If you select a header or footer area, you will see that the area is marked with the Same as Previous label. Uncheck the Link to Previous box to use different headers/footers for each section of the document. The Same as Previous label will no longer be displayed.
        • -
        +
      9. change the current parameters for headers or footers on the right sidebar: +

        Right Sidebar - Header and Footer Settings

        +
          +
        • Set the Position of the text: to the top for headers or to the bottom for footers.
        • +
        • Check the Different first page box to apply a different header or footer to the very first page or in case you don't want to add any header/ footer to it at all.
        • +
        • Use the Different odd and even pages box to add different headers/footer for odd and even pages.
        • +
        • The Link to Previous option is available in case you've previously added sections into your document. If not, it will be grayed out. Moreover, this option is also unavailable for the very first section (i.e. when a header or footer that belongs to the first section is selected). By default, this box is checked, so that the same headers/footers are applied to all the sections. If you select a header or footer area, you will see that the area is marked with the Same as Previous label. Uncheck the Link to Previous box to use different headers/footers for each section of the document. The Same as Previous label will no longer be displayed.
        • +

        Same as previous label

      -

      To enter a text or edit the already entered text and adjust the header or footer settings, you can also double-click within the upper or lower part of a page or click with the right mouse button there and select the only menu option - Edit Header or Edit Footer.

      +

      To enter a text or edit the already entered text and adjust the header or footer settings, you can also double-click anywhere on the top or bottom margin of your document or click with the right mouse button there and select the only menu option - Edit Header or Edit Footer.

      To switch to the document body, double-click within the working area. The text you use as a header or footer will be displayed in gray.

      Note: please refer to the Insert page numbers section to learn how to add page numbers to your document.

      diff --git a/apps/documenteditor/main/resources/help/en/UsageInstructions/InsertImages.htm b/apps/documenteditor/main/resources/help/en/UsageInstructions/InsertImages.htm index dd13fd09a..ea862dfae 100644 --- a/apps/documenteditor/main/resources/help/en/UsageInstructions/InsertImages.htm +++ b/apps/documenteditor/main/resources/help/en/UsageInstructions/InsertImages.htm @@ -14,27 +14,27 @@

      Insert images

      -

      In Document Editor, you can insert images in the most popular formats into your document. The following image formats are supported: BMP, GIF, JPEG, JPG, PNG.

      +

      In the Document Editor, you can insert images in the most popular formats into your document. The following image formats are supported: BMP, GIF, JPEG, JPG, PNG.

      Insert an image

      To insert an image into the document text,

      1. place the cursor where you want the image to be put,
      2. switch to the Insert tab of the top toolbar,
      3. -
      4. click the Image icon Image icon at the top toolbar,
      5. +
      6. click the Image icon Image icon on the top toolbar,
      7. select one of the following options to load the image:
          -
        • the Image from File option will open the standard dialog window for file selection. Browse your computer hard disk drive for the necessary file and click the Open button
        • -
        • the Image from URL option will open the window where you can enter the necessary image web address and click the OK button
        • +
        • the Image from File option will open a standard dialog window for to select a file. Browse your computer hard disk drive for the necessary file and click the Open button
        • +
        • the Image from URL option will open the window where you can enter the web address of the requiredimage, and click the OK button
        • the Image from Storage option will open the Select data source window. Select an image stored on your portal and click the OK button
      8. -
      9. once the image is added you can change its size, properties, and position.
      10. +
      11. once the image is added, you can change its size, properties, and position.

      It's also possible to add a caption to the image. To learn more on how to work with captions for images, you can refer to this article.

      Move and resize images

      Moving imageTo change the image size, drag small squares Square icon situated on its edges. To maintain the original proportions of the selected image while resizing, hold down the Shift key and drag one of the corner icons.

      To alter the image position, use the Arrow icon that appears after hovering your mouse cursor over the image. Drag the image to the necessary position without releasing the mouse button.

      -

      When you move the image, guide lines are displayed to help you position the object on the page precisely (if a wrapping style other than inline is selected).

      +

      When you move the image, the guide lines are displayed to help you precisely position the object on the page (if the selected wrapping style is different from the inline).

      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.

      Note: the list of keyboard shortcuts that can be used when working with objects is available here. @@ -43,20 +43,20 @@

      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:

      -

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

      +

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

      -

      Shape Settings tab When the image is selected, the Shape settings Shape settings icon icon is also available on the right. You can click this icon to open the Shape settings tab at the right sidebar and adjust the shape Stroke type, size and color as well as change the shape type selecting another shape from the Change Autoshape menu. The shape of the image will change correspondingly.

      -

      At the Shape Settings tab, you can also use the Show shadow option to add a shadow to the image.

      +

      Shape Settings tab When the image is selected, the Shape settings Shape settings icon icon is also available on the right. You can click this icon to open the Shape settings tab on the right sidebar and adjust the shape Stroke type, size and color as well as change the shape type selecting another shape from the Change Autoshape menu. The shape of the image will change correspondingly.

      +

      On the Shape Settings tab, you can also use the Show shadow option to add a shadow to the image.


      Adjust image advanced settings

      -

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

      +

      To change the image advanced settings, click the image with the right mouse button and select the Image Advanced Settings option from the right-click menu or just click the Show advanced settings link on the right sidebar. The image properties window will open:

      Image - Advanced Settings: Size

      The Size tab contains the following parameters:

      Image - Advanced Settings: Rotation

      The Rotation tab contains the following parameters:

      @@ -122,7 +122,7 @@ The Horizontal section allows you to select one of the following three image positioning types:
    10. @@ -130,15 +130,15 @@ The Vertical section allows you to select one of the following three image positioning types: -
    11. Move object with text controls whether the image moves as the text to which it is anchored moves.
    12. -
    13. Allow overlap controls whether two images overlap or not if you drag them near each other on the page.
    14. +
    15. Move object with text ensures that the image moves along with the text to which it is anchored.
    16. +
    17. Allow overlap makes is possible for two images to overlap if you drag them near each other on the page.
    18. Image - 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 image.

      +

      The Alternative Text tab allows specifying a Title and Description which will be read to people with vision or cognitive impairments to help them better understand what information the image contains.

      \ No newline at end of file diff --git a/apps/documenteditor/main/resources/help/en/UsageInstructions/InsertPageNumbers.htm b/apps/documenteditor/main/resources/help/en/UsageInstructions/InsertPageNumbers.htm index 9200aa93e..57283cd96 100644 --- a/apps/documenteditor/main/resources/help/en/UsageInstructions/InsertPageNumbers.htm +++ b/apps/documenteditor/main/resources/help/en/UsageInstructions/InsertPageNumbers.htm @@ -17,11 +17,11 @@

      To insert page numbers into your document,

      1. switch to the Insert tab of the top toolbar,
      2. -
      3. click the Header/Footer Header/Footer icon icon at the top toolbar,
      4. +
      5. click the Header/Footer Header/Footer icon icon on the top toolbar,
      6. choose the Insert Page Number submenu,
      7. select one of the following options:
          -
        • To put a page number to each page of your document, select the page number position on the page.
        • +
        • To add a page number to each page of your document, select the page number position on the page.
        • To insert a page number at the current cursor position, select the To Current Position option.

          Note: to insert a current page number at the current cursor position you can also use the Ctrl+Shift+P key combination. @@ -33,17 +33,17 @@

          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 Header/Footer Header/Footer icon icon at the top toolbar,
          4. +
          5. click the Header/Footer Header/Footer icon icon on the top toolbar,
          6. select the Insert number of pages option.

          To edit the page number settings,

          1. double-click the page number added,
          2. -
          3. change the current parameters at the right sidebar: +
          4. change the current parameters on the right sidebar:

            Right Sidebar - Header and Footer Settings

              -
            • Set the Position of page numbers on the page as well as relative to the top and bottom of the page.
            • +
            • Set the Position of page numbers on the page accordingly to the top and bottom of the page.
            • Check the Different first page box to apply a different page number to the very first page or in case you don't want to add any number to it at all.
            • Use the Different odd and even pages box to insert different page numbers for odd and even pages.
            • The Link to Previous option is available in case you've previously added sections into your document. @@ -51,9 +51,10 @@ By default, this box is checked, so that unified numbering is applied to all the sections. If you select a header or footer area, you will see that the area is marked with the Same as Previous label. Uncheck the Link to Previous box to use different page numbering for each section of the document. The Same as Previous label will no longer be displayed.

              Same as previous label

            • -
            • The Page Numbering section allows to adjust page numbering options across different sections of the document. - The Continue from previous section option is selected by default and allows to keep continuous page numbering after a section break. - If you want to start page numbering with a specific number in the current section of the document, select the Start at radio button and enter the necessary starting value in the field on the right.
            • +
            • The Page Numbering section allows adjusting page numbering options throughout different sections of the document. + The Continue from previous section option is selected by default and makes it possible to keep continuous page numbering after a section break. + If you want to start page numbering with a specific number in the current section of the document, select the Start at radio button and enter the required starting value in the field on the right. +
          diff --git a/apps/documenteditor/main/resources/help/en/UsageInstructions/InsertSymbols.htm b/apps/documenteditor/main/resources/help/en/UsageInstructions/InsertSymbols.htm index 82ee6b96e..0c11ae511 100644 --- a/apps/documenteditor/main/resources/help/en/UsageInstructions/InsertSymbols.htm +++ b/apps/documenteditor/main/resources/help/en/UsageInstructions/InsertSymbols.htm @@ -14,32 +14,34 @@

          Insert symbols and characters

          -

          During working process you may need to insert a symbol which is not on your keyboard. To insert such symbols into your document, use the Symbol table iconInsert symbol option and follow these simple steps:

          +

          To insert a special symbol which can not be typed on the keybord, use the Symbol table icon Insert symbol option and follow these simple steps:

            -
          • place the cursor at the location where a special symbol has to be inserted,
          • +
          • place the cursor where a special symbol should be inserted,
          • switch to the Insert tab of the top toolbar,
          • - click the Symbol table iconSymbol, + click the Symbol table icon Symbol,

            Insert symbol sidebar

          • -
          • The Symbol dialog box appears from which you can select the appropriate symbol,
          • +
          • The Symbol dialog box will appear, and you will be able to select the required symbol,
          • use the Range section to quickly find the nesessary symbol. All symbols are divided into specific groups, for example, select 'Currency Symbols' if you want to insert a currency character.

            -

            If this character is not in the set, select a different font. Many of them also have characters other than the standard set.

            -

            Or, enter the Unicode hex value of the symbol you want into the Unicode hex value field. This code can be found in the Character map.

            -

            Previously used symbols are also displayed in the Recently used symbols field,

            +

            If the required character is not in the set, select a different font. Many of them also have characters which differ from the standard set.

            +

            Or enter the Unicode hex value of the required symbol you want into the Unicode hex value field. This code can be found in the Character map.

            +

            You can also use the Special characters tab to choose a special character from the list.

            +

            Insert symbol sidebar

            +

            The previously used symbols are also displayed in the Recently used symbols field,

          • click Insert. The selected character will be added to the document.

          Insert ASCII symbols

          -

          ASCII table is also used to add characters.

          -

          To do this, hold down ALT key and use the numeric keypad to enter the character code.

          +

          The ASCII table is also used to add characters.

          +

          To do this, hold down the ALT key and use the numeric keypad to enter the character code.

          Note: be sure to use the numeric keypad, not the numbers on the main keyboard. To enable the numeric keypad, press the Num Lock key.

          -

          For example, to add a paragraph character (§), press and hold down ALT while typing 789, and then release ALT key.

          +

          For example, to add a paragraph character (§), press and hold down ALT while typing 789, and then release the ALT key.

          -

          Insert symbols using Unicode table

          -

          Additional charachters and symbols might also be found via Windows symbol table. To open this table, do one of the following:

          +

          Insert symbols using the Unicode table

          +

          Additional charachters and symbols can also be found in the Windows symbol table. To open this table, do of the following:

          • in the Search field write 'Character table' and open it,
          • @@ -47,7 +49,7 @@

            Insert symbol windpow

          -

          In the opened Character Map, select one of the Character sets, Groups and Fonts. Next, click on the nesessary characters, copy them to clipboard and paste in the right place of the document.

          +

          In the opened Character Map, select one of the Character sets, Groups and Fonts. Next, click on the required characters, copy them to the clipboard and paste where necessary.

          \ No newline at end of file diff --git a/apps/documenteditor/main/resources/help/en/UsageInstructions/InsertTables.htm b/apps/documenteditor/main/resources/help/en/UsageInstructions/InsertTables.htm index bb9f6c350..00c5c6569 100644 --- a/apps/documenteditor/main/resources/help/en/UsageInstructions/InsertTables.htm +++ b/apps/documenteditor/main/resources/help/en/UsageInstructions/InsertTables.htm @@ -17,9 +17,9 @@

          Insert a table

          To insert a table into the document text,

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

              @@ -44,7 +44,7 @@

              To select a certain cell, move the mouse cursor to the left side of the necessary cell so that the cursor turns into the black arrow Select cell, then left-click.

              To select a certain row, move the mouse cursor to the left border of the table next to the necessary row so that the cursor turns into the horizontal black arrow Select row, then left-click.

              To select a certain column, move the mouse cursor to the top border of the necessary column so that the cursor turns into the downward black arrow Select column, then left-click.

              -

              It's also possible to select a cell, row, column or table using options from the contextual menu or from the Rows & Columns section at the right sidebar.

              +

              It's also possible to select a cell, row, column or table using options from the contextual menu or from the Rows & Columns section on the right sidebar.

              Note: to move around in a table you can use keyboard shortcuts.

              @@ -52,20 +52,20 @@

              Adjust table settings

              Some of the table properties as well as its structure can be altered using 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.
              • +
              • Cut, Copy, Paste - standard options which are used to cut or copy the selected text/object and paste the previously cut/copied text passage or object to the current cursor position.
              • Select is used to select a row, column, cell, or table.
              • Insert is used to insert a row above or row below the row where the cursor is placed as well as to insert a column at the left or right side from the column where the cursor is placed. -

                It's also possible to insert several rows or columns. If you select the Several Rows/Columns option, the Insert Several window opens. Select the Rows or Columns option from the list, specify the number of rows/column you want to add, choose where they should be added: Above the cursor or Below the cursor and click OK.

                +

                It's also possible to insert several rows or columns. If you select the Several Rows/Columns option, the Insert Several window will appear. Select the Rows or Columns option from the list, specify the number of rows/column you want to add, choose where they should be added: Above the cursor or Below the cursor and click OK.

              • Delete is used to delete a row, column, table or cells. If you select the Cells option, the Delete Cells window will open, where you can select if you want to Shift cells left, Delete entire row, or Delete entire column.
              • Merge Cells is available if two or more cells are selected and is used to merge them.

                - It's also possible to merge cells by erasing a boundary between them using the eraser tool. To do this, click the Table icon Table icon at the top toolbar, choose the Erase Table option. The mouse cursor will turn into the eraser Mouse Cursor when erasing borders. Move the mouse cursor over the border between the cells you want to merge and erase it. + It's also possible to merge cells by erasing a boundary between them using the eraser tool. To do this, click the Table icon Table icon on the top toolbar, choose the Erase Table option. The mouse cursor will turn into the eraser Mouse Cursor when erasing borders. Move the mouse cursor over the border between the cells you want to merge and erase it.

              • Split Cell... is used to open a window where you can select the needed number of columns and rows the cell will be split in.

                - It's also possible to split a cell by drawing rows or columns using the pencil tool. To do this, click the Table icon Table icon at the top toolbar, choose the Draw Table option. The mouse cursor will turn into the pencil Mouse Cursor when drawing a table. Draw a horizontal line to create a row or a vertical line to create a column. + It's also possible to split a cell by drawing rows or columns using the pencil tool. To do this, click the Table icon Table icon on the top toolbar, choose the Draw Table option. The mouse cursor will turn into the pencil Mouse Cursor when drawing a table. Draw a horizontal line to create a row or a vertical line to create a column.

              • Distribute rows is used to adjust the selected cells so that they have the same height without changing the overall table height.
              • @@ -78,7 +78,7 @@

              Right Sidebar - Table Settings

              -

              You can also change the table properties at the right sidebar:

              +

              You can also change the table properties on the right sidebar:

              • Rows and Columns are used to select the table parts that you want to be highlighted.

                For rows:

                @@ -104,45 +104,45 @@

              Adjust table advanced settings

              -

              To change the advanced table properties, click the table with the right mouse button and select the Table Advanced Settings option from the right-click menu or use the Show advanced settings link at the right sidebar. The table properties window will open:

              +

              To change the advanced table properties, click the table with the right mouse button and select the Table Advanced Settings option from the right-click menu or use the Show advanced settings link on the right sidebar. The table properties window will open:

              Table - Advanced Settings

              -

              The Table tab allows to change properties of the entire table.

              +

              The Table tab allows changing the properties of the entire table.

              • The Table Size section contains the following parameters:
                • Width - by default, the table width is automatically adjusted to fit the page width, i.e. the table occupies all the space between the left and right page margin. You can check this box and specify the necessary table width manually.
                • -
                • Measure in - allows to specify if you want to set the table width in absolute units i.e. Centimeters/Points/Inches (depending on the option specified at the File -> Advanced Settings... tab) or in Percent of the overall page width. +
                • Measure in allows specifying the table width in absolute units i.e. Centimeters/Points/Inches (depending on the option specified on the File -> Advanced Settings... tab) or in Percent of the overall page width.

                  Note: you can also adjust the table size manually changing the row height and column width. Move the mouse cursor over a row/column border until it turns into the bidirectional arrow and drag the border. You can also use the Table - Column Width Marker markers on the horizontal ruler to change the column width and the Table - Row Height Marker markers on the vertical ruler to change the row height.

                • -
                • Automatically resize to fit contents - enables automatic change of each column width in accordance with the text within its cells.
                • +
                • Automatically resize to fit contents - allows automatically change the width of each column in accordance with the text within its cells.
              • -
              • The Default Cell Margins section allows to change the space between the text within the cells and the cell border used by default.
              • -
              • The Options section allows to change the following parameter: -
                  -
                • Spacing between cells - the cell spacing which will be filled with the Table Background color.
                • -
                +
              • The Default Cell Margins section allows changing the space between the text within the cells and the cell border used by default.
              • +
              • The Options section allows changing the following parameter: +
                  +
                • Spacing between cells - the cell spacing which will be filled with the Table Background color.
                • +

              Table - Advanced Settings

              -

              The Cell tab allows to change properties of individual cells. First you need to select the cell you want to apply the changes to or select the entire table to change properties of all its cells.

              +

              The Cell tab allows changing the properties of individual cells. First you need to select the required cell or select the entire table to change the properties of all its cells.

              • The Cell Size section contains the following parameters:
                  -
                • Preferred width - allows to set a preferred cell width. This is the size that a cell strives to fit to, but in some cases it may not be possible to fit to this exact value. For example, if the text within a cell exceeds the specified width, it will be broken into the next line so that the preferred cell width remains unchanged, but if you insert a new column, the preferred width will be reduced.
                • -
                • Measure in - allows to specify if you want to set the cell width in absolute units i.e. Centimeters/Points/Inches (depending on the option specified at the File -> Advanced Settings... tab) or in Percent of the overall table width. +
                • Preferred width - allows setting the preferred cell width. This is the size that a cell strives to fit, but in some cases, it may not be possible to fit this exact value. For example, if the text within a cell exceeds the specified width, it will be broken into the next line so that the preferred cell width remains unchanged, but if you insert a new column, the preferred width will be reduced.
                • +
                • Measure in - allows specifying the cell width in absolute units i.e. Centimeters/Points/Inches (depending on the option specified on the File -> Advanced Settings... tab) or in Percent of the overall table width.

                  Note: you can also adjust the cell width manually. To make a single cell in a column wider or narrower than the overall column width, select the necessary cell and move the mouse cursor over its right border until it turns into the bidirectional arrow, then drag the border. To change the width of all the cells in a column, use the Table - Column Width Marker markers on the horizontal ruler to change the column width.

              • -
              • The Cell Margins section allows to adjust the space between the text within the cells and the cell border. By default, standard values are used (the default values can also be altered at the Table tab), but you can uncheck the Use default margins box and enter the necessary values manually.
              • +
              • The Cell Margins allows adjusting the space between the text within the cells and the cell border. By default, the standard values are used (the default, these values can also be altered on the Table tab), but you can uncheck the Use default margins box and enter the necessary values manually.
              • - The Cell Options section allows to change the following parameter: + The Cell Options section allows changing the following parameter:
                  -
                • The Wrap text option is enabled by default. It allows to wrap text within a cell that exceeds its width onto the next line expanding the row height and keeping the column width unchanged.
                • +
                • The Wrap text option is enabled by default. It allows wrapping the text within a cell that exceeds its width onto the next line expanding the row height and keeping the column width unchanged.
              @@ -152,21 +152,21 @@
            • 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 Home tab of the top toolbar and select the Hidden Table Borders option. + Note: in case you choose not to show the table borders by clicking the No borders button or deselecting all the borders manually on the diagram, they will be indicated with a dotted line in the document. + To make them disappear at all, click the Nonprinting characters Nonprinting characters icon on 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 Background - the color for the table background or the space background between the cells in case the Allow spacing between cells option is selected on the Table tab.

            Table - Advanced Settings

            -

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

            +

            The Table Position tab is available only if the Flow table option on 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.
            • Vertical parameters include the table alignment (top, center, bottom) relative to margin, page or text as well as the table position below margin, page or text.
            • -
            • The Options section allows to change the following parameters: +
            • The Options section allows changing the following parameters:
                -
              • Move object with text controls whether the table moves as the text into which it is inserted moves.
              • +
              • Move object with text ensures that the table moves with the text.
              • Allow overlap controls whether two tables are merged into one large table or overlap if you drag them near each other on the page.
            • @@ -179,12 +179,12 @@ After you select the wrapping style, the additional wrapping parameters can be set both for inline and flow tables:
              • For the inline table, you can specify the table alignment and indent from left.
              • -
              • For the flow table, you can specify the distance from text and table position at the Table Position tab.
              • +
              • For the flow table, you can specify the distance from text and table position on the Table Position tab.

            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.

            +

            The Alternative Text tab allows specifying the Title and Description which will be read to people with vision or cognitive impairments to help them better understand the contents of the table.

            diff --git a/apps/documenteditor/main/resources/help/en/UsageInstructions/InsertTextObjects.htm b/apps/documenteditor/main/resources/help/en/UsageInstructions/InsertTextObjects.htm index 125a06ce4..c3f8cb5a6 100644 --- a/apps/documenteditor/main/resources/help/en/UsageInstructions/InsertTextObjects.htm +++ b/apps/documenteditor/main/resources/help/en/UsageInstructions/InsertTextObjects.htm @@ -14,36 +14,37 @@

            Insert text objects

            -

            To make your text more emphatic and draw attention to a specific part of the document, 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 make your text more emphatic and draw attention to a specific part of the document, you can insert a text box (a rectangular frame that allows entering text within it) or a Text Art object (a text box with a predefined font style and color that allows applying some effects to the text).

            Add a text object

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

            1. switch to the Insert tab of the top toolbar,
            2. select the necessary text object type:
                -
              • to add a text box, click the Text Box icon Text Box 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.

                +
              • + to add a text box, click the Text Box icon Text Box icon on the top toolbar, then click where the text box should be added, 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 on the top toolbar and selecting the Insert Text autoshape shape from the Basic Shapes group.

              • -
              • 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.
              • +
              • to add a Text Art object, click the Text Art icon Text Art icon on 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.
            3. click outside of the text object to apply the changes and return to the document.

            The text within the text object is a part of the latter (when you move or rotate the text object, the text moves or rotates with it).

            -

            As an inserted text object represents a rectangular frame with text in it (Text Art objects have invisible text box borders by default) and this frame is a common autoshape, you can change both the shape and text properties.

            +

            As the inserted text object represents a rectangular frame with text in it (Text Art objects have invisible text box borders by default), and this frame is a common autoshape, you can change both the shape and text properties.

            To delete the added text object, click on the text box border and press the Delete key on the keyboard. The text within the text box will also be deleted.

            Format a text box

            -

            Select the text box clicking on its border to be able to change its properties. When the text box is selected, its borders are displayed as solid (not dashed) lines.

            +

            Select the text box by clicking on its border to be able to change its properties. When the text box is selected, its borders are displayed as solid (not dashed) lines.

            Text box selected

              -
            • to resize, move, rotate the text box use the special handles on the edges of the shape.
            • +
            • 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, rotate or flip a text box, 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.
            • +
            • to align the text box on the page, arrange text boxes as related to other objects, rotate or flip a text box, 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, please 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.

            +

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

            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.

            +

            Note: it's also possible to change the text formatting when the text box (not the text itself) is selected. In thus 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 the previously selected text fragment separately.

            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 Text Down (sets a vertical direction, from top to bottom) or Rotate Text Up (sets a vertical direction, from bottom to top).

            To align the text vertically within the text box, right-click the text, select the Vertical Alignment option and then choose one of the available options: Align Top, Align Center or Align Bottom.

            Other formatting options that you can apply are the same as the ones for regular text. Please refer to the corresponding help sections to learn more about the necessary operation. You can:

            @@ -57,11 +58,11 @@

            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

            -

            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 applied text style by selecting a new Template from the gallery. You can also change the basic style by selecting a different font type, size etc.

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

            • - Color Fill - select this option to specify the solid color you want to fill the inner space of letters with. + Color Fill - select this option to specify the solid color to fill the inner space of letters.

              Color Fill

              Click the colored box below and select the necessary color from the available color sets or specify any color you like:

            • diff --git a/apps/documenteditor/main/resources/help/en/UsageInstructions/LineSpacing.htm b/apps/documenteditor/main/resources/help/en/UsageInstructions/LineSpacing.htm index eecb97add..5419486e0 100644 --- a/apps/documenteditor/main/resources/help/en/UsageInstructions/LineSpacing.htm +++ b/apps/documenteditor/main/resources/help/en/UsageInstructions/LineSpacing.htm @@ -14,29 +14,29 @@

              Set paragraph line spacing

              -

              In Document Editor, 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.

              +

              In the Document Editor, you can set the line height for the text lines within the paragraph as well as the margins between the current paragraph and the previous one or the subsequent paragraphs.

              To do that,

                -
              1. put the cursor within the paragraph you need, or select several paragraphs with the mouse or all the text in the document by pressing the Ctrl+A key combination,
              2. -
              3. use the corresponding fields at the right sidebar to achieve the desired results: +
              4. place the cursor within the required paragraph, or select several paragraphs with the mouse or the whole text by pressing the Ctrl+A key combination,
              5. +
              6. use the corresponding fields on 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. -
                    -
                  • Before - set the amount of space before the paragraph.
                  • -
                  • After - set the amount of space after the paragraph.
                  • -
                  • - Don't add interval between paragraphs of the same style - check this box in case you don't need any space between paragraphs of the same style. -

                    Right Sidebar - Paragraph Settings

                    -
                  • -
                  -
                • +
                • 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 in 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 defines the amount of spacing between paragraphs. +
                    +
                  • Before defines the amount of spacing before the paragraph.
                  • +
                  • After defines the amount of spacing after the paragraph.
                  • +
                  • + Don't add interval between paragraphs of the same style - please check this box if you don't need any spacing between paragraphs of the same style. +

                    Right Sidebar - Paragraph Settings

                    +
                  • +
                  +
              -

              These parameters can also be found in the Paragraph - Advanced Settings window. To open the Paragraph - Advanced Settings window, right-click the text and choose the Paragraph Advanced Settings option from the menu or use the Show advanced settings option at the right sidebar. Then switch to the Indents & Spacing tab and go to the Spacing section.

              +

              These parameters can also be found in the Paragraph - Advanced Settings window. To open the Paragraph - Advanced Settings window, right-click the text and choose the Paragraph Advanced Settings option from the menu or use the Show advanced settings option on the right sidebar. Then switch to the Indents & Spacing tab and go to the Spacing section.

              Paragraph Advanced Settings - Indents & Spacing

              -

              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.

              +

              To quickly change the current paragraph line spacing, you can also use the Paragraph line spacing Paragraph line spacing icon on the Home tab of the top toolbar selecting the required 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/MathAutoCorrect.htm b/apps/documenteditor/main/resources/help/en/UsageInstructions/MathAutoCorrect.htm new file mode 100644 index 000000000..43326e9d7 --- /dev/null +++ b/apps/documenteditor/main/resources/help/en/UsageInstructions/MathAutoCorrect.htm @@ -0,0 +1,2506 @@ + + + + Use Math AutoCorrect + + + + + + + +
              +
              + +
              +

              Use Math AutoCorrect

              +

              When working with equations, you can insert a lot of symbols, accents and mathematical operation signs typing them on the keyboard instead of choosing a template from the gallery.

              +

              In the equation editor, place the insertion point within the necessary placeholder, type a math autocorrect code, then press Spacebar. The entered code will be converted into the corresponding symbol, and the space will be eliminated.

              +

              Note: The codes are case sensitive.

              +

              The table below contains all the currently supported codes available in the Document Editor. The full list of the supported codes can also be found on the File tab in the Advanced Settings... -> Proofing section.

              +

              AutoCorrect window

              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
              CodeSymbolCategory
              !!Double factorialSymbols
              ...Horizontal ellipsisDots
              ::Double colonOperators
              :=Colon equalOperators
              /<Not less thanRelational operators
              />Not greater thanRelational operators
              /=Not equalRelational operators
              \aboveSymbolAbove/Below scripts
              \acuteSymbolAccents
              \alephSymbolHebrew letters
              \alphaSymbolGreek letters
              \AlphaSymbolGreek letters
              \amalgSymbolBinary operators
              \angleSymbolGeometry notation
              \aointSymbolIntegrals
              \approxSymbolRelational operators
              \asmashSymbolArrows
              \astAsteriskBinary operators
              \asympSymbolRelational operators
              \atopSymbolOperators
              \barSymbolOver/Underbar
              \BarSymbolAccents
              \becauseSymbolRelational operators
              \beginSymbolDelimiters
              \belowSymbolAbove/Below scripts
              \betSymbolHebrew letters
              \betaSymbolGreek letters
              \BetaSymbolGreek letters
              \bethSymbolHebrew letters
              \bigcapSymbolLarge operators
              \bigcupSymbolLarge operators
              \bigodotSymbolLarge operators
              \bigoplusSymbolLarge operators
              \bigotimesSymbolLarge operators
              \bigsqcupSymbolLarge operators
              \biguplusSymbolLarge operators
              \bigveeSymbolLarge operators
              \bigwedgeSymbolLarge operators
              \binomialSymbolEquations
              \botSymbolLogic notation
              \bowtieSymbolRelational operators
              \boxSymbolSymbols
              \boxdotSymbolBinary operators
              \boxminusSymbolBinary operators
              \boxplusSymbolBinary operators
              \braSymbolDelimiters
              \breakSymbolSymbols
              \breveSymbolAccents
              \bulletSymbolBinary operators
              \capSymbolBinary operators
              \cbrtSymbolSquare roots and radicals
              \casesSymbolSymbols
              \cdotSymbolBinary operators
              \cdotsSymbolDots
              \checkSymbolAccents
              \chiSymbolGreek letters
              \ChiSymbolGreek letters
              \circSymbolBinary operators
              \closeSymbolDelimiters
              \clubsuitSymbolSymbols
              \cointSymbolIntegrals
              \congSymbolRelational operators
              \coprodSymbolMath operators
              \cupSymbolBinary operators
              \daletSymbolHebrew letters
              \dalethSymbolHebrew letters
              \dashvSymbolRelational operators
              \ddSymbolDouble-struck letters
              \DdSymbolDouble-struck letters
              \ddddotSymbolAccents
              \dddotSymbolAccents
              \ddotSymbolAccents
              \ddotsSymbolDots
              \defeqSymbolRelational operators
              \degcSymbolSymbols
              \degfSymbolSymbols
              \degreeSymbolSymbols
              \deltaSymbolGreek letters
              \DeltaSymbolGreek letters
              \DeltaeqSymbolOperators
              \diamondSymbolBinary operators
              \diamondsuitSymbolSymbols
              \divSymbolBinary operators
              \dotSymbolAccents
              \doteqSymbolRelational operators
              \dotsSymbolDots
              \doubleaSymbolDouble-struck letters
              \doubleASymbolDouble-struck letters
              \doublebSymbolDouble-struck letters
              \doubleBSymbolDouble-struck letters
              \doublecSymbolDouble-struck letters
              \doubleCSymbolDouble-struck letters
              \doubledSymbolDouble-struck letters
              \doubleDSymbolDouble-struck letters
              \doubleeSymbolDouble-struck letters
              \doubleESymbolDouble-struck letters
              \doublefSymbolDouble-struck letters
              \doubleFSymbolDouble-struck letters
              \doublegSymbolDouble-struck letters
              \doubleGSymbolDouble-struck letters
              \doublehSymbolDouble-struck letters
              \doubleHSymbolDouble-struck letters
              \doubleiSymbolDouble-struck letters
              \doubleISymbolDouble-struck letters
              \doublejSymbolDouble-struck letters
              \doubleJSymbolDouble-struck letters
              \doublekSymbolDouble-struck letters
              \doubleKSymbolDouble-struck letters
              \doublelSymbolDouble-struck letters
              \doubleLSymbolDouble-struck letters
              \doublemSymbolDouble-struck letters
              \doubleMSymbolDouble-struck letters
              \doublenSymbolDouble-struck letters
              \doubleNSymbolDouble-struck letters
              \doubleoSymbolDouble-struck letters
              \doubleOSymbolDouble-struck letters
              \doublepSymbolDouble-struck letters
              \doublePSymbolDouble-struck letters
              \doubleqSymbolDouble-struck letters
              \doubleQSymbolDouble-struck letters
              \doublerSymbolDouble-struck letters
              \doubleRSymbolDouble-struck letters
              \doublesSymbolDouble-struck letters
              \doubleSSymbolDouble-struck letters
              \doubletSymbolDouble-struck letters
              \doubleTSymbolDouble-struck letters
              \doubleuSymbolDouble-struck letters
              \doubleUSymbolDouble-struck letters
              \doublevSymbolDouble-struck letters
              \doubleVSymbolDouble-struck letters
              \doublewSymbolDouble-struck letters
              \doubleWSymbolDouble-struck letters
              \doublexSymbolDouble-struck letters
              \doubleXSymbolDouble-struck letters
              \doubleySymbolDouble-struck letters
              \doubleYSymbolDouble-struck letters
              \doublezSymbolDouble-struck letters
              \doubleZSymbolDouble-struck letters
              \downarrowSymbolArrows
              \DownarrowSymbolArrows
              \dsmashSymbolArrows
              \eeSymbolDouble-struck letters
              \ellSymbolSymbols
              \emptysetSymbolSet notations
              \emspSpace characters
              \endSymbolDelimiters
              \enspSpace characters
              \epsilonSymbolGreek letters
              \EpsilonSymbolGreek letters
              \eqarraySymbolSymbols
              \equivSymbolRelational operators
              \etaSymbolGreek letters
              \EtaSymbolGreek letters
              \existsSymbolLogic notations
              \forallSymbolLogic notations
              \frakturaSymbolFraktur letters
              \frakturASymbolFraktur letters
              \frakturbSymbolFraktur letters
              \frakturBSymbolFraktur letters
              \frakturcSymbolFraktur letters
              \frakturCSymbolFraktur letters
              \frakturdSymbolFraktur letters
              \frakturDSymbolFraktur letters
              \fraktureSymbolFraktur letters
              \frakturESymbolFraktur letters
              \frakturfSymbolFraktur letters
              \frakturFSymbolFraktur letters
              \frakturgSymbolFraktur letters
              \frakturGSymbolFraktur letters
              \frakturhSymbolFraktur letters
              \frakturHSymbolFraktur letters
              \frakturiSymbolFraktur letters
              \frakturISymbolFraktur letters
              \frakturkSymbolFraktur letters
              \frakturKSymbolFraktur letters
              \frakturlSymbolFraktur letters
              \frakturLSymbolFraktur letters
              \frakturmSymbolFraktur letters
              \frakturMSymbolFraktur letters
              \frakturnSymbolFraktur letters
              \frakturNSymbolFraktur letters
              \frakturoSymbolFraktur letters
              \frakturOSymbolFraktur letters
              \frakturpSymbolFraktur letters
              \frakturPSymbolFraktur letters
              \frakturqSymbolFraktur letters
              \frakturQSymbolFraktur letters
              \frakturrSymbolFraktur letters
              \frakturRSymbolFraktur letters
              \fraktursSymbolFraktur letters
              \frakturSSymbolFraktur letters
              \frakturtSymbolFraktur letters
              \frakturTSymbolFraktur letters
              \frakturuSymbolFraktur letters
              \frakturUSymbolFraktur letters
              \frakturvSymbolFraktur letters
              \frakturVSymbolFraktur letters
              \frakturwSymbolFraktur letters
              \frakturWSymbolFraktur letters
              \frakturxSymbolFraktur letters
              \frakturXSymbolFraktur letters
              \frakturySymbolFraktur letters
              \frakturYSymbolFraktur letters
              \frakturzSymbolFraktur letters
              \frakturZSymbolFraktur letters
              \frownSymbolRelational operators
              \funcapplyBinary operators
              \GSymbolGreek letters
              \gammaSymbolGreek letters
              \GammaSymbolGreek letters
              \geSymbolRelational operators
              \geqSymbolRelational operators
              \getsSymbolArrows
              \ggSymbolRelational operators
              \gimelSymbolHebrew letters
              \graveSymbolAccents
              \hairspSpace characters
              \hatSymbolAccents
              \hbarSymbolSymbols
              \heartsuitSymbolSymbols
              \hookleftarrowSymbolArrows
              \hookrightarrowSymbolArrows
              \hphantomSymbolArrows
              \hsmashSymbolArrows
              \hvecSymbolAccents
              \identitymatrixSymbolMatrices
              \iiSymbolDouble-struck letters
              \iiintSymbolIntegrals
              \iintSymbolIntegrals
              \iiiintSymbolIntegrals
              \ImSymbolSymbols
              \imathSymbolSymbols
              \inSymbolRelational operators
              \incSymbolSymbols
              \inftySymbolSymbols
              \intSymbolIntegrals
              \integralSymbolIntegrals
              \iotaSymbolGreek letters
              \IotaSymbolGreek letters
              \itimesMath operators
              \jSymbolSymbols
              \jjSymbolDouble-struck letters
              \jmathSymbolSymbols
              \kappaSymbolGreek letters
              \KappaSymbolGreek letters
              \ketSymbolDelimiters
              \lambdaSymbolGreek letters
              \LambdaSymbolGreek letters
              \langleSymbolDelimiters
              \lbbrackSymbolDelimiters
              \lbraceSymbolDelimiters
              \lbrackSymbolDelimiters
              \lceilSymbolDelimiters
              \ldivSymbolFraction slashes
              \ldivideSymbolFraction slashes
              \ldotsSymbolDots
              \leSymbolRelational operators
              \leftSymbolDelimiters
              \leftarrowSymbolArrows
              \LeftarrowSymbolArrows
              \leftharpoondownSymbolArrows
              \leftharpoonupSymbolArrows
              \leftrightarrowSymbolArrows
              \LeftrightarrowSymbolArrows
              \leqSymbolRelational operators
              \lfloorSymbolDelimiters
              \lhvecSymbolAccents
              \limitSymbolLimits
              \llSymbolRelational operators
              \lmoustSymbolDelimiters
              \LongleftarrowSymbolArrows
              \LongleftrightarrowSymbolArrows
              \LongrightarrowSymbolArrows
              \lrharSymbolArrows
              \lvecSymbolAccents
              \mapstoSymbolArrows
              \matrixSymbolMatrices
              \medspSpace characters
              \midSymbolRelational operators
              \middleSymbolSymbols
              \modelsSymbolRelational operators
              \mpSymbolBinary operators
              \muSymbolGreek letters
              \MuSymbolGreek letters
              \nablaSymbolSymbols
              \naryandSymbolOperators
              \nbspSpace characters
              \neSymbolRelational operators
              \nearrowSymbolArrows
              \neqSymbolRelational operators
              \niSymbolRelational operators
              \normSymbolDelimiters
              \notcontainSymbolRelational operators
              \notelementSymbolRelational operators
              \notinSymbolRelational operators
              \nuSymbolGreek letters
              \NuSymbolGreek letters
              \nwarrowSymbolArrows
              \oSymbolGreek letters
              \OSymbolGreek letters
              \odotSymbolBinary operators
              \ofSymbolOperators
              \oiiintSymbolIntegrals
              \oiintSymbolIntegrals
              \ointSymbolIntegrals
              \omegaSymbolGreek letters
              \OmegaSymbolGreek letters
              \ominusSymbolBinary operators
              \openSymbolDelimiters
              \oplusSymbolBinary operators
              \otimesSymbolBinary operators
              \overSymbolDelimiters
              \overbarSymbolAccents
              \overbraceSymbolAccents
              \overbracketSymbolAccents
              \overlineSymbolAccents
              \overparenSymbolAccents
              \overshellSymbolAccents
              \parallelSymbolGeometry notation
              \partialSymbolSymbols
              \pmatrixSymbolMatrices
              \perpSymbolGeometry notation
              \phantomSymbolSymbols
              \phiSymbolGreek letters
              \PhiSymbolGreek letters
              \piSymbolGreek letters
              \PiSymbolGreek letters
              \pmSymbolBinary operators
              \pppprimeSymbolPrimes
              \ppprimeSymbolPrimes
              \pprimeSymbolPrimes
              \precSymbolRelational operators
              \preceqSymbolRelational operators
              \primeSymbolPrimes
              \prodSymbolMath operators
              \proptoSymbolRelational operators
              \psiSymbolGreek letters
              \PsiSymbolGreek letters
              \qdrtSymbolSquare roots and radicals
              \quadraticSymbolSquare roots and radicals
              \rangleSymbolDelimiters
              \RangleSymbolDelimiters
              \ratioSymbolRelational operators
              \rbraceSymbolDelimiters
              \rbrackSymbolDelimiters
              \RbrackSymbolDelimiters
              \rceilSymbolDelimiters
              \rddotsSymbolDots
              \ReSymbolSymbols
              \rectSymbolSymbols
              \rfloorSymbolDelimiters
              \rhoSymbolGreek letters
              \RhoSymbolGreek letters
              \rhvecSymbolAccents
              \rightSymbolDelimiters
              \rightarrowSymbolArrows
              \RightarrowSymbolArrows
              \rightharpoondownSymbolArrows
              \rightharpoonupSymbolArrows
              \rmoustSymbolDelimiters
              \rootSymbolSymbols
              \scriptaSymbolScripts
              \scriptASymbolScripts
              \scriptbSymbolScripts
              \scriptBSymbolScripts
              \scriptcSymbolScripts
              \scriptCSymbolScripts
              \scriptdSymbolScripts
              \scriptDSymbolScripts
              \scripteSymbolScripts
              \scriptESymbolScripts
              \scriptfSymbolScripts
              \scriptFSymbolScripts
              \scriptgSymbolScripts
              \scriptGSymbolScripts
              \scripthSymbolScripts
              \scriptHSymbolScripts
              \scriptiSymbolScripts
              \scriptISymbolScripts
              \scriptkSymbolScripts
              \scriptKSymbolScripts
              \scriptlSymbolScripts
              \scriptLSymbolScripts
              \scriptmSymbolScripts
              \scriptMSymbolScripts
              \scriptnSymbolScripts
              \scriptNSymbolScripts
              \scriptoSymbolScripts
              \scriptOSymbolScripts
              \scriptpSymbolScripts
              \scriptPSymbolScripts
              \scriptqSymbolScripts
              \scriptQSymbolScripts
              \scriptrSymbolScripts
              \scriptRSymbolScripts
              \scriptsSymbolScripts
              \scriptSSymbolScripts
              \scripttSymbolScripts
              \scriptTSymbolScripts
              \scriptuSymbolScripts
              \scriptUSymbolScripts
              \scriptvSymbolScripts
              \scriptVSymbolScripts
              \scriptwSymbolScripts
              \scriptWSymbolScripts
              \scriptxSymbolScripts
              \scriptXSymbolScripts
              \scriptySymbolScripts
              \scriptYSymbolScripts
              \scriptzSymbolScripts
              \scriptZSymbolScripts
              \sdivSymbolFraction slashes
              \sdivideSymbolFraction slashes
              \searrowSymbolArrows
              \setminusSymbolBinary operators
              \sigmaSymbolGreek letters
              \SigmaSymbolGreek letters
              \simSymbolRelational operators
              \simeqSymbolRelational operators
              \smashSymbolArrows
              \smileSymbolRelational operators
              \spadesuitSymbolSymbols
              \sqcapSymbolBinary operators
              \sqcupSymbolBinary operators
              \sqrtSymbolSquare roots and radicals
              \sqsubseteqSymbolSet notation
              \sqsuperseteqSymbolSet notation
              \starSymbolBinary operators
              \subsetSymbolSet notation
              \subseteqSymbolSet notation
              \succSymbolRelational operators
              \succeqSymbolRelational operators
              \sumSymbolMath operators
              \supersetSymbolSet notation
              \superseteqSymbolSet notation
              \swarrowSymbolArrows
              \tauSymbolGreek letters
              \TauSymbolGreek letters
              \thereforeSymbolRelational operators
              \thetaSymbolGreek letters
              \ThetaSymbolGreek letters
              \thickspSpace characters
              \thinspSpace characters
              \tildeSymbolAccents
              \timesSymbolBinary operators
              \toSymbolArrows
              \topSymbolLogic notation
              \tvecSymbolArrows
              \ubarSymbolAccents
              \UbarSymbolAccents
              \underbarSymbolAccents
              \underbraceSymbolAccents
              \underbracketSymbolAccents
              \underlineSymbolAccents
              \underparenSymbolAccents
              \uparrowSymbolArrows
              \UparrowSymbolArrows
              \updownarrowSymbolArrows
              \UpdownarrowSymbolArrows
              \uplusSymbolBinary operators
              \upsilonSymbolGreek letters
              \UpsilonSymbolGreek letters
              \varepsilonSymbolGreek letters
              \varphiSymbolGreek letters
              \varpiSymbolGreek letters
              \varrhoSymbolGreek letters
              \varsigmaSymbolGreek letters
              \varthetaSymbolGreek letters
              \vbarSymbolDelimiters
              \vdashSymbolRelational operators
              \vdotsSymbolDots
              \vecSymbolAccents
              \veeSymbolBinary operators
              \vertSymbolDelimiters
              \VertSymbolDelimiters
              \VmatrixSymbolMatrices
              \vphantomSymbolArrows
              \vthickspSpace characters
              \wedgeSymbolBinary operators
              \wpSymbolSymbols
              \wrSymbolBinary operators
              \xiSymbolGreek letters
              \XiSymbolGreek letters
              \zetaSymbolGreek letters
              \ZetaSymbolGreek letters
              \zwnjSpace characters
              \zwspSpace characters
              ~=Is congruent toRelational operators
              -+Minus or plusBinary operators
              +-Plus or minusBinary operators
              <<SymbolRelational operators
              <=Less than or equal toRelational operators
              ->SymbolArrows
              >=Greater than or equal toRelational operators
              >>SymbolRelational operators
              +
              + + \ 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 a57a3793d..4b2bf19e6 100644 --- a/apps/documenteditor/main/resources/help/en/UsageInstructions/NonprintingCharacters.htm +++ b/apps/documenteditor/main/resources/help/en/UsageInstructions/NonprintingCharacters.htm @@ -14,64 +14,64 @@

              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 Home tab of the top toolbar. Alternatively, you can use the Ctrl+Shift+Num8 key combination.

              +

              Nonprinting characters help you edit a document. They indicate the presence of various types of formatting elements, but they cannot be printed with the document even if they are displayed on the screen.

              +

              To show or hide nonprinting characters, click the Nonprinting characters Nonprinting characters icon at the Home tab on the top toolbar. Alternatively, you can use the Ctrl+Shift+Num8 key combination.

              Nonprinting characters include:

              - + - + - + - + - + - + - + - + - + - + - +
              Spaces SpaceInserted when you press the Spacebar on the keyboard. It creates a space between characters.Inserted when you press the Spacebar on the keyboard. They create a space between characters.
              Tabs TabInserted when you press the Tab key. It's used to advance the cursor to the next tab stop.Inserted when you press the Tab key. They are used to advance the cursor to the next tab stop.
              Paragraph marks (i.e. hard returns) Hard returnInserted when you press the Enter key. It ends a paragraph and adds a bit of space after it. It contains information about the paragraph formatting.Inserted when you press the Enter key. They ends a paragraph and adds a bit of space after it. They also contain information about the paragraph formatting.
              Line breaks (i.e. soft returns) Soft returnInserted when you use the Shift+Enter key combination. It breaks the current line and puts lines of text close together. Soft return is primarily used in titles and headings.Inserted when you use the Shift+Enter key combination. They break the current line and put the text lines close together. Soft return are primarily used in titles and headings.
              Nonbreaking spaces Nonbreaking spaceInserted when you use the Ctrl+Shift+Spacebar key combination. It creates a space between characters which can't be used to start a new line.Inserted when you use the Ctrl+Shift+Spacebar key combination. They create a space between characters which can't be used to start a new line.
              Page breaks Page breakInserted 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.Inserted when you use the Breaks icon Breaks icon on the Insert or Layout tabs of the top toolbar and then select one of the Insert Page Break submenu options (the section break indicator differs depending on which option is selected: Next Page, Continuous Page, Even Page or Odd Page).
              Section breaks Section breakInserted 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).Inserted when you use the Breaks icon Breaks icon on 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 Breaks icon Breaks icon at the Insert or Layout tab of the top toolbar and then select the Insert Column Break option.Inserted when you use the Breaks icon Breaks icon on 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 Markers in tablesThese markers contain formatting codes for the individual cell and row, respectively.Contain formatting codes for an individual cell and a row, respectively.
              Small black square in the margin to the left of a paragraph Black squareIt indicates that at least one of the paragraph options was applied, e.g. Keep lines together, Page break before.Indicates that at least one of the paragraph options was applied, e.g. Keep lines together, Page break before.
              Anchor symbols Anchor symbolThey indicate the position of floating objects (those with a wrapping style other than Inline), e.g. images, autoshapes, charts. You should select an object to make its anchor visible.Indicate the position of floating objects (objects whose wrapping style is different from Inline), e.g. images, autoshapes, charts. You should select an object to make its anchor visible.
              diff --git a/apps/documenteditor/main/resources/help/en/UsageInstructions/OpenCreateNew.htm b/apps/documenteditor/main/resources/help/en/UsageInstructions/OpenCreateNew.htm index 65d48525b..3bfa8549c 100644 --- a/apps/documenteditor/main/resources/help/en/UsageInstructions/OpenCreateNew.htm +++ b/apps/documenteditor/main/resources/help/en/UsageInstructions/OpenCreateNew.htm @@ -18,16 +18,16 @@

              In the online editor

                -
              1. click the File tab of the top toolbar,
              2. +
              3. click the File tab on the top toolbar,
              4. select the Create New option.

              In the desktop editor

                -
              1. in the main program window, select the Document menu item from the Create new section of the left sidebar - a new file will open in a new tab,
              2. +
              3. in the main program window, select the Document menu item from the Create new section on the left sidebar - a new file will open in a new tab,
              4. when all the necessary changes are made, click the Save Save icon icon in the upper left corner or switch to the File tab and choose the Save as menu item.
              5. -
              6. in the file manager window, select the file location, specify its name, choose the format you want to save the document to (DOCX, Document template (DOTX), ODT, OTT, RTF, TXT, PDF or PDFA) and click the Save button.
              7. +
              8. in the file manager window, select the file location, specify its name, choose the required format for saving (DOCX, Document template (DOTX), ODT, OTT, RTF, TXT, PDF or PDFA) and click the Save button.
              @@ -35,18 +35,18 @@

              To open an existing document

              In the desktop editor

                -
              1. in the main program window, select the Open local file menu item at the left sidebar,
              2. -
              3. choose the necessary document from the file manager window and click the Open button.
              4. +
              5. in the main program window, select the Open local file menu item on the left sidebar,
              6. +
              7. choose the required document from the file manager window and click the Open button.
              -

              You can also right-click the necessary document in the file manager window, select the Open with option and choose the necessary application from the menu. If the office documents files are associated with the application, you can also open documents by double-clicking the file name in the file explorer window.

              -

              All the directories that you have accessed using the desktop editor will be displayed in the Recent folders list so that you can quickly access them afterwards. Click the necessary folder to select one of the files stored in it.

              +

              You can also right-click the required document in the file manager window, select the Open with option and choose the necessary application from the menu. If text documents are associated with the application you need, you can also open them by double-clicking the file name in the file explorer window.

              +

              All the directories that you have navigated through using the desktop editor will be displayed in the Recent folders list so that you can quickly access them afterwards. Click the required folder to select one of the files stored there.

              To open a recently edited document

              In the online editor

                -
              1. click the File tab of the top toolbar,
              2. +
              3. click the File tab on the top toolbar,
              4. select the Open Recent... option,
              5. choose the document you need from the list of recently edited documents.
              @@ -54,12 +54,12 @@

              In the desktop editor

                -
              1. in the main program window, select the Recent files menu item at the left sidebar,
              2. +
              3. in the main program window, select the Recent files menu item on the left sidebar,
              4. choose the document you need from the list of recently edited documents.
              -

              To open the folder where the file is stored in a new browser tab in the online version, in the file explorer window in the desktop version, click the Open file location Open file location icon on the right side of the editor header. Alternatively, you can switch to the File tab of the top toolbar and select the Open file location option.

              +

              To open the folder, where the file is stored, in a new browser tab in the online editor in the file explorer window in the desktop editor, click the Open file location Open file location icon on the right side of the editor header. Alternatively, you can switch to the File tab on the top toolbar and select the Open file location 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 763754cf5..1ca243696 100644 --- a/apps/documenteditor/main/resources/help/en/UsageInstructions/PageBreaks.htm +++ b/apps/documenteditor/main/resources/help/en/UsageInstructions/PageBreaks.htm @@ -14,19 +14,19 @@

              Insert page breaks

              -

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

              -

              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. You can also use the Ctrl+Enter key combination.

              -

              To insert a blank page at the current cursor position click the Blank page icon Blank Page icon at the Insert tab of the top toolbar. This inserts two page breaks that creates a blank page.

              +

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

              +

              To insert a page break at the current cursor position click the Breaks icon Breaks icon on 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. You can also use the Ctrl+Enter key combination.

              +

              To insert a blank page at the current cursor position click the Blank page icon Blank Page icon on the Insert tab of the top toolbar. This action inserts two page breaks that create a blank page.

              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
              • -
              • click the right mouse button, select the Paragraph Advanced Settings option in the menu or use the Show advanced settings link at the right sidebar, and check the Page break before box at the Line & Page Breaks tab of the opened Paragraph - Advanced Settings window. +
              • click the right mouse button, select the Paragraph Advanced Settings option in the menu or use the Show advanced settings link on the right sidebar, and check the Page break before box at the Line & Page Breaks tab of the opened Paragraph - Advanced Settings window.

              To keep lines together so that only whole paragraphs will be moved to the new page (i.e. there will be no page break between the lines within a single paragraph),

              • click the right mouse button and select the Keep lines together option in the menu, or
              • -
              • click the right mouse button, select the Paragraph Advanced Settings option in the menu or use the Show advanced settings link at the right sidebar, and check the Keep lines together box at the Line & Page Breaks in the opened Paragraph - Advanced Settings window.
              • +
              • click the right mouse button, select the Paragraph Advanced Settings option on the menu or use the Show advanced settings link at the right sidebar, and check the Keep lines together box at the Line & Page Breaks in the opened Paragraph - Advanced Settings window.

              The Line & Page Breaks tab of the Paragraph - Advanced Settings window allows you to set two more pagination options:

                diff --git a/apps/documenteditor/main/resources/help/en/UsageInstructions/ParagraphIndents.htm b/apps/documenteditor/main/resources/help/en/UsageInstructions/ParagraphIndents.htm index 504e84d0d..13bfd9fd2 100644 --- a/apps/documenteditor/main/resources/help/en/UsageInstructions/ParagraphIndents.htm +++ b/apps/documenteditor/main/resources/help/en/UsageInstructions/ParagraphIndents.htm @@ -14,11 +14,11 @@

                Change paragraph indents

                -

                In Document Editor, you can change the first line offset from the left part of the page as well as the paragraph offset from the left and right sides of the page.

                +

                the Document Editor, you can change the first line offset from the left side of the page as well as the paragraph offset from the left and right sides of the page.

                To do that,

                  -
                1. put the cursor within the paragraph you need, or select several paragraphs with the mouse or all the text in the document by pressing the Ctrl+A key combination,
                2. -
                3. click the right mouse button and select the Paragraph Advanced Settings option from the menu or use the Show advanced settings link at the right sidebar,
                4. +
                5. place the cursor within the required paragraph, or select several paragraphs with the mouse or the whole text by pressing the Ctrl+A key combination,
                6. +
                7. click the right mouse button and select the Paragraph Advanced Settings option from the menu or use the Show advanced settings link on the right sidebar,
                8. in the opened Paragraph - Advanced Settings window, switch to the Indents & Spacing tab and set the necessary parameters in the Indents section:
                  • Left - set the paragraph offset from the left side of the page specifying the necessary numeric value,
                  • @@ -30,15 +30,15 @@

                    Paragraph Advanced Settings - Indents & Spacing

                -

                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.

                +

                To quickly change the paragraph offset from the left side of the page, you can also use the corresponding icons on 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.

                  -
                • First Line Indent marker First Line Indent marker is used to set the offset from the left side of the page for the first line of the paragraph.
                • -
                • Hanging Indent marker Hanging Indent marker is used to set the offset from the left side of the page for the second line and all the subsequent lines of the paragraph.
                • -
                • Left Indent marker Left Indent marker is used to set the entire paragraph offset from the left side of the page.
                • -
                • Right Indent marker Right Indent marker is used to set the paragraph offset from the right side of the page.
                • +
                • The First Line Indent marker First Line Indent marker is used to set an offset from the left side of the page for the first line of the paragraph.
                • +
                • The Hanging Indent marker Hanging Indent marker is used to set an offset from the left side of the page for the second line and all the subsequent lines of the paragraph.
                • +
                • The Left Indent marker Left Indent marker is used to set an offset for the entire paragraph from the left side of the page.
                • +
                • The Right Indent marker Right Indent marker is used to set a paragraph offset from the right side of the page.
                diff --git a/apps/documenteditor/main/resources/help/en/UsageInstructions/SavePrintDownload.htm b/apps/documenteditor/main/resources/help/en/UsageInstructions/SavePrintDownload.htm index 07332ba92..c5dc53d6f 100644 --- a/apps/documenteditor/main/resources/help/en/UsageInstructions/SavePrintDownload.htm +++ b/apps/documenteditor/main/resources/help/en/UsageInstructions/SavePrintDownload.htm @@ -15,14 +15,14 @@

                Save/download/print your document

                Saving

                -

                By default, online Document Editor automatically saves your file each 2 seconds when you work on it preventing your data loss in case of the unexpected program closing. If you co-edit the file in the Fast mode, the timer requests for updates 25 times a second and saves the changes if they have been made. When the file is being co-edited in the Strict mode, changes are automatically saved at 10-minute intervals. If you need, you can easily select the preferred co-editing mode or disable the Autosave feature on the Advanced Settings page.

                +

                By default, online Document Editor automatically saves your file each 2 seconds when you work on it to prevent your data loss in case the program closes unexpectedly. If you co-edit the file in the Fast mode, the timer requests for updates 25 times a second and saves the changes if they have been made. When the file is being co-edited in the Strict mode, changes are automatically saved at 10-minute intervals. If necessary, you can easily select the preferred co-editing mode or disable the Autosave feature on the Advanced Settings page.

                To save your current document manually in the current format and location,

                • press the Save Save icon icon in the left part of the editor header, or
                • use the Ctrl+S key combination, or
                • click the File tab of the top toolbar and select the Save option.
                -

                Note: in the desktop version, to prevent data loss in case of the unexpected program closing you can turn on the Autorecover option at the Advanced Settings page.

                +

                Note: in the desktop version, to prevent data from loss in case program closes unexpectedly, you can turn on the Autorecover option on the Advanced Settings page.

                In the desktop version, you can save the document with another name, in a new location or format,

                  @@ -55,8 +55,8 @@
                1. use the Ctrl+P key combination, or
                2. click the File tab of the top toolbar and select the Print option.
              -

              It's also possible to print a selected text passage using the Print Selection option from the contextual menu.

              -

              In the desktop version, the file will be printed directly.In the online version, 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. Some browsers (e.g. Chrome and Opera) support direct printing.

              +

              It's also possible to print a selected text passage using the Print Selection option from the contextual menu both in the Edit and View modes (Right Mouse Button Click and choose option Print selection).

              +

              In the desktop version, the file will be printed directly. In the online version, 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. Some browsers (e.g. Chrome and Opera) support direct printing.

              \ No newline at end of file diff --git a/apps/documenteditor/main/resources/help/en/UsageInstructions/SectionBreaks.htm b/apps/documenteditor/main/resources/help/en/UsageInstructions/SectionBreaks.htm index 385e9642e..f1c10a906 100644 --- a/apps/documenteditor/main/resources/help/en/UsageInstructions/SectionBreaks.htm +++ b/apps/documenteditor/main/resources/help/en/UsageInstructions/SectionBreaks.htm @@ -14,24 +14,24 @@

              Insert section breaks

              -

              Section breaks allow you to apply a different layout or formatting for the certain parts of your document. For example, you can use individual headers and footers, page numbering, footnotes format, margins, size, orientation, or column number for each separate section.

              +

              Section breaks allow you to apply different layouts or formatting styles to a certain part of your document. For example, you can use individual headers and footers, page numbering, footnotes format, margins, size, orientation, or column number for each separate section.

              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 Breaks icon Breaks icon at the Insert or Layout tab of the top toolbar,
              2. +
              3. click the Breaks icon Breaks icon on the Insert or Layout tab of the top toolbar,
              4. select the Insert Section Break submenu
              5. select the necessary section break type:
                • Next Page - to start a new section from the next page
                • -
                • Continuous Page - to start a new section at the current page
                • +
                • Continuous Page - to start a new section on the current page
                • Even Page - to start a new section from the next even page
                • Odd Page - to start a new section from the next odd page
              -

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

              +

              The added section breaks are indicated in your document with a double dotted line: Section break

              +

              If you do not see the inserted section breaks, click the Nonprinting Characters icon icon on 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 previous section, when you remove a section break, this section formatting will also be deleted. When you delete a section break, the text before and after the break is combined into one section. The new combined section will use the formatting from the section that followed the section break.

              \ No newline at end of file diff --git a/apps/documenteditor/main/resources/help/en/UsageInstructions/SetOutlineLevel.htm b/apps/documenteditor/main/resources/help/en/UsageInstructions/SetOutlineLevel.htm index f1b4fe5e4..59c78c896 100644 --- a/apps/documenteditor/main/resources/help/en/UsageInstructions/SetOutlineLevel.htm +++ b/apps/documenteditor/main/resources/help/en/UsageInstructions/SetOutlineLevel.htm @@ -1,7 +1,7 @@  - Set up paragraph outline level + Set up a paragraph outline level @@ -15,10 +15,10 @@

              Set up paragraph outline level

              -

              Outline level means the paragraph level in the document structure. The following levels are available: Basic Text, Level 1 - Level 9. Outline level can be specified in different ways, for example, by using heading styles: once you assign a heading style (Heading 1 - Heading 9) to a paragraph, it acquires a corresponding outline level. If you assign a level to a paragraph using the paragraph advanced settings, the paragraph acquires the structure level only while its style remains unchanged. The outline level can also be changed at the Navigation panel on the left using the contextual menu options.

              +

              An outline level is the paragraph level in the document structure. The following levels are available: Basic Text, Level 1 - Level 9. The outline level can be specified in different ways, for example, by using heading styles: once you assign a heading style (Heading 1 - Heading 9) to a paragraph, it acquires yje corresponding outline level. If you assign a level to a paragraph using the paragraph advanced settings, the paragraph acquires the structure level only while its style remains unchanged. The outline level can be also changed in the Navigation panel on the left using the contextual menu options.

              To change a paragraph outline level using the paragraph advanced settings,

                -
              1. right-click the text and choose the Paragraph Advanced Settings option from the contextual menu or use the Show advanced settings option at the right sidebar,
              2. +
              3. right-click the text and choose the Paragraph Advanced Settings option from the contextual menu or use the Show advanced settings option on the right sidebar,
              4. open the Paragraph - Advanced Settings window, switch to the Indents & Spacing tab,
              5. select the necessary outline level from the Outline level list.
              6. click the OK button to apply the changes.
              7. diff --git a/apps/documenteditor/main/resources/help/en/UsageInstructions/SetPageParameters.htm b/apps/documenteditor/main/resources/help/en/UsageInstructions/SetPageParameters.htm index aca632087..21d661a44 100644 --- a/apps/documenteditor/main/resources/help/en/UsageInstructions/SetPageParameters.htm +++ b/apps/documenteditor/main/resources/help/en/UsageInstructions/SetPageParameters.htm @@ -14,12 +14,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 Layout tab of the top toolbar.

                +

                To change page layout, i.e. set page orientation and size, adjust margins and insert columns, use the corresponding icons on 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 Orientation icon Orientation icon. The default orientation type is Portrait that can be switched to Album.

                +

                Change the current orientation by 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 Size icon Size icon and selecting the needed one from the list. The available preset sizes are:

                +

                Change the default A4 format by clicking the Size icon Size icon and selecting the required format from the list. The following preset sizes are available:

                • US Letter (21,59cm x 27,94cm)
                • US Legal (21,59cm x 35,56cm)
                • @@ -35,34 +35,34 @@
                • Envelope Choukei 3 (11,99cm x 23,49cm)
                • Super B/A3 (33,02cm x 48,25cm)
                -

                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 select the necessary Preset (US Letter, US Legal, A4, A5, B5, Envelope #10, Envelope DL, Tabloid, AЗ, Tabloid Oversize, ROC 16K, Envelope Choukei 3, Super B/A3, A0, A1, A2, A6) or set custom 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.

                +

                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 select the required Preset (US Letter, US Legal, A4, A5, B5, Envelope #10, Envelope DL, Tabloid, AЗ, Tabloid Oversize, ROC 16K, Envelope Choukei 3, Super B/A3, A0, A1, A2, A6) or set custom Width and Height values. Enter new values into the entry fields or adjust the existing values using the arrow buttons. When you finish, 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 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.

                +

                Change the default margins, i.e. the blank space between the left, right, top and bottom page edges and the paragraph text, by 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. Enter the required Top, Bottom, Left and Right page margin values into the entry fields or adjust the existing values using arrow buttons.

                Custom Margins

                -

                Gutter position is used to set up additional space on the left or top of the document. Gutter option might come in handy to make sure bookbinding does not cover text. In Margins window enter the necessary gutter position into the entry fields and choose where it should be placed in.

                -

                Note: Gutter position function cannot be used when Mirror margins option is checked.

                -

                In Multiple pages drop-down menu choose Mirror margins option to to set up facing pages for double-sided documents. With this option checked, Left and Right margins turn into Inside and Outside margins respectively.

                +

                Gutter position is used to set up additional space on the left side of the document or at its top. The Gutter option is helpful to make sure that bookbinding does not cover the text. In the Margins enter the required gutter position into the entry fields and choose where it should be placed in.

                +

                Note: the Gutter position cannot be used when the Mirror margins option is checked.

                +

                In the Multiple pages drop-down menu, choose the Mirror margins option to set up facing pages for double-sided documents. With this option checked, Left and Right margins turn into Inside and Outside margins respectively.

                In Orientation drop-down menu choose from Portrait and Landscape options.

                All applied changes to the document will be displayed in the Preview window.

                -

                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.

                +

                When you finish, 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 will be able to apply them to other documents.

                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 Columns icon Columns icon and selecting the necessary column type from the drop-down list. The following options are available:

                +

                Apply a multi-column layout by 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,
                • Left Left column icon - to add two columns: a narrow column on the left and a wide column on the right,
                • Right Right column icon - to add two columns: a narrow column on the right and a wide column on the left.
                -

                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.

                +

                If you want to adjust column settings, select the Custom Columns option from the list. The Columns window will appear, and you'll be able to set the required Number of columns (you can 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 you finish, 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 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 exactly specify where a new column should start, place the cursor before the text that you want to move to the new column, click the Breaks icon Breaks icon on the top toolbar and then select the Insert Column Break option. The text will be moved to the next column.

                +

                The inserted column breaks are indicated in your document with a dotted line: Column break. If you do not see the inserted column breaks, click the Nonprinting Characters icon icon at the Home tab on the top toolbar to make them visible. 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 Columns icon Columns 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 on 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/SetTabStops.htm b/apps/documenteditor/main/resources/help/en/UsageInstructions/SetTabStops.htm index eef56e15f..fe607a099 100644 --- a/apps/documenteditor/main/resources/help/en/UsageInstructions/SetTabStops.htm +++ b/apps/documenteditor/main/resources/help/en/UsageInstructions/SetTabStops.htm @@ -14,14 +14,14 @@

                Set tab stops

                -

                In Document Editor, you can change tab stops i.e. the position the cursor advances to when you press the Tab key on the keyboard.

                +

                In the Document Editor, you can change tab stops. A tab stop is a term used to describe the location where the cursor stops after the Tab key is pressed.

                To set tab stops you can use the horizontal ruler:

                  -
                1. Select the necessary tab stop type clicking the Left Tab Stop button button in the upper left corner of the working area. The following three tab types are available: +
                2. Select the necessary tab stop type by clicking the Left Tab Stop button button in the upper left corner of the working area. The following three tab types are available:
                    -
                  • Left Left Tab Stop button - lines up your text by the left side at the tab stop position; the text moves to the right from the tab stop as you type. Such a tab stop will be indicated on the horizontal ruler by the Left Tab Stop marker marker.
                  • -
                  • Center Center Tab Stop button - centers the text at the tab stop position. Such a tab stop will be indicated on the horizontal ruler by the Center Tab Stop marker marker.
                  • -
                  • Right Right Tab Stop button - lines up your text by the right side at the tab stop position; the text moves to the left from the tab stop as you type. Such a tab stop will be indicated on the horizontal ruler by the Right Tab Stop marker marker.
                  • +
                  • Left Tab Stop Left Tab Stop button lines up the text to the left side at the tab stop position; the text moves to the right from the tab stop while you type. Such a tab stop will be indicated on the horizontal ruler with the Left Tab Stop marker Left Tab Stop marker.
                  • +
                  • Center Tab Stop Center Tab Stop button centers the text at the tab stop position. Such a tab stop will be indicated on the horizontal ruler with the Center Tab Stop marker Center Tab Stop marker.
                  • +
                  • Right Tab Stop Right Tab Stop button lines up the text to the right side at the tab stop position; the text moves to the left from the tab stop while you type. Such a tab stop will be indicated on the horizontal ruler with the Right Tab Stop marker Right Tab Stop marker.
                3. 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. @@ -29,16 +29,17 @@

                -

                You can also use the paragraph properties window to adjust tab stops. Click the right mouse button, select the Paragraph Advanced Settings option in the menu or use the Show advanced settings link at the right sidebar, and switch to the Tabs tab in the opened Paragraph - Advanced Settings window.

                +

                You can also use the paragraph properties window to adjust tab stops. Click the right mouse button, select the Paragraph Advanced Settings option in the menu or use the Show advanced settings link on the right sidebar, and switch to the Tabs tab in the opened Paragraph - Advanced Settings window.

                Paragraph Properties - Tabs tab

                You can set the following parameters:

                  -
                • Default Tab is set at 1.25 cm. You can decrease or increase this value using the arrow buttons or enter the necessary one in the box.
                • -
                • Tab Position - is used to set custom tab stops. Enter the necessary value in this box, adjust it more precisely using the arrow buttons and press the Specify button. Your custom tab position will be added to the list in the field below. If you've previously added some tab stops using the ruler, all these tab positions will also be displayed in the list.
                • +
                • Default Tab is set at 1.25 cm. You can decrease or increase this value by using the arrow buttons or entering the required value in the box.
                • +
                • Tab Position is used to set custom tab stops. Enter the required value in this box, adjust it more precisely by using the arrow buttons and press the Specify button. Your custom tab position will be added to the list in the field below. If you've previously added some tab stops using the ruler, all these tab positions will also be displayed in the list.
                • Alignment - is used to set the necessary alignment type for each of the tab positions in the list above. Select the necessary tab position in the list, choose the Left, Center or Right option from the drop-down list and press the Specify button.
                • -
                • Leader - allows to choose a character used to create a leader for each of the tab positions. A leader is a line of characters (dots or hyphens) that fills the space between tabs. Select the necessary tab position in the list, choose the leader type from the drop-down list and press the Specify button. -

                  To delete tab stops from the list select a tab stop and press the Remove or Remove All button.

                  -
                • +
                • + Leader - allows choosing a character to create a leader for each tab positions. A leader is a line of characters (dots or hyphens) that fills the space between tabs. Select the necessary tab position in the list, choose the leader type from the drop-down list and press the Specify button. +

                  To delete tab stops from the list, select a tab stop and press the Remove or Remove All button.

                  +
                diff --git a/apps/documenteditor/main/resources/help/en/UsageInstructions/UseMailMerge.htm b/apps/documenteditor/main/resources/help/en/UsageInstructions/UseMailMerge.htm index 7583e0ffe..5dd183795 100644 --- a/apps/documenteditor/main/resources/help/en/UsageInstructions/UseMailMerge.htm +++ b/apps/documenteditor/main/resources/help/en/UsageInstructions/UseMailMerge.htm @@ -23,8 +23,8 @@
              8. 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.

              9. -
              10. 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.
              11. -
              12. 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.
              13. +
              14. 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 Home tab of the top toolbar.
              15. +
              16. 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 on the left part of the window. Select the required file 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

              @@ -34,79 +34,84 @@
            • Click the Edit recipients list button on the top of the right sidebar to open the Mail Merge Recipients window, where the content of the selected data source is displayed.

              Mail Merge Recipients window

            • -
            • Here you can add new information, edit or delete the existing data, if necessary. To simplify working with data, you can use the icons on the top of the window: -
                -
              • Copy and Paste - to copy and paste the copied data
              • -
              • Undo and Redo - to undo and redo undone actions
              • -
              • Sort Lowest to Highest icon and Sort Highest to Lowest icon - to sort your data within a selected range of cells in ascending or descending order
              • -
              • Filter icon - to enable the filter for the previously selected range of cells or to remove the applied filter
              • -
              • Clear Filter icon - to clear all the applied filter parameters -

                Note: to learn more on how to use the filter you can refer to the Sort and filter data section of the Spreadsheet Editor help.

                -
              • -
              • Search icon - to search for a certain value and replace it with another one, if necessary -

                Note: to learn more on how to use the Find and Replace tool you can refer to the Search and Replace Functions section of the Spreadsheet Editor help.

                -
              • -
              +
            • + In the opened window, you can add new information, edit or delete the existing data if necessary. To simplify working with data, you can use the icons at the top of the window: +
                +
              • Copy and Paste - to copy and paste the copied data
              • +
              • Undo and Redo - to undo and redo undone actions
              • +
              • Sort Lowest to Highest icon and Sort Highest to Lowest icon - to sort your data within a selected range of cells in ascending or descending order
              • +
              • Filter icon - to enable the filter for the previously selected range of cells or to remove the applied filter
              • +
              • + Clear Filter icon - to clear all the applied filter parameters +

                Note: to learn more on how to use the filter, please refer to the Sort and filter data section of the Spreadsheet Editor help.

                +
              • +
              • + Search icon - to search for a certain value and replace it with another one, if necessary +

                Note: to learn more on how to use the Find and Replace tool, please refer to the Search and Replace Functions section of the Spreadsheet Editor help.

                +
              • +
            • After all the necessary changes are made, click the Save & Exit button. To discard the changes, click the Close button.
        • Insert merge fields and check the results
            -
          1. Place the mouse cursor in the text of the main document where you want a merge field to be inserted, click the Insert Merge Field button at the right sidebar and select the necessary field from the list. The available fields correspond to the data in the first cell of each column of the selected data source. Add all the fields you need anywhere in the document. -

            Merge Fields section

            +
          2. Place the mouse cursor where the merge field should be inserted, click the Insert Merge Field button on the right sidebar and select the necessary field from the list. The available fields correspond to the data in the first cell of each column of the selected data source. All the required fields can be added anywhere. +

            Merge Fields section

          3. -
          4. Turn on the Highlight merge fields switcher at the right sidebar to make the inserted fields more noticeable in the document text. -

            Main document with inserted fields

            +
          5. Turn on the Highlight merge fields switcher on the right sidebar to make the inserted fields more noticeable in the text. +

            Main document with inserted fields

          6. -
          7. Turn on the Preview results switcher at the right sidebar to view the document text with the merge fields replaced with actual values from the data source. Use the arrow buttons to preview versions of the merged document for each record. -

            Preview results

            +
          8. Turn on the Preview results switcher on the right sidebar to view the text with the merge fields replaced with actual values from the data source. Use the arrow buttons to preview the versions of the merged document for each record. +

            Preview results

          • To delete an inserted field, disable the Preview results mode, select the field with the mouse and press the Delete key on the keyboard.
          • -
          • To replace an inserted field, disable the Preview results mode, select the field with the mouse, click the Insert Merge Field button at the right sidebar and choose a new field from the list.
          • +
          • To replace an inserted field, disable the Preview results mode, select the field with the mouse, click the Insert Merge Field button on the right sidebar and choose a new field from the list.
        • Specify the merge parameters
            -
          1. Select the merge type. You can start mass mailing or save the result as a file in the PDF or Docx format to be able to print or edit it later. Select the necessary option from the Merge to list: -

            Merge type selection

            -
              -
            • PDF - to create a single document in the PDF format that includes all the merged copies so that you can print them later
            • -
            • Docx - to create a single document in the Docx format that includes all the merged copies so that you can edit individual copies later
            • -
            • Email - to send the results to recipients by email -

              Note: the recipients' email addresses must be specified in the loaded data source and you need to have at least one email account connected in the Mail module on your portal.

              -
            • -
            +
          2. Select the merge type. You can start mass mailing or save the result as a PDF or Docx file to print or edit it later. Select the necessary option from the Merge to list: +

            Merge type selection

            +
              +
            • PDF - to create a single PDF document that includes all the merged copies that can be printed later
            • +
            • Docx - to create a single Docx document that includes all the merged copies that can be edited individually later
            • +
            • + Email - to send the results to recipients by email +

              Note: the recipients' email addresses must be specified in the loaded data source and you need to have at least one email account connected in the Mail module on your portal.

              +
            • +
          3. -
          4. Choose the records you want to apply the merge to: -
              -
            • All records (this option is selected by default) - to create merged documents for all records from the loaded data source
            • -
            • Current record - to create a merged document for the record that is currently displayed
            • -
            • From ... To - to create merged documents for a range of records (in this case you need to specify two values: the number of the first record and the last record in the desired range) -

              Note: the maximum allowed quantity of recipients is 100. If you have more than 100 recipients in your data source, please, perform the mail merge by stages: specify the values from 1 to 100, wait until the mail merge process is over, then repeat the operation specifying the values from 101 to N etc.

              -
            • -
            +
          5. Choose all the required records to be applied: +
              +
            • All records (this option is selected by default) - to create merged documents for all records from the loaded data source
            • +
            • Current record - to create a merged document for the record that is currently displayed
            • +
            • + From ... To - to create merged documents for a range of records (in this case you need to specify two values: the number of the first record and the last record in the desired range) +

              Note: the maximum allowed quantity of recipients is 100. If you have more than 100 recipients in your data source, please, perform the mail merge by stages: specify the values from 1 to 100, wait until the mail merge process is over, then repeat the operation specifying the values from 101 to N etc.

              +
            • +
          6. Complete the merge
            • If you've decided to save the merge results as a file,
                -
              • click the Download button to store the file anywhere on your PC. You'll find the downloaded file in your default Downloads folder.
              • -
              • click the Save button to save the file on your portal. In the Folder for save window that opens, you can change the file name and specify the folder where you want to save the file. You can also check the Open merged document in new tab box to check the result once the merge process is finished. Finally, click Save in the Folder for save window.
              • +
              • click the Download button to save the file on your PC. You'll find the downloaded file in your default Downloads folder.
              • +
              • click the Save button to save the file on your portal. In the opened Folder for save window, you can change the file name and specify the folder where you want to save the file. You can also check the Open merged document in new tab box to check the result when the merge process is finished. Finally, click Save in the Folder for save window.
            • If you've selected the Email option, the Merge button will be available on the right sidebar. After you click it, the Send to Email window will open:

              Send to Email window

                -
              • In the From list, select the mail account you want to use for sending mail, if you have several accounts connected in the Mail module.
              • -
              • In the To list, select the merge field corresponding to email addresses of the recipients, if it was not selected automatically.
              • +
              • In the From list, select the required mail account if you have several accounts connected to the Mail module.
              • +
              • In the To list, select the merge field corresponding to the email addresses of the recipients if this option was not selected automatically.
              • Enter your message subject in the Subject Line field.
              • Select the mail format from the list: HTML, Attach as DOCX or Attach as PDF. When one of the two latter options is selected, you also need to specify the File name for attachments and enter the Message (the text of your letter that will be sent to recipients).
              • Click the Send button.
              -

              Once the mailing is over you'll receive a notification to your email specified in the From field.

              +

              Once the mailing is over, you'll receive a notification to your email specified in the From field.

          7. diff --git a/apps/documenteditor/main/resources/help/en/UsageInstructions/ViewDocInfo.htm b/apps/documenteditor/main/resources/help/en/UsageInstructions/ViewDocInfo.htm index d6c8f9108..3e2d78503 100644 --- a/apps/documenteditor/main/resources/help/en/UsageInstructions/ViewDocInfo.htm +++ b/apps/documenteditor/main/resources/help/en/UsageInstructions/ViewDocInfo.htm @@ -18,30 +18,30 @@

            General Information

            The document information includes a number of the file properties which describe the document. Some of these properties are updated automatically, and some of them can be edited.

              -
            • Location - the folder in the Documents module where the file is stored. Owner - the name of the user who have created the file. Uploaded - the date and time when the file has been created. These properties are available in the online version only.
            • +
            • Location - the folder in the Documents module where the file is stored. Owner - the name of the user who has created the file. Uploaded - the date and time when the file has been created. These properties are available in the online version only.
            • Statistics - the number of pages, paragraphs, words, symbols, symbols with spaces.
            • -
            • Title, Subject, Comment - these properties allow to simplify your documents classification. You can specify the necessary text in the properties fields.
            • +
            • Title, Subject, Comment - these properties allow yoy to simplify your documents classification. You can specify the necessary text in the properties fields.
            • Last Modified - the date and time when the file was last modified.
            • -
            • Last Modified By - the name of the user who have made the latest change in the document if a document has been shared and it can be edited by several users.
            • -
            • Application - the application the document was created with.
            • -
            • Author - the person who have created the file. You can enter the necessary name in this field. Press Enter to add a new field that allows to specify one more author.
            • +
            • Last Modified By - the name of the user who has made the latest change to the document. This option is available if the document has been shared and can be edited by several users.
            • +
            • Application - the application the document has been created with.
            • +
            • Author - the person who has created the file. You can enter the necessary name in this field. Press Enter to add a new field that allows you to specify one more author.

            If you changed the file properties, click the Apply button to apply the changes.

            -

            Note: Online Editors allow you to change the document name 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.

            +

            Note: The online Editors allow you to change the name of the document directly in 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 will appear and click OK.

            Permission Information

            In the online version, you can view the information about permissions to the files stored in the cloud.

            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.

            +

            To find out who have rights to view or edit the document, select the Access Rights... option on 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

            In the online version, you can view the version history for the files stored in the cloud.

            Note: this option is not available 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. It's also possible to open the history of versions using the Version History icon Version History icon at the Collaboration tab of the top toolbar. 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.

            +

            To view all the changes made to this document, select the Version History option at the left sidebar. It's also possible to open the history of versions using the Version History icon Version History icon on the Collaboration tab of the top toolbar. 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 on the left sidebar. The changes made by the version/revision author are marked with the color which is displayed next to the author's 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 return to the current version of the document, 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.

            diff --git a/apps/documenteditor/main/resources/help/en/images/backgroundcolor.png b/apps/documenteditor/main/resources/help/en/images/backgroundcolor.png index 5929239d6..d9d5a8c21 100644 Binary files a/apps/documenteditor/main/resources/help/en/images/backgroundcolor.png and b/apps/documenteditor/main/resources/help/en/images/backgroundcolor.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/backgroundcolor_selected.png b/apps/documenteditor/main/resources/help/en/images/backgroundcolor_selected.png index 673b22ccf..65e027227 100644 Binary files a/apps/documenteditor/main/resources/help/en/images/backgroundcolor_selected.png and b/apps/documenteditor/main/resources/help/en/images/backgroundcolor_selected.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/bulletedlistsettings.png b/apps/documenteditor/main/resources/help/en/images/bulletedlistsettings.png index d360da4ab..615031824 100644 Binary files a/apps/documenteditor/main/resources/help/en/images/bulletedlistsettings.png and b/apps/documenteditor/main/resources/help/en/images/bulletedlistsettings.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/ccsettingswindow.png b/apps/documenteditor/main/resources/help/en/images/ccsettingswindow.png index c4a575e37..946c6dbd5 100644 Binary files a/apps/documenteditor/main/resources/help/en/images/ccsettingswindow.png and b/apps/documenteditor/main/resources/help/en/images/ccsettingswindow.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/changerange.png b/apps/documenteditor/main/resources/help/en/images/changerange.png new file mode 100644 index 000000000..17df78932 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/changerange.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/chartsettings.png b/apps/documenteditor/main/resources/help/en/images/chartsettings.png index b81b33688..6de6a6538 100644 Binary files a/apps/documenteditor/main/resources/help/en/images/chartsettings.png and b/apps/documenteditor/main/resources/help/en/images/chartsettings.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/date_time.png b/apps/documenteditor/main/resources/help/en/images/date_time.png new file mode 100644 index 000000000..195286460 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/date_time.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/date_time_icon.png b/apps/documenteditor/main/resources/help/en/images/date_time_icon.png new file mode 100644 index 000000000..14748b290 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/date_time_icon.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/dropcap_properties_2.png b/apps/documenteditor/main/resources/help/en/images/dropcap_properties_2.png index 891cbd5e5..0c05f0db3 100644 Binary files a/apps/documenteditor/main/resources/help/en/images/dropcap_properties_2.png and b/apps/documenteditor/main/resources/help/en/images/dropcap_properties_2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/fill_color.png b/apps/documenteditor/main/resources/help/en/images/fill_color.png index 3d411150a..9081f4007 100644 Binary files a/apps/documenteditor/main/resources/help/en/images/fill_color.png and b/apps/documenteditor/main/resources/help/en/images/fill_color.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/fill_gradient.png b/apps/documenteditor/main/resources/help/en/images/fill_gradient.png index 31e87d6f4..36b959f2c 100644 Binary files a/apps/documenteditor/main/resources/help/en/images/fill_gradient.png and b/apps/documenteditor/main/resources/help/en/images/fill_gradient.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/fill_pattern.png b/apps/documenteditor/main/resources/help/en/images/fill_pattern.png index 06480ac11..c5aa16c1e 100644 Binary files a/apps/documenteditor/main/resources/help/en/images/fill_pattern.png and b/apps/documenteditor/main/resources/help/en/images/fill_pattern.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/fill_picture.png b/apps/documenteditor/main/resources/help/en/images/fill_picture.png index fbe2f71d1..2dbc49d43 100644 Binary files a/apps/documenteditor/main/resources/help/en/images/fill_picture.png and b/apps/documenteditor/main/resources/help/en/images/fill_picture.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/floatingcontentcontrol.png b/apps/documenteditor/main/resources/help/en/images/floatingcontentcontrol.png new file mode 100644 index 000000000..c374bb2ec Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/floatingcontentcontrol.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/highlightcolor.png b/apps/documenteditor/main/resources/help/en/images/highlightcolor.png index 85ef0822b..ba856daf1 100644 Binary files a/apps/documenteditor/main/resources/help/en/images/highlightcolor.png and b/apps/documenteditor/main/resources/help/en/images/highlightcolor.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/insert_symbol_window.png b/apps/documenteditor/main/resources/help/en/images/insert_symbol_window.png index bca61c903..81058ed69 100644 Binary files a/apps/documenteditor/main/resources/help/en/images/insert_symbol_window.png and b/apps/documenteditor/main/resources/help/en/images/insert_symbol_window.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/insert_symbol_window2.png b/apps/documenteditor/main/resources/help/en/images/insert_symbol_window2.png new file mode 100644 index 000000000..daf40846e Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/insert_symbol_window2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/interface/desktop_editorwindow.png b/apps/documenteditor/main/resources/help/en/images/interface/desktop_editorwindow.png index 700ce1d87..2e4ff59fb 100644 Binary files a/apps/documenteditor/main/resources/help/en/images/interface/desktop_editorwindow.png and b/apps/documenteditor/main/resources/help/en/images/interface/desktop_editorwindow.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/interface/desktop_inserttab.png b/apps/documenteditor/main/resources/help/en/images/interface/desktop_inserttab.png index 3c5923344..3b5c8e618 100644 Binary files a/apps/documenteditor/main/resources/help/en/images/interface/desktop_inserttab.png and b/apps/documenteditor/main/resources/help/en/images/interface/desktop_inserttab.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/interface/editorwindow.png b/apps/documenteditor/main/resources/help/en/images/interface/editorwindow.png index d5fffca69..f07e9d4fb 100644 Binary files a/apps/documenteditor/main/resources/help/en/images/interface/editorwindow.png and b/apps/documenteditor/main/resources/help/en/images/interface/editorwindow.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/interface/inserttab.png b/apps/documenteditor/main/resources/help/en/images/interface/inserttab.png index c61f28e0e..59a9f9d7d 100644 Binary files a/apps/documenteditor/main/resources/help/en/images/interface/inserttab.png and b/apps/documenteditor/main/resources/help/en/images/interface/inserttab.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/larger.png b/apps/documenteditor/main/resources/help/en/images/larger.png index 1a461a817..39a51760e 100644 Binary files a/apps/documenteditor/main/resources/help/en/images/larger.png and b/apps/documenteditor/main/resources/help/en/images/larger.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/moveelement.png b/apps/documenteditor/main/resources/help/en/images/moveelement.png new file mode 100644 index 000000000..74ead64a8 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/moveelement.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/multilevellistsettings.png b/apps/documenteditor/main/resources/help/en/images/multilevellistsettings.png index 1e8921519..77745ddcd 100644 Binary files a/apps/documenteditor/main/resources/help/en/images/multilevellistsettings.png and b/apps/documenteditor/main/resources/help/en/images/multilevellistsettings.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/orderedlistsettings.png b/apps/documenteditor/main/resources/help/en/images/orderedlistsettings.png index a20f73bcc..d16a020b8 100644 Binary files a/apps/documenteditor/main/resources/help/en/images/orderedlistsettings.png and b/apps/documenteditor/main/resources/help/en/images/orderedlistsettings.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/paradvsettings_borders.png b/apps/documenteditor/main/resources/help/en/images/paradvsettings_borders.png index 4344851e0..cb074cf11 100644 Binary files a/apps/documenteditor/main/resources/help/en/images/paradvsettings_borders.png and b/apps/documenteditor/main/resources/help/en/images/paradvsettings_borders.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/proofing.png b/apps/documenteditor/main/resources/help/en/images/proofing.png new file mode 100644 index 000000000..1ddcd38fe Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/proofing.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/resizeelement.png b/apps/documenteditor/main/resources/help/en/images/resizeelement.png new file mode 100644 index 000000000..206959166 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/resizeelement.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/right_autoshape.png b/apps/documenteditor/main/resources/help/en/images/right_autoshape.png index abcb98be1..27a5a2a91 100644 Binary files a/apps/documenteditor/main/resources/help/en/images/right_autoshape.png and b/apps/documenteditor/main/resources/help/en/images/right_autoshape.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/right_image.png b/apps/documenteditor/main/resources/help/en/images/right_image.png index 89c5100cc..1b56cef22 100644 Binary files a/apps/documenteditor/main/resources/help/en/images/right_image.png and b/apps/documenteditor/main/resources/help/en/images/right_image.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/right_image_shape.png b/apps/documenteditor/main/resources/help/en/images/right_image_shape.png index 16b27052b..ede2e99c8 100644 Binary files a/apps/documenteditor/main/resources/help/en/images/right_image_shape.png and b/apps/documenteditor/main/resources/help/en/images/right_image_shape.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/right_paragraph.png b/apps/documenteditor/main/resources/help/en/images/right_paragraph.png index 1c307cf0c..90b45fee5 100644 Binary files a/apps/documenteditor/main/resources/help/en/images/right_paragraph.png and b/apps/documenteditor/main/resources/help/en/images/right_paragraph.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/right_table.png b/apps/documenteditor/main/resources/help/en/images/right_table.png index 4d1fa5d01..299e8226c 100644 Binary files a/apps/documenteditor/main/resources/help/en/images/right_table.png and b/apps/documenteditor/main/resources/help/en/images/right_table.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/right_textart.png b/apps/documenteditor/main/resources/help/en/images/right_textart.png index 1b30562c1..2c8ecc255 100644 Binary files a/apps/documenteditor/main/resources/help/en/images/right_textart.png and b/apps/documenteditor/main/resources/help/en/images/right_textart.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/selectdata.png b/apps/documenteditor/main/resources/help/en/images/selectdata.png new file mode 100644 index 000000000..d3f2465e7 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/selectdata.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/shape_properties.png b/apps/documenteditor/main/resources/help/en/images/shape_properties.png index ac4d77834..fb4d3260f 100644 Binary files a/apps/documenteditor/main/resources/help/en/images/shape_properties.png and b/apps/documenteditor/main/resources/help/en/images/shape_properties.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/shape_properties_1.png b/apps/documenteditor/main/resources/help/en/images/shape_properties_1.png index 5c66ae839..fa6ea1695 100644 Binary files a/apps/documenteditor/main/resources/help/en/images/shape_properties_1.png and b/apps/documenteditor/main/resources/help/en/images/shape_properties_1.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/shape_properties_2.png b/apps/documenteditor/main/resources/help/en/images/shape_properties_2.png index a18189199..8bf1f3ff9 100644 Binary files a/apps/documenteditor/main/resources/help/en/images/shape_properties_2.png and b/apps/documenteditor/main/resources/help/en/images/shape_properties_2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/shape_properties_3.png b/apps/documenteditor/main/resources/help/en/images/shape_properties_3.png index ea2b821e5..816a6ec69 100644 Binary files a/apps/documenteditor/main/resources/help/en/images/shape_properties_3.png and b/apps/documenteditor/main/resources/help/en/images/shape_properties_3.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/shape_properties_4.png b/apps/documenteditor/main/resources/help/en/images/shape_properties_4.png index 1fe869c2a..252241cf2 100644 Binary files a/apps/documenteditor/main/resources/help/en/images/shape_properties_4.png and b/apps/documenteditor/main/resources/help/en/images/shape_properties_4.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/shape_properties_5.png b/apps/documenteditor/main/resources/help/en/images/shape_properties_5.png index 3349d1153..0f89ccdfb 100644 Binary files a/apps/documenteditor/main/resources/help/en/images/shape_properties_5.png and b/apps/documenteditor/main/resources/help/en/images/shape_properties_5.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/shape_properties_6.png b/apps/documenteditor/main/resources/help/en/images/shape_properties_6.png index caf4a8d43..dbe7943d3 100644 Binary files a/apps/documenteditor/main/resources/help/en/images/shape_properties_6.png and b/apps/documenteditor/main/resources/help/en/images/shape_properties_6.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/smaller.png b/apps/documenteditor/main/resources/help/en/images/smaller.png index d24f79a22..d087549c9 100644 Binary files a/apps/documenteditor/main/resources/help/en/images/smaller.png and b/apps/documenteditor/main/resources/help/en/images/smaller.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/above.png b/apps/documenteditor/main/resources/help/en/images/symbols/above.png new file mode 100644 index 000000000..97f2005e7 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/above.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/acute.png b/apps/documenteditor/main/resources/help/en/images/symbols/acute.png new file mode 100644 index 000000000..12d62abab Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/acute.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/aleph.png b/apps/documenteditor/main/resources/help/en/images/symbols/aleph.png new file mode 100644 index 000000000..a7355dba4 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/aleph.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/alpha.png b/apps/documenteditor/main/resources/help/en/images/symbols/alpha.png new file mode 100644 index 000000000..ca68e0fe0 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/alpha.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/alpha2.png b/apps/documenteditor/main/resources/help/en/images/symbols/alpha2.png new file mode 100644 index 000000000..ea3a6aac4 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/alpha2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/amalg.png b/apps/documenteditor/main/resources/help/en/images/symbols/amalg.png new file mode 100644 index 000000000..b66c134d5 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/amalg.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/angle.png b/apps/documenteditor/main/resources/help/en/images/symbols/angle.png new file mode 100644 index 000000000..de11fe22d Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/angle.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/aoint.png b/apps/documenteditor/main/resources/help/en/images/symbols/aoint.png new file mode 100644 index 000000000..35a228fb4 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/aoint.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/approx.png b/apps/documenteditor/main/resources/help/en/images/symbols/approx.png new file mode 100644 index 000000000..67b770f72 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/approx.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/arrow.png b/apps/documenteditor/main/resources/help/en/images/symbols/arrow.png new file mode 100644 index 000000000..0df492f97 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/arrow.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/asmash.png b/apps/documenteditor/main/resources/help/en/images/symbols/asmash.png new file mode 100644 index 000000000..df40f9f2c Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/asmash.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/ast.png b/apps/documenteditor/main/resources/help/en/images/symbols/ast.png new file mode 100644 index 000000000..33be7687a Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/ast.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/asymp.png b/apps/documenteditor/main/resources/help/en/images/symbols/asymp.png new file mode 100644 index 000000000..a7d21a268 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/asymp.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/atop.png b/apps/documenteditor/main/resources/help/en/images/symbols/atop.png new file mode 100644 index 000000000..3d4395beb Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/atop.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/bar.png b/apps/documenteditor/main/resources/help/en/images/symbols/bar.png new file mode 100644 index 000000000..774a06eb3 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/bar.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/bar2.png b/apps/documenteditor/main/resources/help/en/images/symbols/bar2.png new file mode 100644 index 000000000..5321fe5b6 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/bar2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/because.png b/apps/documenteditor/main/resources/help/en/images/symbols/because.png new file mode 100644 index 000000000..3456d38c9 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/because.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/begin.png b/apps/documenteditor/main/resources/help/en/images/symbols/begin.png new file mode 100644 index 000000000..7bd50e8ed Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/begin.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/below.png b/apps/documenteditor/main/resources/help/en/images/symbols/below.png new file mode 100644 index 000000000..8acb835b0 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/below.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/bet.png b/apps/documenteditor/main/resources/help/en/images/symbols/bet.png new file mode 100644 index 000000000..c219ee423 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/bet.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/beta.png b/apps/documenteditor/main/resources/help/en/images/symbols/beta.png new file mode 100644 index 000000000..748f2b1be Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/beta.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/beta2.png b/apps/documenteditor/main/resources/help/en/images/symbols/beta2.png new file mode 100644 index 000000000..5c1ccb707 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/beta2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/beth.png b/apps/documenteditor/main/resources/help/en/images/symbols/beth.png new file mode 100644 index 000000000..c219ee423 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/beth.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/bigcap.png b/apps/documenteditor/main/resources/help/en/images/symbols/bigcap.png new file mode 100644 index 000000000..af7e48ad8 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/bigcap.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/bigcup.png b/apps/documenteditor/main/resources/help/en/images/symbols/bigcup.png new file mode 100644 index 000000000..1e27fb3bb Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/bigcup.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/bigodot.png b/apps/documenteditor/main/resources/help/en/images/symbols/bigodot.png new file mode 100644 index 000000000..0ebddf66c Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/bigodot.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/bigoplus.png b/apps/documenteditor/main/resources/help/en/images/symbols/bigoplus.png new file mode 100644 index 000000000..f555afb0f Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/bigoplus.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/bigotimes.png b/apps/documenteditor/main/resources/help/en/images/symbols/bigotimes.png new file mode 100644 index 000000000..43457dc4b Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/bigotimes.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/bigsqcup.png b/apps/documenteditor/main/resources/help/en/images/symbols/bigsqcup.png new file mode 100644 index 000000000..614264a01 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/bigsqcup.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/biguplus.png b/apps/documenteditor/main/resources/help/en/images/symbols/biguplus.png new file mode 100644 index 000000000..6ec39889f Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/biguplus.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/bigvee.png b/apps/documenteditor/main/resources/help/en/images/symbols/bigvee.png new file mode 100644 index 000000000..57851a676 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/bigvee.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/bigwedge.png b/apps/documenteditor/main/resources/help/en/images/symbols/bigwedge.png new file mode 100644 index 000000000..0c7cac1e1 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/bigwedge.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/binomial.png b/apps/documenteditor/main/resources/help/en/images/symbols/binomial.png new file mode 100644 index 000000000..72bc36e68 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/binomial.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/bot.png b/apps/documenteditor/main/resources/help/en/images/symbols/bot.png new file mode 100644 index 000000000..2ded03e82 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/bot.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/bowtie.png b/apps/documenteditor/main/resources/help/en/images/symbols/bowtie.png new file mode 100644 index 000000000..2ddfa28c3 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/bowtie.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/box.png b/apps/documenteditor/main/resources/help/en/images/symbols/box.png new file mode 100644 index 000000000..20d4a835b Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/box.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/boxdot.png b/apps/documenteditor/main/resources/help/en/images/symbols/boxdot.png new file mode 100644 index 000000000..222e1c7c3 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/boxdot.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/boxminus.png b/apps/documenteditor/main/resources/help/en/images/symbols/boxminus.png new file mode 100644 index 000000000..caf1ddddb Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/boxminus.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/boxplus.png b/apps/documenteditor/main/resources/help/en/images/symbols/boxplus.png new file mode 100644 index 000000000..e1ee49522 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/boxplus.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/bra.png b/apps/documenteditor/main/resources/help/en/images/symbols/bra.png new file mode 100644 index 000000000..a3c8b4c83 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/bra.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/break.png b/apps/documenteditor/main/resources/help/en/images/symbols/break.png new file mode 100644 index 000000000..859fbf8b4 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/break.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/breve.png b/apps/documenteditor/main/resources/help/en/images/symbols/breve.png new file mode 100644 index 000000000..b2392724b Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/breve.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/bullet.png b/apps/documenteditor/main/resources/help/en/images/symbols/bullet.png new file mode 100644 index 000000000..05e268132 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/bullet.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/cap.png b/apps/documenteditor/main/resources/help/en/images/symbols/cap.png new file mode 100644 index 000000000..76139f161 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/cap.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/cases.png b/apps/documenteditor/main/resources/help/en/images/symbols/cases.png new file mode 100644 index 000000000..c5a1d5ffe Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/cases.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/cbrt.png b/apps/documenteditor/main/resources/help/en/images/symbols/cbrt.png new file mode 100644 index 000000000..580d0d0d6 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/cbrt.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/cdot.png b/apps/documenteditor/main/resources/help/en/images/symbols/cdot.png new file mode 100644 index 000000000..199773081 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/cdot.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/cdots.png b/apps/documenteditor/main/resources/help/en/images/symbols/cdots.png new file mode 100644 index 000000000..6246a1f0d Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/cdots.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/check.png b/apps/documenteditor/main/resources/help/en/images/symbols/check.png new file mode 100644 index 000000000..9d57528ec Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/check.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/chi.png b/apps/documenteditor/main/resources/help/en/images/symbols/chi.png new file mode 100644 index 000000000..1ee801d17 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/chi.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/chi2.png b/apps/documenteditor/main/resources/help/en/images/symbols/chi2.png new file mode 100644 index 000000000..a27cce57e Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/chi2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/circ.png b/apps/documenteditor/main/resources/help/en/images/symbols/circ.png new file mode 100644 index 000000000..9a6aa27c3 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/circ.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/close.png b/apps/documenteditor/main/resources/help/en/images/symbols/close.png new file mode 100644 index 000000000..7438a6f0b Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/close.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/clubsuit.png b/apps/documenteditor/main/resources/help/en/images/symbols/clubsuit.png new file mode 100644 index 000000000..0ecec4509 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/clubsuit.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/coint.png b/apps/documenteditor/main/resources/help/en/images/symbols/coint.png new file mode 100644 index 000000000..f2f305a81 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/coint.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/colonequal.png b/apps/documenteditor/main/resources/help/en/images/symbols/colonequal.png new file mode 100644 index 000000000..79fb3a795 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/colonequal.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/cong.png b/apps/documenteditor/main/resources/help/en/images/symbols/cong.png new file mode 100644 index 000000000..7d48ef05a Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/cong.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/coprod.png b/apps/documenteditor/main/resources/help/en/images/symbols/coprod.png new file mode 100644 index 000000000..d90054fb5 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/coprod.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/cup.png b/apps/documenteditor/main/resources/help/en/images/symbols/cup.png new file mode 100644 index 000000000..7b3915395 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/cup.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/dalet.png b/apps/documenteditor/main/resources/help/en/images/symbols/dalet.png new file mode 100644 index 000000000..0dea5332b Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/dalet.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/daleth.png b/apps/documenteditor/main/resources/help/en/images/symbols/daleth.png new file mode 100644 index 000000000..0dea5332b Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/daleth.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/dashv.png b/apps/documenteditor/main/resources/help/en/images/symbols/dashv.png new file mode 100644 index 000000000..0a07ecf03 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/dashv.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/dd.png b/apps/documenteditor/main/resources/help/en/images/symbols/dd.png new file mode 100644 index 000000000..b96137d73 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/dd.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/dd2.png b/apps/documenteditor/main/resources/help/en/images/symbols/dd2.png new file mode 100644 index 000000000..51e50c6ec Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/dd2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/ddddot.png b/apps/documenteditor/main/resources/help/en/images/symbols/ddddot.png new file mode 100644 index 000000000..e2512dd96 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/ddddot.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/dddot.png b/apps/documenteditor/main/resources/help/en/images/symbols/dddot.png new file mode 100644 index 000000000..8c261bdec Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/dddot.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/ddot.png b/apps/documenteditor/main/resources/help/en/images/symbols/ddot.png new file mode 100644 index 000000000..fc158338d Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/ddot.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/ddots.png b/apps/documenteditor/main/resources/help/en/images/symbols/ddots.png new file mode 100644 index 000000000..1b15677a9 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/ddots.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/defeq.png b/apps/documenteditor/main/resources/help/en/images/symbols/defeq.png new file mode 100644 index 000000000..e4728e579 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/defeq.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/degc.png b/apps/documenteditor/main/resources/help/en/images/symbols/degc.png new file mode 100644 index 000000000..f8512ce6d Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/degc.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/degf.png b/apps/documenteditor/main/resources/help/en/images/symbols/degf.png new file mode 100644 index 000000000..9d5b4f234 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/degf.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/degree.png b/apps/documenteditor/main/resources/help/en/images/symbols/degree.png new file mode 100644 index 000000000..42881ff13 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/degree.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/delta.png b/apps/documenteditor/main/resources/help/en/images/symbols/delta.png new file mode 100644 index 000000000..14d5d2386 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/delta.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/delta2.png b/apps/documenteditor/main/resources/help/en/images/symbols/delta2.png new file mode 100644 index 000000000..6541350c6 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/delta2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/deltaeq.png b/apps/documenteditor/main/resources/help/en/images/symbols/deltaeq.png new file mode 100644 index 000000000..1dac99daf Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/deltaeq.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/diamond.png b/apps/documenteditor/main/resources/help/en/images/symbols/diamond.png new file mode 100644 index 000000000..9e692a462 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/diamond.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/diamondsuit.png b/apps/documenteditor/main/resources/help/en/images/symbols/diamondsuit.png new file mode 100644 index 000000000..bff5edf92 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/diamondsuit.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/div.png b/apps/documenteditor/main/resources/help/en/images/symbols/div.png new file mode 100644 index 000000000..059758d9c Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/div.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/dot.png b/apps/documenteditor/main/resources/help/en/images/symbols/dot.png new file mode 100644 index 000000000..c0d4f093f Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/dot.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/doteq.png b/apps/documenteditor/main/resources/help/en/images/symbols/doteq.png new file mode 100644 index 000000000..ddef5eb4d Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/doteq.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/dots.png b/apps/documenteditor/main/resources/help/en/images/symbols/dots.png new file mode 100644 index 000000000..abf33d47a Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/dots.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/doublea.png b/apps/documenteditor/main/resources/help/en/images/symbols/doublea.png new file mode 100644 index 000000000..b9cb5ed78 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/doublea.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/doublea2.png b/apps/documenteditor/main/resources/help/en/images/symbols/doublea2.png new file mode 100644 index 000000000..eee509760 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/doublea2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/doubleb.png b/apps/documenteditor/main/resources/help/en/images/symbols/doubleb.png new file mode 100644 index 000000000..3d98b1da6 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/doubleb.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/doubleb2.png b/apps/documenteditor/main/resources/help/en/images/symbols/doubleb2.png new file mode 100644 index 000000000..3cdc8d687 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/doubleb2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/doublec.png b/apps/documenteditor/main/resources/help/en/images/symbols/doublec.png new file mode 100644 index 000000000..b4e564fdc Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/doublec.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/doublec2.png b/apps/documenteditor/main/resources/help/en/images/symbols/doublec2.png new file mode 100644 index 000000000..b3e5ccc8a Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/doublec2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/doublecolon.png b/apps/documenteditor/main/resources/help/en/images/symbols/doublecolon.png new file mode 100644 index 000000000..56cfcafd4 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/doublecolon.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/doubled.png b/apps/documenteditor/main/resources/help/en/images/symbols/doubled.png new file mode 100644 index 000000000..bca050ea8 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/doubled.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/doubled2.png b/apps/documenteditor/main/resources/help/en/images/symbols/doubled2.png new file mode 100644 index 000000000..6e222d501 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/doubled2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/doublee.png b/apps/documenteditor/main/resources/help/en/images/symbols/doublee.png new file mode 100644 index 000000000..e03f999a8 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/doublee.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/doublee2.png b/apps/documenteditor/main/resources/help/en/images/symbols/doublee2.png new file mode 100644 index 000000000..6627ded4f Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/doublee2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/doublef.png b/apps/documenteditor/main/resources/help/en/images/symbols/doublef.png new file mode 100644 index 000000000..c99ee88a5 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/doublef.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/doublef2.png b/apps/documenteditor/main/resources/help/en/images/symbols/doublef2.png new file mode 100644 index 000000000..f97effdec Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/doublef2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/doublefactorial.png b/apps/documenteditor/main/resources/help/en/images/symbols/doublefactorial.png new file mode 100644 index 000000000..81a4360f2 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/doublefactorial.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/doubleg.png b/apps/documenteditor/main/resources/help/en/images/symbols/doubleg.png new file mode 100644 index 000000000..97ff9ceed Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/doubleg.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/doubleg2.png b/apps/documenteditor/main/resources/help/en/images/symbols/doubleg2.png new file mode 100644 index 000000000..19f3727f8 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/doubleg2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/doubleh.png b/apps/documenteditor/main/resources/help/en/images/symbols/doubleh.png new file mode 100644 index 000000000..9ca4f14ca Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/doubleh.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/doubleh2.png b/apps/documenteditor/main/resources/help/en/images/symbols/doubleh2.png new file mode 100644 index 000000000..ea40b9965 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/doubleh2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/doublei.png b/apps/documenteditor/main/resources/help/en/images/symbols/doublei.png new file mode 100644 index 000000000..bb4d100de Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/doublei.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/doublei2.png b/apps/documenteditor/main/resources/help/en/images/symbols/doublei2.png new file mode 100644 index 000000000..313453e56 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/doublei2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/doublej.png b/apps/documenteditor/main/resources/help/en/images/symbols/doublej.png new file mode 100644 index 000000000..43de921d9 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/doublej.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/doublej2.png b/apps/documenteditor/main/resources/help/en/images/symbols/doublej2.png new file mode 100644 index 000000000..55063df14 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/doublej2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/doublek.png b/apps/documenteditor/main/resources/help/en/images/symbols/doublek.png new file mode 100644 index 000000000..6dc9ee87c Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/doublek.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/doublek2.png b/apps/documenteditor/main/resources/help/en/images/symbols/doublek2.png new file mode 100644 index 000000000..aee85567c Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/doublek2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/doublel.png b/apps/documenteditor/main/resources/help/en/images/symbols/doublel.png new file mode 100644 index 000000000..4e4aad8c8 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/doublel.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/doublel2.png b/apps/documenteditor/main/resources/help/en/images/symbols/doublel2.png new file mode 100644 index 000000000..7382f3652 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/doublel2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/doublem.png b/apps/documenteditor/main/resources/help/en/images/symbols/doublem.png new file mode 100644 index 000000000..8f6d8538d Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/doublem.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/doublem2.png b/apps/documenteditor/main/resources/help/en/images/symbols/doublem2.png new file mode 100644 index 000000000..100097a98 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/doublem2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/doublen.png b/apps/documenteditor/main/resources/help/en/images/symbols/doublen.png new file mode 100644 index 000000000..2f1373128 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/doublen.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/doublen2.png b/apps/documenteditor/main/resources/help/en/images/symbols/doublen2.png new file mode 100644 index 000000000..5ef2738aa Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/doublen2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/doubleo.png b/apps/documenteditor/main/resources/help/en/images/symbols/doubleo.png new file mode 100644 index 000000000..a13023552 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/doubleo.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/doubleo2.png b/apps/documenteditor/main/resources/help/en/images/symbols/doubleo2.png new file mode 100644 index 000000000..468459457 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/doubleo2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/doublep.png b/apps/documenteditor/main/resources/help/en/images/symbols/doublep.png new file mode 100644 index 000000000..8db731325 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/doublep.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/doublep2.png b/apps/documenteditor/main/resources/help/en/images/symbols/doublep2.png new file mode 100644 index 000000000..18bfb16ad Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/doublep2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/doubleq.png b/apps/documenteditor/main/resources/help/en/images/symbols/doubleq.png new file mode 100644 index 000000000..fc4b77c78 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/doubleq.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/doubleq2.png b/apps/documenteditor/main/resources/help/en/images/symbols/doubleq2.png new file mode 100644 index 000000000..25b230947 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/doubleq2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/doubler.png b/apps/documenteditor/main/resources/help/en/images/symbols/doubler.png new file mode 100644 index 000000000..8f0e988a3 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/doubler.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/doubler2.png b/apps/documenteditor/main/resources/help/en/images/symbols/doubler2.png new file mode 100644 index 000000000..bb6e40f2a Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/doubler2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/doubles.png b/apps/documenteditor/main/resources/help/en/images/symbols/doubles.png new file mode 100644 index 000000000..c05d7f9cd Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/doubles.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/doubles2.png b/apps/documenteditor/main/resources/help/en/images/symbols/doubles2.png new file mode 100644 index 000000000..d24cb2f27 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/doubles2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/doublet.png b/apps/documenteditor/main/resources/help/en/images/symbols/doublet.png new file mode 100644 index 000000000..c27fe3875 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/doublet.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/doublet2.png b/apps/documenteditor/main/resources/help/en/images/symbols/doublet2.png new file mode 100644 index 000000000..32f2294a7 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/doublet2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/doubleu.png b/apps/documenteditor/main/resources/help/en/images/symbols/doubleu.png new file mode 100644 index 000000000..a0f54d440 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/doubleu.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/doubleu2.png b/apps/documenteditor/main/resources/help/en/images/symbols/doubleu2.png new file mode 100644 index 000000000..3ce700d2f Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/doubleu2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/doublev.png b/apps/documenteditor/main/resources/help/en/images/symbols/doublev.png new file mode 100644 index 000000000..a5b0cb2be Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/doublev.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/doublev2.png b/apps/documenteditor/main/resources/help/en/images/symbols/doublev2.png new file mode 100644 index 000000000..da1089327 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/doublev2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/doublew.png b/apps/documenteditor/main/resources/help/en/images/symbols/doublew.png new file mode 100644 index 000000000..0400ddbed Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/doublew.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/doublew2.png b/apps/documenteditor/main/resources/help/en/images/symbols/doublew2.png new file mode 100644 index 000000000..a151c1777 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/doublew2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/doublex.png b/apps/documenteditor/main/resources/help/en/images/symbols/doublex.png new file mode 100644 index 000000000..648ce4467 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/doublex.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/doublex2.png b/apps/documenteditor/main/resources/help/en/images/symbols/doublex2.png new file mode 100644 index 000000000..4c2a1de43 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/doublex2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/doubley.png b/apps/documenteditor/main/resources/help/en/images/symbols/doubley.png new file mode 100644 index 000000000..6ed589d6d Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/doubley.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/doubley2.png b/apps/documenteditor/main/resources/help/en/images/symbols/doubley2.png new file mode 100644 index 000000000..6e2733f6d Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/doubley2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/doublez.png b/apps/documenteditor/main/resources/help/en/images/symbols/doublez.png new file mode 100644 index 000000000..3d1061f6c Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/doublez.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/doublez2.png b/apps/documenteditor/main/resources/help/en/images/symbols/doublez2.png new file mode 100644 index 000000000..f12b3eebb Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/doublez2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/downarrow.png b/apps/documenteditor/main/resources/help/en/images/symbols/downarrow.png new file mode 100644 index 000000000..71146333a Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/downarrow.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/downarrow2.png b/apps/documenteditor/main/resources/help/en/images/symbols/downarrow2.png new file mode 100644 index 000000000..7f20d8728 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/downarrow2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/dsmash.png b/apps/documenteditor/main/resources/help/en/images/symbols/dsmash.png new file mode 100644 index 000000000..49e2e5855 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/dsmash.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/ee.png b/apps/documenteditor/main/resources/help/en/images/symbols/ee.png new file mode 100644 index 000000000..d1c8f6b16 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/ee.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/ell.png b/apps/documenteditor/main/resources/help/en/images/symbols/ell.png new file mode 100644 index 000000000..e28155e01 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/ell.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/emptyset.png b/apps/documenteditor/main/resources/help/en/images/symbols/emptyset.png new file mode 100644 index 000000000..28b0f75d5 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/emptyset.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/end.png b/apps/documenteditor/main/resources/help/en/images/symbols/end.png new file mode 100644 index 000000000..33d901831 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/end.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/epsilon.png b/apps/documenteditor/main/resources/help/en/images/symbols/epsilon.png new file mode 100644 index 000000000..c7a53ad49 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/epsilon.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/epsilon2.png b/apps/documenteditor/main/resources/help/en/images/symbols/epsilon2.png new file mode 100644 index 000000000..dd54bb471 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/epsilon2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/eqarray.png b/apps/documenteditor/main/resources/help/en/images/symbols/eqarray.png new file mode 100644 index 000000000..2dbb07eff Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/eqarray.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/equiv.png b/apps/documenteditor/main/resources/help/en/images/symbols/equiv.png new file mode 100644 index 000000000..ac3c147eb Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/equiv.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/eta.png b/apps/documenteditor/main/resources/help/en/images/symbols/eta.png new file mode 100644 index 000000000..bb6c37c23 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/eta.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/eta2.png b/apps/documenteditor/main/resources/help/en/images/symbols/eta2.png new file mode 100644 index 000000000..93a5f8f3e Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/eta2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/exists.png b/apps/documenteditor/main/resources/help/en/images/symbols/exists.png new file mode 100644 index 000000000..f2e078f08 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/exists.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/forall.png b/apps/documenteditor/main/resources/help/en/images/symbols/forall.png new file mode 100644 index 000000000..5c58ecb41 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/forall.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/fraktura.png b/apps/documenteditor/main/resources/help/en/images/symbols/fraktura.png new file mode 100644 index 000000000..8570b166c Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/fraktura.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/fraktura2.png b/apps/documenteditor/main/resources/help/en/images/symbols/fraktura2.png new file mode 100644 index 000000000..b3db328e2 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/fraktura2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/frakturb.png b/apps/documenteditor/main/resources/help/en/images/symbols/frakturb.png new file mode 100644 index 000000000..e682b9c49 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/frakturb.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/frakturb2.png b/apps/documenteditor/main/resources/help/en/images/symbols/frakturb2.png new file mode 100644 index 000000000..570b7daad Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/frakturb2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/frakturc.png b/apps/documenteditor/main/resources/help/en/images/symbols/frakturc.png new file mode 100644 index 000000000..3296e1bf7 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/frakturc.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/frakturc2.png b/apps/documenteditor/main/resources/help/en/images/symbols/frakturc2.png new file mode 100644 index 000000000..9e1c9065f Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/frakturc2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/frakturd.png b/apps/documenteditor/main/resources/help/en/images/symbols/frakturd.png new file mode 100644 index 000000000..0c29587e2 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/frakturd.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/frakturd2.png b/apps/documenteditor/main/resources/help/en/images/symbols/frakturd2.png new file mode 100644 index 000000000..f5afeeb59 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/frakturd2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/frakture.png b/apps/documenteditor/main/resources/help/en/images/symbols/frakture.png new file mode 100644 index 000000000..a56e7c5a2 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/frakture.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/frakture2.png b/apps/documenteditor/main/resources/help/en/images/symbols/frakture2.png new file mode 100644 index 000000000..3c9236af6 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/frakture2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/frakturf.png b/apps/documenteditor/main/resources/help/en/images/symbols/frakturf.png new file mode 100644 index 000000000..8a460b206 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/frakturf.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/frakturf2.png b/apps/documenteditor/main/resources/help/en/images/symbols/frakturf2.png new file mode 100644 index 000000000..f59cc1a49 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/frakturf2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/frakturg.png b/apps/documenteditor/main/resources/help/en/images/symbols/frakturg.png new file mode 100644 index 000000000..f9c71a7f9 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/frakturg.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/frakturg2.png b/apps/documenteditor/main/resources/help/en/images/symbols/frakturg2.png new file mode 100644 index 000000000..1a96d7939 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/frakturg2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/frakturh.png b/apps/documenteditor/main/resources/help/en/images/symbols/frakturh.png new file mode 100644 index 000000000..afff96507 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/frakturh.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/frakturh2.png b/apps/documenteditor/main/resources/help/en/images/symbols/frakturh2.png new file mode 100644 index 000000000..c77ddc227 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/frakturh2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/frakturi.png b/apps/documenteditor/main/resources/help/en/images/symbols/frakturi.png new file mode 100644 index 000000000..b690840e0 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/frakturi.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/frakturi2.png b/apps/documenteditor/main/resources/help/en/images/symbols/frakturi2.png new file mode 100644 index 000000000..93494c9f1 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/frakturi2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/frakturk.png b/apps/documenteditor/main/resources/help/en/images/symbols/frakturk.png new file mode 100644 index 000000000..f6ec69273 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/frakturk.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/frakturk2.png b/apps/documenteditor/main/resources/help/en/images/symbols/frakturk2.png new file mode 100644 index 000000000..88b5d5dd8 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/frakturk2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/frakturl.png b/apps/documenteditor/main/resources/help/en/images/symbols/frakturl.png new file mode 100644 index 000000000..4719aa67a Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/frakturl.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/frakturl2.png b/apps/documenteditor/main/resources/help/en/images/symbols/frakturl2.png new file mode 100644 index 000000000..73365c050 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/frakturl2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/frakturm.png b/apps/documenteditor/main/resources/help/en/images/symbols/frakturm.png new file mode 100644 index 000000000..a8d412077 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/frakturm.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/frakturm2.png b/apps/documenteditor/main/resources/help/en/images/symbols/frakturm2.png new file mode 100644 index 000000000..6823b765f Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/frakturm2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/frakturn.png b/apps/documenteditor/main/resources/help/en/images/symbols/frakturn.png new file mode 100644 index 000000000..7562b1587 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/frakturn.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/frakturn2.png b/apps/documenteditor/main/resources/help/en/images/symbols/frakturn2.png new file mode 100644 index 000000000..5817d5af7 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/frakturn2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/frakturo.png b/apps/documenteditor/main/resources/help/en/images/symbols/frakturo.png new file mode 100644 index 000000000..ed9ee60d6 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/frakturo.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/frakturo2.png b/apps/documenteditor/main/resources/help/en/images/symbols/frakturo2.png new file mode 100644 index 000000000..6becfb0d4 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/frakturo2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/frakturp.png b/apps/documenteditor/main/resources/help/en/images/symbols/frakturp.png new file mode 100644 index 000000000..d9c2ef5ed Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/frakturp.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/frakturp2.png b/apps/documenteditor/main/resources/help/en/images/symbols/frakturp2.png new file mode 100644 index 000000000..1fbe142a9 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/frakturp2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/frakturq.png b/apps/documenteditor/main/resources/help/en/images/symbols/frakturq.png new file mode 100644 index 000000000..aac2cafe2 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/frakturq.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/frakturq2.png b/apps/documenteditor/main/resources/help/en/images/symbols/frakturq2.png new file mode 100644 index 000000000..7026dc172 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/frakturq2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/frakturr.png b/apps/documenteditor/main/resources/help/en/images/symbols/frakturr.png new file mode 100644 index 000000000..c14dc2aee Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/frakturr.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/frakturr2.png b/apps/documenteditor/main/resources/help/en/images/symbols/frakturr2.png new file mode 100644 index 000000000..ad6eb3a2a Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/frakturr2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/frakturs.png b/apps/documenteditor/main/resources/help/en/images/symbols/frakturs.png new file mode 100644 index 000000000..b68a51481 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/frakturs.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/frakturs2.png b/apps/documenteditor/main/resources/help/en/images/symbols/frakturs2.png new file mode 100644 index 000000000..be9bce9ed Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/frakturs2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/frakturt.png b/apps/documenteditor/main/resources/help/en/images/symbols/frakturt.png new file mode 100644 index 000000000..8a274312f Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/frakturt.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/frakturt2.png b/apps/documenteditor/main/resources/help/en/images/symbols/frakturt2.png new file mode 100644 index 000000000..ff4ffbad5 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/frakturt2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/frakturu.png b/apps/documenteditor/main/resources/help/en/images/symbols/frakturu.png new file mode 100644 index 000000000..e3835c5e6 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/frakturu.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/frakturu2.png b/apps/documenteditor/main/resources/help/en/images/symbols/frakturu2.png new file mode 100644 index 000000000..b7c2dfce0 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/frakturu2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/frakturv.png b/apps/documenteditor/main/resources/help/en/images/symbols/frakturv.png new file mode 100644 index 000000000..3ae44b0d8 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/frakturv.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/frakturv2.png b/apps/documenteditor/main/resources/help/en/images/symbols/frakturv2.png new file mode 100644 index 000000000..06951ec52 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/frakturv2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/frakturw.png b/apps/documenteditor/main/resources/help/en/images/symbols/frakturw.png new file mode 100644 index 000000000..20e492dd2 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/frakturw.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/frakturw2.png b/apps/documenteditor/main/resources/help/en/images/symbols/frakturw2.png new file mode 100644 index 000000000..c08b19614 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/frakturw2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/frakturx.png b/apps/documenteditor/main/resources/help/en/images/symbols/frakturx.png new file mode 100644 index 000000000..7af677f4d Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/frakturx.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/frakturx2.png b/apps/documenteditor/main/resources/help/en/images/symbols/frakturx2.png new file mode 100644 index 000000000..9dd4eefc0 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/frakturx2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/fraktury.png b/apps/documenteditor/main/resources/help/en/images/symbols/fraktury.png new file mode 100644 index 000000000..ea98c092d Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/fraktury.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/fraktury2.png b/apps/documenteditor/main/resources/help/en/images/symbols/fraktury2.png new file mode 100644 index 000000000..4cf8f1fb3 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/fraktury2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/frakturz.png b/apps/documenteditor/main/resources/help/en/images/symbols/frakturz.png new file mode 100644 index 000000000..b44487f74 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/frakturz.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/frakturz2.png b/apps/documenteditor/main/resources/help/en/images/symbols/frakturz2.png new file mode 100644 index 000000000..afd922249 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/frakturz2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/frown.png b/apps/documenteditor/main/resources/help/en/images/symbols/frown.png new file mode 100644 index 000000000..2fcd6e3a2 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/frown.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/g.png b/apps/documenteditor/main/resources/help/en/images/symbols/g.png new file mode 100644 index 000000000..3aa30aaa0 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/g.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/gamma.png b/apps/documenteditor/main/resources/help/en/images/symbols/gamma.png new file mode 100644 index 000000000..9f088aa79 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/gamma.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/gamma2.png b/apps/documenteditor/main/resources/help/en/images/symbols/gamma2.png new file mode 100644 index 000000000..3aa30aaa0 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/gamma2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/ge.png b/apps/documenteditor/main/resources/help/en/images/symbols/ge.png new file mode 100644 index 000000000..fe22252f5 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/ge.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/geq.png b/apps/documenteditor/main/resources/help/en/images/symbols/geq.png new file mode 100644 index 000000000..fe22252f5 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/geq.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/gets.png b/apps/documenteditor/main/resources/help/en/images/symbols/gets.png new file mode 100644 index 000000000..6ab7c9df5 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/gets.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/gg.png b/apps/documenteditor/main/resources/help/en/images/symbols/gg.png new file mode 100644 index 000000000..c2b964579 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/gg.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/gimel.png b/apps/documenteditor/main/resources/help/en/images/symbols/gimel.png new file mode 100644 index 000000000..4e6cccb60 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/gimel.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/grave.png b/apps/documenteditor/main/resources/help/en/images/symbols/grave.png new file mode 100644 index 000000000..fcda94a6c Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/grave.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/greaterthanorequalto.png b/apps/documenteditor/main/resources/help/en/images/symbols/greaterthanorequalto.png new file mode 100644 index 000000000..fe22252f5 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/greaterthanorequalto.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/hat.png b/apps/documenteditor/main/resources/help/en/images/symbols/hat.png new file mode 100644 index 000000000..e3be83a4c Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/hat.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/hbar.png b/apps/documenteditor/main/resources/help/en/images/symbols/hbar.png new file mode 100644 index 000000000..e6025b5d7 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/hbar.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/heartsuit.png b/apps/documenteditor/main/resources/help/en/images/symbols/heartsuit.png new file mode 100644 index 000000000..8b26f4fe3 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/heartsuit.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/hookleftarrow.png b/apps/documenteditor/main/resources/help/en/images/symbols/hookleftarrow.png new file mode 100644 index 000000000..14f255fb0 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/hookleftarrow.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/hookrightarrow.png b/apps/documenteditor/main/resources/help/en/images/symbols/hookrightarrow.png new file mode 100644 index 000000000..b22e5b07a Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/hookrightarrow.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/horizontalellipsis.png b/apps/documenteditor/main/resources/help/en/images/symbols/horizontalellipsis.png new file mode 100644 index 000000000..bc8f0fa47 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/horizontalellipsis.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/hphantom.png b/apps/documenteditor/main/resources/help/en/images/symbols/hphantom.png new file mode 100644 index 000000000..fb072eee0 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/hphantom.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/hsmash.png b/apps/documenteditor/main/resources/help/en/images/symbols/hsmash.png new file mode 100644 index 000000000..ce90638d4 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/hsmash.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/hvec.png b/apps/documenteditor/main/resources/help/en/images/symbols/hvec.png new file mode 100644 index 000000000..38fddae5b Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/hvec.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/identitymatrix.png b/apps/documenteditor/main/resources/help/en/images/symbols/identitymatrix.png new file mode 100644 index 000000000..3531cd2fc Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/identitymatrix.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/ii.png b/apps/documenteditor/main/resources/help/en/images/symbols/ii.png new file mode 100644 index 000000000..e064923e7 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/ii.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/iiiint.png b/apps/documenteditor/main/resources/help/en/images/symbols/iiiint.png new file mode 100644 index 000000000..b7b9990d1 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/iiiint.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/iiint.png b/apps/documenteditor/main/resources/help/en/images/symbols/iiint.png new file mode 100644 index 000000000..f56aff057 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/iiint.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/iint.png b/apps/documenteditor/main/resources/help/en/images/symbols/iint.png new file mode 100644 index 000000000..e73f05c2d Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/iint.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/im.png b/apps/documenteditor/main/resources/help/en/images/symbols/im.png new file mode 100644 index 000000000..1470295b3 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/im.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/imath.png b/apps/documenteditor/main/resources/help/en/images/symbols/imath.png new file mode 100644 index 000000000..e6493cfef Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/imath.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/in.png b/apps/documenteditor/main/resources/help/en/images/symbols/in.png new file mode 100644 index 000000000..ca1f84e4d Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/in.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/inc.png b/apps/documenteditor/main/resources/help/en/images/symbols/inc.png new file mode 100644 index 000000000..3ac8c1bcd Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/inc.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/infty.png b/apps/documenteditor/main/resources/help/en/images/symbols/infty.png new file mode 100644 index 000000000..1fa3570fa Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/infty.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/int.png b/apps/documenteditor/main/resources/help/en/images/symbols/int.png new file mode 100644 index 000000000..0f296cc46 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/int.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/integral.png b/apps/documenteditor/main/resources/help/en/images/symbols/integral.png new file mode 100644 index 000000000..65e56f23b Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/integral.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/iota.png b/apps/documenteditor/main/resources/help/en/images/symbols/iota.png new file mode 100644 index 000000000..0aefb684e Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/iota.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/iota2.png b/apps/documenteditor/main/resources/help/en/images/symbols/iota2.png new file mode 100644 index 000000000..b4341851a Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/iota2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/j.png b/apps/documenteditor/main/resources/help/en/images/symbols/j.png new file mode 100644 index 000000000..004b30b69 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/j.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/jj.png b/apps/documenteditor/main/resources/help/en/images/symbols/jj.png new file mode 100644 index 000000000..5a1e11920 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/jj.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/jmath.png b/apps/documenteditor/main/resources/help/en/images/symbols/jmath.png new file mode 100644 index 000000000..9409b6d2e Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/jmath.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/kappa.png b/apps/documenteditor/main/resources/help/en/images/symbols/kappa.png new file mode 100644 index 000000000..788d84c11 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/kappa.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/kappa2.png b/apps/documenteditor/main/resources/help/en/images/symbols/kappa2.png new file mode 100644 index 000000000..fae000a00 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/kappa2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/ket.png b/apps/documenteditor/main/resources/help/en/images/symbols/ket.png new file mode 100644 index 000000000..913b1b3fe Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/ket.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/lambda.png b/apps/documenteditor/main/resources/help/en/images/symbols/lambda.png new file mode 100644 index 000000000..f98af8017 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/lambda.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/lambda2.png b/apps/documenteditor/main/resources/help/en/images/symbols/lambda2.png new file mode 100644 index 000000000..3016c6ece Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/lambda2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/langle.png b/apps/documenteditor/main/resources/help/en/images/symbols/langle.png new file mode 100644 index 000000000..73ccafba9 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/langle.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/lbbrack.png b/apps/documenteditor/main/resources/help/en/images/symbols/lbbrack.png new file mode 100644 index 000000000..9dbb14049 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/lbbrack.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/lbrace.png b/apps/documenteditor/main/resources/help/en/images/symbols/lbrace.png new file mode 100644 index 000000000..004d22d05 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/lbrace.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/lbrack.png b/apps/documenteditor/main/resources/help/en/images/symbols/lbrack.png new file mode 100644 index 000000000..0cf789daa Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/lbrack.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/lceil.png b/apps/documenteditor/main/resources/help/en/images/symbols/lceil.png new file mode 100644 index 000000000..48d4f69b1 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/lceil.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/ldiv.png b/apps/documenteditor/main/resources/help/en/images/symbols/ldiv.png new file mode 100644 index 000000000..ba17e3ae6 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/ldiv.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/ldivide.png b/apps/documenteditor/main/resources/help/en/images/symbols/ldivide.png new file mode 100644 index 000000000..e1071483b Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/ldivide.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/ldots.png b/apps/documenteditor/main/resources/help/en/images/symbols/ldots.png new file mode 100644 index 000000000..abf33d47a Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/ldots.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/le.png b/apps/documenteditor/main/resources/help/en/images/symbols/le.png new file mode 100644 index 000000000..d839ba35d Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/le.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/left.png b/apps/documenteditor/main/resources/help/en/images/symbols/left.png new file mode 100644 index 000000000..9f27f6310 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/left.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/leftarrow.png b/apps/documenteditor/main/resources/help/en/images/symbols/leftarrow.png new file mode 100644 index 000000000..bafaf636c Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/leftarrow.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/leftarrow2.png b/apps/documenteditor/main/resources/help/en/images/symbols/leftarrow2.png new file mode 100644 index 000000000..60f405f7e Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/leftarrow2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/leftharpoondown.png b/apps/documenteditor/main/resources/help/en/images/symbols/leftharpoondown.png new file mode 100644 index 000000000..d15921dc9 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/leftharpoondown.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/leftharpoonup.png b/apps/documenteditor/main/resources/help/en/images/symbols/leftharpoonup.png new file mode 100644 index 000000000..d02cea5c4 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/leftharpoonup.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/leftrightarrow.png b/apps/documenteditor/main/resources/help/en/images/symbols/leftrightarrow.png new file mode 100644 index 000000000..2c0305093 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/leftrightarrow.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/leftrightarrow2.png b/apps/documenteditor/main/resources/help/en/images/symbols/leftrightarrow2.png new file mode 100644 index 000000000..923152c61 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/leftrightarrow2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/leq.png b/apps/documenteditor/main/resources/help/en/images/symbols/leq.png new file mode 100644 index 000000000..d839ba35d Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/leq.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/lessthanorequalto.png b/apps/documenteditor/main/resources/help/en/images/symbols/lessthanorequalto.png new file mode 100644 index 000000000..d839ba35d Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/lessthanorequalto.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/lfloor.png b/apps/documenteditor/main/resources/help/en/images/symbols/lfloor.png new file mode 100644 index 000000000..fc34c4345 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/lfloor.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/lhvec.png b/apps/documenteditor/main/resources/help/en/images/symbols/lhvec.png new file mode 100644 index 000000000..10407df0f Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/lhvec.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/limit.png b/apps/documenteditor/main/resources/help/en/images/symbols/limit.png new file mode 100644 index 000000000..f5669a329 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/limit.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/ll.png b/apps/documenteditor/main/resources/help/en/images/symbols/ll.png new file mode 100644 index 000000000..6e31ee790 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/ll.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/lmoust.png b/apps/documenteditor/main/resources/help/en/images/symbols/lmoust.png new file mode 100644 index 000000000..3547706a8 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/lmoust.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/longleftarrow.png b/apps/documenteditor/main/resources/help/en/images/symbols/longleftarrow.png new file mode 100644 index 000000000..c9647da6b Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/longleftarrow.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/longleftrightarrow.png b/apps/documenteditor/main/resources/help/en/images/symbols/longleftrightarrow.png new file mode 100644 index 000000000..8e0e50d6d Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/longleftrightarrow.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/longrightarrow.png b/apps/documenteditor/main/resources/help/en/images/symbols/longrightarrow.png new file mode 100644 index 000000000..5bed54fe7 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/longrightarrow.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/lrhar.png b/apps/documenteditor/main/resources/help/en/images/symbols/lrhar.png new file mode 100644 index 000000000..9a54ae201 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/lrhar.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/lvec.png b/apps/documenteditor/main/resources/help/en/images/symbols/lvec.png new file mode 100644 index 000000000..b6ab35fac Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/lvec.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/mapsto.png b/apps/documenteditor/main/resources/help/en/images/symbols/mapsto.png new file mode 100644 index 000000000..11e8e411a Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/mapsto.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/matrix.png b/apps/documenteditor/main/resources/help/en/images/symbols/matrix.png new file mode 100644 index 000000000..36dd9f3ef Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/matrix.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/mid.png b/apps/documenteditor/main/resources/help/en/images/symbols/mid.png new file mode 100644 index 000000000..21fca0ac1 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/mid.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/middle.png b/apps/documenteditor/main/resources/help/en/images/symbols/middle.png new file mode 100644 index 000000000..e47884724 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/middle.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/models.png b/apps/documenteditor/main/resources/help/en/images/symbols/models.png new file mode 100644 index 000000000..a87cdc82e Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/models.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/mp.png b/apps/documenteditor/main/resources/help/en/images/symbols/mp.png new file mode 100644 index 000000000..2f295f402 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/mp.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/mu.png b/apps/documenteditor/main/resources/help/en/images/symbols/mu.png new file mode 100644 index 000000000..6a4698faf Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/mu.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/mu2.png b/apps/documenteditor/main/resources/help/en/images/symbols/mu2.png new file mode 100644 index 000000000..96d5b82b7 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/mu2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/nabla.png b/apps/documenteditor/main/resources/help/en/images/symbols/nabla.png new file mode 100644 index 000000000..9c4283a5a Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/nabla.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/naryand.png b/apps/documenteditor/main/resources/help/en/images/symbols/naryand.png new file mode 100644 index 000000000..c43d7a980 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/naryand.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/ne.png b/apps/documenteditor/main/resources/help/en/images/symbols/ne.png new file mode 100644 index 000000000..e55862cde Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/ne.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/nearrow.png b/apps/documenteditor/main/resources/help/en/images/symbols/nearrow.png new file mode 100644 index 000000000..5e95d358a Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/nearrow.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/neq.png b/apps/documenteditor/main/resources/help/en/images/symbols/neq.png new file mode 100644 index 000000000..e55862cde Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/neq.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/ni.png b/apps/documenteditor/main/resources/help/en/images/symbols/ni.png new file mode 100644 index 000000000..b09ce8864 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/ni.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/norm.png b/apps/documenteditor/main/resources/help/en/images/symbols/norm.png new file mode 100644 index 000000000..915abac55 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/norm.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/notcontain.png b/apps/documenteditor/main/resources/help/en/images/symbols/notcontain.png new file mode 100644 index 000000000..2b6ac81ce Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/notcontain.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/notelement.png b/apps/documenteditor/main/resources/help/en/images/symbols/notelement.png new file mode 100644 index 000000000..7c5d182db Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/notelement.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/notequal.png b/apps/documenteditor/main/resources/help/en/images/symbols/notequal.png new file mode 100644 index 000000000..e55862cde Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/notequal.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/notgreaterthan.png b/apps/documenteditor/main/resources/help/en/images/symbols/notgreaterthan.png new file mode 100644 index 000000000..2a8af203d Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/notgreaterthan.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/notin.png b/apps/documenteditor/main/resources/help/en/images/symbols/notin.png new file mode 100644 index 000000000..7f2abe531 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/notin.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/notlessthan.png b/apps/documenteditor/main/resources/help/en/images/symbols/notlessthan.png new file mode 100644 index 000000000..2e9fc8ef2 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/notlessthan.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/nu.png b/apps/documenteditor/main/resources/help/en/images/symbols/nu.png new file mode 100644 index 000000000..b32087c3d Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/nu.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/nu2.png b/apps/documenteditor/main/resources/help/en/images/symbols/nu2.png new file mode 100644 index 000000000..6e0f14582 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/nu2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/nwarrow.png b/apps/documenteditor/main/resources/help/en/images/symbols/nwarrow.png new file mode 100644 index 000000000..35ad2ee95 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/nwarrow.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/o.png b/apps/documenteditor/main/resources/help/en/images/symbols/o.png new file mode 100644 index 000000000..1cbbaaf6f Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/o.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/o2.png b/apps/documenteditor/main/resources/help/en/images/symbols/o2.png new file mode 100644 index 000000000..86a488451 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/o2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/odot.png b/apps/documenteditor/main/resources/help/en/images/symbols/odot.png new file mode 100644 index 000000000..afbd0f8b9 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/odot.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/of.png b/apps/documenteditor/main/resources/help/en/images/symbols/of.png new file mode 100644 index 000000000..d8a2567c7 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/of.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/oiiint.png b/apps/documenteditor/main/resources/help/en/images/symbols/oiiint.png new file mode 100644 index 000000000..c66dc2947 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/oiiint.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/oiint.png b/apps/documenteditor/main/resources/help/en/images/symbols/oiint.png new file mode 100644 index 000000000..5587f29d5 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/oiint.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/oint.png b/apps/documenteditor/main/resources/help/en/images/symbols/oint.png new file mode 100644 index 000000000..30b5bbab3 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/oint.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/omega.png b/apps/documenteditor/main/resources/help/en/images/symbols/omega.png new file mode 100644 index 000000000..a3224bcc5 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/omega.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/omega2.png b/apps/documenteditor/main/resources/help/en/images/symbols/omega2.png new file mode 100644 index 000000000..6689087de Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/omega2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/ominus.png b/apps/documenteditor/main/resources/help/en/images/symbols/ominus.png new file mode 100644 index 000000000..5a07e9ce7 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/ominus.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/open.png b/apps/documenteditor/main/resources/help/en/images/symbols/open.png new file mode 100644 index 000000000..2874320d3 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/open.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/oplus.png b/apps/documenteditor/main/resources/help/en/images/symbols/oplus.png new file mode 100644 index 000000000..6ab9c8d22 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/oplus.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/otimes.png b/apps/documenteditor/main/resources/help/en/images/symbols/otimes.png new file mode 100644 index 000000000..6a2de09e2 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/otimes.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/over.png b/apps/documenteditor/main/resources/help/en/images/symbols/over.png new file mode 100644 index 000000000..de78bfdde Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/over.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/overbar.png b/apps/documenteditor/main/resources/help/en/images/symbols/overbar.png new file mode 100644 index 000000000..5b3896815 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/overbar.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/overbrace.png b/apps/documenteditor/main/resources/help/en/images/symbols/overbrace.png new file mode 100644 index 000000000..71c7d4729 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/overbrace.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/overbracket.png b/apps/documenteditor/main/resources/help/en/images/symbols/overbracket.png new file mode 100644 index 000000000..cbd4f3598 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/overbracket.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/overline.png b/apps/documenteditor/main/resources/help/en/images/symbols/overline.png new file mode 100644 index 000000000..5b3896815 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/overline.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/overparen.png b/apps/documenteditor/main/resources/help/en/images/symbols/overparen.png new file mode 100644 index 000000000..645d88650 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/overparen.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/overshell.png b/apps/documenteditor/main/resources/help/en/images/symbols/overshell.png new file mode 100644 index 000000000..907e993d3 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/overshell.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/parallel.png b/apps/documenteditor/main/resources/help/en/images/symbols/parallel.png new file mode 100644 index 000000000..3b42a5958 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/parallel.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/partial.png b/apps/documenteditor/main/resources/help/en/images/symbols/partial.png new file mode 100644 index 000000000..bb198b44d Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/partial.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/perp.png b/apps/documenteditor/main/resources/help/en/images/symbols/perp.png new file mode 100644 index 000000000..ecc490ff4 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/perp.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/phantom.png b/apps/documenteditor/main/resources/help/en/images/symbols/phantom.png new file mode 100644 index 000000000..f3a11e75a Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/phantom.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/phi.png b/apps/documenteditor/main/resources/help/en/images/symbols/phi.png new file mode 100644 index 000000000..a42a2bdea Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/phi.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/phi2.png b/apps/documenteditor/main/resources/help/en/images/symbols/phi2.png new file mode 100644 index 000000000..d9f811dab Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/phi2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/pi.png b/apps/documenteditor/main/resources/help/en/images/symbols/pi.png new file mode 100644 index 000000000..d6c5da9c4 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/pi.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/pi2.png b/apps/documenteditor/main/resources/help/en/images/symbols/pi2.png new file mode 100644 index 000000000..11486a83b Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/pi2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/pm.png b/apps/documenteditor/main/resources/help/en/images/symbols/pm.png new file mode 100644 index 000000000..13cccaad2 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/pm.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/pmatrix.png b/apps/documenteditor/main/resources/help/en/images/symbols/pmatrix.png new file mode 100644 index 000000000..37b0ed5ac Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/pmatrix.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/pppprime.png b/apps/documenteditor/main/resources/help/en/images/symbols/pppprime.png new file mode 100644 index 000000000..4aec7dd87 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/pppprime.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/ppprime.png b/apps/documenteditor/main/resources/help/en/images/symbols/ppprime.png new file mode 100644 index 000000000..460f07d5d Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/ppprime.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/pprime.png b/apps/documenteditor/main/resources/help/en/images/symbols/pprime.png new file mode 100644 index 000000000..8c60382c1 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/pprime.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/prec.png b/apps/documenteditor/main/resources/help/en/images/symbols/prec.png new file mode 100644 index 000000000..fc174cb73 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/prec.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/preceq.png b/apps/documenteditor/main/resources/help/en/images/symbols/preceq.png new file mode 100644 index 000000000..185576937 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/preceq.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/prime.png b/apps/documenteditor/main/resources/help/en/images/symbols/prime.png new file mode 100644 index 000000000..2144d9f2a Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/prime.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/prod.png b/apps/documenteditor/main/resources/help/en/images/symbols/prod.png new file mode 100644 index 000000000..9fbe6e266 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/prod.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/propto.png b/apps/documenteditor/main/resources/help/en/images/symbols/propto.png new file mode 100644 index 000000000..11a52f90b Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/propto.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/psi.png b/apps/documenteditor/main/resources/help/en/images/symbols/psi.png new file mode 100644 index 000000000..b09ce71e3 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/psi.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/psi2.png b/apps/documenteditor/main/resources/help/en/images/symbols/psi2.png new file mode 100644 index 000000000..71faedd0b Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/psi2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/qdrt.png b/apps/documenteditor/main/resources/help/en/images/symbols/qdrt.png new file mode 100644 index 000000000..f2b8a5518 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/qdrt.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/quadratic.png b/apps/documenteditor/main/resources/help/en/images/symbols/quadratic.png new file mode 100644 index 000000000..26116211c Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/quadratic.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/rangle.png b/apps/documenteditor/main/resources/help/en/images/symbols/rangle.png new file mode 100644 index 000000000..913b1b3fe Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/rangle.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/rangle2.png b/apps/documenteditor/main/resources/help/en/images/symbols/rangle2.png new file mode 100644 index 000000000..5fd0b87a0 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/rangle2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/ratio.png b/apps/documenteditor/main/resources/help/en/images/symbols/ratio.png new file mode 100644 index 000000000..d480fe90c Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/ratio.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/rbrace.png b/apps/documenteditor/main/resources/help/en/images/symbols/rbrace.png new file mode 100644 index 000000000..31decded8 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/rbrace.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/rbrack.png b/apps/documenteditor/main/resources/help/en/images/symbols/rbrack.png new file mode 100644 index 000000000..772a722da Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/rbrack.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/rbrack2.png b/apps/documenteditor/main/resources/help/en/images/symbols/rbrack2.png new file mode 100644 index 000000000..5aa46c098 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/rbrack2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/rceil.png b/apps/documenteditor/main/resources/help/en/images/symbols/rceil.png new file mode 100644 index 000000000..c96575404 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/rceil.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/rddots.png b/apps/documenteditor/main/resources/help/en/images/symbols/rddots.png new file mode 100644 index 000000000..17f60c0bc Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/rddots.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/re.png b/apps/documenteditor/main/resources/help/en/images/symbols/re.png new file mode 100644 index 000000000..36ffb2a8e Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/re.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/rect.png b/apps/documenteditor/main/resources/help/en/images/symbols/rect.png new file mode 100644 index 000000000..b7942dbe1 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/rect.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/rfloor.png b/apps/documenteditor/main/resources/help/en/images/symbols/rfloor.png new file mode 100644 index 000000000..0303da681 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/rfloor.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/rho.png b/apps/documenteditor/main/resources/help/en/images/symbols/rho.png new file mode 100644 index 000000000..c6020c1f1 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/rho.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/rho2.png b/apps/documenteditor/main/resources/help/en/images/symbols/rho2.png new file mode 100644 index 000000000..7242001a4 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/rho2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/rhvec.png b/apps/documenteditor/main/resources/help/en/images/symbols/rhvec.png new file mode 100644 index 000000000..38fddae5b Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/rhvec.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/right.png b/apps/documenteditor/main/resources/help/en/images/symbols/right.png new file mode 100644 index 000000000..cc933121f Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/right.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/rightarrow.png b/apps/documenteditor/main/resources/help/en/images/symbols/rightarrow.png new file mode 100644 index 000000000..0df492f97 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/rightarrow.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/rightarrow2.png b/apps/documenteditor/main/resources/help/en/images/symbols/rightarrow2.png new file mode 100644 index 000000000..62d8b7b90 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/rightarrow2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/rightharpoondown.png b/apps/documenteditor/main/resources/help/en/images/symbols/rightharpoondown.png new file mode 100644 index 000000000..c25b921a2 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/rightharpoondown.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/rightharpoonup.png b/apps/documenteditor/main/resources/help/en/images/symbols/rightharpoonup.png new file mode 100644 index 000000000..a33c56ea0 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/rightharpoonup.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/rmoust.png b/apps/documenteditor/main/resources/help/en/images/symbols/rmoust.png new file mode 100644 index 000000000..e85cdefb9 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/rmoust.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/root.png b/apps/documenteditor/main/resources/help/en/images/symbols/root.png new file mode 100644 index 000000000..8bdcb3d60 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/root.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/scripta.png b/apps/documenteditor/main/resources/help/en/images/symbols/scripta.png new file mode 100644 index 000000000..b4305bc75 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/scripta.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/scripta2.png b/apps/documenteditor/main/resources/help/en/images/symbols/scripta2.png new file mode 100644 index 000000000..4df4c10ea Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/scripta2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/scriptb.png b/apps/documenteditor/main/resources/help/en/images/symbols/scriptb.png new file mode 100644 index 000000000..16801f863 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/scriptb.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/scriptb2.png b/apps/documenteditor/main/resources/help/en/images/symbols/scriptb2.png new file mode 100644 index 000000000..3f395bf2e Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/scriptb2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/scriptc.png b/apps/documenteditor/main/resources/help/en/images/symbols/scriptc.png new file mode 100644 index 000000000..292f64223 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/scriptc.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/scriptc2.png b/apps/documenteditor/main/resources/help/en/images/symbols/scriptc2.png new file mode 100644 index 000000000..f7d64e076 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/scriptc2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/scriptd.png b/apps/documenteditor/main/resources/help/en/images/symbols/scriptd.png new file mode 100644 index 000000000..4a52adbda Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/scriptd.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/scriptd2.png b/apps/documenteditor/main/resources/help/en/images/symbols/scriptd2.png new file mode 100644 index 000000000..db75ffaee Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/scriptd2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/scripte.png b/apps/documenteditor/main/resources/help/en/images/symbols/scripte.png new file mode 100644 index 000000000..e9cea6589 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/scripte.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/scripte2.png b/apps/documenteditor/main/resources/help/en/images/symbols/scripte2.png new file mode 100644 index 000000000..908b98abf Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/scripte2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/scriptf.png b/apps/documenteditor/main/resources/help/en/images/symbols/scriptf.png new file mode 100644 index 000000000..16b2839e3 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/scriptf.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/scriptf2.png b/apps/documenteditor/main/resources/help/en/images/symbols/scriptf2.png new file mode 100644 index 000000000..0fc78029f Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/scriptf2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/scriptg.png b/apps/documenteditor/main/resources/help/en/images/symbols/scriptg.png new file mode 100644 index 000000000..7e2b4e5c7 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/scriptg.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/scriptg2.png b/apps/documenteditor/main/resources/help/en/images/symbols/scriptg2.png new file mode 100644 index 000000000..83ecfa7c3 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/scriptg2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/scripth.png b/apps/documenteditor/main/resources/help/en/images/symbols/scripth.png new file mode 100644 index 000000000..ce9052e49 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/scripth.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/scripth2.png b/apps/documenteditor/main/resources/help/en/images/symbols/scripth2.png new file mode 100644 index 000000000..b669be42d Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/scripth2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/scripti.png b/apps/documenteditor/main/resources/help/en/images/symbols/scripti.png new file mode 100644 index 000000000..8650af640 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/scripti.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/scripti2.png b/apps/documenteditor/main/resources/help/en/images/symbols/scripti2.png new file mode 100644 index 000000000..35253e28d Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/scripti2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/scriptj.png b/apps/documenteditor/main/resources/help/en/images/symbols/scriptj.png new file mode 100644 index 000000000..23a0b18d7 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/scriptj.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/scriptj2.png b/apps/documenteditor/main/resources/help/en/images/symbols/scriptj2.png new file mode 100644 index 000000000..964ca2f83 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/scriptj2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/scriptk.png b/apps/documenteditor/main/resources/help/en/images/symbols/scriptk.png new file mode 100644 index 000000000..605b16e12 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/scriptk.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/scriptk2.png b/apps/documenteditor/main/resources/help/en/images/symbols/scriptk2.png new file mode 100644 index 000000000..c34227b6a Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/scriptk2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/scriptl.png b/apps/documenteditor/main/resources/help/en/images/symbols/scriptl.png new file mode 100644 index 000000000..e28155e01 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/scriptl.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/scriptl2.png b/apps/documenteditor/main/resources/help/en/images/symbols/scriptl2.png new file mode 100644 index 000000000..20327fde5 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/scriptl2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/scriptm.png b/apps/documenteditor/main/resources/help/en/images/symbols/scriptm.png new file mode 100644 index 000000000..5cdd4bc43 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/scriptm.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/scriptm2.png b/apps/documenteditor/main/resources/help/en/images/symbols/scriptm2.png new file mode 100644 index 000000000..b257e5e69 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/scriptm2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/scriptn.png b/apps/documenteditor/main/resources/help/en/images/symbols/scriptn.png new file mode 100644 index 000000000..22b214f97 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/scriptn.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/scriptn2.png b/apps/documenteditor/main/resources/help/en/images/symbols/scriptn2.png new file mode 100644 index 000000000..3cd942d5b Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/scriptn2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/scripto.png b/apps/documenteditor/main/resources/help/en/images/symbols/scripto.png new file mode 100644 index 000000000..64efc9545 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/scripto.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/scripto2.png b/apps/documenteditor/main/resources/help/en/images/symbols/scripto2.png new file mode 100644 index 000000000..8f8bdc904 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/scripto2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/scriptp.png b/apps/documenteditor/main/resources/help/en/images/symbols/scriptp.png new file mode 100644 index 000000000..ec9874130 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/scriptp.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/scriptp2.png b/apps/documenteditor/main/resources/help/en/images/symbols/scriptp2.png new file mode 100644 index 000000000..2df092612 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/scriptp2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/scriptq.png b/apps/documenteditor/main/resources/help/en/images/symbols/scriptq.png new file mode 100644 index 000000000..f9c07bbff Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/scriptq.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/scriptq2.png b/apps/documenteditor/main/resources/help/en/images/symbols/scriptq2.png new file mode 100644 index 000000000..1eb2e1182 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/scriptq2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/scriptr.png b/apps/documenteditor/main/resources/help/en/images/symbols/scriptr.png new file mode 100644 index 000000000..49b85ae2d Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/scriptr.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/scriptr2.png b/apps/documenteditor/main/resources/help/en/images/symbols/scriptr2.png new file mode 100644 index 000000000..46dea0796 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/scriptr2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/scripts.png b/apps/documenteditor/main/resources/help/en/images/symbols/scripts.png new file mode 100644 index 000000000..74caee45b Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/scripts.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/scripts2.png b/apps/documenteditor/main/resources/help/en/images/symbols/scripts2.png new file mode 100644 index 000000000..0acf23f10 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/scripts2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/scriptt.png b/apps/documenteditor/main/resources/help/en/images/symbols/scriptt.png new file mode 100644 index 000000000..cb6ace16a Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/scriptt.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/scriptt2.png b/apps/documenteditor/main/resources/help/en/images/symbols/scriptt2.png new file mode 100644 index 000000000..9407b3372 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/scriptt2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/scriptu.png b/apps/documenteditor/main/resources/help/en/images/symbols/scriptu.png new file mode 100644 index 000000000..cffb832bc Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/scriptu.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/scriptu2.png b/apps/documenteditor/main/resources/help/en/images/symbols/scriptu2.png new file mode 100644 index 000000000..5f85cd60c Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/scriptu2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/scriptv.png b/apps/documenteditor/main/resources/help/en/images/symbols/scriptv.png new file mode 100644 index 000000000..d6e628a61 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/scriptv.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/scriptv2.png b/apps/documenteditor/main/resources/help/en/images/symbols/scriptv2.png new file mode 100644 index 000000000..346dd8c56 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/scriptv2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/scriptw.png b/apps/documenteditor/main/resources/help/en/images/symbols/scriptw.png new file mode 100644 index 000000000..9e5d381db Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/scriptw.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/scriptw2.png b/apps/documenteditor/main/resources/help/en/images/symbols/scriptw2.png new file mode 100644 index 000000000..953ee2de5 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/scriptw2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/scriptx.png b/apps/documenteditor/main/resources/help/en/images/symbols/scriptx.png new file mode 100644 index 000000000..db732c630 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/scriptx.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/scriptx2.png b/apps/documenteditor/main/resources/help/en/images/symbols/scriptx2.png new file mode 100644 index 000000000..166c889a3 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/scriptx2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/scripty.png b/apps/documenteditor/main/resources/help/en/images/symbols/scripty.png new file mode 100644 index 000000000..7784bb149 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/scripty.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/scripty2.png b/apps/documenteditor/main/resources/help/en/images/symbols/scripty2.png new file mode 100644 index 000000000..f3003ade0 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/scripty2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/scriptz.png b/apps/documenteditor/main/resources/help/en/images/symbols/scriptz.png new file mode 100644 index 000000000..e8d5a0cde Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/scriptz.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/scriptz2.png b/apps/documenteditor/main/resources/help/en/images/symbols/scriptz2.png new file mode 100644 index 000000000..8197fe515 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/scriptz2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/sdiv.png b/apps/documenteditor/main/resources/help/en/images/symbols/sdiv.png new file mode 100644 index 000000000..0109428ac Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/sdiv.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/sdivide.png b/apps/documenteditor/main/resources/help/en/images/symbols/sdivide.png new file mode 100644 index 000000000..0109428ac Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/sdivide.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/searrow.png b/apps/documenteditor/main/resources/help/en/images/symbols/searrow.png new file mode 100644 index 000000000..8a7f64b14 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/searrow.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/setminus.png b/apps/documenteditor/main/resources/help/en/images/symbols/setminus.png new file mode 100644 index 000000000..fa6c2cfee Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/setminus.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/sigma.png b/apps/documenteditor/main/resources/help/en/images/symbols/sigma.png new file mode 100644 index 000000000..2cb2bb178 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/sigma.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/sigma2.png b/apps/documenteditor/main/resources/help/en/images/symbols/sigma2.png new file mode 100644 index 000000000..20e9f5ee7 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/sigma2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/sim.png b/apps/documenteditor/main/resources/help/en/images/symbols/sim.png new file mode 100644 index 000000000..6a056eda0 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/sim.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/simeq.png b/apps/documenteditor/main/resources/help/en/images/symbols/simeq.png new file mode 100644 index 000000000..eade7ebc9 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/simeq.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/smash.png b/apps/documenteditor/main/resources/help/en/images/symbols/smash.png new file mode 100644 index 000000000..90896057d Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/smash.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/smile.png b/apps/documenteditor/main/resources/help/en/images/symbols/smile.png new file mode 100644 index 000000000..83b716c6c Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/smile.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/spadesuit.png b/apps/documenteditor/main/resources/help/en/images/symbols/spadesuit.png new file mode 100644 index 000000000..3bdec8945 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/spadesuit.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/sqcap.png b/apps/documenteditor/main/resources/help/en/images/symbols/sqcap.png new file mode 100644 index 000000000..4cf43990e Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/sqcap.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/sqcup.png b/apps/documenteditor/main/resources/help/en/images/symbols/sqcup.png new file mode 100644 index 000000000..426d02fdc Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/sqcup.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/sqrt.png b/apps/documenteditor/main/resources/help/en/images/symbols/sqrt.png new file mode 100644 index 000000000..0acfaa8ed Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/sqrt.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/sqsubseteq.png b/apps/documenteditor/main/resources/help/en/images/symbols/sqsubseteq.png new file mode 100644 index 000000000..14365cc02 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/sqsubseteq.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/sqsuperseteq.png b/apps/documenteditor/main/resources/help/en/images/symbols/sqsuperseteq.png new file mode 100644 index 000000000..6db6d42fb Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/sqsuperseteq.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/star.png b/apps/documenteditor/main/resources/help/en/images/symbols/star.png new file mode 100644 index 000000000..1f15f019f Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/star.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/subset.png b/apps/documenteditor/main/resources/help/en/images/symbols/subset.png new file mode 100644 index 000000000..f23368a90 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/subset.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/subseteq.png b/apps/documenteditor/main/resources/help/en/images/symbols/subseteq.png new file mode 100644 index 000000000..d867e2df0 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/subseteq.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/succ.png b/apps/documenteditor/main/resources/help/en/images/symbols/succ.png new file mode 100644 index 000000000..6b7c0526b Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/succ.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/succeq.png b/apps/documenteditor/main/resources/help/en/images/symbols/succeq.png new file mode 100644 index 000000000..22eff46c6 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/succeq.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/sum.png b/apps/documenteditor/main/resources/help/en/images/symbols/sum.png new file mode 100644 index 000000000..44106f72f Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/sum.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/superset.png b/apps/documenteditor/main/resources/help/en/images/symbols/superset.png new file mode 100644 index 000000000..67f46e1ad Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/superset.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/superseteq.png b/apps/documenteditor/main/resources/help/en/images/symbols/superseteq.png new file mode 100644 index 000000000..89521782c Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/superseteq.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/swarrow.png b/apps/documenteditor/main/resources/help/en/images/symbols/swarrow.png new file mode 100644 index 000000000..66df3fa2a Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/swarrow.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/tau.png b/apps/documenteditor/main/resources/help/en/images/symbols/tau.png new file mode 100644 index 000000000..abd5bf872 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/tau.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/tau2.png b/apps/documenteditor/main/resources/help/en/images/symbols/tau2.png new file mode 100644 index 000000000..f15d8e443 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/tau2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/therefore.png b/apps/documenteditor/main/resources/help/en/images/symbols/therefore.png new file mode 100644 index 000000000..d3f02aba3 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/therefore.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/theta.png b/apps/documenteditor/main/resources/help/en/images/symbols/theta.png new file mode 100644 index 000000000..d2d89e82b Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/theta.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/theta2.png b/apps/documenteditor/main/resources/help/en/images/symbols/theta2.png new file mode 100644 index 000000000..13f05f84f Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/theta2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/tilde.png b/apps/documenteditor/main/resources/help/en/images/symbols/tilde.png new file mode 100644 index 000000000..1b08ef3a8 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/tilde.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/times.png b/apps/documenteditor/main/resources/help/en/images/symbols/times.png new file mode 100644 index 000000000..da3afaf8b Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/times.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/to.png b/apps/documenteditor/main/resources/help/en/images/symbols/to.png new file mode 100644 index 000000000..0df492f97 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/to.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/top.png b/apps/documenteditor/main/resources/help/en/images/symbols/top.png new file mode 100644 index 000000000..afbe5b832 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/top.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/tvec.png b/apps/documenteditor/main/resources/help/en/images/symbols/tvec.png new file mode 100644 index 000000000..ee71f7105 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/tvec.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/ubar.png b/apps/documenteditor/main/resources/help/en/images/symbols/ubar.png new file mode 100644 index 000000000..e27b66816 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/ubar.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/ubar2.png b/apps/documenteditor/main/resources/help/en/images/symbols/ubar2.png new file mode 100644 index 000000000..63c20216a Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/ubar2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/underbar.png b/apps/documenteditor/main/resources/help/en/images/symbols/underbar.png new file mode 100644 index 000000000..938c658e5 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/underbar.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/underbrace.png b/apps/documenteditor/main/resources/help/en/images/symbols/underbrace.png new file mode 100644 index 000000000..f2c080b58 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/underbrace.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/underbracket.png b/apps/documenteditor/main/resources/help/en/images/symbols/underbracket.png new file mode 100644 index 000000000..a78aa1cdc Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/underbracket.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/underline.png b/apps/documenteditor/main/resources/help/en/images/symbols/underline.png new file mode 100644 index 000000000..b55100731 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/underline.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/underparen.png b/apps/documenteditor/main/resources/help/en/images/symbols/underparen.png new file mode 100644 index 000000000..ccaac1590 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/underparen.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/uparrow.png b/apps/documenteditor/main/resources/help/en/images/symbols/uparrow.png new file mode 100644 index 000000000..eccaa488d Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/uparrow.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/uparrow2.png b/apps/documenteditor/main/resources/help/en/images/symbols/uparrow2.png new file mode 100644 index 000000000..3cff2b9de Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/uparrow2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/updownarrow.png b/apps/documenteditor/main/resources/help/en/images/symbols/updownarrow.png new file mode 100644 index 000000000..65ea76252 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/updownarrow.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/updownarrow2.png b/apps/documenteditor/main/resources/help/en/images/symbols/updownarrow2.png new file mode 100644 index 000000000..c10bc8fef Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/updownarrow2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/uplus.png b/apps/documenteditor/main/resources/help/en/images/symbols/uplus.png new file mode 100644 index 000000000..39109a95b Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/uplus.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/upsilon.png b/apps/documenteditor/main/resources/help/en/images/symbols/upsilon.png new file mode 100644 index 000000000..e69b7226c Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/upsilon.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/upsilon2.png b/apps/documenteditor/main/resources/help/en/images/symbols/upsilon2.png new file mode 100644 index 000000000..2012f0408 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/upsilon2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/varepsilon.png b/apps/documenteditor/main/resources/help/en/images/symbols/varepsilon.png new file mode 100644 index 000000000..1788b80e9 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/varepsilon.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/varphi.png b/apps/documenteditor/main/resources/help/en/images/symbols/varphi.png new file mode 100644 index 000000000..ebcb44f39 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/varphi.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/varpi.png b/apps/documenteditor/main/resources/help/en/images/symbols/varpi.png new file mode 100644 index 000000000..82e5e48bd Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/varpi.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/varrho.png b/apps/documenteditor/main/resources/help/en/images/symbols/varrho.png new file mode 100644 index 000000000..d719b4e0c Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/varrho.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/varsigma.png b/apps/documenteditor/main/resources/help/en/images/symbols/varsigma.png new file mode 100644 index 000000000..b154dede3 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/varsigma.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/vartheta.png b/apps/documenteditor/main/resources/help/en/images/symbols/vartheta.png new file mode 100644 index 000000000..5e49bc074 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/vartheta.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/vbar.png b/apps/documenteditor/main/resources/help/en/images/symbols/vbar.png new file mode 100644 index 000000000..197c22ee5 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/vbar.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/vdash.png b/apps/documenteditor/main/resources/help/en/images/symbols/vdash.png new file mode 100644 index 000000000..2387c2d76 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/vdash.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/vdots.png b/apps/documenteditor/main/resources/help/en/images/symbols/vdots.png new file mode 100644 index 000000000..1220d68b5 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/vdots.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/vec.png b/apps/documenteditor/main/resources/help/en/images/symbols/vec.png new file mode 100644 index 000000000..0a50d9fe6 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/vec.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/vee.png b/apps/documenteditor/main/resources/help/en/images/symbols/vee.png new file mode 100644 index 000000000..be2573ef8 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/vee.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/vert.png b/apps/documenteditor/main/resources/help/en/images/symbols/vert.png new file mode 100644 index 000000000..adc50b15c Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/vert.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/vert2.png b/apps/documenteditor/main/resources/help/en/images/symbols/vert2.png new file mode 100644 index 000000000..915abac55 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/vert2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/vmatrix.png b/apps/documenteditor/main/resources/help/en/images/symbols/vmatrix.png new file mode 100644 index 000000000..e8dba6fd2 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/vmatrix.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/vphantom.png b/apps/documenteditor/main/resources/help/en/images/symbols/vphantom.png new file mode 100644 index 000000000..fd8194604 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/vphantom.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/wedge.png b/apps/documenteditor/main/resources/help/en/images/symbols/wedge.png new file mode 100644 index 000000000..34e02a584 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/wedge.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/wp.png b/apps/documenteditor/main/resources/help/en/images/symbols/wp.png new file mode 100644 index 000000000..00c630d38 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/wp.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/wr.png b/apps/documenteditor/main/resources/help/en/images/symbols/wr.png new file mode 100644 index 000000000..bceef6f19 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/wr.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/xi.png b/apps/documenteditor/main/resources/help/en/images/symbols/xi.png new file mode 100644 index 000000000..f83b1dfd2 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/xi.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/xi2.png b/apps/documenteditor/main/resources/help/en/images/symbols/xi2.png new file mode 100644 index 000000000..4c59fd3e2 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/xi2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/zeta.png b/apps/documenteditor/main/resources/help/en/images/symbols/zeta.png new file mode 100644 index 000000000..aaf47b628 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/zeta.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/symbols/zeta2.png b/apps/documenteditor/main/resources/help/en/images/symbols/zeta2.png new file mode 100644 index 000000000..fb04db0ab Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/symbols/zeta2.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/table_properties_3.png b/apps/documenteditor/main/resources/help/en/images/table_properties_3.png index 0e17aed4c..15c3fa5a7 100644 Binary files a/apps/documenteditor/main/resources/help/en/images/table_properties_3.png and b/apps/documenteditor/main/resources/help/en/images/table_properties_3.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/watermark_settings.png b/apps/documenteditor/main/resources/help/en/images/watermark_settings.png index 0c7fb12db..e7e338ff3 100644 Binary files a/apps/documenteditor/main/resources/help/en/images/watermark_settings.png and b/apps/documenteditor/main/resources/help/en/images/watermark_settings.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/watermark_settings2.png b/apps/documenteditor/main/resources/help/en/images/watermark_settings2.png index ed6786612..34a1c2cea 100644 Binary files a/apps/documenteditor/main/resources/help/en/images/watermark_settings2.png and b/apps/documenteditor/main/resources/help/en/images/watermark_settings2.png differ diff --git a/apps/documenteditor/main/resources/help/en/search/indexes.js b/apps/documenteditor/main/resources/help/en/search/indexes.js index 348d7c714..7dbcce905 100644 --- a/apps/documenteditor/main/resources/help/en/search/indexes.js +++ b/apps/documenteditor/main/resources/help/en/search/indexes.js @@ -3,301 +3,311 @@ var indexes = { "id": "HelpfulHints/About.htm", "title": "About Document Editor", - "body": "Document Editor is an online application that lets you look through and edit documents directly in your browser . Using Document Editor, you can perform various editing operations like in any desktop editor, print the edited documents keeping all the formatting details or download them onto your computer hard disk drive as DOCX, PDF, ODT, TXT, DOTX, PDF/A, OTT, RTF, HTML files. To view the current software version and licensor details in the online version, click the icon at the left sidebar. To view the current software version and licensor details in the desktop version, select the About menu item at the left sidebar of the main program window." + "body": "About the Document Editor The Document Editor is an online application that allows you to view through and edit documents directly in your browser . Using the Document Editor, you can perform various editing operations like in any desktop editor, print the edited documents keeping all the formatting details or download them onto your computer hard disk drive of your computer as DOCX, PDF, ODT, TXT, DOTX, PDF/A, OTT, RTF, HTML files. To view the current software version and licensor details in the online version, click the icon on the left sidebar. To view the current software version and licensor details in the desktop version, select the About menu item on the left sidebar of the main program window." }, { "id": "HelpfulHints/AdvancedSettings.htm", "title": "Advanced Settings of Document Editor", - "body": "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 click the View settings icon on the right side of the editor header and select the Advanced settings option. The advanced settings are: Commenting Display is used to turn on/off the live commenting option: Turn on display of the comments - if you disable this feature, the commented passages will be highlighted only if you click the Comments icon at the left sidebar. Turn on display of the resolved comments - this feature is disabled by default so that the resolved comments were hidden in the document text. You can view such comments only if you click the Comments icon at the left sidebar. Enable this option if you want to display resolved comments in the document text. 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 page precisely. Compatibility is used to make the files compatible with older MS Word versions when saved as DOCX. Autosave is used in the online version to turn on/off automatic saving of changes you make while editing. Autorecover - is used in the desktop version to turn on/off the option that allows to automatically recover documents in case of the unexpected program closing. Co-editing Mode is used to select the display of the changes made during the co-editing: By default the Fast mode is selected, the users who take part in the document co-editing will see the changes in real time once they are made by other users. If you prefer not to see other user changes (so that they do not disturb you, or for some other reason), select the Strict mode and all the changes will be shown only after you click the Save icon notifying you that there are changes from other users. Real-time 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. Selecting the View Last option, only the changes made since you last time clicked the Save icon will be highlighted. This option is only available when the Strict co-editing mode is selected. Default Zoom Value is used to set the default zoom value selecting it in the list of available options from 50% to 200%. You can also choose the Fit to Page or Fit to Width option. Font Hinting is used to select the type a font is displayed in Document Editor: Choose As Windows if you like the way fonts are usually displayed on Windows, i.e. using Windows font hinting. Choose As OS X if you like the way fonts are usually displayed on a Mac, i.e. without any font hinting at all. Choose Native if you want your text to be displayed with the hinting embedded into font files. Default cache mode - used to select the cache mode for the font characters. It’s not recommended to switch it without any reason. It can be helpful in some cases only, for example, when an issue in the Google Chrome browser with the enabled hardware acceleration occurs. Document Editor has two cache modes: In the first cache mode, each letter is cached as a separate picture. In the second cache mode, a picture of a certain size is selected where letters are placed dynamically and a mechanism of allocating/removing memory in this picture is also implemented. If there is not enough memory, a second picture is created, etc. The Default cache mode setting applies two above mentioned cache modes separately for different browsers: When the Default cache mode setting is enabled, Internet Explorer (v. 9, 10, 11) uses the second cache mode, other browsers use the first cache mode. When the Default cache mode setting is disabled, Internet Explorer (v. 9, 10, 11) uses the first cache mode, other browsers use the second cache mode. Unit of Measurement is used to specify what units are used on the rulers and in properties windows for measuring elements parameters such as width, height, spacing, margins etc. You can select the Centimeter, Point, or Inch option. To save the changes you made, click the Apply button." + "body": "Advanced Settings of the Document Editor The Document Editor allows you to change its advanced settings. To access them, open the File tab on the top toolbar and select the Advanced Settings... option. You can also click the View settings icon on the right side of the editor header and select the Advanced settings option. The advanced settings are: Commenting Display is used to turn on/off the live commenting option: Turn on display of the comments - if you disable this feature, the commented passages will be highlighted only if you click the Comments icon on the left sidebar. Turn on display of the resolved comments - this feature is disabled by default so that the resolved comments were hidden in the document text. You can view such comments only if you click the Comments icon on the left sidebar. Enable this option if you want to display resolved comments in the document text. Spell Checking is used to turn on/off the spell checking option. Proofing - used to automatically replace word or symbol typed in the Replace: box or chosen from the list by a new word or symbol displayed in the By: box. 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 page precisely. Compatibility is used to make the files compatible with older MS Word versions when saved as DOCX. Autosave is used in the online version to turn on/off automatic saving of changes you make while editing. Autorecover - is used in the desktop version to turn on/off the option that allows automatically recovering documents in case the program closes unexpectedly. Co-editing Mode is used to select the display of the changes made during the co-editing: By default the Fast mode is selected, the users who take part in the document co-editing will see the changes in real time once they are made by other users. If you prefer not to see other user changes (so that they do not disturb you, or for some other reason), select the Strict mode and all the changes will be shown only after you click the Save icon notifying you that there are changes from other users. Real-time 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. Selecting the View Last option, only the changes made since you last time clicked the Save icon will be highlighted. This option is only available when the Strict co-editing mode is selected. Default Zoom Value is used to set the default zoom value selecting it in the list of available options from 50% to 200%. You can also choose the Fit to Page or Fit to Width option. Font Hinting is used to select the type a font is displayed in the Document Editor: Choose As Windows if you like the way fonts are usually displayed on Windows, i.e. using Windows font hinting. Choose As OS X if you like the way fonts are usually displayed on a Mac, i.e. without any font hinting at all. Choose Native if you want your text to be displayed with the hinting embedded into font files. Default cache mode - used to select the cache mode for the font characters. It’s not recommended to switch it without any reason. It can be helpful in some cases only, for example, when an issue in the Google Chrome browser with the enabled hardware acceleration occurs. The Document Editor has two cache modes: In the first cache mode, each letter is cached as a separate picture. In the second cache mode, a picture of a certain size is selected where letters are placed dynamically and a mechanism of allocating/removing memory in this picture is also implemented. If there is not enough memory, a second picture is created, etc. The Default cache mode setting applies two above mentioned cache modes separately for different browsers: When the Default cache mode setting is enabled, Internet Explorer (v. 9, 10, 11) uses the second cache mode, other browsers use the first cache mode. When the Default cache mode setting is disabled, Internet Explorer (v. 9, 10, 11) uses the first cache mode, other browsers use the second cache mode. Unit of Measurement is used to specify what units are used on the rulers and in properties windows for measuring elements parameters such as width, height, spacing, margins etc. You can select the Centimeter, Point, or Inch option. Cut, copy and paste - used to show the Paste Options button when content is pasted. Check the box to enable this feature. Macros Settings - used to set macros display with a notification. Choose Disable all to disable all macros within the document; Show notification to receive notifications about macros within the document; Enable all to automatically run all macros within the document. To save the changes you made, click the Apply button." }, { "id": "HelpfulHints/CollaborativeEditing.htm", "title": "Collaborative Document Editing", - "body": "Document Editor offers you the possibility to work at a document collaboratively with other users. This feature includes: simultaneous multi-user access to the edited document visual indication of passages that are being edited by other users real-time changes display or synchronization of changes with one button click chat to share ideas concerning particular document parts comments containing the description of a task or problem that should be solved (it's also possible to work with comments in the offline mode, without connecting to the online version) Connecting to the online version In the desktop editor, open the Connect to cloud option of the left-side menu in the main program window. Connect to your cloud office specifying your account login and password. 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 real time. Strict is selected to hide other user changes until you click the Save icon to save your own changes and accept the changes made by others. The mode can be selected in the Advanced Settings. It's also possible to choose the necessary mode using the Co-editing Mode icon at the Collaboration tab of the top toolbar: Note: when you co-edit a document in the Fast mode, the possibility to Redo the last undone operation is not available. 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 on the right side of the editor header - . 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 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, comment, fill forms 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 . It's also possible to set access rights using the Sharing icon at the Collaboration tab of the top toolbar. As soon as one of the users saves his/her changes by clicking the 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 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 tab at the top toolbar, select the Advanced Settings... option and choose between none, all and last real-time 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 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. To access the chat and leave a message for other users, click the icon at the left sidebar, or switch to the Collaboration tab of the top toolbar and click the Chat button, enter your text into the corresponding field below, press the Send button. All the messages left by users will be displayed on the panel on the left. If there are new messages you haven't read yet, the chat icon will look like this - . To close the panel with chat messages, click the icon at the left sidebar or the Chat button at the top toolbar once again. Comments It's possible to work with comments in the offline mode, without connecting to the online version. To leave a comment, select a text passage where you think there is an error or problem, switch to the Insert or Collaboration tab of the top toolbar and click the Comment button, or use the 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 contextual menu, enter the needed text, click the Add Comment/Add button. The comment will be seen on the Comments 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, type in your reply text in the entry field and press the Reply button. If you are using the Strict co-editing mode, new comments added by other users will become visible only after you click the icon in the left upper corner of the top toolbar. 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 icon. You can manage the added comments using the icons in the comment balloon or at the Comments panel on the left: edit the currently selected comment by clicking the icon, delete the currently selected comment by clicking the icon, close the currently selected discussion by clicking the 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 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 icon. Adding mentions When entering comments, you can use the mentions feature that allows to attract somebody's attention to the comment and send a notification to the mentioned user via email and Talk. To add a mention enter the \"+\" or \"@\" sign anywhere in the comment text - a list of the portal users will open. To simplify the search process, you can start typing a name in the comment field - the user list will change as you type. Select the necessary person from the list. If the file has not yet been shared with the mentioned user, the Sharing Settings window will open. Read only access type is selected by default. Change it if necessary and click OK. The mentioned user will receive an email notification that he/she has been mentioned in a comment. If the file has been shared, the user will also receive a corresponding notification. To remove comments, click the Remove button at the Collaboration tab of the top toolbar, select the necessary option from the menu: Remove Current Comments - to remove the currently selected comment. If some replies have been added to the comment, all its replies will be removed as well. Remove My Comments - to remove comments you added without removing comments added by other users. If some replies have been added to your comment, all its replies will be removed as well. Remove All Comments - to remove all the comments in the document that you and other users added. To close the panel with comments, click the icon at the left sidebar once again." + "body": "The Document Editor allows you to collaboratively work on a document with other users. This feature includes: simultaneous multi-user access to the document to be edited visual indication of passages that are being edited by other users real-time display of changes or synchronization of changes with one button click chat to share ideas concerning particular parts of the document comments with the description of a task or problem that should be solved (it's also possible to work with comments in the offline mode, without connecting to the online version) Connecting to the online version In the desktop editor, open the Connect to cloud option of the left-side menu in the main program window. Connect to your cloud office specifying your account login and password. Co-editing The Document Editor allows you to select one of the two available co-editing modes: Fast is used by default and shows the changes made by other users in real time. Strict is selected to hide changes made by other users until you click the Save icon to save your own changes and accept the changes made by co-authors. The mode can be selected in the Advanced Settings. It's also possible to choose the required mode using the Co-editing Mode icon on the Collaboration tab of the top toolbar: Note: when you co-edit a document in the Fast mode, the possibility to Redo the last undone operation is not available. 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 when they are editing the text. The number of users who are working on the current document is displayed on the right side of the editor header - . If you want to see who exactly is 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 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, comment, fill forms 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 . It's also possible to set access rights using the Sharing icon at the Collaboration tab of the top toolbar. As soon as one of the users saves his/her changes by clicking the 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 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 tab on the top toolbar, select the Advanced Settings... option and choose between none, all and last real-time 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 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 distribute tasks and paragraphs to be edited by the collaborators, 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 they are deleted. To access the chat and leave a message for other users, click the icon on the left sidebar, or switch to the Collaboration tab of the top toolbar and click the Chat button, enter your text into the corresponding field below, press the Send button. All the messages left by users will be displayed on the panel on the left. If there are new messages you haven't read yet, the chat icon will look like this - . To close the panel with chat messages, click the icon on the left sidebar or the Chat button at the top toolbar once again. Comments It's possible to work with comments in the offline mode, without connecting to the online version. To leave a comment, select a text passage where you think there is an error or problem, switch to the Insert or Collaboration tab of the top toolbar and click the Comment button, or use the icon on 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 contextual menu, enter the required text, click the Add Comment/Add button. The comment will be seen on the Comments panel on the left. Any other user can answer 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, type in your reply in the entry field and press the Reply button. If you are using the Strict co-editing mode, new comments added by other users will become visible only after you click the icon in the left upper corner of the top toolbar. 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 icon. You can manage the added comments using the icons in the comment balloon or on the Comments panel on the left: edit the currently selected comment by clicking the icon, delete the currently selected comment by clicking the icon, close the currently selected discussion by clicking the 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 icon. If you want to hide resolved comments, click the File tab on 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 icon. Adding mentions When entering comments, you can use the mentions feature that allows you to attract somebody's attention to the comment and send a notification to the mentioned user via email and Talk. To add a mention enter the \"+\" or \"@\" sign anywhere in the comment text - a list of the portal users will open. To simplify the search process, you can start typing a name in the comment field - the user list will change as you type. Select the necessary person from the list. If the file has not yet been shared with the mentioned user, the Sharing Settings window will open. Read only access type is selected by default. Change it if necessary and click OK. The mentioned user will receive an email notification that he/she has been mentioned in a comment. If the file has been shared, the user will also receive a corresponding notification. To remove comments, click the Remove button on the Collaboration tab of the top toolbar, select the necessary option from the menu: Remove Current Comments - to remove the currently selected comment. If some replies have been added to the comment, all its replies will be removed as well. Remove My Comments - to remove comments you added without removing comments added by other users. If some replies have been added to your comment, all its replies will be removed as well. Remove All Comments - to remove all the comments in the document that you and other users added. To close the panel with comments, click the icon on the left sidebar once again." }, { "id": "HelpfulHints/Comparison.htm", "title": "Compare documents", - "body": "Note: this option is available in the paid online version only starting from Document Server v. 5.5. If you need to compare and merge two documents, you can use the document Compare feature. It allows to display the differences between two documents and merge the documents by accepting the changes one by one or all at once. After comparing and merging two documents, the result will be stored on the portal as a new version of the original file. If you do not need to merge documents which are being compared, you can reject all the changes so that the original document remains unchanged. Choose a document for comparison To compare two documents, open the original document that you need to compare and select the second document for comparison: switch to the Collaboration tab at the top toolbar and press the Compare button, select one of the following options to load the document: the Document from File option will open the standard dialog window for file selection. Browse your computer hard disk drive for the necessary .docx file and click the Open button. the Document from URL option will open the window where you can enter a link to the file stored in a third-party web storage (for example, Nextcloud) if you have corresponding access rights to it. The link must be a direct link for downloading the file. When the link is specified, click the OK button. Note: The direct link allows to download the file directly without opening it in a web browser. For example, to get a direct link in Nextcloud, find the necessary document in the file list, select the Details option from the file menu. Click the Copy direct link (only works for users who have access to this file/folder) icon to the right of the file name at the details panel. To find out how to get a direct link for downloading the file in a different third-party web storage, please refer to the corresponding third-party service documentation. the Document from Storage option will open the Select Data Source window. It displays the list of all the .docx documents stored on your portal you have corresponding access rights to. To navigate between the Documents module sections use the menu in the left part of the window. Select the necessary .docx document and click the OK button. When the second document for comparison is selected, the comparison process will start and the document will look as if it was opened in the Review mode. All the changes are highlighted with a color, and you can view the changes, navigate between them, accept or reject them one by one or all the changes at once. It's also possible to change the display mode and see how the document looks before comparison, in the process of comparison, or how it will look after comparison if you accept all changes. Choose the changes display mode Click the Display Mode button at the top toolbar and select one of the available modes from the list: Markup - this option is selected by default. It is used to display the document in the process of comparison. This mode allows both to view the changes and edit the document. Final - this mode is used to display the document after comparison as if all the changes 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. Original - this mode is used to display the document before comparison as if all the changes 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 Previous and the Next buttons at the top toolbar to navigate among the changes. To accept the currently selected change you can: click the 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 button of the change pop-up window. To quickly accept all the changes, click the downward arrow below the Accept button and select the Accept All Changes option. To reject the current change you can: click the 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 button of the change pop-up window. To quickly reject all the changes, click the downward arrow below the Reject button and select the Reject All Changes option. Additional info on the comparison feature Method of the comparison Documents are compared by words. If a word contains a change of at least one character (e.g. if a character was removed or replaced), in the result, the difference will be displayed as the change of the entire word, not the character. The image below illustrates the case when the original file contains the word 'Characters' and the document for comparison contains the word 'Character'. Authorship of the document When the comparison process is launched, the second document for comparison is being loaded and compared to the current one. If the loaded document contains some data which is not represented in the original document, the data will be marked as added by a reviewer. If the original document contains some data which is not represented in the loaded document, the data will be marked as deleted by a reviewer. If the authors of the original and loaded documents are the same person, the reviewer is the same user. His/her name is displayed in the change balloon. If the authors of two files are different users, then the author of the second file loaded for comparison is the author of the added/removed changes. Presence of the tracked changes in the compared document If the original document contains some changes made in the review mode, they will be accepted in the comparison process. When you choose the second file for comparison, you'll see the corresponding warning message. In this case, when you choose the Original display mode, the document will not contain any changes." + "body": "Note: this option is available in the paid online version only starting from Document Server v. 5.5. If you need to compare and merge two documents, you can use the document Compare feature. It allows displaying the differences between two documents and merge the documents by accepting the changes one by one or all at once. After comparing and merging two documents, the result will be stored on the portal as a new version of the original file. If you do not need to merge documents which are being compared, you can reject all the changes so that the original document remains unchanged. Choose a document for comparison To compare two documents, open the original document that you need to compare and select the second document for comparison: switch to the Collaboration tab on the top toolbar and press the Compare button, select one of the following options to load the document: the Document from File option will open the standard dialog window for file selection. Browse your computer hard disk drive for the necessary .docx file and click the Open button. the Document from URL option will open the window where you can enter a link to the file stored in a third-party web storage (for example, Nextcloud) if you have corresponding access rights to it. The link must be a direct link for downloading the file. When the link is specified, click the OK button. Note: The direct link allows downloading the file directly without opening it in a web browser. For example, to get a direct link in Nextcloud, find the necessary document in the file list, select the Details option from the file menu. Click the Copy direct link (only works for users who have access to this file/folder) icon on the right of the file name on the details panel. To find out how to get a direct link for downloading the file in a different third-party web storage, please refer to the corresponding third-party service documentation. the Document from Storage option will open the Select Data Source window. It displays the list of all the .docx documents stored on your portal you have corresponding access rights to. To navigate through the sections of the Documents module, use the menu on the left part of the window. Select the necessary .docx document and click the OK button. When the second document for comparison is selected, the comparison process will start and the document will look as if it was opened in the Review mode. All the changes are highlighted with a color, and you can view the changes, navigate between them, accept or reject them one by one or all the changes at once. It's also possible to change the display mode and see how the document looks before comparison, in the process of comparison, or how it will look after comparison if you accept all changes. Choose the changes display mode Click the Display Mode button on the top toolbar and select one of the available modes from the list: Markup - this option is selected by default. It is used to display the document in the process of comparison. This mode allows both viewing the changes and editing the document. Final - this mode is used to display the document after comparison as if all the changes 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. Original - this mode is used to display the document before comparison as if all the changes 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 Previous and the Next buttons on the top toolbar to navigate through the changes. To accept the currently selected change, you can: click the Accept button on 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 button of the change pop-up window. To quickly accept all the changes, click the downward arrow below the Accept button and select the Accept All Changes option. To reject the current change you can: click the Reject button on 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 button of the change pop-up window. To quickly reject all the changes, click the downward arrow below the Reject button and select the Reject All Changes option. Additional info on the comparison feature Method of comparison Documents are compared by words. If a word contains a change of at least one character (e.g. if a character was removed or replaced), in the result, the difference will be displayed as the change of the entire word, not the character. The image below illustrates the case when the original file contains the word 'Characters' and the document for comparison contains the word 'Character'. Authorship of the document When the comparison process is launched, the second document for comparison is being loaded and compared to the current one. If the loaded document contains some data which is not represented in the original document, the data will be marked as added by a reviewer. If the original document contains some data which is not represented in the loaded document, the data will be marked as deleted by a reviewer. If the authors of the original and loaded documents are the same person, the reviewer is the same user. His/her name is displayed in the change balloon. If the authors of two files are different users, then the author of the second file loaded for comparison is the author of the added/removed changes. Presence of the tracked changes in the compared document If the original document contains some changes made in the review mode, they will be accepted in the comparison process. When you choose the second file for comparison, you'll see the corresponding warning message. In this case, when you choose the Original display mode, the document will not contain any changes." }, { "id": "HelpfulHints/KeyboardShortcuts.htm", "title": "Keyboard Shortcuts", - "body": "Windows/LinuxMac OS Working with Document Open 'File' panel Alt+F ⌥ Option+F Open the File panel to save, download, print the current document, view its info, create a new document or open an existing one, access Document Editor help or advanced settings. Open 'Find and Replace' dialog box Ctrl+F ^ Ctrl+F, ⌘ Cmd+F Open the Find and Replace dialog box to start searching for a character/word/phrase in the currently edited document. Open 'Find and Replace' dialog box with replacement field Ctrl+H ^ Ctrl+H Open the Find and Replace dialog box with the replacement field to replace one or more occurrences of the found characters. Repeat the last 'Find' action ⇧ Shift+F4 ⇧ Shift+F4, ⌘ Cmd+G, ⌘ Cmd+⇧ Shift+F4 Repeat the Find action which has been performed before the key combination press. Open 'Comments' panel Ctrl+⇧ Shift+H ^ Ctrl+⇧ Shift+H, ⌘ Cmd+⇧ Shift+H Open the Comments panel to add your own comment or reply to other users' comments. Open comment field Alt+H ⌥ Option+H Open a data entry field where you can add the text of your comment. Open 'Chat' panel Alt+Q ⌥ Option+Q Open the Chat panel and send a message. Save document Ctrl+S ^ Ctrl+S, ⌘ Cmd+S Save all the changes to the document currently edited with Document Editor. The active file will be saved with its current file name, location, and file format. Print document Ctrl+P ^ Ctrl+P, ⌘ Cmd+P Print the document with one of the available printers or save it to a file. Download As... Ctrl+⇧ Shift+S ^ Ctrl+⇧ Shift+S, ⌘ Cmd+⇧ Shift+S Open the Download as... panel to save the currently edited document to the computer hard disk drive in one of the supported formats: DOCX, PDF, ODT, TXT, DOTX, PDF/A, OTT, RTF, HTML. Full screen F11 Switch to the full screen view to fit Document Editor into your screen. Help menu F1 F1 Open Document Editor Help menu. Open existing file (Desktop Editors) Ctrl+O On the Open local file tab in Desktop Editors, opens the standard dialog box that allows to select an existing file. Close file (Desktop Editors) Ctrl+W, Ctrl+F4 ^ Ctrl+W, ⌘ Cmd+W Close the current document window in Desktop Editors. Element contextual menu ⇧ Shift+F10 ⇧ Shift+F10 Open the selected element contextual menu. Navigation Jump to the beginning of the line Home Home Put the cursor to the beginning of the currently edited line. Jump to the beginning of the document Ctrl+Home ^ Ctrl+Home Put the cursor to the very beginning of the currently edited document. Jump to the end of the line End End Put the cursor to the end of the currently edited line. Jump to the end of the document Ctrl+End ^ Ctrl+End Put the cursor to the very end of the currently edited document. Jump to the beginning of the previous page Alt+Ctrl+Page Up Put the cursor to the very beginning of the page which preceeds the currently edited one. Jump to the beginning of the next page Alt+Ctrl+Page Down ⌥ Option+⌘ Cmd+⇧ Shift+Page Down Put the cursor to the very beginning of the page which follows the currently edited one. Scroll down Page Down Page Down, ⌥ Option+Fn+↑ Scroll the document approximately one visible page down. Scroll up Page Up Page Up, ⌥ Option+Fn+↓ Scroll the document approximately one visible page up. Next page Alt+Page Down ⌥ Option+Page Down Go to the next page in the currently edited document. Previous page Alt+Page Up ⌥ Option+Page Up Go to the previous page in the currently edited document. Zoom In Ctrl++ ^ Ctrl+=, ⌘ Cmd+= Zoom in the currently edited document. Zoom Out Ctrl+- ^ Ctrl+-, ⌘ Cmd+- Zoom out the currently edited document. Move one character to the left ← ← Move the cursor one character to the left. Move one character to the right → → Move the cursor one character to the right. Move to the beginning of a word or one word to the left Ctrl+← ^ Ctrl+←, ⌘ Cmd+← Move the cursor to the beginning of a word or one word to the left. Move one word to the right Ctrl+→ ^ Ctrl+→, ⌘ Cmd+→ Move the cursor one word to the right. Move one line up ↑ ↑ Move the cursor one line up. Move one line down ↓ ↓ Move the cursor one line down. Writing End paragraph ↵ Enter ↵ Return End the current paragraph and start a new one. Add line break ⇧ Shift+↵ Enter ⇧ Shift+↵ Return Add a line break without starting a new paragraph. Delete ← Backspace, Delete ← Backspace, Delete Delete one character to the left (← Backspace) or to the right (Delete) of the cursor. Delete word to the left of cursor Ctrl+← Backspace ^ Ctrl+← Backspace, ⌘ Cmd+← Backspace Delete one word to the left of the cursor. Delete word to the right of cursor Ctrl+Delete ^ Ctrl+Delete, ⌘ Cmd+Delete Delete one word to the right of the cursor. Create nonbreaking space Ctrl+⇧ Shift+␣ Spacebar ^ Ctrl+⇧ Shift+␣ Spacebar Create a space between characters which cannot be used to start a new line. Create nonbreaking hyphen Ctrl+⇧ Shift+Hyphen ^ Ctrl+⇧ Shift+Hyphen Create a hyphen between characters which cannot be used to start a new line. Undo and Redo Undo Ctrl+Z ^ Ctrl+Z, ⌘ Cmd+Z Reverse the latest performed action. Redo Ctrl+Y ^ Ctrl+Y, ⌘ Cmd+Y, ⌘ Cmd+⇧ Shift+Z Repeat the latest undone action. Cut, Copy, and Paste Cut Ctrl+X, ⇧ Shift+Delete ⌘ Cmd+X, ⇧ Shift+Delete Delete the selected text fragment and send it to the computer clipboard memory. The copied text can be later inserted to another place in the same document, into another document, or into some other program. Copy Ctrl+C, Ctrl+Insert ⌘ Cmd+C Send the selected text fragment to the computer clipboard memory. The copied text can be later inserted to another place in the same document, into another document, or into some other program. Paste Ctrl+V, ⇧ Shift+Insert ⌘ Cmd+V Insert the previously copied text fragment from the computer clipboard memory to the current cursor position. The text can be previously copied from the same document, from another document, or from some other program. Insert hyperlink Ctrl+K ⌘ Cmd+K Insert a hyperlink which can be used to go to a web address. Copy style Ctrl+⇧ Shift+C ⌘ Cmd+⇧ Shift+C Copy the formatting from the selected fragment of the currently edited text. The copied formatting can be later applied to another text fragment in the same document. Apply style Ctrl+⇧ Shift+V ⌘ Cmd+⇧ Shift+V Apply the previously copied formatting to the text in the currently edited document. Text Selection Select all Ctrl+A ⌘ Cmd+A Select all the document text with tables and images. Select fragment ⇧ Shift+→ ← ⇧ Shift+→ ← Select the text character by character. Select from cursor to beginning of line ⇧ Shift+Home ⇧ Shift+Home Select a text fragment from the cursor to the beginning of the current line. Select from cursor to end of line ⇧ Shift+End ⇧ Shift+End Select a text fragment from the cursor to the end of the current line. Select one character to the right ⇧ Shift+→ ⇧ Shift+→ Select one character to the right of the cursor position. Select one character to the left ⇧ Shift+← ⇧ Shift+← Select one character to the left of the cursor position. Select to the end of a word Ctrl+⇧ Shift+→ Select a text fragment from the cursor to the end of a word. Select to the beginning of a word Ctrl+⇧ Shift+← Select a text fragment from the cursor to the beginning of a word. Select one line up ⇧ Shift+↑ ⇧ Shift+↑ Select one line up (with the cursor at the beginning of a line). Select one line down ⇧ Shift+↓ ⇧ Shift+↓ Select one line down (with the cursor at the beginning of a line). Select the page up ⇧ Shift+Page Up ⇧ Shift+Page Up Select the page part from the cursor position to the upper part of the screen. Select the page down ⇧ Shift+Page Down ⇧ Shift+Page Down Select the page part from the cursor position to the lower part of the screen. Text Styling Bold Ctrl+B ^ Ctrl+B, ⌘ Cmd+B Make the font of the selected text fragment bold giving it more weight. Italic Ctrl+I ^ Ctrl+I, ⌘ Cmd+I Make the font of the selected text fragment italicized giving it some right side tilt. Underline Ctrl+U ^ Ctrl+U, ⌘ Cmd+U Make the selected text fragment underlined with the line going under the letters. Strikeout Ctrl+5 ^ Ctrl+5, ⌘ Cmd+5 Make the selected text fragment struck out with the line going through the letters. Subscript Ctrl+. ^ Ctrl+⇧ Shift+>, ⌘ Cmd+⇧ Shift+> 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+, ^ Ctrl+⇧ Shift+<, ⌘ Cmd+⇧ Shift+< Make the selected text fragment smaller and place it to the upper part of the text line, e.g. as in fractions. Heading 1 style Alt+1 ⌥ Option+^ Ctrl+1 Apply the style of the heading 1 to the selected text fragment. Heading 2 style Alt+2 ⌥ Option+^ Ctrl+2 Apply the style of the heading 2 to the selected text fragment. Heading 3 style Alt+3 ⌥ Option+^ Ctrl+3 Apply the style of the heading 3 to the selected text fragment. Bulleted list Ctrl+⇧ Shift+L ^ Ctrl+⇧ Shift+L, ⌘ Cmd+⇧ Shift+L Create an unordered bulleted list from the selected text fragment or start a new one. Remove formatting Ctrl+␣ Spacebar Remove formatting from the selected text fragment. Increase font Ctrl+] ⌘ Cmd+] Increase the size of the font for the selected text fragment 1 point. Decrease font Ctrl+[ ⌘ Cmd+[ Decrease the size of the font for the selected text fragment 1 point. Align center/left Ctrl+E ^ Ctrl+E, ⌘ Cmd+E Switch a paragraph between centered and left-aligned. Align justified/left Ctrl+J, Ctrl+L ^ Ctrl+J, ⌘ Cmd+J Switch a paragraph between justified and left-aligned. Align right/left Ctrl+R ^ Ctrl+R Switch a paragraph between right-aligned and left-aligned. Apply subscript formatting (automatic spacing) Ctrl+= Apply subscript formatting to the selected text fragment. Apply superscript formatting (automatic spacing) Ctrl+⇧ Shift++ Apply superscript formatting to the selected text fragment. Insert page break Ctrl+↵ Enter ^ Ctrl+↵ Return Insert a page break at the current cursor position. Increase indent Ctrl+M ^ Ctrl+M Indent a paragraph from the left incrementally. Decrease indent Ctrl+⇧ Shift+M ^ Ctrl+⇧ Shift+M Remove a paragraph indent from the left incrementally. Add page number Ctrl+⇧ Shift+P ^ Ctrl+⇧ Shift+P Add the current page number at the current cursor position. Nonprinting characters Ctrl+⇧ Shift+Num8 Show or hide the display of nonprinting characters. Delete one character to the left ← Backspace ← Backspace Delete one character to the left of the cursor. Delete one character to the right Delete Delete Delete one character to the right of the cursor. Modifying Objects Constrain movement ⇧ Shift + drag ⇧ Shift + drag Constrain the movement of the selected object horizontally or vertically. Set 15-degree rotation ⇧ Shift + drag (when rotating) ⇧ Shift + drag (when rotating) Constrain the rotation angle to 15-degree increments. Maintain proportions ⇧ Shift + drag (when resizing) ⇧ Shift + drag (when resizing) Maintain the proportions of the selected object when resizing. Draw straight line or arrow ⇧ Shift + drag (when drawing lines/arrows) ⇧ Shift + drag (when drawing lines/arrows) Draw a straight vertical/horizontal/45-degree line or arrow. Movement by one-pixel increments Ctrl+← → ↑ ↓ Hold down the Ctrl key and use the keybord arrows to move the selected object by one pixel at a time. Working with Tables Move to the next cell in a row ↹ Tab ↹ Tab Go to the next cell in a table row. Move to the previous cell in a row ⇧ Shift+↹ Tab ⇧ Shift+↹ Tab Go to the previous cell in a table row. Move to the next row ↓ ↓ Go to the next row in a table. Move to the previous row ↑ ↑ Go to the previous row in a table. Start new paragraph ↵ Enter ↵ Return Start a new paragraph within a cell. Add new row ↹ Tab in the lower right table cell. ↹ Tab in the lower right table cell. Add a new row at the bottom of the table. Inserting special characters Insert formula Alt+= Insert a formula at the current cursor position." + "body": "Windows/LinuxMac OS Working with Document Open 'File' panel Alt+F ⌥ Option+F Open the File panel panel to save, download, print the current document, view its info, create a new document or open an existing one, access the Document Editor Help Center or advanced settings. Open 'Find and Replace' dialog box Ctrl+F ^ Ctrl+F, ⌘ Cmd+F Open the Find and Replace dialog box to start searching for a character/word/phrase in the currently edited document. Open 'Find and Replace' dialog box with replacement field Ctrl+H ^ Ctrl+H Open the Find and Replace dialog box with the replacement field to replace one or more occurrences of the found characters. Repeat the last 'Find' action ⇧ Shift+F4 ⇧ Shift+F4, ⌘ Cmd+G, ⌘ Cmd+⇧ Shift+F4 Repeat the previous Find performed before the key combination was pressed. Open 'Comments' panel Ctrl+⇧ Shift+H ^ Ctrl+⇧ Shift+H, ⌘ Cmd+⇧ Shift+H Open the Comments panel to add your own comment or reply to other users' comments. Open comment field Alt+H ⌥ Option+H Open a data entry field where you can add the text of your comment. Open 'Chat' panel Alt+Q ⌥ Option+Q Open the Chat panel and send a message. Save document Ctrl+S ^ Ctrl+S, ⌘ Cmd+S Save all the changes to the document currently edited with The Document Editor. The active file will be saved with its current file name, location, and file format. Print document Ctrl+P ^ Ctrl+P, ⌘ Cmd+P Print the document with one of the available printers or save it as a file. Download As... Ctrl+⇧ Shift+S ^ Ctrl+⇧ Shift+S, ⌘ Cmd+⇧ Shift+S Open the Download as... panel to save the currently edited document to the hard disk drive of your computer in one of the supported formats: DOCX, PDF, ODT, TXT, DOTX, PDF/A, OTT, RTF, HTML. Full screen F11 Switch to the full screen view to fit the Document Editor into your screen. Help menu F1 F1 Open the Document Editor Help menu. Open existing file (Desktop Editors) Ctrl+O On the Open local file tab in the Desktop Editors, opens the standard dialog box that allows to select an existing file. Close file (Desktop Editors) Ctrl+W, Ctrl+F4 ^ Ctrl+W, ⌘ Cmd+W Close the current document window in the Desktop Editors. Element contextual menu ⇧ Shift+F10 ⇧ Shift+F10 Open the selected element contextual menu. Reset the ‘Zoom’ parameter Ctrl+0 ^ Ctrl+0 or ⌘ Cmd+0 Reset the ‘Zoom’ parameter of the current document to a default 100%. Navigation Jump to the beginning of the line Home Home Put the cursor to the beginning of the currently edited line. Jump to the beginning of the document Ctrl+Home ^ Ctrl+Home Put the cursor to the very beginning of the currently edited document. Jump to the end of the line End End Put the cursor to the end of the currently edited line. Jump to the end of the document Ctrl+End ^ Ctrl+End Put the cursor to the very end of the currently edited document. Jump to the beginning of the previous page Alt+Ctrl+Page Up Put the cursor to the very beginning of the page which preceeds the currently edited one. Jump to the beginning of the next page Alt+Ctrl+Page Down ⌥ Option+⌘ Cmd+⇧ Shift+Page Down Put the cursor to the very beginning of the page which follows the currently edited one. Scroll down Page Down Page Down, ⌥ Option+Fn+↑ Scroll the document approximately one visible page down. Scroll up Page Up Page Up, ⌥ Option+Fn+↓ Scroll the document approximately one visible page up. Next page Alt+Page Down ⌥ Option+Page Down Go to the next page in the currently edited document. Previous page Alt+Page Up ⌥ Option+Page Up Go to the previous page in the currently edited document. Zoom In Ctrl++ ^ Ctrl+=, ⌘ Cmd+= Zoom in the currently edited document. Zoom Out Ctrl+- ^ Ctrl+-, ⌘ Cmd+- Zoom out the currently edited document. Move one character to the left ← ← Move the cursor one character to the left. Move one character to the right → → Move the cursor one character to the right. Move to the beginning of a word or one word to the left Ctrl+← ^ Ctrl+←, ⌘ Cmd+← Move the cursor to the beginning of a word or one word to the left. Move one word to the right Ctrl+→ ^ Ctrl+→, ⌘ Cmd+→ Move the cursor one word to the right. Move one line up ↑ ↑ Move the cursor one line up. Move one line down ↓ ↓ Move the cursor one line down. Writing End paragraph ↵ Enter ↵ Return End the current paragraph and start a new one. Add line break ⇧ Shift+↵ Enter ⇧ Shift+↵ Return Add a line break without starting a new paragraph. Delete ← Backspace, Delete ← Backspace, Delete Delete one character to the left (← Backspace) or to the right (Delete) of the cursor. Delete word to the left of cursor Ctrl+← Backspace ^ Ctrl+← Backspace, ⌘ Cmd+← Backspace Delete one word to the left of the cursor. Delete word to the right of cursor Ctrl+Delete ^ Ctrl+Delete, ⌘ Cmd+Delete Delete one word to the right of the cursor. Create nonbreaking space Ctrl+⇧ Shift+␣ Spacebar ^ Ctrl+⇧ Shift+␣ Spacebar Create a space between characters which cannot be used to start a new line. Create nonbreaking hyphen Ctrl+⇧ Shift+_ ^ Ctrl+⇧ Shift+Hyphen Create a hyphen between characters which cannot be used to start a new line. Undo and Redo Undo Ctrl+Z ^ Ctrl+Z, ⌘ Cmd+Z Reverse the latest performed action. Redo Ctrl+Y ^ Ctrl+Y, ⌘ Cmd+Y, ⌘ Cmd+⇧ Shift+Z Repeat the latest undone action. Cut, Copy, and Paste Cut Ctrl+X, ⇧ Shift+Delete ⌘ Cmd+X, ⇧ Shift+Delete Delete the selected text fragment and send it to the computer clipboard memory. The copied text can be later inserted to another place in the same document, into another document, or into some other program. Copy Ctrl+C, Ctrl+Insert ⌘ Cmd+C Send the selected text fragment to the computer clipboard memory. The copied text can be later inserted to another place in the same document, into another document, or into some other program. Paste Ctrl+V, ⇧ Shift+Insert ⌘ Cmd+V Insert the previously copied text fragment from the computer clipboard memory to the current cursor position. The text can be previously copied from the same document, from another document, or from some other program. Insert hyperlink Ctrl+K ⌘ Cmd+K Insert a hyperlink which can be used to go to a web address. Copy style Ctrl+⇧ Shift+C ⌘ Cmd+⇧ Shift+C Copy the formatting from the selected fragment of the currently edited text. The copied formatting can be later applied to another text fragment in the same document. Apply style Ctrl+⇧ Shift+V ⌘ Cmd+⇧ Shift+V Apply the previously copied formatting to the text in the currently edited document. Text Selection Select all Ctrl+A ⌘ Cmd+A Select all the document text with tables and images. Select fragment ⇧ Shift+→ ← ⇧ Shift+→ ← Select the text character by character. Select from cursor to beginning of line ⇧ Shift+Home ⇧ Shift+Home Select a text fragment from the cursor to the beginning of the current line. Select from cursor to end of line ⇧ Shift+End ⇧ Shift+End Select a text fragment from the cursor to the end of the current line. Select one character to the right ⇧ Shift+→ ⇧ Shift+→ Select one character to the right of the cursor position. Select one character to the left ⇧ Shift+← ⇧ Shift+← Select one character to the left of the cursor position. Select to the end of a word Ctrl+⇧ Shift+→ Select a text fragment from the cursor to the end of a word. Select to the beginning of a word Ctrl+⇧ Shift+← Select a text fragment from the cursor to the beginning of a word. Select one line up ⇧ Shift+↑ ⇧ Shift+↑ Select one line up (with the cursor at the beginning of a line). Select one line down ⇧ Shift+↓ ⇧ Shift+↓ Select one line down (with the cursor at the beginning of a line). Select the page up ⇧ Shift+Page Up ⇧ Shift+Page Up Select the page part from the cursor position to the upper part of the screen. Select the page down ⇧ Shift+Page Down ⇧ Shift+Page Down Select the page part from the cursor position to the lower part of the screen. Text Styling Bold Ctrl+B ^ Ctrl+B, ⌘ Cmd+B Make the font of the selected text fragment darker and heavier than normal. Italic Ctrl+I ^ Ctrl+I, ⌘ Cmd+I Make the font of the selected text fragment italicized and slightly slanted. Underline Ctrl+U ^ Ctrl+U, ⌘ Cmd+U Make the selected text fragment underlined with a line going below the letters. Strikeout Ctrl+5 ^ Ctrl+5, ⌘ Cmd+5 Make the selected text fragment struck out with a line going through the letters. Subscript Ctrl+. ^ Ctrl+⇧ Shift+>, ⌘ Cmd+⇧ Shift+> 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+, ^ Ctrl+⇧ Shift+<, ⌘ Cmd+⇧ Shift+< Make the selected text fragment smaller and place it to the upper part of the text line, e.g. as in fractions. Heading 1 style Alt+1 ⌥ Option+^ Ctrl+1 Apply the style of the heading 1 to the selected text fragment. Heading 2 style Alt+2 ⌥ Option+^ Ctrl+2 Apply the style of the heading 2 to the selected text fragment. Heading 3 style Alt+3 ⌥ Option+^ Ctrl+3 Apply the style of the heading 3 to the selected text fragment. Bulleted list Ctrl+⇧ Shift+L ^ Ctrl+⇧ Shift+L, ⌘ Cmd+⇧ Shift+L Create an unordered bulleted list from the selected text fragment or start a new one. Remove formatting Ctrl+␣ Spacebar Remove formatting from the selected text fragment. Increase font Ctrl+] ⌘ Cmd+] Increase the size of the font for the selected text fragment 1 point. Decrease font Ctrl+[ ⌘ Cmd+[ Decrease the size of the font for the selected text fragment 1 point. Align center/left Ctrl+E ^ Ctrl+E, ⌘ Cmd+E Switch a paragraph between centered and left-aligned. Align justified/left Ctrl+J, Ctrl+L ^ Ctrl+J, ⌘ Cmd+J Switch a paragraph between justified and left-aligned. Align right/left Ctrl+R ^ Ctrl+R Switch a paragraph between right-aligned and left-aligned. Apply subscript formatting (automatic spacing) Ctrl+= Apply subscript formatting to the selected text fragment. Apply superscript formatting (automatic spacing) Ctrl+⇧ Shift++ Apply superscript formatting to the selected text fragment. Insert page break Ctrl+↵ Enter ^ Ctrl+↵ Return Insert a page break at the current cursor position. Increase indent Ctrl+M ^ Ctrl+M Indent a paragraph from the left incrementally. Decrease indent Ctrl+⇧ Shift+M ^ Ctrl+⇧ Shift+M Remove a paragraph indent from the left incrementally. Add page number Ctrl+⇧ Shift+P ^ Ctrl+⇧ Shift+P Add the current page number at the current cursor position. Nonprinting characters Ctrl+⇧ Shift+Num8 Show or hide the display of nonprinting characters. Delete one character to the left ← Backspace ← Backspace Delete one character to the left of the cursor. Delete one character to the right Delete Delete Delete one character to the right of the cursor. Modifying Objects Constrain movement ⇧ Shift + drag ⇧ Shift + drag Constrain the movement of the selected object horizontally or vertically. Set 15-degree rotation ⇧ Shift + drag (when rotating) ⇧ Shift + drag (when rotating) Constrain the rotation angle to 15-degree increments. Maintain proportions ⇧ Shift + drag (when resizing) ⇧ Shift + drag (when resizing) Maintain the proportions of the selected object when resizing. Draw straight line or arrow ⇧ Shift + drag (when drawing lines/arrows) ⇧ Shift + drag (when drawing lines/arrows) Draw a straight vertical/horizontal/45-degree line or arrow. Movement by one-pixel increments Ctrl+← → ↑ ↓ Hold down the Ctrl key and use the keybord arrows to move the selected object by one pixel at a time. Working with Tables Move to the next cell in a row ↹ Tab ↹ Tab Go to the next cell in a table row. Move to the previous cell in a row ⇧ Shift+↹ Tab ⇧ Shift+↹ Tab Go to the previous cell in a table row. Move to the next row ↓ ↓ Go to the next row in a table. Move to the previous row ↑ ↑ Go to the previous row in a table. Start new paragraph ↵ Enter ↵ Return Start a new paragraph within a cell. Add new row ↹ Tab in the lower right table cell. ↹ Tab in the lower right table cell. Add a new row at the bottom of the table. Inserting special characters Insert formula Alt+= Insert a formula at the current cursor position. Insert an em dash Alt+Ctrl+Num- Insert an em dash ‘—’ within the current document and to the right of the cursor. Insert a non-breaking hyphen Ctrl+⇧ Shift+_ ^ Ctrl+⇧ Shift+Hyphen Insert a non-breaking hyphen ‘-’ within the current document and to the right of the cursor. Insert a no-break space Ctrl+⇧ Shift+␣ Spacebar ^ Ctrl+⇧ Shift+␣ Spacebar Insert a no-break space ‘o’ within the current document and to the right of the cursor." }, { "id": "HelpfulHints/Navigation.htm", "title": "View Settings and Navigation Tools", - "body": "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 icon on the right side of the editor header 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: 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, click the View settings 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 (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 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 or Zoom out buttons. Click the Fit width 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 icon. Zoom settings are also available in the View settings 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." + "body": "The 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 icon on the right side of the editor header 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: 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, click the View settings 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 (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 width of the left sidebar 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 right to extend the width of the sidebar. 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 or Zoom out buttons. Click the Fit width 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 icon. Zoom settings are also available in the View settings 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." }, { "id": "HelpfulHints/Review.htm", "title": "Document Review", - "body": "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. 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 button in the right lower corner at the status bar, or switch to the Collaboration tab at the top toolbar and press the 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. View changes Changes made by a user are highlighted with a specific color in the document text. When you click on the changed text, a pop-up window opens which displays the user name, the date and time when the change has been made, and the change description. The pop-up window also contains icons used to accept or reject the current change. If you drag and drop a piece of text to some other place in the document, the text in a new position will be underlined with the double line. The text in the original position will be double-crossed. This will count as a single change. Click the double-crossed text in the original position and use the arrow in the change pop-up window to go to the new location of the text. Click the double-underlined text in the new position and use the arrow in the change pop-up window to go to to the original location of the text. Choose the changes display mode Click the Display Mode button at the top toolbar and select one of the available modes from the list: Markup - this option is selected by default. It allows both to view suggested changes and edit the document. Final - 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. Original - 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 Previous and the Next buttons at the top toolbar to navigate among the changes. To accept the currently selected change you can: click the 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 button of the change pop-up window. To quickly accept all the changes, click the downward arrow below the Accept button and select the Accept All Changes option. To reject the current change you can: click the 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 button of the change pop-up window. To quickly reject all the changes, click the downward arrow below the 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 icon within the change balloon." + "body": "When somebody shares a file with you using the review permissions, you need to apply the document Review feature. As a reviewer, you can use the Review option to review the document, change the sentences, phrases and other page elements, correct spelling, etc. without actually editing it. All your changes will be recorded and shown to the person who sent you the document. If you send the file for review, you will need to display all the changes which were made to it, view and either accept or reject them. 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 button in the right lower corner on the status bar, or switch to the Collaboration tab on the top toolbar and press the 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. View changes Changes made by a user are highlighted with a specific color in the document text. When you click on the changed text, a pop-up window opens which displays the user name, the date and time when the change has been made, and the change description. The pop-up window also contains icons used to accept or reject the current change. If you drag and drop a piece of text to some other place in the document, the text in a new position will be underlined with the double line. The text in the original position will be double-crossed. This will count as a single change. Click the double-crossed text in the original position and use the arrow in the change pop-up window to go to the new location of the text. Click the double-underlined text in the new position and use the arrow in the change pop-up window to go to to the original location of the text. Choose the changes display mode Click the Display Mode button on the top toolbar and select one of the available modes from the list: Markup - this option is selected by default. It allows both viewing the suggested changes and editing the document. Final - 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. Original - 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 Previous and the Next buttons on the top toolbar to navigate through the changes. To accept the currently selected change you can: click the Accept button on 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 button of the change pop-up window. To quickly accept all the changes, click the downward arrow below the Accept button and select the Accept All Changes option. To reject the current change you can: click the Reject button on 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 button of the change pop-up window. To quickly reject all the changes, click the downward arrow below the 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 icon within the change balloon." }, { "id": "HelpfulHints/Search.htm", "title": "Search and Replace Function", - "body": "To search for the needed characters, words or phrases used in the currently edited document, click the icon situated at the left sidebar or use the Ctrl+F key combination. The Find and Replace window will open: Type in your inquiry into the corresponding data entry field. Specify search parameters by clicking the icon and checking the necessary options: Case sensitive - is used to find only the occurrences typed in the same case as your inquiry (e.g. if your inquiry is 'Editor' and this option is selected, such words as 'editor' or 'EDITOR' etc. will not be found). To disable this option click it once again. Highlight results - is used to highlight all found occurrences at once. To disable this option and remove the highlight click the option once again. Click one of the arrow buttons at the bottom right corner of the window. The search will be performed either towards the beginning of the document (if you click the button) or towards the end of the document (if you click the button) from the current position. Note: when the Highlight results option is enabled, use these buttons to navigate through the highlighted results. The first occurrence of the required characters in the selected direction will be highlighted on the page. If it is not the word you are looking for, click the selected button again to find the next occurrence of the characters you entered. To replace one or more occurrences of the found characters click the Replace link below the data entry field or use the Ctrl+H key combination. The Find and Replace window will change: Type in the replacement text into the bottom data entry field. Click the Replace button to replace the currently selected occurrence or the Replace All button to replace all the found occurrences. To hide the replace field, click the Hide Replace link." + "body": "To search for the required characters, words or phrases used in the currently edited document, click the icon situated on the left sidebar or use the Ctrl+F key combination. The Find and Replace window will open: Type in your inquiry into the corresponding data entry field. Specify search parameters by clicking the icon and checking the necessary options: Case sensitive - is used to find only the occurrences typed in the same case as your inquiry (e.g. if your inquiry is 'Editor' and this option is selected, such words as 'editor' or 'EDITOR' etc. will not be found). To disable this option, click it once again. Highlight results - is used to highlight all found occurrences at once. To disable this option and remove the highlight, click the option once again. Click one of the arrow buttons at the bottom right corner of the window. The search will be performed either towards the beginning of the document (if you click the button) or towards the end of the document (if you click the button) from the current position. Note: when the Highlight results option is enabled, use these buttons to navigate through the highlighted results. The first occurrence of the required characters in the selected direction will be highlighted on the page. If it is not the word you are looking for, click the selected button again to find the next occurrence of the characters you entered. To replace one or more occurrences of the found characters, click the Replace link below the data entry field or use the Ctrl+H key combination. The Find and Replace window will change: Type in the replacement text into the bottom data entry field. Click the Replace button to replace the currently selected occurrence or the Replace All button to replace all the found occurrences. To hide the replace field, click the Hide Replace link." }, { "id": "HelpfulHints/SpellChecking.htm", "title": "Spell-checking", - "body": "Document Editor allows you to check the spelling of your text in a certain language and correct mistakes while editing. In the desktop version, it's also possible to add words into a custom dictionary which is common for all three editors. First of all, choose a language for your document. Click the Set Document Language icon at 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. To choose a different language for any piece of text within the document, select the necessary text passage with the mouse and use the menu at the status bar. To enable the spell checking option, you can: click the 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; if the current word is missed in the dictionary, you can add it to the custom dictionary. This word will not be treated as a mistake next time. This option is available in the desktop version. select a different language for this word. To disable the spell checking option, you can: click the 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." + "body": "The Document Editor allows you to check the spelling of your text in a certain language and correct mistakes while editing. In the desktop version, it's also possible to add words into a custom dictionary which is common for all three editors. First of all, choose a language for your document. Click the Set Document Language icon on the status bar. In the opened window, select the required language and click OK. The selected language will be applied to the whole document. To choose a different language for any piece within the document, select the necessary text passage with the mouse and use the menu on the status bar. To enable the spell checking option, you can: click the Spell checking icon on 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. all misspelled 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; if the current word is missed in the dictionary, you can add it to the custom dictionary. This word will not be treated as a mistake next time. This option is available in the desktop version. select a different language for this word. To disable the spell checking option, you can: click the Spell checking icon on 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." }, { "id": "HelpfulHints/SupportedFormats.htm", "title": "Supported Formats of Electronic Documents", - "body": "Electronic documents represent one of the most commonly used computer files. Thanks to the computer network highly developed nowadays, it's possible and more convenient to distribute electronic documents than printed ones. Due to the variety of devices used for document presentation, there are a lot of proprietary and open file formats. Document Editor handles the most popular of them. Formats Description View Edit Download DOC Filename extension for word processing documents created with Microsoft Word + + DOCX Office Open XML Zipped, XML-based file format developed by Microsoft for representing spreadsheets, charts, presentations, and word processing documents + + + DOTX Word Open XML Document Template Zipped, XML-based file format developed by Microsoft for text document templates. A DOTX template contains formatting settings, styles etc. and can be used to create multiple documents with the same formatting + + + ODT Word processing file format of OpenDocument, an open standard for electronic documents + + + OTT OpenDocument Document Template OpenDocument file format for text document templates. An OTT template contains formatting settings, styles etc. and can be used to create multiple documents with the same formatting + + + RTF Rich Text Format Document file format developed by Microsoft for cross-platform document interchange + + + TXT Filename extension for text files usually containing very little formatting + + + PDF Portable Document Format File format used to represent documents in a manner independent of application software, hardware, and operating systems + + PDF/A Portable Document Format / A An ISO-standardized version of the Portable Document Format (PDF) specialized for use in the archiving and long-term preservation of electronic documents. + + HTML HyperText Markup Language The main markup language for web pages + + in the online version EPUB Electronic Publication Free and open e-book standard created by the International Digital Publishing Forum + XPS Open XML Paper Specification Open royalty-free fixed-layout document format developed by Microsoft + DjVu File format designed primarily to store scanned documents, especially those containing a combination of text, line drawings, and photographs +" + "body": "An electronic document is one of the most commonly used computer. Due to the highly developed modern computer network, it's more convenient to distribute electronic documents than printed ones. Nowadays, a lot of devices are used for document presentation, so there are plenty of proprietary and open file formats. The Document Editor handles the most popular of them. Formats Description View Edit Download DOC Filename extension for word processing documents created with Microsoft Word + + DOCX Office Open XML Zipped, XML-based file format developed by Microsoft for representing spreadsheets, charts, presentations, and word processing documents + + + DOTX Word Open XML Document Template Zipped, XML-based file format developed by Microsoft for text document templates. A DOTX template contains formatting settings, styles etc. and can be used to create multiple documents with the same formatting + + + ODT Word processing file format of OpenDocument, an open standard for electronic documents + + + OTT OpenDocument Document Template OpenDocument file format for text document templates. An OTT template contains formatting settings, styles etc. and can be used to create multiple documents with the same formatting + + + RTF Rich Text Format Document file format developed by Microsoft for cross-platform document interchange + + + TXT Filename extension for text files usually containing very little formatting + + + PDF Portable Document Format File format used to represent documents regardless of the used software, hardware, and operating systems + + PDF/A Portable Document Format / A An ISO-standardized version of the Portable Document Format (PDF) specialized for use in the archiving and long-term preservation of electronic documents. + + HTML HyperText Markup Language The main markup language for web pages + + in the online version EPUB Electronic Publication Free and open e-book standard created by the International Digital Publishing Forum + XPS Open XML Paper Specification Open royalty-free fixed-layout document format developed by Microsoft + DjVu File format designed primarily to store scanned documents, especially those containing a combination of text, line drawings, and photographs +" }, { "id": "ProgramInterface/FileTab.htm", "title": "File tab", - "body": "The File tab allows to perform some basic operations on the current file. Online Document Editor window: Desktop Document Editor window: Using this tab, you can: in the online version, save the current file (in case the Autosave option is disabled), download as (save the document in the selected format to the computer hard disk drive), save copy as (save a copy of the document in the selected format to the portal documents), print or rename it, in the desktop version, save the current file keeping the current format and location using the Save option or save the current file with a different name, location or format using the Save as option, print the file. protect the file using a password, change or remove the password (available in the desktop version only); create a new document or open a recently edited one (available in the online version only), view general information about the document or change some file properties, manage access rights (available in the online version only), track version history (available in the online version only), access the editor Advanced Settings, in the desktop version, open the folder where the file is stored in the File explorer window. In the online version, open the folder of the Documents module where the file is stored in a new browser tab." + "body": "The File tab allows performing some basic operations. The corresponding window of the Online Document Editor: The corresponding window of the Desktop Document Editor: With this tab, you can use the following options: in the online version: save the current file (in case the Autosave option is disabled), save it in the required format on the hard disk drive of your computer with the Download as option, save a copy of the file in the selected format to the portal documents with the Save copy as option, print or rename the current file. in the desktop version: save the current file without changing its format and location using the Save option, save it changing its name, location or format using the Save as option or print the current file. protect the file using a password, change or remove the password (available in the desktop version only); create a new document or open a recently edited one (available in the online version only), view general information about the document or change some file properties, manage access rights (available in the online version only), track version history (available in the online version only), access the Advanced Settings of the editor, in the desktop version, open the folder, where the file is stored, in the File explorer window. In the online version, open the folder of the Documents module, where the file is stored, in a new browser tab." }, { "id": "ProgramInterface/HomeTab.htm", "title": "Home tab", - "body": "The Home tab opens by default when you open a document. It allows to format font and paragraphs. Some other options are also available here, such as Mail Merge and color schemes. Online Document Editor window: Desktop Document Editor window: Using this tab, you can: adjust font type, size, color, apply font decoration styles, select background color for a paragraph, create bulleted and numbered lists, change paragraph indents, set paragraph line spacing, align your text in a paragraph, show/hide nonprinting characters, copy/clear text formatting, change color scheme, use Mail Merge (available in the online version only), manage styles." + "body": "The Home tab appears by default when you open a document. It also allows formating fonts and paragraphs. Some other options are also available here, such as Mail Merge and color schemes. The corresponding window of the Online Document Editor: The corresponding window of the Desktop Document Editor: Using this tab, you can: adjust the font type, its size and color, apply font decoration styles, select a background color for a paragraph, create bulleted and numbered lists, change paragraph indents, set paragraph line spacing, align your text in a paragraph, show/hide non-printing characters, copy/clear text formatting, change the color scheme, use Mail Merge (available in the online version only), manage styles." }, { "id": "ProgramInterface/InsertTab.htm", "title": "Insert tab", - "body": "The Insert tab allows to add some page formatting elements, as well as visual objects and comments. Online Document Editor window: Desktop Document Editor window: Using this tab, you can: insert a blank page, insert page breaks, section breaks and column breaks, insert headers and footers and page numbers, insert tables, images, charts, shapes, insert hyperlinks, comments, insert text boxes and Text Art objects, equations, symbols, drop caps, content controls." + "body": "The Insert tab allows adding some page formatting elements as well as visual objects and comments. The corresponding window of the Online Document Editor: The corresponding window of the Desktop Document Editor: Using this tab, you can: insert a blank page, insert page breaks, section breaks and column breaks, insert tables, images, charts, shapes, insert hyperlinks, comments, insert headers and footers, page numbers, date & time, insert text boxes and Text Art objects, equations, symbols, drop caps, content controls." }, { "id": "ProgramInterface/LayoutTab.htm", "title": "Layout tab", - "body": "The Layout tab allows to change the document appearance: set up page parameters and define the arrangement of visual elements. Online Document Editor window: Desktop Document Editor window: Using this tab, you can: adjust page margins, orientation, size, add columns, insert page breaks, section breaks and column breaks, align and arrange objects (tables, pictures, charts, shapes), change wrapping style, add a watermark." + "body": "The Layout tab allows changing the appearance of a document: setting up page parameters and defining the arrangement of visual elements. The corresponding window of the Online Document Editor: corresponding window of the Desktop Document Editor: Using this tab, you can: adjust page margins, orientation and size, add columns, insert page breaks, section breaks and column breaks, align and arrange objects (tables, pictures, charts, shapes), change the wrapping style, add a watermark." }, { "id": "ProgramInterface/PluginsTab.htm", "title": "Plugins tab", - "body": "The Plugins tab allows to access advanced editing features using available third-party components. Here you can also use macros to simplify routine operations. Online Document Editor window: Desktop Document Editor window: The Settings button allows to open the window where you can view and manage all installed plugins and add your own ones. The Macros button allows to open the window where you can create your own macros and run them. To learn more about macros you can refer to our API Documentation. Currently, the following plugins are available by default: Send allows to send the document via email using the default desktop mail client (available in the desktop version only), Highlight code allows to highlight syntax of the code selecting the necessary language, style, background color, OCR allows to recognize text included into a picture and insert it into the document text, PhotoEditor allows to edit images: crop, flip, rotate them, draw lines and shapes, add icons and text, load a mask and apply filters such as Grayscale, Invert, Sepia, Blur, Sharpen, Emboss, etc., Speech allows to convert the selected text into speech (available in the online version only), Thesaurus allows to search for synonyms and antonyms of a word and replace it with the selected one, Translator allows to translate the selected text into other languages, YouTube allows to embed YouTube videos into your document. Mendeley allows to manage research papers and generate bibliographies for scholarly articles. Zotero allows to manage bibliographic data and related research materials. The Wordpress and EasyBib plugins can be used if you connect the corresponding services in your portal settings. You can use the following instructions for the server version or for the SaaS version. To learn more about plugins please refer to our API Documentation. All the currently existing open source plugin examples are available on GitHub." + "body": "The Plugins tab allows accessing the advanced editing features using the available third-party components. This tab also makes it possible to use macros to simplify routine operations. The corresponding window of the Online Document Editor: The corresponding window of the Desktop Document Editor: The Settings button allows viewing and managing all the installed plugins as well as adding new ones. The Macros button allows you to create and run your own macros. To learn more about macros, please refer to our API Documentation. Currently, the following plugins are available by default: Send allows sending a document via email using the default desktop mail client (available in the desktop version only), Highlight code allows highlighting the code syntax selecting the required language, style and background color, OCR recognizing text in any picture and inserting the recognized text to the document, PhotoEditor allows editing images: cropping, flipping, rotating, drawing lines and shapes, adding icons and text, loading a mask and applying filters such as Grayscale, Invert, Sepia, Blur, Sharpen, Emboss, etc., Speech allows converting the selected text to speech (available in the online version only), Thesaurus allows finding synonyms and antonyms for the selected word and replacing it with the chosen one, Translator allows translating the selected text into other languages, YouTube allows embedding YouTube videos into the document, Mendeley allows managing papers researches and generating bibliographies for scholarly articles, Zotero allows managing bibliographic data and related research materials. The Wordpress and EasyBib plugins can be used if you connect the corresponding services in your portal settings. You can use the following instructions for the server version or for the SaaS version. To learn more about plugins, please refer to our API Documentation. All the existing examples of open source plugins are currently available on GitHub." }, { "id": "ProgramInterface/ProgramInterface.htm", "title": "Introducing the Document Editor user interface", - "body": "Document Editor uses a tabbed interface where editing commands are grouped into tabs by functionality. Online Document Editor window: Desktop Document Editor window: The editor interface consists of the following main elements: Editor header displays the logo, opened documents tabs, document name and menu tabs. In the left part of the Editor header there are the Save, Print file, Undo and Redo buttons. In the right part of the Editor header the user name is displayed as well as the following icons: Open file location - in the desktop version, it allows to open the folder where the file is stored in the File explorer window. In the online version, it allows to open the folder of the Documents module where the file is stored in a new browser tab. - allows to adjust View Settings and access the editor Advanced Settings. Manage document access rights - (available in the online version only) allows to set access rights for the documents stored in the cloud. Top toolbar displays a set of editing commands depending on the selected menu tab. Currently, the following tabs are available: File, Home, Insert, Layout, References, Collaboration, Protection, Plugins. The Copy and Paste options are always available at the left part of the Top toolbar regardless of the selected tab. Status bar at the bottom of the editor window contains the page number indicator, displays some notifications (such as \"All changes saved\" etc.), allows to set text language, enable spell checking, turn on the track changes mode, adjust zoom. Left sidebar contains the following icons: - allows to use the Search and Replace tool, - allows to open the Comments panel, - allows to go to the Navigation panel and manage headings, - (available in the online version only) allows to open the Chat panel, - (available in the online version only) allows to contact our support team, - (available in the online version only) allows to view the information about the program. Right sidebar allows to adjust additional parameters of different objects. When you select a particular object in the text, the corresponding icon is activated at the right sidebar. Click this icon to expand the right sidebar. Horizontal and vertical Rulers allow to align text and other elements in a document, set up margins, tab stops, and paragraph indents. Working area allows to view document content, enter and edit data. Scroll bar on the right allows to scroll up and down multi-page documents. For your convenience you can hide some components and display them again when it is necessary. To learn more on how to adjust view settings please refer to this page." + "body": "Introducing the user interface of the Document Editor The Document Editor uses a tabbed interface where editing commands are grouped into tabs by functionality. Main window of the Online Document Editor: Main window of the Desktop Document Editor: The editor interface consists of the following main elements: The Editor header displays the ONLYOFFICE logo, tabs for all opened documents with their names and menu tabs. On the left side of the Editor header the Save, Print file, Undo and Redo buttons are located On the right side of the Editor header along with the user name the following icons are displayed: Open file location. In the desktop version, it allows opening the folder, where the file is stored, in the File explorer window. In the online version, it allows to opening the folder of the Documents module, where the file is stored in a new browser tab. It allows adjusting the View Settings and access the Advanced Settings of the editor. Manage document access rights (available in the online version only). It allows adjusting access rights for the documents stored in the cloud. The Top toolbar displays a set of editing commands depending on the selected menu tab. Currently, the following tabs are available: File, Home, Insert, Layout, References, Collaboration, Protection, Plugins. The Copy and Paste options are always available at the left part on the left side of the Top toolbar regardless of the selected tab. The Status bar located at the bottom of the editor window indicates the page number and displays some notifications (for example, \"All changes saved\", etc.). It also allows setting the text language, enabling spell checking, turning on the track changes mode and adjusting zoom. The Left sidebar contains the following icons: - allows using the Search and Replace tool, - allows opening the Comments panel, - allows going to the Navigation panel and managing headings, - (available in the online version only) allows opening the Chat panel, - (available in the online version only) allows to contact our support team, - (available in the online version only) allows to view the information about the program. The Right sidebar allows to adjusting additional parameters of different objects. When you select a particular object in the text, the corresponding icon is activated on the Right sidebar. Click the icon to expand the Right sidebar. The Horizontal and vertical Rulers makes it possible to align the text and other elements in a document, set up margins, tab stops, and paragraph indents. The Working area allows viewing document content, entering and editing data. The Scroll bar on the right allows scrolling up and down multi-page documents. For your convenience, you can hide some components and display them again when them when necessary. To learn more about adjusting view settings, please refer to this page." }, { "id": "ProgramInterface/ReferencesTab.htm", "title": "References tab", - "body": "The References tab allows to manage different types of references: add and refresh a table of contents, create and edit footnotes, insert hyperlinks. Online Document Editor window: Desktop Document Editor window: Using this tab, you can: create and automatically update a table of contents, insert footnotes, insert hyperlinks, add bookmarks. add captions." + "body": "The References tab allows managing different types of references: adding and refreshing tables of contents, creating and editing footnotes, inserting hyperlinks. The corresponding window of the Online Document Editor: The corresponding window of the Desktop Document Editor: Using this tab, you can: create and automatically update a table of contents, insert footnotes, insert hyperlinks, add bookmarks. add captions." }, { "id": "ProgramInterface/ReviewTab.htm", "title": "Collaboration tab", - "body": "The Collaboration tab allows to organize collaborative work on the document. In the online version, you can share the file, select a co-editing mode, manage comments, track changes made by a reviewer, view all versions and revisions. In the commenting mode, you can add and remove comments, navigate between tracked changes, use chat and view version history. In the desktop version, you can manage comments and use the Track Changes feature . Online Document Editor window: Desktop Document Editor window: Using this tab, you can: specify sharing settings (available in the online version only), switch between the Strict and Fast co-editing modes (available in the online version only), add or remove comments to the document, enable the Track Changes feature, choose the changes display mode, manage the suggested changes, load a document for comparison (available in the online version only), open the Chat panel (available in the online version only), track version history (available in the online version only)." + "body": "The Collaboration tab allows collaborating on documents. In the online version, you can share the file, select the required co-editing mode, manage comments, track changes made by a reviewer, view all versions and revisions. In the commenting mode, you can add and remove comments, navigate between the tracked changes, use the built-in chat and view the version history. In the desktop version, you can manage comments and use the Track Changes feature . The corresponding window of the Online Document Editor: The corresponding window of the Desktop Document Editor: Using this tab, you can: specify the sharing settings (available in the online version only), switch between the Strict and Fast co-editing modes (available in the online version only), add or remove comments to the document, enable the Track Changes feature, choose the changes display mode, manage the suggested changes, load a document for comparison (available in the online version only), open the Chat panel (available in the online version only), track the version history (available in the online version only)." }, { "id": "UsageInstructions/AddBorders.htm", "title": "Add borders", - "body": "To add borders to a paragraph, page, or the whole document, put the cursor within the paragraph you need, or select several paragraphs with the mouse or all the text in the document by pressing the Ctrl+A key combination, click the right mouse button and select the Paragraph Advanced Settings option from the menu or use the Show advanced settings link at the right sidebar, switch to the Borders & Fill tab in the opened Paragraph - Advanced Settings window, set the needed value for Border Size and select a Border Color, click within the available diagram or use buttons to select borders and apply the chosen style to them, click the OK button. After you add borders, you can also set paddings i.e. distances between the right, left, top and bottom borders and the paragraph text within them. To set the necessary values, switch to the Paddings tab of the Paragraph - Advanced Settings window:" + "body": "To add borders to a paragraph, page, or the whole document, place the cursor within the required paragraph, or select several paragraphs with the mouse or the whole text by pressing the Ctrl+A key combination, click the right mouse button and select the Paragraph Advanced Settings option from the menu or use the Show advanced settings link on the right sidebar, switch to the Borders & Fill tab in the opened Paragraph - Advanced Settings window, set the needed value for Border Size and select a Border Color, click within the available diagram or use buttons to select borders and apply the chosen style to them, click the OK button. After adding the borders, you can also set paddings i.e. distances between the right, left, top and bottom borders and the paragraph. To set the necessary values, switch to the Paddings tab of the Paragraph - Advanced Settings window:" }, { "id": "UsageInstructions/AddCaption.htm", "title": "Add caption", - "body": "The Caption is a numbered label that you can apply to objects, such as equations, tables, figures and images within your documents. This makes it easy to reference within your text as there is an easily recognizable label on your object. To add the caption to an object: select the object which one to apply a caption; switch to the References tab of the top toolbar; click the Caption icon at the top toolbar or right lick o nthe object and select the Insert Caption option to open the Insert Caption dialogue box choose the label to use for your caption by clicking the label drop-down and choosing the object. or create a new label by clicking the Add label button to open the Add label dialogue box. Enter a name for the label into the label text box. Then click the OK button to add a new label into the label list; check the Include chapter number checkbox to change the numbering for your caption; in Insert drop-down menu choose Before to place the label above the object or After to place it below the object; check the Exclude label from caption checkbox to leave only a number for this particular caption in accordance with a sequence number; you can then choose how to number your caption by assigning a specific style to the caption and adding a separator; to apply the caption click the OK button. Deleting a label To delete a label you have created, choose the label from the label list within the caption dialogue box then click the Delete label button. The label you created will be immediately deleted. Note:You may delete labels you have created but you cannot delete the default labels. Formatting captions As soon as you add a caption, a new style for captions is automatically added to the styles section. In order to change the style for all captions throughout the document, you should follow these steps: select the text a new Caption style will be copied from; search for the Caption style (highlighted in blue by default) in the styles gallery which you may find on Home tab of the top toolbar; right click on it and choose the Update from selection option. Grouping captions up If you want to be able to move the object and the caption as one unit, you need to group the object and the caption together select the object; select one of the Wrapping styles using the right sidebar; add the caption as it is mentioned above; hold down Shift and select the items you want to group up; right click on either item and choose Arrange > Group. Now both items will move simultaneously if you drag them somewhere else in the document. To unbind the objects click on Arrange > Ungroup respectively." + "body": "s A caption is a numbered label that can be applied to objects, such as equations, tables, figures and images in the document. A caption allows making a reference in the text - an easily recognizable label on an object. To add a caption to an object: select the required object to apply a caption; switch to the References tab of the top toolbar; click the Caption icon on the top toolbar or right click on the object and select the Insert Caption option to open the Insert Caption dialogue box choose the label to use for your caption by clicking the label drop-down and choosing the object. or create a new label by clicking the Add label button to open the Add label dialogue box. Enter a name for the label into the label text box. Then click the OK button to add a new label into the label list; check the Include chapter number checkbox to change the numbering for your caption; in Insert drop-down menu choose Before to place the label above the object or After to place it below the object; check the Exclude label from caption checkbox to leave only a number for this particular caption in accordance with a sequence number; you can then choose how to number your caption by assigning a specific style to the caption and adding a separator; to apply the caption click the OK button. Deleting a label To delete a label you have created, choose the label from the label list within the caption dialogue box then click the Delete label button. The label you created will be immediately deleted. Note:You may delete labels you have created but you cannot delete the default labels. Formatting captions As soon as you add a caption, a new style for captions is automatically added to the styles section. In order to change the style for all captions throughout the document, you should follow these steps: select the text to copy a new Caption style; search for the Caption style (highlighted in blue by default) in the styles gallery on the Home tab of the top toolbar; right click on it and choose the Update from selection option. Grouping captions up To move the object and the caption as one unit, you need to group the object and the caption together: select the object; select one of the Wrapping styles using the right sidebar; add the caption as it is mentioned above; hold down Shift and select the items to be grouped up; right click item and choose Arrange > Group. Now both items will move simultaneously if you drag them somewhere else in the document. To unbind the objects, click on Arrange > Ungroup respectively." }, { "id": "UsageInstructions/AddFormulasInTables.htm", "title": "Use formulas in tables", - "body": "Insert a formula You can perform simple calculations on data in table cells by adding formulas. To insert a formula into a table cell, place the cursor within the cell where you want to display the result, click the Add formula button at the right sidebar, in the Formula Settings window that opens, enter the necessary formula into the Formula field. You can enter a needed formula manually using the common mathematical operators (+, -, *, /), e.g. =A1*B2 or use the Paste Function drop-down list to select one of the embedded functions, e.g. =PRODUCT(A1,B2). manually specify necessary arguments within the parentheses in the Formula field. If the function requires several arguments, they must be separated by commas. use the Number Format drop-down list if you want to display the result in a certain number format, click OK. The result will be displayed in the selected cell. To edit the added formula, select the result in the cell and click the Add formula button at the right sidebar, make the necessary changes in the Formula Settings window and click OK. Add references to cells You can use the following arguments to quickly add references to cell ranges: ABOVE - a reference to all the cells in the column above the selected cell LEFT - a reference to all the cells in the row to the left of the selected cell BELOW - a reference to all the cells in the column below the selected cell RIGHT - a reference to all the cells in the row to the right of the selected cell These arguments can be used with the AVERAGE, COUNT, MAX, MIN, PRODUCT, SUM functions. You can also manually enter references to a certain cell (e.g., A1) or a range of cells (e.g., A1:B3). Use bookmarks If you have added some bookmarks to certain cells within your table, you can use these bookmarks as arguments when entering formulas. In the Formula Settings window, place the cursor within the parentheses in the Formula entry field where you want the argument to be added and use the Paste Bookmark drop-down list to select one of the previously added bookmarks. Update formula results If you change some values in the table cells, you will need to manually update formula results: To update a single formula result, select the necessary result and press F9 or right-click the result and use the Update field option from the menu. To update several formula results, select the necessary cells or the entire table and press F9. Embedded functions You can use the following standard math, statistical and logical functions: Category Function Description Example Mathematical ABS(x) The function is used to return the absolute value of a number. =ABS(-10) Returns 10 Logical AND(logical1, logical2, ...) The function is used to check if the logical value you enter is TRUE or FALSE. The function returns 1 (TRUE) if all the arguments are TRUE. =AND(1>0,1>3) Returns 0 Statistical AVERAGE(argument-list) The function is used to analyze the range of data and find the average value. =AVERAGE(4,10) Returns 7 Statistical COUNT(argument-list) The function is used to count the number of the selected cells which contain numbers ignoring empty cells or those contaning text. =COUNT(A1:B3) Returns 6 Logical DEFINED() The function evaluates if a value in the cell is defined. The function returns 1 if the value is defined and calculated without errors and returns 0 if the value is not defined or calculated with an error. =DEFINED(A1) Logical FALSE() The function returns 0 (FALSE) and does not require any argument. =FALSE Returns 0 Mathematical INT(x) The function is used to analyze and return the integer part of the specified number. =INT(2.5) Returns 2 Statistical MAX(number1, number2, ...) The function is used to analyze the range of data and find the largest number. =MAX(15,18,6) Returns 18 Statistical MIN(number1, number2, ...) The function is used to analyze the range of data and find the smallest number. =MIN(15,18,6) Returns 6 Mathematical MOD(x, y) The function is used to return the remainder after the division of a number by the specified divisor. =MOD(6,3) Returns 0 Logical NOT(logical) The function is used to check if the logical value you enter is TRUE or FALSE. The function returns 1 (TRUE) if the argument is FALSE and 0 (FALSE) if the argument is TRUE. =NOT(2<5) Returns 0 Logical OR(logical1, logical2, ...) The function is used to check if the logical value you enter is TRUE or FALSE. The function returns 0 (FALSE) if all the arguments are FALSE. =OR(1>0,1>3) Returns 1 Mathematical PRODUCT(argument-list) The function is used to multiply all the numbers in the selected range of cells and return the product. =PRODUCT(2,5) Returns 10 Mathematical ROUND(x, num_digits) The function is used to round the number to the desired number of digits. =ROUND(2.25,1) Returns 2.3 Mathematical SIGN(x) The function is used to return the sign of a number. If the number is positive, the function returns 1. If the number is negative, the function returns -1. If the number is 0, the function returns 0. =SIGN(-12) Returns -1 Mathematical SUM(argument-list) The function is used to add all the numbers in the selected range of cells and return the result. =SUM(5,3,2) Returns 10 Logical TRUE() The function returns 1 (TRUE) and does not require any argument. =TRUE Returns 1" + "body": "Insert a formula You can perform simple calculations on data in table cells by adding formulas. To insert a formula into a table cell, place the cursor within the cell where you want to display the result, click the Add formula button on the right sidebar, in the opened Formula Settings window, enter the required formula into the Formula field. You can enter the required formula manually using the common mathematical operators (+, -, *, /), e.g. =A1*B2 or use the Paste Function drop-down list to select one of the embedded functions, e.g. =PRODUCT(A1,B2). manually specify the required arguments within the parentheses in the Formula field. If the function requires several arguments, they must be separated by commas. use the Number Format drop-down list if you want to display the result in a certain number format, click OK. The result will be displayed in the selected cell. To edit the added formula, select the result in the cell and click the Add formula button on the right sidebar, make the required changes in the Formula Settings window and click OK. Add references to cells You can use the following arguments to quickly add references to cell ranges: ABOVE - a reference to all the cells in the column above the selected cell LEFT - a reference to all the cells in the row to the left of the selected cell BELOW - a reference to all the cells in the column below the selected cell RIGHT - a reference to all the cells in the row to the right of the selected cell These arguments can be used with the AVERAGE, COUNT, MAX, MIN, PRODUCT, SUM functions. You can also manually enter references to a certain cell (e.g., A1) or a range of cells (e.g., A1:B3). Use bookmarks If you have added some bookmarks to certain cells within your table, you can use these bookmarks as arguments when entering formulas. In the Formula Settings window, place the cursor within the parentheses in the Formula entry field where you want the argument to be added and use the Paste Bookmark drop-down list to select one of the previously added bookmarks. Update formula results If you change some values in the table cells, you will need to manually update the formula results: To update a single formula result, select the necessary result and press F9 or right-click the result and use the Update field option from the menu. To update several formula results, select the necessary cells or the entire table and press F9. Embedded functions You can use the following standard math, statistical and logical functions: Category Function Description Example Mathematical ABS(x) The function is used to return the absolute value of a number. =ABS(-10) Returns 10 Logical AND(logical1, logical2, ...) The function is used to check if the logical value you entered is TRUE or FALSE. The function returns 1 (TRUE) if all the arguments are TRUE. =AND(1>0,1>3) Returns 0 Statistical AVERAGE(argument-list) The function is used to analyze the range of data and find the average value. =AVERAGE(4,10) Returns 7 Statistical COUNT(argument-list) The function is used to count the number of the selected cells which contain numbers ignoring empty cells or those contaning text. =COUNT(A1:B3) Returns 6 Logical DEFINED() The function evaluates if a value in the cell is defined. The function returns 1 if the value is defined and calculated without errors and returns 0 if the value is not defined or calculated with an error. =DEFINED(A1) Logical FALSE() The function returns 0 (FALSE) and does not require any argument. =FALSE Returns 0 Logical IF(logical_test, value_if_true, value_if_false) The function is used to check the logical expression and return one value if it is TRUE, or another if it is FALSE. =IF(3>1,1,0) Returns 1 Mathematical INT(x) The function is used to analyze and return the integer part of the specified number. =INT(2.5) Returns 2 Statistical MAX(number1, number2, ...) The function is used to analyze the range of data and find the largest number. =MAX(15,18,6) Returns 18 Statistical MIN(number1, number2, ...) The function is used to analyze the range of data and find the smallest number. =MIN(15,18,6) Returns 6 Mathematical MOD(x, y) The function is used to return the remainder after the division of a number by the specified divisor. =MOD(6,3) Returns 0 Logical NOT(logical) The function is used to check if the logical value you entered is TRUE or FALSE. The function returns 1 (TRUE) if the argument is FALSE and 0 (FALSE) if the argument is TRUE. =NOT(2<5) Returns 0 Logical OR(logical1, logical2, ...) The function is used to check if the logical value you entered is TRUE or FALSE. The function returns 0 (FALSE) if all the arguments are FALSE. =OR(1>0,1>3) Returns 1 Mathematical PRODUCT(argument-list) The function is used to multiply all the numbers in the selected range of cells and return the product. =PRODUCT(2,5) Returns 10 Mathematical ROUND(x, num_digits) The function is used to round the number to the desired number of digits. =ROUND(2.25,1) Returns 2.3 Mathematical SIGN(x) The function is used to return the sign of a number. If the number is positive, the function returns 1. If the number is negative, the function returns -1. If the number is 0, the function returns 0. =SIGN(-12) Returns -1 Mathematical SUM(argument-list) The function is used to add all the numbers in the selected range of cells and return the result. =SUM(5,3,2) Returns 10 Logical TRUE() The function returns 1 (TRUE) and does not require any argument. =TRUE Returns 1" }, { "id": "UsageInstructions/AddHyperlinks.htm", "title": "Add hyperlinks", - "body": "To add a hyperlink, place the cursor to a position where a hyperlink will be added, switch to the Insert or References tab of the top toolbar, click the Hyperlink icon at the top toolbar, after that the Hyperlink Settings window will appear where you can specify the hyperlink parameters: Select a link type you wish to insert: Use the External Link option and enter a URL in the format http://www.example.com in the Link to field below if you need to add a hyperlink leading to an external website. Use the Place in Document option and select one of the existing headings in the document text or one of previously added bookmarks if you need to add a hyperlink leading to a certain place in the same document. Display - enter a text that will get clickable and lead to the address specified in the upper field. ScreenTip text - enter a text that will become visible in a small pop-up window that provides a brief note or label pertaining to the hyperlink being pointed to. Click the OK button. To add a hyperlink, you can also use the Ctrl+K key combination or 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. Note: it's also possible to select a character, word, word combination, text passage with the mouse or using the keyboard and then open the Hyperlink Settings window as described above. In this case, the Display field will be 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. To edit or delete the added hyperlink, click it with the right mouse button, select the Hyperlink option and then the action you want to perform - Edit Hyperlink or Remove Hyperlink." + "body": "To add a hyperlink, place the cursor in the text that you want to display as a hyperlink, switch to the Insert or References tab of the top toolbar, click the Hyperlink icon on the top toolbar, after that the Hyperlink Settings window will appear, and you will be able to specify the hyperlink parameters: Select a link type you wish to insert: Use the External Link option and enter a URL in the format http://www.example.com in the Link to field below if you need to add a hyperlink leading to an external website. Use the Place in Document option and select one of the existing headings in the document text or one of previously added bookmarks if you need to add a hyperlink leading to a certain place in the same document. Display - enter a text that will get clickable and lead to the address specified in the upper field. ScreenTip text - enter a text that will become visible in a small pop-up window with a brief note or label pertaining to the hyperlink to be pointed. Click the OK button. To add a hyperlink, you can also use the Ctrl+K key combination or 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. Note: it's also possible to select a character, word, word combination, text passage with the mouse or using the keyboard and then open the Hyperlink Settings window as described above. In this case, the Display field will be 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. To edit or delete the added hyperlink, click it with the right mouse button, select the Hyperlink option and then the action you want to perform - Edit Hyperlink or Remove Hyperlink." }, { "id": "UsageInstructions/AddWatermark.htm", "title": "Add watermark", - "body": "Watermark is a text or image placed below the main text layer. Text watermarks allow to indicate your document status (for example, confidential, draft etc.), image watermarks allow to add an image, for example your company logo. To add a watermark within a document: Switch to the Layout tab of the top toolbar. Click the Watermark icon at the top toolbar and choose the Custom Watermark option from the menu. After that the Watermark Settings window will appear. Select a watermark type you wish to insert: Use the Text watermark option and adjust the available parameters: Language - select one of the available languages from the list, Text - select one of the available text examples on the selected language. For English, the following watermark texts are available: ASAP, CONFIDENTIAL, COPY, DO NOT COPY, DRAFT, ORIGINAL, PERSONAL, SAMPLE, TOP SECRET, URGENT. Font - select the font name and size from the corresponding drop-down lists. Use the icons on the right to set the font color or apply one of the font decoration styles: Bold, Italic, Underline, Strikeout, Semitransparent - check this box if you want to apply transparency, Layout - select the Diagonal or Horizontal option. Use the Image watermark option and adjust the available parameters: Choose the image file source using one of the buttons: From File or From URL - the image will be displayed in the preview window on the right, Scale - select the necessary scale value from the available ones: Auto, 500%, 200%, 150%, 100%, 50%. Click the OK button. To edit the added watermark, open the Watermark Settings window as described above, change the necessary parameters and click OK. To delete the added watermark click the Watermark icon at the Layout tab of the top toolbar and choose the Remove Watermark option from the menu. It's also possible to use the None option in the Watermark Settings window." + "body": "s A watermark is a text or image placed under the main text layer. Text watermarks allow indicating the status of your document (for example, confidential, draft etc.). Image watermarks allow adding an image, for example, the logo of your company. To add a watermark in a document: Switch to the Layout tab of the top toolbar. Click the Watermark icon on the top toolbar and choose the Custom Watermark option from the menu. After that the Watermark Settings window will appear. Select a watermark type you wish to insert: Use the Text watermark option and adjust the available parameters: Language - select one of the available languages from the list, Text - select one of the available text examples in the selected language. For English, the following watermark texts are available: ASAP, CONFIDENTIAL, COPY, DO NOT COPY, DRAFT, ORIGINAL, PERSONAL, SAMPLE, TOP SECRET, URGENT. Font - select the font name and size from the corresponding drop-down lists. Use the icons on the right to set the font color or apply one of the font decoration styles: Bold, Italic, Underline, Strikeout, Semitransparent - check this box if you want to apply transparency, Layout - select the Diagonal or Horizontal option. Use the Image watermark option and adjust the available parameters: Choose the image file source using one of the options from the drop-down list: From File, From URL or From Storage - the image will be displayed in the preview window on the right, Scale - select the necessary scale value from the available ones: Auto, 500%, 200%, 150%, 100%, 50%. Click the OK button. To edit the added watermark, open the Watermark Settings window as described above, change the necessary parameters and click OK. To delete the added watermark click the Watermark icon on the Layout tab of the top toolbar and choose the Remove Watermark option from the menu. It's also possible to use the None option in the Watermark Settings window." }, { "id": "UsageInstructions/AlignArrangeObjects.htm", "title": "Align and arrange objects on a page", - "body": "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 two or more selected objects, Click the Align icon at the Layout tab of the top toolbar and select one of the following options: Align to Page to align objects relative to the edges of the page, Align to Margin to align objects relative to the page margins, Align Selected Objects (this option is selected by default) to align objects relative to each other, Click the Align icon once again and select the necessary alignment type from the list: Align Left - to line up the objects horizontally by the left edge of the leftmost object/left edge of the page/left page margin, Align Center - to line up the objects horizontally by their centers/center of the page/center of the space between the left and right page margins, Align Right - to line up the objects horizontally by the right edge of the rightmost object/right edge of the page/right page margin, Align Top - to line up the objects vertically by the top edge of the topmost object/top edge of the page/top page margin, Align Middle - to line up the objects vertically by their middles/middle of the page/middle of the space between the top and bottom page margins, Align Bottom - to line up the objects vertically by the bottom edge of the bottommost object/bottom edge of the page/bottom page margin. Alternatively, you can right-click the selected objects, choose the Align option from the contextual menu and then use one of the available alignment options. If you want to align a single object, it can be aligned relative to the edges of the page or to the page margins. The Align to Margin option is selected by default in this case. Distribute objects To distribute three or more selected objects horizontally or vertically so that the equal distance appears between them, Click the Align icon at the Layout tab of the top toolbar and select one of the following options: Align to Page to distribute objects between the edges of the page, Align to Margin to distribute objects between the page margins, Align Selected Objects (this option is selected by default) to distribute objects between two outermost selected objects, Click the Align icon once again and select the necessary distribution type from the list: Distribute Horizontally - to distribute objects evenly between the leftmost and rightmost selected objects/left and right edges of the page/left and right page margins. Distribute Vertically - to distribute objects evenly between the topmost and bottommost selected objects/top and bottom edges of the page/top and bottom page margins. Alternatively, you can right-click the selected objects, choose the Align option from the contextual menu and then use one of the available distribution options. Note: the distribution options are disabled if you select less than three objects. Group objects To group two or more selected objects or ungroup them, click the arrow next to the Group icon at the Layout tab of the top toolbar and select the necessary option from the list: Group - 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 - 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. Note: the Group option is disabled if you select less than two objects. The Ungroup option is available only when a group of the previously joined objects is selected. Arrange objects To arrange objects (i.e. to change their order when several objects overlap each other), you can use the Bring Forward and 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 at the Layout tab of the top toolbar and select the necessary arrangement type from the list: Bring To Foreground - to move the object(s) in front of all other objects, Bring Forward - 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 at the Layout tab of the top toolbar and select the necessary arrangement type from the list: Send To Background - to move the object(s) behind all other objects, Send Backward - to move the selected object(s) by one level backward as related to other objects. Alternatively, you can right-click the selected object(s), choose the Arrange option from the contextual menu and then use one of the available arrangement options." + "body": "Align and arrange objects on the page The added autoshapes, images, charts or text boxes can be aligned, grouped and ordered on the 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 required objects. To select a text box, click on its border, not the text within it. After that you can use either the icons on the Layout tab of the top toolbar described below or the corresponding options from the right-click menu. Align objects To align two or more selected objects, Click the Align icon on the Layout tab of the top toolbar and select one of the following options: Align to Page to align objects relative to the edges of the page, Align to Margin to align objects relative to the page margins, Align Selected Objects (this option is selected by default) to align objects relative to each other, Click the Align icon once again and select the necessary alignment type from the list: Align Left - to line up the objects horizontally by the left edge of the leftmost object/left edge of the page/left page margin, Align Center - to line up the objects horizontally by their centers/center of the page/center of the space between the left and right page margins, Align Right - to line up the objects horizontally by the right edge of the rightmost object/right edge of the page/right page margin, Align Top - to line up the objects vertically by the top edge of the topmost object/top edge of the page/top page margin, Align Middle - to line up the objects vertically by their middles/middle of the page/middle of the space between the top and bottom page margins, Align Bottom - to line up the objects vertically by the bottom edge of the bottommost object/bottom edge of the page/bottom page margin. Alternatively, you can right-click the selected objects, choose the Align option from the contextual menu and then use one of the available alignment options. If you want to align a single object, it can be aligned relative to the edges of the page or to the page margins. The Align to Margin option is selected by default in this case. Distribute objects To distribute three or more selected objects horizontally or vertically so that there is equal space between them, Click the Align icon on the Layout tab of the top toolbar and select one of the following options: Align to Page to distribute objects between the edges of the page, Align to Margin to distribute objects between the page margins, Align Selected Objects (this option is selected by default) to distribute objects between two outermost selected objects, Click the Align icon once again and select the necessary distribution type from the list: Distribute Horizontally - to distribute objects evenly between the leftmost and rightmost selected objects/left and right edges of the page/left and right page margins. Distribute Vertically - to distribute objects evenly between the topmost and bottommost selected objects/top and bottom edges of the page/top and bottom page margins. Alternatively, you can right-click the selected objects, choose the Align option from the contextual menu and then use one of the available distribution options. Note: the distribution options are disabled if you select less than three objects. Group objects To group two or more selected objects or ungroup them, click the arrow next to the Group icon at the Layout tab on the top toolbar and select the necessary option from the list: Group - to combine several objects into a group so that they can be simultaneously rotated, moved, resized, aligned, arranged, copied, pasted, formatted like a single object. Ungroup - to ungroup the selected group of the previously combined 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. Note: the Group option is disabled if you select less than two objects. The Ungroup option is available only when a group of the previously combined objects is selected. Arrange objects To arrange objects (i.e. to change their order when several objects overlap each other), you can use the Bring Forward and Send Backward icons on the Layout tab of the top toolbar and select the required arrangement type from the list. To move the selected object(s) forward, click the arrow next to the Bring Forward icon on the Layout tab of the top toolbar and select the required arrangement type from the list: Bring To Foreground - to move the object(s) in front of all other objects, Bring Forward - 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 on the Layout tab of the top toolbar and select the required arrangement type from the list: Send To Background - to move the object(s) behind all other objects, Send Backward - to move the selected object(s) by one level backward as related to other objects. Alternatively, you can right-click the selected object(s), choose the Arrange option from the contextual menu and then use one of the available arrangement options." }, { "id": "UsageInstructions/AlignText.htm", "title": "Align your text in a paragraph", - "body": "The text is commonly aligned in four ways: left, right, center or justified. To do that, place the cursor to the position where you want the alignment to be applied (this can be a new line or already entered text), switch to the Home tab of the top toolbar, 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 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 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 icon situated at the top toolbar. Justified 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 Justified icon situated at the top toolbar. The alignment parameters are also available at the Paragraph - Advanced Settings window. right-click the text and choose the Paragraph Advanced Settings option from the contextual menu or use the Show advanced settings option at the right sidebar, open the Paragraph - Advanced Settings window, switch to the Indents & Spacing tab, select one of the alignment types from the Alignment list: Left, Center, Right, Justified, click the OK button, to apply the changes." + "body": "The text is commonly aligned in four ways: left-aligned text, right-aligned text, centered text or justified text. To align the text, place the cursor to the position where you want the alignment to be applied (this can be a new line or already entered text), switch to the Home tab of the top toolbar, select the alignment type you would like to apply: Left alignment (when the text is lined up to the left side of the page with the right side remaining unaligned) is done by clicking the Align left icon on the top toolbar. Center alignment (when the text is lined up in the center of the page with the right and the left sides remaining unaligned) is done by clicking the Align center icon on the top toolbar. Right alignment (when the text is lined up to the right side of the page with the left side remaining unaligned) is done by clicking the Align right icon on the top toolbar. Justified alignment (when the text is lined up to both the left and the right sides of the page, and additional spacing is added where necessary to keep the alignment) is done by clicking the Justified icon on the top toolbar. The alignment parameters are also available in the Paragraph - Advanced Settings window. right-click the text and choose the Paragraph - Advanced Settings option from the contextual menu or use the Show advanced settings option on the right sidebar, open the Paragraph - Advanced Settings window, switch to the Indents & Spacing tab, select one of the alignment types from the Alignment list: Left, Center, Right, Justified, click the OK button to apply the changes." }, { "id": "UsageInstructions/BackgroundColor.htm", "title": "Select background color for a paragraph", - "body": "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, select a color scheme for your document from the available ones clicking the Change color scheme icon at the Home tab of the top toolbar 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 open the color palettes window. You can access it in one of the following ways: click the downward arrow next to the 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. select any color in the available palettes After you select the necessary color using the icon, you'll be able to apply this color to any selected paragraph just clicking the 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 icon). To clear the background color of a certain paragraph, 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 open the color palettes window clicking the color field next to the Background Color caption at the right sidebar select the icon." + "body": "Select a background color for a paragraph A 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, select a color scheme for your document from the available ones clicking the Change color scheme icon at the Home tab on the top toolbar place the cursor within the required paragraph, or select several paragraphs with the mouse or the whole text using the Ctrl+A key combination open the color palettes window. You can access it in one of the following ways: click the downward arrow next to the icon on the Home tab of the top toolbar, or click the color field next to the Background Color caption on the right sidebar, or click the 'Show advanced settings' link on the right sidebar or select the 'Paragraph Advanced Settings' option on 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. select any color among the available palettes After you select the required color by using the icon, you'll be able to apply this color to any selected paragraph just by clicking the icon (it displays the selected color), without having to choose this color in the palette again. If you use the Background Color option on 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 and if you are also using some general color selected by clicking the icon). To remove the background color from a certain paragraph, place the cursor within the required paragraph, or select several paragraphs with the mouse or the whole text using the Ctrl+A key combination open the color palettes window by clicking the color field next to the Background Color caption on the right sidebar select the icon." }, { "id": "UsageInstructions/ChangeColorScheme.htm", "title": "Change color scheme", - "body": "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 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. The selected color scheme will be highlighted in the list. 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 icon at the Home tab of the top toolbar. The following palettes are available: Theme Colors - the colors that correspond to the selected color scheme of the document. Standard Colors - the default colors set. The selected color scheme does not affect them. Custom Color - click this caption if there is no needed color in the available palettes. Select the necessary colors range moving the vertical color slider and set the specific color dragging the color picker within the large square color field. Once you select a color with the color picker, the appropriate RGB and sRGB color values will be displayed in the fields on the right. You can also specify a color on the base of the RGB color model entering the necessary numeric values into the R, G, B (red, green, blue) fields or enter the sRGB hexadecimal code into the field marked with the # sign. The selected color appears in the New preview box. If the object was previously filled with any custom color, this color is displayed in the Current box so you can compare the original and modified colors. When the color is specified, click the Add button: The custom color will be applied to the selected element and added to the Custom color palette." + "body": "Color schemes are applied to the whole document. They are used to quickly change the appearance of your document because they define the Theme Colors palette for different document elements (font, background, tables, autoshapes, charts). If you applied some Theme Colors to the document elements and then select a different Color Scheme, the applied colors in your document will change correspondingly. To change a color scheme, click the downward arrow next to the Change color scheme icon on the Home tab of the top toolbar and select the required color scheme from the list: Office, Grayscale, Apex, Aspect, Civic, Concourse, Equity, Flow, Foundry, Median, Metro, Module, Odulent, Oriel, Origin, Paper, Solstice, Technic, Trek, Urban, Verve. The selected color scheme will be highlighted in the list. Once you select the preferred color scheme, you can select other colors in the color palettes window that corresponds to the document element you want to apply the color to. For most document elements, the color palettes window can be accessed by clicking the colored box on the right sidebar when the required element is selected. For the font, this window can be opened using the downward arrow next to the Font color icon on the Home tab of the top toolbar. The following palettes are available: Theme Colors - the colors that correspond to the selected color scheme of the document. Standard Colors - a set of default colors. The selected color scheme does not affect them. Custom Color - click this caption if the required color is missing among the available palettes. Select the necessary colors range moving the vertical color slider and set a specific color dragging the color picker within the large square color field. Once you select a color with the color picker, the appropriate RGB and sRGB color values will be displayed in the fields on the right. You can also define a color on the base of the RGB color model by entering the corresponding numeric values into the R, G, B (red, green, blue) fields or enter the sRGB hexadecimal code into the field marked with the # sign. The selected color appears in the New preview box. If the object was previously filled with any custom color, this color is displayed in the Current box so you can compare the original and modified colors. When the color is defined, click the Add button: The custom color will be applied to the selected element and added to the Custom color palette." }, { "id": "UsageInstructions/ChangeWrappingStyle.htm", "title": "Change text wrapping", - "body": "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: select a separate object on the page left-clicking it. To select a text box, click on its border, not the text within it. open the text wrapping settings: switch to the the Layout tab of the top toolbar and click the arrow next to the 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. select the necessary wrapping style: 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: Square - the text wraps the rectangular box that bounds the object. Tight - the text wraps the actual object edges. 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. Top and bottom - the text is only above and below the object. In front - the object overlaps the text. Behind - the text overlaps the object. 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. Change text wrapping for tables For tables, the following two wrapping styles are available: Inline table and Flow table. To change the currently selected wrapping style: right-click the table and select the Table Advanced Settings option, switch to the Text Wrapping tab of the Table - Advanced Settings window, select one of the following options: Inline table is used to select the wrapping style when the text is broken by the table as well as to set the alignment: left, center, right. Flow table is used to select the wrapping style when the text is wrapped around the table. 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." + "body": "Change the 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: left-click a separate object to select it. To select a text box, click on its border, not the text within it. open the text wrapping settings: switch to the the Layout tab of the top toolbar and click the arrow next to the 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. select the necessary wrapping style: 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 precisely positioned on the page: Square - the text wraps the rectangular box that bounds the object. Tight - the text wraps the actual object edges. Through - the text wraps around the object edges and fills the open white space within the object. To apply this effect, use the Edit Wrap Boundary option from the right-click menu. Top and bottom - the text is only above and below the object. In front - the object overlaps the text. Behind - the text overlaps the object. 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 required 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 required position. Change text wrapping for tables For tables, the following two wrapping styles are available: Inline table and Flow table. To change the currently selected wrapping style: right-click the table and select the Table Advanced Settings option, switch to the Text Wrapping tab of the Table - Advanced Settings window, select one of the following options: Inline table is used to select the wrapping style when the text is broken by the table as well as to set the alignment: left, center, right. Flow table is used to select the wrapping style when the text is wrapped around the table. 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 on the Table Position tab." }, { "id": "UsageInstructions/CopyClearFormatting.htm", "title": "Copy/clear text formatting", - "body": "To copy a certain text formatting, select the text passage which formatting you need to copy with the mouse or using the keyboard, click the Copy style icon at the Home tab of the top toolbar (the mouse pointer will look like this ), select the text passage you want to apply the same formatting to. To apply the copied formatting to multiple text passages, select the text passage which formatting you need to copy with the mouse or using the keyboard, double-click the Copy style icon at the Home tab of the top toolbar (the mouse pointer will look like this and the Copy style icon will remain selected: ), select the necessary text passages one by one to apply the same formatting to each of them, to exit this mode, click the Copy style icon once again or press the Esc key on the keyboard. To quickly remove the applied formatting from your text, select the text passage which formatting you want to remove, click the Clear style icon at the Home tab of the top toolbar." + "body": "To copy a certain text formatting, select the text passage whose formatting you need to copy with the mouse or using the keyboard, click the Copy style icon on the Home tab of the top toolbar (the mouse pointer will look like this ), select the required text passage to apply the same formatting. To apply the copied formatting to multiple text passages, select the text passage whose formatting you need to copy with the mouse or use the keyboard, double-click the Copy style icon on the Home tab of the top toolbar (the mouse pointer will look like this and the Copy style icon will remain selected: ), select the necessary text passages one by one to apply the same formatting to each of them, to exit this mode, click the Copy style icon once again or press the Esc key on the keyboard. To quickly remove the applied formatting from your text, select the text passage whose formatting you want to remove, click the Clear style icon on the Home tab of the top toolbar." }, { "id": "UsageInstructions/CopyPasteUndoRedo.htm", "title": "Copy/paste text passages, undo/redo your actions", - "body": "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 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 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. Paste – find the place in your document where you need to paste the previously copied text fragment/object and use the Paste option from the right-click menu, or the Paste icon at the top toolbar. The text/object will be inserted at the current cursor position. The data can be previously copied from the same document. In the online version, the following key combinations are only used to copy or paste data from/into another document or some other program, in the desktop version, both the corresponding buttons/menu options and key combinations can be used for any copy/paste operations: Ctrl+X key combination for cutting; Ctrl+C key combination for copying; Ctrl+V key combination for pasting. Note: instead of cutting and pasting text within the same document you can just select the necessary text passage and drag and drop it to the necessary position. Use the Paste Special feature Once the copied text is pasted, the Paste Special button appears next to the inserted text passage. Click this button to select the necessary paste option. When pasting the paragraph text or some text within autoshapes, the following options are available: Paste - allows to paste the copied text keeping its original formatting. Keep text only - allows to paste the text without its original formatting. If you paste the copied table into an existing table, the following options are available: Overwrite cells - allows to replace the existing table contents with the pasted data. This option is selected by default. Nest table - allows to paste the copied table as a nested table into the selected cell of the existing table. Keep text only - allows to paste the table contents as text values separated by the tab character. Undo/redo your actions To perform the undo/redo operations, use the corresponding icons in the editor header or keyboard shortcuts: Undo – use the Undo icon at the left part of the editor header or the Ctrl+Z key combination to undo the last operation you performed. Redo – use the Redo icon at the left part of the editor header or the Ctrl+Y key combination to redo the last undone operation. Note: when you co-edit a document in the Fast mode, the possibility to Redo the last undone operation is not available." + "body": "Use basic clipboard operations To cut, copy and paste text passages and inserted objects (autoshapes, images, charts) in the current document, select the corresponding options from the right-click menu or click the icons located on 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 selected text and send it to the computer clipboard memory. The cut text 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 icon on the top toolbar to copy the selected text to the computer clipboard memory. The copied text can be later inserted to another place in the same document. Paste – find the place in your document where you need to paste the previously copied text fragment/object and use the the Paste option from the right-click menu, or the Paste icon on the top toolbar. The copied text/object will be inserted to the current cursor position. The data can be previously copied from the same document. In the online version, the key combinations below are only used to copy or paste data from/into another document or a program. In the desktop version, both corresponding buttons/menu options and key combinations can be used for any copy/paste operations: Ctrl+X key combination for cutting; Ctrl+C key combination for copying; Ctrl+V key combination for pasting. Note: instead of cutting and pasting text fragments in the same document, you can just select the required text passage and drag and drop it to the necessary position. Use the Paste Special feature Once the copied text is pasted, the Paste Special button appears next to the inserted text passage. Click this button to select the necessary paste option. When pasting a text paragraph or some text within autoshapes, the following options are available: Paste - allows pasting the copied text keeping its original formatting. Keep text only - allows pasting the text without its original formatting. If you copy a table and paste it into an already existing table, the following options are available: Overwrite cells - allows replacing the contents of the existing table with the copied data. This option is selected by default. Nest table - allows pasting the copied table as a nested table into the selected cell of the existing table. Keep text only - allows pasting the table contents as text values separated by the tab character. To enable / disable the automatic appearance of the Paste Special button after pasting, go to the File tab > Advanced Settings... and check / uncheck the Cut, copy and paste checkbox. Undo/redo your actions To perform undo/redo operations, click the corresponding icons in the editor header or use the following keyboard shortcuts: Undo – use the Undo icon on the left side of the editor header or the Ctrl+Z key combination to undo the last operation you performed. Redo – use the Redo icon on the left part of the editor header or the Ctrl+Y key combination to redo the last undone operation. Note: when you co-edit a document in the Fast mode, the possibility to Redo the last undone operation is not available." }, { "id": "UsageInstructions/CreateLists.htm", "title": "Create lists", - "body": "To create a list in your document, place the cursor to the position where a list will be started (this can be a new line or the already entered text), switch to the Home tab of the top toolbar, select the list type you would like to start: Unordered list with markers is created using the Bullets icon situated at the top toolbar Ordered list with digits or letters is created using the Numbering icon situated at the top toolbar Note: click the downward arrow next to the Bullets or Numbering icon to select how the list is going to look like. 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. The program also creates numbered lists automatically when you enter digit 1 with a dot or a bracket and a space after it: 1., 1). Bulleted lists can be created automatically when you enter the -, * characters and a space after them. You can also change the text indentation in the lists and their nesting using the Multilevel list , Decrease indent , and Increase indent 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. Join and separate lists To join a list to the preceding one: click the first item of the second list with the right mouse button, use the Join to previous list option from the contextual menu. The lists will be joined and the numbering will continue in accordance with the first list numbering. To separate a list: click the list item where you want to begin a new list with the right mouse button, use the Separate list option from the contextual menu. The list will be separated, and the numbering in the second list will begin anew. Change numbering To continue sequential numbering in the second list according to the previous list numbering: click the first item of the second list with the right mouse button, use the Continue numbering option from the contextual menu. The numbering will continue in accordance with the first list numbering. To set a certain numbering initial value: click the list item where you want to apply a new numbering value with the right mouse button, use the Set numbering value option from the contextual menu, in a new window that opens, set the necessary numeric value and click the OK button. Change the list settings To change the bulleted or numbered list settings, such as a bullet/number type, alignment, size and color: click an existing list item or select the text you want to format as a list, click the Bullets or Numbering icon at the Home tab of the top toolbar, select the List Settings option, the List Settings window will open. The bulleted list settings window looks like this: The numbered list settings window looks like this: For the bulleted list, you can choose a character used as a bullet, while for the numbered list you can choose the numbering type. The Alignment, Size and Color options are the same both for the bulleted and numbered lists. Bullet - allows to select the necessary character used for the bulleted list. When you click on the Font and Symbol field, the Symbol window opens that allows to choose one of the available characters. To learn more on how to work with symbols, you can refer to this article. Type - allows to select the necessary numbering type used for the numbered list. The following options are available: None, 1, 2, 3,..., a, b, c,..., A, B, C,..., i, ii, iii,..., I, II, III,.... Alignment - allows to select the necessary bullet/number alignment type that is used to align bullets/numbers horizontally within the space designated for them. The available alignment types are the following: Left, Center, Right. Size - allows to select the necessary bullet/number size. The Like a text option is selected by default. When this option is selected, the bullet or number size corresponds to the text size. You can choose one of the predefined sizes from 8 to 96. Color - allows to select the necessary bullet/number color. The Like a text option is selected by default. When this option is selected, the bullet or number color corresponds to the text color. You can choose the Automatic option to apply the automatic color, or select one of the theme colors, or standard colors on the palette, or specify a custom color. All the changes are displayed in the Preview field. click OK to apply the changes and close the settings window. To change the multilevel list settings, click a list item, click the Multilevel list icon at the Home tab of the top toolbar, select the List Settings option, the List Settings window will open. The multilevel list settings window looks like this: Choose the necessary level of the list in the Level field on the left, then use the buttons on the top to adjust the bullet or number appearance for the selected level: Type - allows to select the necessary numbering type used for the numbered list or the necessary character used for the bulleted list. The following options are available for the numbered list: None, 1, 2, 3,..., a, b, c,..., A, B, C,..., i, ii, iii,..., I, II, III,.... For the bulleted list, you can choose one of the default symbols or use the New bullet option. When you click this option, the Symbol window opens that allows to choose one of the available characters. To learn more on how to work with symbols, you can refer to this article. Alignment - allows to select the necessary bullet/number alignment type that is used to align bullets/numbers horizontally within the space designated for them at the beginning of the paragraph. The available alignment types are the following: Left, Center, Right. Size - allows to select the necessary bullet/number size. The Like a text option is selected by default. You can choose one of the predefined sizes from 8 to 96. Color - allows to select the necessary bullet/number color. The Like a text option is selected by default. When this option is selected, the bullet or number color corresponds to the text color. You can choose the Automatic option to apply the automatic color, or select one of the theme colors, or standard colors on the palette, or specify a custom color. All the changes are displayed in the Preview field. click OK to apply the changes and close the settings window." + "body": "To create a list in your document, place the cursor to the position where a list will be started (this can be a new line or the already entered text), switch to the Home tab of the top toolbar, select the list type you would like to start: Unordered list with markers is created using the Bullets icon on the top toolbar Ordered list with digits or letters is created using the Numbering icon on the top toolbar Note: click the downward arrow next to the Bullets or Numbering icon to select how the list is going to look like. 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 keep on typing common text paragraphs. The program also creates numbered lists automatically when you enter digit 1 with a dot or a bracket and a space after it: 1., 1). Bulleted lists can be created automatically when you enter the -, * characters and a space after them. You can also change the text indentation in the lists and their nesting by clicking the Multilevel list , Decrease indent , and Increase indent icons on the Home tab of the top toolbar. Note: the additional indentation and spacing parameters can be changed on 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. Combine and separate lists To combine a list with the previous one: click the first item of the second list with the right mouse button, use the Join to previous list option from the contextual menu. The lists will be joined and the numbering will continue in accordance with the first list numbering. To separate a list: click the list item where you want to begin a new list with the right mouse button, use the Separate list option from the contextual menu. The lists will be combined, and the numbering will continue in accordance with the first list numbering. Change numbering To continue sequential numbering in the second list according to the previous list numbering: click the first item of the second list with the right mouse button, use the Continue numbering option from the contextual menu. The numbering will continue in accordance with the first list numbering. To set a certain numbering initial value: click the list item where you want to apply a new numbering value with the right mouse button, use the Set numbering value option from the contextual menu, in the new opened window, set the required numeric value and click the OK button. Change the list settings To change the bulleted or numbered list settings, such as a bullet/number type, alignment, size and color: click an existing list item or select the text you want to format as a list, click the Bullets or Numbering icon on the Home tab of the top toolbar, select the List Settings option, the List Settings window will open. The bulleted list settings window looks like this: The numbered list settings window looks like this: For the bulleted list, you can choose a character used as a bullet, while for the numbered list you can choose the numbering type. The Alignment, Size and Color options are the same both for the bulleted and numbered lists. Bullet allows selecting the required character used for the bulleted list. When you click on the Font and Symbol field, the Symbol window will appear, and you will be able to choose one of the available characters. To learn more on how to work with symbols, please refer to this article. Type allows selecting the required numbering type used for the numbered list. The following options are available: None, 1, 2, 3,..., a, b, c,..., A, B, C,..., i, ii, iii,..., I, II, III,.... Alignment allows selecting the required bullet/number alignment type that is used to align bullets/numbers horizontally. The following alignment types are available: Left, Center, Right. Size allows selecting the required bullet/number size. The Like a text option is selected by default. When this option is selected, the bullet or number size corresponds to the text size. You can choose one of the predefined sizes ranging from 8 to 96. Color allows selecting the required bullet/number color. The Like a text option is selected by default. When this option is selected, the bullet or number color corresponds to the text color. You can choose the Automatic option to apply the automatic color, or select one of the theme colors, or standard colors in the palette, or specify a custom color. All the changes are displayed in the Preview field. click OK to apply the changes and close the settings window. To change the multilevel list settings, click a list item, click the Multilevel list icon on the Home tab of the top toolbar, select the List Settings option, the List Settings window will open. The multilevel list settings window looks like this: Choose the necessary level of the list in the Level field on the left, then use the buttons on the top to adjust the bullet or number appearance for the selected level: Type allows selecting the required numbering type used for the numbered list or the required character used for the bulleted list. The following options are available for the numbered list: None, 1, 2, 3,..., a, b, c,..., A, B, C,..., i, ii, iii,..., I, II, III,.... For the bulleted list, you can choose one of the default symbols or use the New bullet option. When you click this option, the Symbol window will appear, and you will be able to choose one of the available characters. To learn more on how to work with symbols, please refer to this article. Alignment allows selecting the required bullet/number alignment type that is used to align bullets/numbers horizontally at the beginning of the paragraph. The following alignment types are available: Left, Center, Right. Size allows selecting the required bullet/number size. The Like a text option is selected by default. You can choose one of the predefined sizes ranging from 8 to 96. Color allows selecting the required bullet/number color. The Like a text option is selected by default. When this option is selected, the bullet or number color corresponds to the text color. You can choose the Automatic option to apply the automatic color, or select one of the theme colors, or standard colors on the palette, or specify a custom color. All the changes are displayed in the Preview field. click OK to apply the changes and close the settings window." }, { "id": "UsageInstructions/CreateTableOfContents.htm", "title": "Create a Table of Contents", - "body": "A table of contents contains a list of all chapters (sections etc.) in a document and displays the numbers of the pages where each chapter is started. This allows to easily navigate through a multi-page document quickly switching to the necessary part of the text. The table of contents is generated automatically on the base of the document headings formatted using built-in styles. This makes it easy to update the created table of contents without the necessity to edit headings and change page numbers manually if the document text has been changed. Define the heading structure Format headings First of all, format headings in you document using one of the predefined styles. To do that, Select the text you want to include into the table of contents. Open the style menu on the right side of the Home tab at the top toolbar. Click the style you want to apply. By default, you can use the Heading 1 - Heading 9 styles. Note: if you want to use other styles (e.g. Title, Subtitle etc.) to format headings that will be included into the table of contents, you will need to adjust the table of contents settings first (see the corresponding section below). To learn more about available formatting styles, you can refer to this page. Manage headings Once the headings are formatted, you can click the Navigation icon at the left sidebar to open the panel that displays the list of all headings with corresponding nesting levels. This panel allows to easily navigate between headings in the document text as well as manage the heading structure. Right-click on a heading in the list and use one of the available options from the menu: Promote - to move the currently selected heading up to the higher level in the hierarchical structure, e.g. change it from Heading 2 to Heading 1. Demote - to move the currently selected heading down to the lower level in the hierarchical structure, e.g. change it from Heading 1 to Heading 2. New heading before - to add a new empty heading of the same level before the currently selected one. New heading after - to add a new empty heading of the same level after the currently selected one. New subheading - to add a new empty subheading (i.e. a heading with lower level) after the currently selected heading. When the heading or subheading is added, click on the added empty heading in the list and type in your own text. This can be done both in the document text and on the Navigation panel itself. Select content - to select the text below the current heading in the document (including the text related to all subheadings of this heading). Expand all - to expand all levels of headings at the Navigation panel. Collapse all - to collapse all levels of headings, excepting level 1, at the Navigation panel. Expand to level - to expand the heading structure to the selected level. E.g. if you select level 3, then levels 1, 2 and 3 will be expanded, while level 4 and all lower levels will be collapsed. To manually expand or collapse separate heading levels, use the arrows to the left of the headings. To close the Navigation panel, click the Navigation icon at the left sidebar once again. Insert a Table of Contents into the document To insert a table of contents into your document: Position the insertion point where you want to add the table of contents. Switch to the References tab of the top toolbar. Click the Table of Contents icon at the top toolbar, or click the arrow next to this icon and select the necessary layout option from the menu. You can select the table of contents that displays headings, page numbers and leaders, or headings only. Note: the table of content appearance can be adjusted later via the table of contents settings. The table of contents will be added at the current cursor position. To change the position of the table of contents, you can select the table of contents field (content control) and simply drag it to the desired place. To do that, click the button in the upper left corner of the table of contents field and drag it without releasing the mouse button to another position in the document text. To navigate between headings, press the Ctrl key and click the necessary heading within the table of contents field. You will go to the corresponding page. Adjust the created Table of Contents Refresh the Table of Contents After the table of contents is created, you may continue editing your text by adding new chapters, changing their order, removing some paragraphs, or expanding the text related to a heading so that the page numbers that correspond to the preceding or subsequent section may change. In this case, use the Refresh option to automatically apply all changes to the table of contents. Click the arrow next to the Refresh icon at the References tab of the top toolbar and select the necessary option from the menu: Refresh entire table - to add the headings that you added to the document, remove the ones you deleted from the document, update the edited (renamed) headings as well as update page numbers. Refresh page numbers only - to update page numbers without applying changes to the headings. Alternatively, you can select the table of contents in the document text and click the Refresh icon at the top of the table of contents field to display the above mentioned options. It's also possible to right-click anywhere within the table of contents and use the corresponding options from the contextual menu. Adjust the Table of Contents settings To open the table of contents settings, you can proceed in the following ways: Click the arrow next to the Table of Contents icon at the top toolbar and select the Settings option from the menu. Select the table of contents in the document text, click the arrow next to the table of contents field title and select the Settings option from the menu. Right-click anywhere within the table of contents and use the Table of contents settings option from the contextual menu. A new window will open where you can adjust the following settings: Show page numbers - this option allows to choose if you want to display page numbers or not. Right align page numbers - this option allows to choose if you want to align page numbers by the right side of the page or not. Leader - this option allows to choose the leader type you want to use. A leader is a line of characters (dots or hyphens) that fills the space between a heading and a corresponding page number. It's also possible to select the None option if you do not want to use leaders. Format Table of Contents as links - this option is checked by default. If you uncheck it, you will not be able to switch to the necessary chapter by pressing Ctrl and clicking the corresponding heading. Build table of contents from - this section allows to specify the necessary number of outline levels as well as the default styles that will be used to create the table of contents. Check the necessary radio button: Outline levels - when this option is selected, you will be able to adjust the number of hierarchical levels used in the table of contents. Click the arrows in the Levels field to decrease or increase the number of levels (the values from 1 to 9 are available). E.g., if you select the value of 3, headings that have levels 4 - 9 will not be included into the table of contents. Selected styles - when this option is selected, you can specify additional styles that can be used to build the table of contents and assign a corresponding outline level to each of them. Specify the desired level value in the field to the right of the style. Once you save the settings, you will be able to use this style when creating the table of contents. Styles - this options allows to select the desired appearance of the table of contents. Select the necessary style from the drop-down list. The preview field above displays how the table of contents should look like. The following four default styles are available: Simple, Standard, Modern, Classic. The Current option is used if you customize the table of contents style. Click the OK button within the settings window to apply the changes. Customize the Table of Contents style After you apply one of the default table of contents styles within the Table of Contents settings window, you can additionally modify this style so that the text within the table of contents field looks like you need. Select the text within the table of contents field, e.g. pressing the button in the upper left corner of the table of contents content control. Format table of contents items changing their font type, size, color or applying the font decoration styles. Consequently update styles for items of each level. To update the style, right-click the formatted item, select the Formatting as Style option from the contextual menu and click the Update toc N style option (toc 2 style corresponds to items that have level 2, toc 3 style corresponds to items with level 3 and so on). Refresh the table of contents. Remove the Table of Contents To remove the table of contents from the document: click the arrow next to the Table of Contents icon at the top toolbar and use the Remove table of contents option, or click the arrow next to the table of contents content control title and use the Remove table of contents option." + "body": "A table of contents contains a list of all the chapters (sections, etc.) in a document and displays the numbers of the pages where each chapter begins. It allows easily navigating through a multi-page document and quickly switching to the required part of the text. The table of contents is generated automatically on the basis of the document headings formatted using built-in styles. This makes it easy to update the created table of contents without having to edit the headings and change the page numbers manually if the text of the document has been changed. Define the heading structure Format headings First of all, format the headings in your document using one of the predefined styles. To do that, Select the text you want to include into the table of contents. Open the style menu on the right side of the Home tab at the top toolbar. Click the required style to be applied. By default, you can use the Heading 1 - Heading 9 styles. Note: if you want to use other styles (e.g. Title, Subtitle etc.) to format headings that will be included into the table of contents, you will need to adjust the table of contents settings first (see the corresponding section below). To learn more about available formatting styles, please refer to this page. Manage headings Once the headings are formatted, you can click the Navigation icon on the left sidebar to open the panel that displays the list of all headings with corresponding nesting levels. This panel allows easily navigating between headings in the document text as well as managing the heading structure. Right-click on a heading in the list and use one of the available options from the menu: Promote - to move the currently selected heading up to the higher level in the hierarchical structure, e.g. change it from Heading 2 to Heading 1. Demote - to move the currently selected heading down to the lower level in the hierarchical structure, e.g. change it from Heading 1 to Heading 2. New heading before - to add a new empty heading of the same level before the currently selected one. New heading after - to add a new empty heading of the same level after the currently selected one. New subheading - to add a new empty subheading (i.e. a heading with lower level) after the currently selected heading. When the heading or subheading is added, click on the added empty heading in the list and type in your own text. This can be done both in the document text and on the Navigation panel itself. Select content - to select the text below the current heading in the document (including the text related to all subheadings of this heading). Expand all - to expand all levels of headings at the Navigation panel. Collapse all - to collapse all levels of headings, excepting level 1, at the Navigation panel. Expand to level - to expand the heading structure to the selected level. E.g. if you select level 3, then levels 1, 2 and 3 will be expanded, while level 4 and all lower levels will be collapsed. To manually expand or collapse separate heading levels, use the arrows to the left of the headings. To close the Navigation panel, click the Navigation icon on the left sidebar once again. Insert a Table of Contents into the document To insert a table of contents into your document: Position the insertion point where the table of contents should be added. Switch to the References tab of the top toolbar. Click the Table of Contents icon on the top toolbar, or click the arrow next to this icon and select the necessary layout option from the menu. You can select the table of contents that displays headings, page numbers and leaders, or headings only. Note: the table of content appearance can be adjusted later via the table of contents settings. The table of contents will be added at the current cursor position. To change the position of the table of contents, you can select the table of contents field (content control) and simply drag it to the desired place. To do that, click the button in the upper left corner of the table of contents field and drag it without releasing the mouse button to another position in the document text. To navigate between headings, press the Ctrl key and click the necessary heading within the table of contents field. You will go to the corresponding page. Adjust the created Table of Contents Refresh the Table of Contents After the table of contents is created, you can continue editing your text by adding new chapters, changing their order, removing some paragraphs, or expanding the text related to a heading so that the page numbers that correspond to the previous or the following section may change. In this case, use the Refresh option to automatically apply all changes to the table of contents. Click the arrow next to the Refresh icon on the References tab of the top toolbar and select the necessary option from the menu: Refresh entire table - to add the headings that you added to the document, remove the ones you deleted from the document, update the edited (renamed) headings as well as update page numbers. Refresh page numbers only - to update page numbers without applying changes to the headings. Alternatively, you can select the table of contents in the document text and click the Refresh icon at the top of the table of contents field to display the above mentioned options. It's also possible to right-click anywhere within the table of contents and use the corresponding options from the contextual menu. Adjust the Table of Contents settings To open the table of contents settings, you can proceed in the following ways: Click the arrow next to the Table of Contents icon on the top toolbar and select the Settings option from the menu. Select the table of contents in the document text, click the arrow next to the table of contents field title and select the Settings option from the menu. Right-click anywhere within the table of contents and use the Table of contents settings option from the contextual menu. A new window will open, and you will be able to adjust the following settings: Show page numbers - this option allows displaying the page numbers. Right align page numbers - this option allows aligning the page numbers on the right side of the page. Leader - this option allows choose the required leader type. A leader is a line of characters (dots or hyphens) that fills the space between a heading and the corresponding page number. It's also possible to select the None option if you do not want to use leaders. Format Table of Contents as links - this option is checked by default. If you uncheck it, you will not be able to switch to the necessary chapter by pressing Ctrl and clicking the corresponding heading. Build table of contents from - this section allows specifying the necessary number of outline levels as well as the default styles that will be used to create the table of contents. Check the necessary radio button: Outline levels - when this option is selected, you will be able to adjust the number of hierarchical levels used in the table of contents. Click the arrows in the Levels field to decrease or increase the number of levels (the values from 1 to 9 are available). E.g., if you select the value of 3, headings that have levels 4 - 9 will not be included into the table of contents. Selected styles - when this option is selected, you can specify additional styles that can be used to build the table of contents and assign the corresponding outline level to each of them. Specify the desired level value in the field on the right of the style. Once you save the settings, you will be able to use this style when creating a table of contents. Styles - this options allows selecting the desired appearance of the table of contents. Select the necessary style from the drop-down list. The preview field above displays how the table of contents should look like. The following four default styles are available: Simple, Standard, Modern, Classic. The Current option is used if you customize the table of contents style. Click the OK button within the settings window to apply the changes. Customize the Table of Contents style After you apply one of the default table of contents styles within the Table of Contents settings window, you can additionally modify this style so that the text within the table of contents field looks like you need. Select the text within the table of contents field, e.g. pressing the button in the upper left corner of the table of contents content control. Format table of contents items changing their font type, size, color or applying the font decoration styles. Consequently update styles for items of each level. To update the style, right-click the formatted item, select the Formatting as Style option from the contextual menu and click the Update toc N style option (toc 2 style corresponds to items that have level 2, toc 3 style corresponds to items with level 3 and so on). Refresh the table of contents. Remove the Table of Contents To remove the table of contents from the document: click the arrow next to the Table of Contents icon on the top toolbar and use the Remove table of contents option, or click the arrow next to the table of contents content control title and use the Remove table of contents option." }, { "id": "UsageInstructions/DecorationStyles.htm", "title": "Apply font decoration styles", - "body": "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. Bold Is used to make the font bold giving it more weight. Italic Is used to make the font italicized giving it some right side tilt. Underline Is used to make the text underlined with the line going under the letters. Strikeout Is used to make the text struck out with the line going through the letters. Superscript Is used to make the text smaller and place it to the upper part of the text line, e.g. as in fractions. Subscript Is used to make the text smaller and place it to the lower part of the text line, e.g. as in chemical formulas. To access advanced font settings, click the right mouse button and select the Paragraph Advanced Settings option from the menu or use the Show advanced settings link at the right sidebar. Then the Paragraph - Advanced Settings window will open where you need to switch to the Font tab. Here you can use the following font decoration styles and settings: Strikethrough is used to make the text struck out with the line going through the letters. Double strikethrough is used to make the text struck out with the double line going through the letters. Superscript is used to make the text smaller and place it to the upper part of the text line, e.g. as in fractions. Subscript is used to make the text smaller and place it to the lower part of the text line, e.g. as in chemical formulas. Small caps is used to make all letters lower case. All caps is used to make all letters upper case. Spacing is used to set the space between the characters. Increase the default value to apply the Expanded spacing, or decrease the default value to apply the Condensed spacing. Use the arrow buttons or enter the necessary value in the box. Position is used to set the characters position (vertical offset) in the line. Increase the default value to move characters upwards, or decrease the default value to move characters downwards. Use the arrow buttons or enter the necessary value in the box. All the changes will be displayed in the preview field below." + "body": "You can apply various font decoration styles using the corresponding icons on the Home tab of the top toolbar. Note: in case you want to apply the formatting to the already existing text in the document, select it with the mouse or use the keyboard and apply the formatting. Bold Used to make the font bold giving it a heavier appearance. Italic Used to make the font slightly slanted to the right. Underline Used to make the text underlined with a line going under the letters. Strikeout Used to make the text struck out with a line going through the letters. Superscript Used to make the text smaller placing it in the upper part of the text line, e.g. as in fractions. Subscript Used to make the text smaller placing it in the lower part of the text line, e.g. as in chemical formulas. To access the advanced font settings, click the right mouse button and select the Paragraph Advanced Settings option from the menu or use the Show advanced settings link on the right sidebar. Then the Paragraph - Advanced Settings window will appear, and you will need to switch to the Font tab. Here you can use the following font decoration styles and settings: Strikethrough is used to make the text struck out with a line going through the letters. Double strikethrough is used to make the text struck out with a double line going through the letters. Superscript is used to make the text smaller placing it in the upper part of the text line, e.g. as in fractions. Subscript is used to make the text smaller placing it in the lower part of the text line, e.g. as in chemical formulas. Small caps is used to make all letters lower case. All caps is used to make all letters upper case. Spacing is used to set the space between the characters. Increase the default value to apply the Expanded spacing, or decrease the default value to apply the Condensed spacing. Use the arrow buttons or enter the necessary value in the box. Position is used to set the characters position (vertical offset) in the line. Increase the default value to move characters upwards, or decrease the default value to move characters downwards. Use the arrow buttons or enter the necessary value in the box. All the changes will be displayed in the preview field below." }, { "id": "UsageInstructions/FontTypeSizeColor.htm", "title": "Set font type, size, and color", - "body": "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. Font Is used to select one of the fonts from the list of the available ones. If a required font is not available in the list, you can download and install it on your operating system, after that the font will be available for use in the desktop version. Font size Is used to select among the preset font size values from the dropdown list (the default values are: 8, 9, 10, 11, 12, 14, 16, 18, 20, 22, 24, 26, 28, 36, 48, 72 and 96). It's also possible to manually enter a custom value to the font size field and then press Enter. Increment font size Is used to change the font size making it larger one point each time the button is pressed. Decrement font size Is used to change the font size making it smaller one point each time the button is pressed. Highlight color Is 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 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 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 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. Note: to learn more about the work with color palettes, please refer to this page." + "body": "Set the font type, size, and color You can select the font type, its size and color using the corresponding icons on the Home tab of the top toolbar. Note: in case you want to apply the formatting to the already existing text in the document, select it with the mouse or use the keyboard and apply the formatting. Font Used to select a font from the list of the the available fonts. If the required font is not available in the list, you can download and install it on your operating system, and the font will be available in the desktop version. Font size Used to choose from the preset font size values in the dropdown list (the default values are: 8, 9, 10, 11, 12, 14, 16, 18, 20, 22, 24, 26, 28, 36, 48, 72 and 96). It's also possible to manually enter a custom value in the font size field and then press Enter. Increment font size Used to change the font size making it one point bigger each time the button is pressed. Decrement font size Used to change the font size making it one point smaller each time the button is pressed. Highlight color Used to mark separate sentences, phrases, words, or even characters by adding a color band that imitates the highlighter pen effect throughout the text. You can select the required part of the text and click the downward arrow next to the icon to select a color in the palette (this color set does not depend on the selected Color scheme and includes 16 colors) - the color will be applied to the selected text. Alternatively, you can first choose a highlight color and then start selecting the text with the mouse - the mouse pointer will look like this and you'll be able to highlight several different parts of your text sequentially. To stop highlighting, just click the icon once again. To delete the highlight color, choose the No Fill option. The Highlight color is different from the Background color 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 color 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 to black, the font color will automatically change to 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 in 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. Note: to learn more about color palettes, please refer to this page." }, { "id": "UsageInstructions/FormattingPresets.htm", "title": "Apply formatting styles", - "body": "Each formatting style is a set of predefined formatting options: (font size, color, line spacing, alignment etc.). The styles allow you to quickly format different parts of the document (headings, subheadings, lists, normal text, quotes) instead of applying several formatting options individually each time. This also ensures a consistent appearance throughout the entire document. Style application depends on whether a style is a paragraph style (normal, no spacing, headings, list paragraph etc.), or the text style (based on the font type, size, color), as well as on whether a text passage is selected, or the mouse cursor is positioned within a word. In some cases you might need to select the necessary style from the style library twice so that it can be applied correctly: when you click the style at the style panel for the first time, the paragraph style properties are applied. When you click it for the second time, the text properties are applied. Use default styles To apply one of the available text formatting styles, place the cursor within the paragraph you need, or select several paragraphs you want to apply one of the formatting styles to, 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, footer, header, footnote text. Edit existing styles and create new ones To change an existing style: Apply the necessary style to a paragraph. Select the paragraph text and change all the formatting parameters you need. Save the changes made: right-click the edited text, select the Formatting as Style option and then choose the Update 'StyleName' Style option ('StyleName' corresponds to the style you've applied at the step 1), or select the edited text passage with the mouse, drop-down the style gallery, right-click the style you want to change and select the Update from selection option. Once the style is modified, all the paragraphs within the document formatted using this style will change their appearance correspondingly. To create a completely new style: Format a text passage as you need. Select an appropriate way to save the style: right-click the edited text, select the Formatting as Style option and then choose the Create new Style option, or select the edited text passage with the mouse, drop-down the style gallery and click the New style from selection option. Set the new style parameters in the Create New Style window that opens: Specify the new style name in the text entry field. Select the desired style for the subsequent paragraph from the Next paragraph style list. It's also possible to choose the Same as created new style option. Click the OK button. The created style will be added to the style gallery. Manage your custom styles: To restore the default settings of a certain style you've changed, right-click the style you want to restore and select the Restore to default option. To restore the default settings of all the styles you've changed, right-click any default style in the style gallery and select the Restore all to default styles option. To delete one of the new styles you've created, right-click the style you want to delete and select the Delete style option. To delete all the new styles you've created, right-click any new style you've created and select the Delete all custom styles option." + "body": "Each formatting style is a set of predefined formatting options: (font size, color, line spacing, alignment etc.). The styles allow you to quickly format different parts of the document (headings, subheadings, lists, normal text, quotes) instead of applying several formatting options individually each time. This also ensures the consistent appearance of the whole document. Applying a style depends on whether this style is a paragraph style (normal, no spacing, headings, list paragraph etc.), or a text style (based on the font type, size, color). It also depends on whether a text passage is selected, or the mouse cursor is placed on a word. In some cases you might need to select the required style from the style library twice, so that it can be applied correctly: when you click the style in the style panel for the first time, the paragraph style properties are applied. When you click it for the second time, the text properties are applied. Use default styles To apply one of the available text formatting styles, place the cursor within the required paragraph, or select several paragraphs, select the required style from the style gallery on the right on 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, footer, header, footnote text. Edit existing styles and create new ones To change an existing style: Apply the necessary style to a paragraph. Select the paragraph text and change all the formatting parameters you need. Save the changes made: right-click the edited text, select the Formatting as Style option and then choose the Update 'StyleName' Style option ('StyleName' corresponds to the style you've applied at the step 1), or select the edited text passage with the mouse, drop-down the style gallery, right-click the style you want to change and select the Update from selection option. Once the style is modified, all the paragraphs in the document formatted with this style will change their appearance correspondingly. To create a completely new style: Format a text passage as you need. Select an appropriate way to save the style: right-click the edited text, select the Formatting as Style option and then choose the Create new Style option, or select the edited text passage with the mouse, drop-down the style gallery and click the New style from selection option. Set the new style parameters in the opened Create New Style window: Specify the new style name in the text entry field. Select the desired style for the subsequent paragraph from the Next paragraph style list. It's also possible to choose the Same as created new style option. Click the OK button. The created style will be added to the style gallery. Manage your custom styles: To restore the default settings of a certain style you've changed, right-click the style you want to restore and select the Restore to default option. To restore the default settings of all the styles you've changed, right-click any default style in the style gallery and select the Restore all to default styles option. To delete one of the new styles you've created, right-click the style you want to delete and select the Delete style option. To delete all the new styles you've created, right-click any new style you've created and select the Delete all custom styles option." }, { "id": "UsageInstructions/InsertAutoshapes.htm", "title": "Insert autoshapes", - "body": "Insert an autoshape To add an autoshape to your document, switch to the Insert tab of the top toolbar, click the Shape icon at the top toolbar, select one of the available autoshape groups: basic shapes, figured arrows, math, charts, stars & ribbons, callouts, buttons, rectangles, lines, click the necessary autoshape within the selected group, place the mouse cursor where you want the shape to be put, once the autoshape is added you can change its size, position and properties. Note: to add a caption within the autoshape make sure the shape is selected on the page and start typing your text. The text you add in this way becomes a part of the autoshape (when you move or rotate the shape, the text moves or rotates with it). It's also possible to add a caption to the autoshape. To learn more on how to work with captions for autoshapes, you can refer to this article. Move and resize autoshapes To change the autoshape size, drag small squares situated on the shape edges. To maintain the original proportions of the selected autoshape while resizing, hold down the Shift key and drag one of the corner icons. When modifying some shapes, for example figured arrows or callouts, the yellow diamond-shaped 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 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 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 and drag it clockwise or counterclockwise. To constrain the rotation angle to 15 degree increments, hold down the Shift key while rotating. Note: the list of keyboard shortcuts that can be used when working with objects is available here. Adjust autoshape settings 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. 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. Rotate is used to rotate the shape by 90 degrees clockwise or counterclockwise as well as to flip the shape horizontally or vertically. 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 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: Color Fill - select this option to specify the solid color you want to fill the inner space of the selected autoshape with. Click the colored box below and select the necessary color from the available color sets or specify any color you like: Gradient Fill - select this option to fill the shape with two colors which smoothly change from one to another. Style - choose one of the available options: Linear (colors change in a straight line i.e. along a horizontal/vertical axis or diagonally at a 45 degree angle) or Radial (colors change in a circular path from the center to the edges). Direction - choose a template from the menu. If the Linear gradient is selected, the following directions are available: top-left to bottom-right, top to bottom, top-right to bottom-left, right to left, bottom-right to top-left, bottom to top, bottom-left to top-right, left to right. If the Radial gradient is selected, only one template is available. Gradient - click on the left slider under the gradient bar to activate the color box which corresponds to the first color. Click on the color box on the right to choose the first color in the palette. Drag the slider to set the gradient stop i.e. the point where one color changes into another. Use the right slider under the gradient bar to specify the second color and set the gradient stop. Picture or Texture - select this option to use an image or a predefined texture as the shape background. If you wish to use an image as a background for the shape, you can add an image From File selecting it on your computer HDD or From URL inserting the appropriate URL address into the opened window. If you wish to use a texture as a background for the shape, open the From Texture menu and select the necessary texture preset. Currently, the following textures are available: canvas, carton, dark fabric, grain, granite, grey paper, knit, leather, brown paper, papyrus, wood. In case the selected Picture has less or more dimensions than the autoshape has, you can choose the Stretch or Tile setting from the dropdown list. The Stretch option allows you to adjust the image size to fit the autoshape size so that it could fill the space completely. The Tile option allows you to display only a part of the bigger image keeping its original dimensions or repeat the smaller image keeping its original dimensions over the autoshape surface so that it could fill the space completely. Note: any selected Texture preset fills the space completely, but you can apply the Stretch effect if necessary. Pattern - select this option to fill the shape with a two-colored design composed of regularly repeated elements. Pattern - select one of the predefined designs from the menu. Foreground color - click this color box to change the color of the pattern elements. Background color - click this color box to change the color of the pattern background. No Fill - select this option if you don't want to use any fill. Opacity - use this section to set an Opacity level dragging the slider or entering the percent value manually. The default value is 100%. It corresponds to the full opacity. The 0% value corresponds to the full transparency. Stroke - use this section to change the autoshape stroke width, color or type. To change the stroke width, select one of the available options from the Size dropdown list. The available options are: 0.5 pt, 1 pt, 1.5 pt, 2.25 pt, 3 pt, 4.5 pt, 6 pt. Alternatively, select the No Line option if you don't want to use any stroke. To change the stroke color, click on the colored box below and select the necessary color. To change the stroke type, select the necessary option from the corresponding dropdown list (a solid line is applied by default, you can change it to one of the available dashed lines). Rotation is used to rotate the shape by 90 degrees clockwise or counterclockwise as well as to flip the shape horizontally or vertically. Click one of the buttons: to rotate the shape by 90 degrees counterclockwise to rotate the shape by 90 degrees clockwise to flip the shape horizontally (left to right) to flip the shape vertically (upside down) Wrapping Style - use this section 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). Change Autoshape - use this section to replace the current autoshape with another one selected from the dropdown list. Show shadow - check this option to display shape with shadow. Adjust autoshape advanced settings To change the advanced settings of the autoshape, right-click it and select the Advanced Settings option in the menu or use the Show advanced settings link at the right sidebar. The 'Shape - Advanced Settings' window will open: The Size tab contains the following parameters: Width - use one of these options to change the autoshape width. Absolute - specify an exact value measured in absolute units i.e. Centimeters/Points/Inches (depending on the option specified at the File -> Advanced Settings... tab). Relative - specify a percentage relative to the left margin width, the margin (i.e. the distance between the left and right margins), the page width, or the right margin width. Height - use one of these options to change the autoshape height. Absolute - specify an exact value measured in absolute units i.e. Centimeters/Points/Inches (depending on the option specified at the File -> Advanced Settings... tab). Relative - specify a percentage relative to the margin (i.e. the distance between the top and bottom margins), the bottom margin height, the page height, or the top margin height. If the Lock aspect ratio option is checked, the width and height will be changed together preserving the original shape aspect ratio. The Rotation tab contains the following parameters: Angle - use this option to rotate the shape by an exactly specified angle. Enter the necessary value measured in degrees into the field or adjust it using the arrows on the right. Flipped - check the Horizontally box to flip the shape horizontally (left to right) or check the Vertically box to flip the shape vertically (upside down). The Text Wrapping tab contains the following parameters: Wrapping Style - use this option to change the way the shape is positioned relative to the text: it will either be a part of the text (in case you select the inline style) or bypassed by it from all sides (if you select one of the other styles). Inline - the shape is considered to be a part of the text, like a character, so when the text moves, the shape moves as well. In this case the positioning options are inaccessible. If one of the following styles is selected, the shape can be moved independently of the text and positioned on the page exactly: Square - the text wraps the rectangular box that bounds the shape. Tight - the text wraps the actual shape edges. 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. Top and bottom - the text is only above and below the shape. In front - the shape overlaps the text. 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). 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 autoshape positioning types: Alignment (left, center, right) relative to character, column, left margin, margin, page or right margin, Absolute Position measured in absolute units i.e. Centimeters/Points/Inches (depending on the option specified at the File -> Advanced Settings... tab) to the right of character, column, left margin, margin, page or right margin, Relative position measured in percent relative to the left margin, margin, page or right margin. The Vertical section allows you to select one of the following three autoshape positioning types: Alignment (top, center, bottom) relative to line, margin, bottom margin, paragraph, page or top margin, Absolute Position measured in absolute units i.e. Centimeters/Points/Inches (depending on the option specified at the File -> Advanced Settings... tab) below line, margin, bottom margin, paragraph, page or top margin, Relative position measured in percent relative to the margin, bottom margin, page or top margin. Move object with text controls whether the autoshape moves as the text to which it is anchored moves. Allow overlap controls whether two autoshapes overlap or not if you drag them near each other on the page. The Weights & Arrows tab contains the following parameters: Line Style - this option group allows to specify the following parameters: Cap Type - this option allows to set the style for the end of the line, therefore it can be applied only to the shapes with the open outline, such as lines, polylines etc.: Flat - the end points will be flat. Round - the end points will be rounded. Square - the end points will be square. Join Type - this option allows to set the style for the intersection of two lines, for example, it can affect a polyline or the corners of the triangle or rectangle outline: Round - the corner will be rounded. Bevel - the corner will be cut off angularly. Miter - the corner will be pointed. It goes well to shapes with sharp angles. Note: the effect will be more noticeable if you use a large outline width. Arrows - this option group is available if a shape from the Lines shape group is selected. It allows to set the arrow Start and End Style and Size by selecting the appropriate option from the dropdown lists. The Text Padding tab allows to change the autoshape Top, Bottom, Left and Right internal margins (i.e. the distance between the text within the shape and the autoshape borders). Note: this tab is only available if text is added within the autoshape, otherwise the tab is disabled. 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." + "body": "Insert an autoshape To add an autoshape to your document, switch to the Insert tab of the top toolbar, click the Shape icon on the top toolbar, select one of the available autoshape groups: basic shapes, figured arrows, math, charts, stars & ribbons, callouts, buttons, rectangles, lines, click the necessary autoshape within the selected group, place the mouse cursor where the shape should be added, once the autoshape is added, you can change its size, position and properties. Note: to add a caption to an autoshape, make sure the required shape is selected on the page and start typing your text. The added text becomes a part of the autoshape (when you move or rotate the shape, the text moves or rotates with it). It's also possible to add a caption to the autoshape. To learn more on how to work with captions for autoshapes, you can refer to this article. Move and resize autoshapes To change the autoshape size, drag small squares situated on the shape edges. To maintain the original proportions of the selected autoshape while resizing, hold down the Shift key and drag one of the corner icons. When modifying some shapes, for example figured arrows or callouts, the yellow diamond-shaped 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 icon that appears after hovering your mouse cursor over the autoshape. Drag the autoshape to the required position without releasing the mouse button. When you move the autoshape, the guide lines are displayed to help you precisely position the object on the page (if the selected wrapping style is not inline). 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 and drag it clockwise or counterclockwise. To constrain the rotation angle to 15 degree increments, hold down the Shift key while rotating. Note: the list of keyboard shortcuts that can be used when working with objects is available here. Adjust autoshape settings 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 the selected text/object and paste the previously cut/copied text passage or object to the current cursor position. Arrange is used to bring the selected autoshape to foreground, send it 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, please refer to this page. Align is used to align the shape to the left, in the center, to the right, at the top, in the middle, at the bottom. To learn more on how to align objects, please 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. Rotate is used to rotate the shape by 90 degrees clockwise or counterclockwise as well as to flip the shape horizontally or vertically. 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 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: Color Fill - select this option to specify the solid color to fill the inner space of the selected autoshape. Click the colored box below and select the necessary color from the available color sets or specify any color you like: Gradient Fill - select this option to fill the shape with two colors which smoothly change from one to another. Style - choose one of the available options: Linear (colors change in a straight line i.e. along a horizontal/vertical axis or diagonally at a 45 degree angle) or Radial (colors change in a circular path from the center to the edges). Direction - choose a template from the menu. If the Linear gradient is selected, the following directions are available: top-left to bottom-right, top to bottom, top-right to bottom-left, right to left, bottom-right to top-left, bottom to top, bottom-left to top-right, left to right. If the Radial gradient is selected, only one template is available. Gradient - click on the left slider under the gradient bar to activate the color box which corresponds to the first color. Click on the color box on the right to choose the first color in the palette. Drag the slider to set the gradient stop i.e. the point where one color changes into another. Use the right slider under the gradient bar to specify the second color and set the gradient stop. Picture or Texture - select this option to use an image or a predefined texture as the shape background. If you wish to use an image as a background for the shape, you can add an image From File by selecting it on your computer hard disc drive, From URL by inserting the appropriate URL address into the opened window, or From Storage by selecting the required image stored on your portal. If you wish to use a texture as a background for the shape, open the From Texture menu and select the necessary texture preset. Currently, the following textures are available: canvas, carton, dark fabric, grain, granite, grey paper, knit, leather, brown paper, papyrus, wood. In case the selected Picture has less or more dimensions than the autoshape has, you can choose the Stretch or Tile setting from the dropdown list. The Stretch option allows you to adjust the image size to fit the autoshape size so that it could fill the space completely. The Tile option allows you to display only a part of the bigger image keeping its original dimensions or repeat the smaller image keeping its original dimensions over the autoshape surface so that it could fill the space completely. Note: any selected Texture preset fills the space completely, but you can apply the Stretch effect if necessary. Pattern - select this option to fill the shape with a two-colored design composed of regularly repeated elements. Pattern - select one of the predefined designs from the menu. Foreground color - click this color box to change the color of the pattern elements. Background color - click this color box to change the color of the pattern background. No Fill - select this option if you don't want to use any fill. Opacity - use this section to set an Opacity level dragging the slider or entering the percent value manually. The default value is 100%. It corresponds to the full opacity. The 0% value corresponds to the full transparency. Stroke - use this section to change the autoshape stroke width, color or type. To change the stroke width, select one of the available options from the Size dropdown list. The available options are: 0.5 pt, 1 pt, 1.5 pt, 2.25 pt, 3 pt, 4.5 pt, 6 pt. Alternatively, select the No Line option if you don't want to use any stroke. To change the stroke color, click on the colored box below and select the necessary color. To change the stroke type, select the necessary option from the corresponding dropdown list (a solid line is applied by default, you can change it to one of the available dashed lines). Rotation is used to rotate the shape by 90 degrees clockwise or counterclockwise as well as to flip the shape horizontally or vertically. Click one of the buttons: to rotate the shape by 90 degrees counterclockwise to rotate the shape by 90 degrees clockwise to flip the shape horizontally (left to right) to flip the shape vertically (upside down) Wrapping Style - use this section 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). Change Autoshape - use this section to replace the current autoshape with another one selected from the dropdown list. Show shadow - check this option to display the shape with a shadow. Adjust autoshape advanced settings To change the advanced settings of the autoshape, right-click it and select the Advanced Settings option in the menu or use the Show advanced settings link on the right sidebar. The 'Shape - Advanced Settings' window will open: The Size tab contains the following parameters: Width - use one of these options to change the autoshape width. Absolute - specify an exact value measured in absolute units i.e. Centimeters/Points/Inches (depending on the option specified on the File -> Advanced Settings... tab). Relative - specify a percentage relative to the left margin width, the margin (i.e. the distance between the left and right margins), the page width, or the right margin width. Height - use one of these options to change the autoshape height. Absolute - specify an exact value measured in absolute units i.e. Centimeters/Points/Inches (depending on the option specified on the File -> Advanced Settings... tab). Relative - specify a percentage relative to the margin (i.e. the distance between the top and bottom margins), the bottom margin height, the page height, or the top margin height. If the Lock aspect ratio option is checked, the width and height will be changed together preserving the original shape aspect ratio. The Rotation tab contains the following parameters: Angle - use this option to rotate the shape by an exactly specified angle. Enter the necessary value measured in degrees into the field or adjust it using the arrows on the right. Flipped - check the Horizontally box to flip the shape horizontally (left to right) or check the Vertically box to flip the shape vertically (upside down). The Text Wrapping tab contains the following parameters: Wrapping Style - use this option to change the way the shape is positioned relative to the text: it will either be a part of the text (in case you select the inline style) or bypassed by it from all sides (if you select one of the other styles). Inline - the shape is considered to be a part of the text, like a character, so when the text moves, the shape moves as well. In this case the positioning options are inaccessible. If one of the following styles is selected, the shape can be moved independently of the text and positioned on the page exactly: Square - the text wraps the rectangular box that bounds the shape. Tight - the text wraps the actual shape edges. 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. Top and bottom - the text is only above and below the shape. In front - the shape overlaps the text. Behind - the text overlaps the shape. If you select the square, tight, through, or top and bottom styles, you will be able to set up some additional parameters - distance from text at all sides (top, bottom, left, right). The Position tab is available only if the selected wrapping style is not 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 autoshape positioning types: Alignment (left, center, right) relative to character, column, left margin, margin, page or right margin, Absolute Position measured in absolute units i.e. Centimeters/Points/Inches (depending on the option specified on the File -> Advanced Settings... tab) to the right of character, column, left margin, margin, page or right margin, Relative position measured in percent relative to the left margin, margin, page or right margin. The Vertical section allows you to select one of the following three autoshape positioning types: Alignment (top, center, bottom) relative to line, margin, bottom margin, paragraph, page or top margin, Absolute Position measured in absolute units i.e. Centimeters/Points/Inches (depending on the option specified on the File -> Advanced Settings... tab) below line, margin, bottom margin, paragraph, page or top margin, Relative position measured in percent relative to the margin, bottom margin, page or top margin. Move object with text ensures that the autoshape moves along with the text to which it is anchored. Allow overlap makes it possible for two autoshapes to overlap if you drag them near each other on the page. The Weights & Arrows tab contains the following parameters: Line Style - this option group allows specifying the following parameters: Cap Type - this option allows setting the style for the end of the line, therefore it can be applied only to the shapes with the open outline, such as lines, polylines etc.: Flat - the end points will be flat. Round - the end points will be rounded. Square - the end points will be square. Join Type - this option allows setting the style for the intersection of two lines, for example, it can affect a polyline or the corners of the triangle or rectangle outline: Round - the corner will be rounded. Bevel - the corner will be cut off angularly. Miter - the corner will be pointed. It goes well to shapes with sharp angles. Note: the effect will be more noticeable if you use a large outline width. Arrows - this option group is available if a shape from the Lines shape group is selected. It allows setting the arrow Start and End Style and Size by selecting the appropriate option from the dropdown lists. The Text Padding tab allows changing the Top, Bottom, Left and Right internal margins of the autoshape (i.e. the distance between the text within the shape and the autoshape borders). Note: this tab is only available if text is added within the autoshape, otherwise the tab is disabled. The Alternative Text tab allows specifying a Title and Description which will be read to people with vision or cognitive impairments to help them better understand what information the shape contains." }, { "id": "UsageInstructions/InsertBookmarks.htm", "title": "Add bookmarks", - "body": "Bookmarks allow to quickly jump to a certain position in the current document or add a link to this location within the document. To add a bookmark within a document: specify the place where you want the bookmark to be added: put the mouse cursor at the beginning of the necessary text passage, or select the necessary text passage, switch to the References tab of the top toolbar, click the Bookmark icon at the top toolbar, in the Bookmarks window that opens, enter the Bookmark name and click the Add button - a bookmark will be added to the bookmark list displayed below, Note: the bookmark name should begin wish a letter, but it can also contain numbers. The bookmark name cannot contain spaces, but can include the underscore character \"_\". To go to one of the added bookmarks within the document text: click the Bookmark icon at the References tab of the top toolbar, in the Bookmarks window that opens, select the bookmark you want to jump to. To easily find the necessary bookmark in the list you can sort the list by bookmark Name or by Location of a bookmark within the document text, check the Hidden bookmarks option to display hidden bookmarks in the list (i.e. the bookmarks automatically created by the program when adding references to a certain part of the document. For example, if you create a hyperlink to a certain heading within the document, the document editor automatically creates a hidden bookmark to the target of this link). click the Go to button - the cursor will be positioned in the location within the document where the selected bookmark was added, or the corresponding text passage will be selected, click the Get Link button - a new window will open where you can press the Copy button to copy the link to the file which specifyes the bookmark location in the document. When you paste this link in a browser address bar and press Enter, the document will open in the location where the selected bookmark was added. Note: if you want to share this link with other users, you'll also need to provide corresponding access rights to the file for certain users using the Sharing option at the Collaboration tab. click the Close button to close the window. To delete a bookmark select it in the bookmark list and use the Delete button. To find out how to use bookmarks when creating links please refer to the Add hyperlinks section." + "body": "Bookmarks allow quickly access a certain part of the text or add a link to its location in the document. To add a bookmark in a document: specify the place where you want the bookmark to be added: put the mouse cursor at the beginning of the necessary text passage, or select the necessary text passage, switch to the References tab of the top toolbar, click the Bookmark icon on the top toolbar, in the Bookmarks window, enter the Bookmark name and click the Add button - a bookmark will be added to the bookmark list displayed below, Note: the bookmark name should begin with a letter, but it can also contain numbers. The bookmark name cannot contain spaces, but can include the underscore character \"_\". To access one of the added bookmarks within in the text: click the Bookmark icon on the References tab of the top toolbar, in the Bookmarks window, select the bookmark you want to access. To easily find the required bookmark in the list, you can sort the list of bookmarks by Name or by Location in the text, check the Hidden bookmarks option to display hidden bookmarks in the list (i.e. the bookmarks automatically created by the program when adding references to a certain part of the document. For example, if you create a hyperlink to a certain heading within the document, the document editor automatically creates a hidden bookmark to the target of this link). click the Go to button - the cursor will be positioned where the selected bookmark was added to the text, or the corresponding text passage will be selected, click the Get Link button - a new window will open where you can press the Copy button to copy the link to the file which specifyes the bookmark location in the document. When you paste this link in a browser address bar and press Enter, the document will be opened where the selected bookmark was added. Note: if you want to share this link with other users, you'll need to provide them with the corresponding access rights using the Sharing option on the Collaboration tab. click the Close button to close the window. To delete a bookmark, select it in the bookmark list and click the Delete button. To find out how to use bookmarks when creating links please refer to the Add hyperlinks section." }, { "id": "UsageInstructions/InsertCharts.htm", "title": "Insert charts", - "body": "Insert a chart To insert a chart into your document, put the cursor at the place where you want to add a chart, switch to the Insert tab of the top toolbar, click the Chart icon at the top toolbar, 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. after that the Chart Editor window will appear where you can enter the necessary data into the cells using the following controls: and for copying and pasting the copied data and for undoing and redoing actions for inserting a function and for decreasing and increasing decimal places for changing the number format, i.e. the way the numbers you enter appear in cells change the chart settings clicking the Edit Chart button situated in the Chart Editor window. The Chart - Advanced Settings window will open. The Type & Data tab allows you to change the chart type as well as the data you wish to use to create a chart. Select a chart Type you wish to apply: Column, Line, Pie, Bar, Area, XY (Scatter), or Stock. Check the selected Data Range and modify it, if necessary, clicking the Select Data button and entering the desired data range in the following format: Sheet1!A1:B4. Choose the way to arrange the data. You can either select the Data series to be used on the X axis: in rows or in columns. The Layout tab allows you to change the layout of chart elements. Specify the Chart Title position in regard to your chart selecting the necessary option from the drop-down list: None to not display a chart title, Overlay to overlay and center a title on the plot area, No Overlay to display the title above the plot area. Specify the Legend position in regard to your chart selecting the necessary option from the drop-down list: None to not display a legend, Bottom to display the legend and align it to the bottom of the plot area, Top to display the legend and align it to the top of the plot area, Right to display the legend and align it to the right of the plot area, Left to display the legend and align it to the left of the plot area, Left Overlay to overlay and center the legend to the left on the plot area, Right Overlay to overlay and center the legend to the right on the plot area. Specify the Data Labels (i.e. text labels that represent exact values of data points) parameters: specify the Data Labels position relative to the data points selecting the necessary option from the drop-down list. The available options vary depending on the selected chart type. For Column/Bar charts, you can choose the following options: None, Center, Inner Bottom, Inner Top, Outer Top. For Line/XY (Scatter)/Stock charts, you can choose the following options: None, Center, Left, Right, Top, Bottom. For Pie charts, you can choose the following options: None, Center, Fit to Width, Inner Top, Outer Top. For Area charts as well as for 3D Column, Line and Bar charts, you can choose the following options: None, Center. select the data you wish to include into your labels checking the corresponding boxes: Series Name, Category Name, Value, enter a character (comma, semicolon etc.) you wish to use for separating several labels into the Data Labels Separator entry field. Lines - is used to choose a line style for Line/XY (Scatter) charts. You can choose one of the following options: Straight to use straight lines between data points, Smooth to use smooth curves between data points, or None to not display lines. Markers - is used to specify whether the markers should be displayed (if the box is checked) or not (if the box is unchecked) for Line/XY (Scatter) charts. Note: the Lines and Markers options are available for Line charts and XY (Scatter) charts only. The Axis Settings section allows to specify if you wish to display Horizontal/Vertical Axis or not selecting the Show or Hide option from the drop-down list. You can also specify Horizontal/Vertical Axis Title parameters: Specify if you wish to display the Horizontal Axis Title or not selecting the necessary option from the drop-down list: None to not display a horizontal axis title, No Overlay to display the title below the horizontal axis. Specify the Vertical Axis Title orientation selecting the necessary option from the drop-down list: None to not display a vertical axis title, Rotated to display the title from bottom to top to the left of the vertical axis, Horizontal to display the title horizontally to the left of the vertical axis. The Gridlines section allows to specify which of the Horizontal/Vertical Gridlines you wish to display selecting the necessary option from the drop-down list: Major, Minor, or Major and Minor. You can hide the gridlines at all using the None option. Note: the Axis Settings and Gridlines sections will be disabled for Pie charts since charts of this type have no axes and gridlines. Note: the Vertical/Horizontal Axis tabs will be disabled for Pie charts since charts of this type have no axes. The Vertical Axis tab allows you to change the parameters of the vertical axis also referred to as the values axis or y-axis which displays numeric values. Note that the vertical axis will be the category axis which displays text labels for the Bar charts, therefore in this case the Vertical Axis tab options will correspond to the ones described in the next section. For the XY (Scatter) charts, both axes are value axes. The Axis Options section allows to set the following parameters: Minimum Value - is used to specify a lowest value displayed at the vertical axis start. The Auto option is selected by default, in this case the minimum value is calculated automatically depending on the selected data range. You can select the Fixed option from the drop-down list and specify a different value in the entry field on the right. Maximum Value - is used to specify a highest value displayed at the vertical axis end. The Auto option is selected by default, in this case the maximum value is calculated automatically depending on the selected data range. You can select the Fixed option from the drop-down list and specify a different value in the entry field on the right. Axis Crosses - is used to specify a point on the vertical axis where the horizontal axis should cross it. The Auto option is selected by default, in this case the axes intersection point value is calculated automatically depending on the selected data range. You can select the Value option from the drop-down list and specify a different value in the entry field on the right, or set the axes intersection point at the Minimum/Maximum Value on the vertical axis. Display Units - is used to determine a representation of the numeric values along the vertical axis. This option can be useful if you're working with great numbers and wish the values on the axis to be displayed in more compact and readable way (e.g. you can represent 50 000 as 50 by using the Thousands display units). Select desired units from the drop-down list: Hundreds, Thousands, 10 000, 100 000, Millions, 10 000 000, 100 000 000, Billions, Trillions, or choose the None option to return to the default units. Values in reverse order - is used to display values in an opposite direction. When the box is unchecked, the lowest value is at the bottom and the highest value is at the top of the axis. When the box is checked, the values are ordered from top to bottom. The Tick Options section allows to adjust the appearance of tick marks on the vertical scale. Major tick marks are the larger scale divisions which can have labels displaying numeric values. Minor tick marks are the scale subdivisions which are placed between the major tick marks and have no labels. Tick marks also define where gridlines can be displayed, if the corresponding option is set at the Layout tab. The Major/Minor Type drop-down lists contain the following placement options: None to not display major/minor tick marks, Cross to display major/minor tick marks on both sides of the axis, In to display major/minor tick marks inside the axis, Out to display major/minor tick marks outside the axis. The Label Options section allows to adjust the appearance of major tick mark labels which display values. To specify a Label Position in regard to the vertical axis, select the necessary option from the drop-down list: None to not display tick mark labels, Low to display tick mark labels to the left of the plot area, High to display tick mark labels to the right of the plot area, Next to axis to display tick mark labels next to the axis. The Horizontal Axis tab allows you to change the parameters of the horizontal axis also referred to as the categories axis or x-axis which displays text labels. Note that the horizontal axis will be the value axis which displays numeric values for the Bar charts, therefore in this case the Horizontal Axis tab options will correspond to the ones described in the previous section. For the XY (Scatter) charts, both axes are value axes. The Axis Options section allows to set the following parameters: Axis Crosses - is used to specify a point on the horizontal axis where the vertical axis should cross it. The Auto option is selected by default, in this case the axes intersection point value is calculated automatically depending on the selected data range. You can select the Value option from the drop-down list and specify a different value in the entry field on the right, or set the axes intersection point at the Minimum/Maximum Value (that corresponds to the first and last category) on the horizontal axis. Axis Position - is used to specify where the axis text labels should be placed: On Tick Marks or Between Tick Marks. Values in reverse order - is used to display categories in an opposite direction. When the box is unchecked, categories are displayed from left to right. When the box is checked, the categories are ordered from right to left. The Tick Options section allows to adjust the appearance of tick marks on the horizontal scale. Major tick marks are the larger divisions which can have labels displaying category values. Minor tick marks are the smaller divisions which are placed between the major tick marks and have no labels. Tick marks also define where gridlines can be displayed, if the corresponding option is set at the Layout tab. You can adjust the following tick mark parameters: Major/Minor Type - is used to specify the following placement options: None to not display major/minor tick marks, Cross to display major/minor tick marks on both sides of the axis, In to display major/minor tick marks inside the axis, Out to display major/minor tick marks outside the axis. Interval between Marks - is used to specify how many categories should be displayed between two adjacent tick marks. The Label Options section allows to adjust the appearance of labels which display categories. Label Position - is used to specify where the labels should be placed in regard to the horizontal axis. Select the necessary option from the drop-down list: None to not display category labels, Low to display category labels at the bottom of the plot area, High to display category labels at the top of the plot area, Next to axis to display category labels next to the axis. Axis Label Distance - is used to specify how closely the labels should be placed to the axis. You can specify the necessary value in the entry field. The more the value you set, the more the distance between the axis and labels is. Interval between Labels - is used to specify how often the labels should be displayed. The Auto option is selected by default, in this case labels are displayed for every category. You can select the Manual option from the drop-down list and specify the necessary value in the entry field on the right. For example, enter 2 to display labels for every other category etc. 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 chart. Move and resize charts Once the chart is added, you can change its size and position. To change the chart size, drag small squares situated on its edges. To maintain the original proportions of the selected chart while resizing, hold down the Shift key and drag one of the corner icons. To alter the chart position, use the icon that appears after hovering your mouse cursor over the chart. Drag the chart to the necessary position without releasing the mouse button. When you move the chart, guide lines are displayed to help you position the object on the page precisely (if a wrapping style other than inline is selected). Note: the list of keyboard shortcuts that can be used when working with objects is available here. 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 at the Home tab of the top toolbar to change the font type, size, color or its decoration style. When the chart is selected, the Shape settings 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. Using the Shape Settings tab at the right panel you can not only adjust the chart area itself, but also change the chart elements, such as plot area, data series, chart title, legend etc and apply different fill types to them. Select the chart element clicking it with the left mouse button and choose the preferred fill type: solid color, gradient, texture or picture, pattern. Specify the fill parameters and set the Opacity level if necessary. When you select a vertical or horizontal axis or gridlines, the stroke settings are only available at the Shape Settings tab: color, width and type. For more details on how to work with shape colors, fills and stroke, you can refer to this page. Note: the Show shadow option is also available at the Shape settings tab, but it is disabled for chart elements. 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. Drag the cursor without releasing the mouse button to change the 3D chart orientation. Adjust chart settings 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 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). Change Chart Type is used to change the selected chart type and/or style. To select the necessary chart Style, use the second drop-down menu in the Change Chart Type section. Edit Data is used to open the 'Chart Editor' window. Note: to quickly open the 'Chart Editor' window you can also double-click the chart in the document. 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. 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. 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: The Size tab contains the following parameters: Width and Height - use these options to change the chart width and/or height. If the Constant Proportions button is clicked (in this case it looks like this ), the width and height will be changed together preserving the original chart aspect ratio. The Text Wrapping tab contains the following parameters: Wrapping Style - use this option to change the way the chart is positioned relative to the text: it will either be a part of the text (in case you select the inline style) or bypassed by it from all sides (if you select one of the other styles). Inline - the chart is considered to be a part of the text, like a character, so when the text moves, the chart moves as well. In this case the positioning options are inaccessible. If one of the following styles is selected, the chart can be moved independently of the text and positioned on the page exactly: Square - the text wraps the rectangular box that bounds the chart. Tight - the text wraps the actual chart edges. Through - the text wraps around the chart edges and fills in the open white space within the chart. Top and bottom - the text is only above and below the chart. In front - the chart overlaps the text. 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). 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: Alignment (left, center, right) relative to character, column, left margin, margin, page or right margin, Absolute Position measured in absolute units i.e. Centimeters/Points/Inches (depending on the option specified at the File -> Advanced Settings... tab) to the right of character, column, left margin, margin, page or right margin, Relative position measured in percent relative to the left margin, margin, page or right margin. The Vertical section allows you to select one of the following three chart positioning types: Alignment (top, center, bottom) relative to line, margin, bottom margin, paragraph, page or top margin, Absolute Position measured in absolute units i.e. Centimeters/Points/Inches (depending on the option specified at the File -> Advanced Settings... tab) below line, margin, bottom margin, paragraph, page or top margin, Relative position measured in percent relative to the margin, bottom margin, page or top margin. Move object with text controls whether the chart moves as the text to which it is anchored moves. Allow overlap controls whether two charts overlap or not if you drag them near each other on the page. 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 chart." + "body": "Insert a chart To insert a chart into your document, place the cursor where the chart should be added, switch to the Insert tab of the top toolbar, click the Chart icon on the top toolbar, 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. after that the Chart Editor window will appear where you can enter the necessary data into the cells using the following controls: and for copying and pasting the copied data and for undoing and redoing actions for inserting a function and for decreasing and increasing decimal places for changing the number format, i.e. the way the numbers you enter appear in cells change the chart settings by clicking the Edit Chart button situated in the Chart Editor window. The Chart - Advanced Settings window will open. The Type & Data tab allows you to change the chart type as well as the data you wish to use to create a chart. Select a chart Type you wish to apply: Column, Line, Pie, Bar, Area, XY (Scatter), or Stock. Check the selected Data Range and modify it, if necessary. To do that, click the icon. In the Select Data Range window, enter the necessary data range in the following format: Sheet1!$A$1:$E$10. You can also select the necessary cell range in the sheet using the mouse. When ready, click OK. Choose the way to arrange the data. You can select the Data series to be used on the X axis: in rows or in columns. The Layout tab allows you to change the layout of chart elements. Specify the Chart Title position in regard to your chart selecting the necessary option from the drop-down list: None to not display a chart title, Overlay to overlay and center a title on the plot area, No Overlay to display the title above the plot area. Specify the Legend position in regard to your chart selecting the necessary option from the drop-down list: None to not display a legend, Bottom to display the legend and align it to the bottom of the plot area, Top to display the legend and align it to the top of the plot area, Right to display the legend and align it to the right of the plot area, Left to display the legend and align it to the left of the plot area, Left Overlay to overlay and center the legend to the left on the plot area, Right Overlay to overlay and center the legend to the right on the plot area. Specify the Data Labels (i.e. text labels that represent exact values of data points) parameters: specify the Data Labels position relative to the data points selecting the necessary option from the drop-down list. The available options vary depending on the selected chart type. For Column/Bar charts, you can choose the following options: None, Center, Inner Bottom, Inner Top, Outer Top. For Line/XY (Scatter)/Stock charts, you can choose the following options: None, Center, Left, Right, Top, Bottom. For Pie charts, you can choose the following options: None, Center, Fit to Width, Inner Top, Outer Top. For Area charts as well as for 3D Column, Line and Bar charts, you can choose the following options: None, Center. select the data you wish to include into your labels checking the corresponding boxes: Series Name, Category Name, Value, enter a character (comma, semicolon etc.) you wish to use for separating several labels into the Data Labels Separator entry field. Lines - is used to choose a line style for Line/XY (Scatter) charts. You can choose one of the following options: Straight to use straight lines between data points, Smooth to use smooth curves between data points, or None to not display lines. Markers - is used to specify whether the markers should be displayed (if the box is checked) or not (if the box is unchecked) for Line/XY (Scatter) charts. Note: the Lines and Markers options are available for Line charts and XY (Scatter) charts only. The Axis Settings section allows specifying whether to display Horizontal/Vertical Axis or not by selecting the Show or Hide option from the drop-down list. You can also specify Horizontal/Vertical Axis Title parameters: Specify if you wish to display the Horizontal Axis Title or not by selecting the necessary option from the drop-down list: None to not display a horizontal axis title, No Overlay to display the title below the horizontal axis. Specify the Vertical Axis Title orientation by selecting the necessary option from the drop-down list: None to not display a vertical axis title, Rotated to display the title from bottom to top to the left of the vertical axis, Horizontal to display the title horizontally to the left of the vertical axis. The Gridlines section allows specifying which of the Horizontal/Vertical Gridlines you wish to display by selecting the necessary option from the drop-down list: Major, Minor, or Major and Minor. You can hide the gridlines at all using the None option. Note: the Axis Settings and Gridlines sections will be disabled for Pie charts since charts of this type have no axes and gridlines. Note: the Vertical/Horizontal Axis tabs will be disabled for Pie charts since charts of this type have no axes. The Vertical Axis tab allows you to change the parameters of the vertical axis also referred to as the values axis or y-axis which displays numeric values. Note that the vertical axis will be the category axis which displays text labels for the Bar charts, therefore in this case the Vertical Axis tab options will correspond to the ones described in the next section. For the XY (Scatter) charts, both axes are value axes. The Axis Options section allows setting the following parameters: Minimum Value - is used to specify the lowest value displayed at the vertical axis start. The Auto option is selected by default, in this case the minimum value is calculated automatically depending on the selected data range. You can select the Fixed option from the drop-down list and specify a different value in the entry field on the right. Maximum Value - is used to specify the highest value displayed at the vertical axis end. The Auto option is selected by default, in this case the maximum value is calculated automatically depending on the selected data range. You can select the Fixed option from the drop-down list and specify a different value in the entry field on the right. Axis Crosses - is used to specify a point on the vertical axis where the horizontal axis should cross it. The Auto option is selected by default, in this case the axes intersection point value is calculated automatically depending on the selected data range. You can select the Value option from the drop-down list and specify a different value in the entry field on the right, or set the axes intersection point at the Minimum/Maximum Value on the vertical axis. Display Units - is used to determine the representation of the numeric values along the vertical axis. This option can be useful if you're working with great numbers and wish the values on the axis to be displayed in a more compact and readable way (e.g. you can represent 50 000 as 50 by using the Thousands display units). Select desired units from the drop-down list: Hundreds, Thousands, 10 000, 100 000, Millions, 10 000 000, 100 000 000, Billions, Trillions, or choose the None option to return to the default units. Values in reverse order - is used to display values in the opposite direction. When the box is unchecked, the lowest value is at the bottom and the highest value is at the top of the axis. When the box is checked, the values are ordered from top to bottom. The Tick Options section allows adjusting the appearance of tick marks on the vertical scale. Major tick marks are the larger scale divisions which can have labels displaying numeric values. Minor tick marks are the scale subdivisions which are placed between the major tick marks and have no labels. Tick marks also define where gridlines can be displayed if the corresponding option is set on the Layout tab. The Major/Minor Type drop-down lists contain the following placement options: None to not display major/minor tick marks, Cross to display major/minor tick marks on both sides of the axis, In to display major/minor tick marks inside the axis, Out to display major/minor tick marks outside the axis. The Label Options section allows adjusting the appearance of major tick mark labels which display values. To specify a Label Position in regard to the vertical axis, select the necessary option from the drop-down list: None to not display tick mark labels, Low to display tick mark labels to the left of the plot area, High to display tick mark labels to the right of the plot area, Next to axis to display tick mark labels next to the axis. The Horizontal Axis tab allows you to change the parameters of the horizontal axis also referred to as the categories axis or x-axis which displays text labels. Note that the horizontal axis will be the value axis which displays numeric values for the Bar charts, therefore in this case the Horizontal Axis tab options will correspond to the ones described in the previous section. For the XY (Scatter) charts, both axes are value axes. The Axis Options section allows setting the following parameters: Axis Crosses - is used to specify a point on the horizontal axis where the vertical axis should cross it. The Auto option is selected by default, in this case the axes intersection point value is calculated automatically depending on the selected data range. You can select the Value option from the drop-down list and specify a different value in the entry field on the right, or set the axes intersection point at the Minimum/Maximum Value (that corresponds to the first and last category) on the horizontal axis. Axis Position - is used to specify where the axis text labels should be placed: On Tick Marks or Between Tick Marks. Values in reverse order - is used to display categories in the opposite direction. When the box is unchecked, categories are displayed from left to right. When the box is checked, the categories are ordered from right to left. The Tick Options section allows adjusting the appearance of tick marks on the horizontal scale. Major tick marks are the larger divisions which can have labels displaying category values. Minor tick marks are the smaller divisions which are placed between the major tick marks and have no labels. Tick marks also define where gridlines can be displayed if the corresponding option is set on the Layout tab. You can adjust the following tick mark parameters: Major/Minor Type - is used to specify the following placement options: None to not display major/minor tick marks, Cross to display major/minor tick marks on both sides of the axis, In to display major/minor tick marks inside the axis, Out to display major/minor tick marks outside the axis. Interval between Marks - is used to specify how many categories should be displayed between two adjacent tick marks. The Label Options section allows adjusting the appearance of labels which display categories. Label Position - is used to specify where the labels should be placed in regard to the horizontal axis. Select the necessary option from the drop-down list: None to not display category labels, Low to display category labels at the bottom of the plot area, High to display category labels at the top of the plot area, Next to axis to display category labels next to the axis. Axis Label Distance - is used to specify how closely the labels should be placed to the axis. You can specify the necessary value in the entry field. The more the value you set, the more the distance between the axis and labels is. Interval between Labels - is used to specify how often the labels should be displayed. The Auto option is selected by default, in this case labels are displayed for every category. You can select the Manual option from the drop-down list and specify the necessary value in the entry field on the right. For example, enter 2 to display labels for every other category etc. The Alternative Text tab allows specifying a Title and Description which will be read to people with vision or cognitive impairments to help them better understand what information the chart contains. Move and resize charts Once the chart is added, you can change its size and position. To change the chart size, drag small squares situated on its edges. To maintain the original proportions of the selected chart while resizing, hold down the Shift key and drag one of the corner icons. To alter the chart position, use the icon that appears after hovering your mouse cursor over the chart. Drag the chart to the necessary position without releasing the mouse button. When you move the chart, guide lines are displayed to help you position the object on the page precisely (if a wrapping style other than inline is selected). Note: the list of keyboard shortcuts that can be used when working with objects is available here. Edit chart elements To edit the chart Title, select the default text with the mouse and type the required text. 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 the corresponding icons on the Home tab of the top toolbar to change the font type, size, color or its decoration style. When the chart is selected, the Shape settings 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 on the right sidebar and adjust Fill, Stroke and Wrapping Style of the shape. Note that you cannot change the shape type. Using the Shape Settings tab on the right panel, you can both adjust the chart area itself and change the chart elements, such as plot area, data series, chart title, legend etc and apply different fill types to them. Select the chart element clicking it with the left mouse button and choose the preferred fill type: solid color, gradient, texture or picture, pattern. Specify the fill parameters and set the Opacity level if necessary. When you select a vertical or horizontal axis or gridlines, the stroke settings are only available at the Shape Settings tab: color, width and type. For more details on how to work with shape colors, fills and stroke, you can refer to this page. Note: the Show shadow option is also available at the Shape settings tab, but it is disabled for chart elements. If you need to resize chart elements, left-click to select the needed element and drag one of 8 white squares located along the perimeter of the element. To change the position of the element, left-click on it, make sure your cursor changed to , hold the left mouse button and drag the element to the needed position. 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. Drag the cursor without releasing the mouse button to change the 3D chart orientation. Adjust chart settings 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 icon on the right. Here you can change the following properties: Size is used to view the Width and Height of the current chart. 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). Change Chart Type is used to change the selected chart type and/or style. To select the necessary chart Style, use the second drop-down menu in the Change Chart Type section. Edit Data is used to open the 'Chart Editor' window. Note: to quickly open the 'Chart Editor' window you can also double-click the chart in the document. You can also find some of these options in the right-click menu. The menu options are: Cut, Copy, Paste - standard options which are used to cut or copy the selected text/object and paste the previously cut/copied text passage or object to the current cursor position. Arrange is used to bring the selected chart to foreground, send it to the 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, please 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. 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 on the right sidebar. The chart properties window will open: The Size tab contains the following parameters: Width and Height - use these options to change the width and/or height of the chart. If the Constant Proportions button is clicked (in this case it looks like this ), the width and height will be changed together preserving the original chart aspect ratio. The Text Wrapping tab contains the following parameters: Wrapping Style - use this option to change the way the chart is positioned relative to the text: it will either be a part of the text (in case you select the inline style) or bypassed by it from all sides (if you select one of the other styles). Inline - the chart is considered to be a part of the text, like a character, so when the text moves, the chart moves as well. In this case the positioning options are inaccessible. If one of the following styles is selected, the chart can be moved independently of the text and positioned on the page exactly: Square - the text wraps the rectangular box that bounds the chart. Tight - the text wraps the actual chart edges. Through - the text wraps around the chart edges and fills in the open white space within the chart. Top and bottom - the text is only above and below the chart. In front - the chart overlaps the text. Behind - the text overlaps the chart. If you select the square, tight, through, or top and bottom styles, you will be able to set up some additional parameters - distance from text at all sides (top, bottom, left, right). The Position tab is available only if the selected wrapping style is not 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: Alignment (left, center, right) relative to character, column, left margin, margin, page or right margin, Absolute Position measured in absolute units i.e. Centimeters/Points/Inches (depending on the option specified on the File -> Advanced Settings... tab) to the right of character, column, left margin, margin, page or right margin, Relative position measured in percent relative to the left margin, margin, page or right margin. The Vertical section allows you to select one of the following three chart positioning types: Alignment (top, center, bottom) relative to line, margin, bottom margin, paragraph, page or top margin, Absolute Position measured in absolute units i.e. Centimeters/Points/Inches (depending on the option specified on the File -> Advanced Settings... tab) below line, margin, bottom margin, paragraph, page or top margin, Relative position measured in percent relative to the margin, bottom margin, page or top margin. Move object with text ensures that the chart moves along with the text to which it is anchored. Allow overlap makes it possible for two charts to overlap if you drag them near each other on the page. The Alternative Text tab allows specifying a Title and Description which will be read to the people with vision or cognitive impairments to help them better understand what information the chart contains." }, { "id": "UsageInstructions/InsertContentControls.htm", "title": "Insert content controls", - "body": "Content controls are objects containing different types of contents, such as text, objects etc. Depending on the selected content control type, you can create a form with input fields that can be filled in by other users, or protect some parts of the document from being edited or deleted etc. Note: the possibility to add new content controls is available in the paid version only. In the free Community version, you can edit existing content controls, as well as copy and paste them. Currently, you can add the following types of content controls: Plain Text, Rich Text, Picture, Combo box, Drop-down list, Date, Check box. Plain Text is an object containing text that can be formatted. Plain text content controls cannot contain more than one paragraph. Rich Text is an object containing text that can be formatted. Rich text content controls can contain several paragraphs, lists, and objects (images, shapes, tables etc.). Picture is an object containing a single image. Combo box is an object containing a drop-down list with a set of choices. It allows to choose one of the predefined values from the list and edit the selected value if necessary. Drop-down list is an object containing a drop-down list with a set of choices. It allows to choose one of the predefined values from the list. The selected value cannot be edited. Date is an object containing a calendar that allows to choose a date. Check box is an object that allows to display two states: check box is selected and check box is cleared. Adding content controls Create a new Plain Text content control position the insertion point within a line of the text where you want the control to be added, or select a text passage you want to become the control contents. switch to the Insert tab of the top toolbar. click the arrow next to the Content Controls icon. choose the Plain Text option from the menu. The control will be inserted at the insertion point within a line of the existing text. Replace the default text within the control (\"Your text here\") with your own one: select the default text, and type in a new text or copy a text passage from anywhere and paste it into the content control. Plain text content controls do not allow adding line breaks and cannot contain other objects such as images, tables etc. Create a new Rich Text content control position the insertion point at the end of a paragraph after which you want the control to be added, or select one or more of the existing paragraphs you want to become the control contents. switch to the Insert tab of the top toolbar. click the arrow next to the Content Controls icon. choose the Rich Text option from the menu. The control will be inserted in a new paragraph. Replace the default text within the control (\"Your text here\") with your own one: select the default text, and type in a new text or copy a text passage from anywhere and paste it into the content control. Rich text content controls allow adding line breaks, i.e. can contain multiple paragraphs as well as some objects, such as images, tables, other content controls etc. Create a new Picture content control position the insertion point within a line of the text where you want the control to be added. switch to the Insert tab of the top toolbar. click the arrow next to the Content Controls icon. choose the Picture option from the menu - the control will be inserted at the insertion point. click the image icon in the button above the content control border - a standard file selection window will open. Choose an image stored on your computer and click Open. The selected image will be displayed within the content control. To replace the image, click the image icon in the button above the content control border and select another image. Create a new Combo box or Drop-down list content control The Combo box and Drop-down list content controls contain a drop-down list with a set of choices. They can be created in nearly the same way. The main difference between them is that the selected value in the drop-down list cannot be edited, while the selected value in the combo box can be replaced with your own one. position the insertion point within a line of the text where you want the control to be added. switch to the Insert tab of the top toolbar. click the arrow next to the Content Controls icon. choose the Combo box or Drop-down list option from the menu - the control will be inserted at the insertion point. right-click the added control and choose the Content control settings option from the contextual menu. in the the Content Control Settings window that opens switch to the Combo box or Drop-down list tab, depending on the selected content control type. to add a new list item, click the Add button and fill in the available fields in the window that opens: specify the necessary text in the Display name field, e.g. Yes, No, Other. This text will be displayed in the content control within the document. by default, the text in the Value field corresponds to the one entered in the Display name field. If you want to edit the text in the Value field, note that the entered value must be unique for each item. click the OK button. you can edit or delete the list items by using the Edit or Delete buttons on the right or change the item order using the Up and Down button. when all the necessary choices are set, click the OK button to save the settings and close the window. You can click the arrow button in the right part of the added Combo box or Drop-down list content control to open the item list and choose the necessary one. Once the necessary item is selected from the Combo box, you can edit the displayed text replacing it with your own one entirely or partially. The Drop-down list does not allow to edit the selected item. Create a new Date content control position the insertion point within a line of the text where you want the control to be added. switch to the Insert tab of the top toolbar. click the arrow next to the Content Controls icon. choose the Date option from the menu - the control with the current date will be inserted at the insertion point. right-click the added control and choose the Content control settings option from the contextual menu. in the the Content Control Settings window that opens switch to the Date format tab. choose the necessary Language and select the necessary date format in the Display the date like this list. click the OK button to save the settings and close the window. You can click the arrow button in the right part of the added Date content control to open the calendar and choose the necessary date. Create a new Check box content control position the insertion point within a line of the text where you want the control to be added. switch to the Insert tab of the top toolbar. click the arrow next to the Content Controls icon. choose the Check box option from the menu - the control will be inserted at the insertion point. right-click the added control and choose the Content control settings option from the contextual menu. in the the Content Control Settings window that opens switch to the Check box tab. click the Checked symbol button to specify the necessary symbol for the selected check box or the Unchecked symbol to select how the cleared check box should look like. The Symbol window will open. To learn more on how to work with symbols, you can refer to this article. when the symbols are specified, click the OK button to save the settings and close the window. The added check box is displayed in the unchecked mode. If you click the added check box it will be checked with the symbol selected in the Checked symbol list. Note: The content control border is visible when the control is selected only. The borders do not appear on a printed version. Moving content controls Controls can be moved to another place in the document: click the button to the left of the control border to select the control and drag it without releasing the mouse button to another position in the document text. You can also copy and paste content controls: select the necessary control and use the Ctrl+C/Ctrl+V key combinations. Editing plain text and rich text content controls Text within the plain text and rich text content controls can be formatted using the icons on the top toolbar: you can adjust the font type, size, color, apply decoration styles and formatting presets. It's also possible to use the Paragraph - Advanced settings window accessible from the contextual menu or from the right sidebar to change the text properties. Text within rich text content controls can be formatted like a regular text of the document, i.e. you can set line spacing, change paragraph indents, adjust tab stops. Changing content control settings No matter which type of content controls is selected, you can change the content control settings in the General and Locking sections of the Content Control Settings window. To open the content control settings, you can proceed in the following ways: Select the necessary content control, click the arrow next to the Content Controls icon at the top toolbar and select the Control Settings option from the menu. Right-click anywhere within the content control and use the Content control settings option from the contextual menu. A new window will open. At the General tab, you can adjust the following settings: Specify the content control Title or Tag in the corresponding fields. The title will be displayed when the control is selected in the document. Tags are used to identify content controls so that you can make reference to them in your code. Choose if you want to display the content control with a Bounding box or not. Use the None option to display the control without the bounding box. If you select the Bounding box option, you can choose this box Color using the field below. Click the Apply to All button to apply the specified Appearance settings to all the content controls in the document. At the Locking tab, you can protect the content control from being deleted or edited using the following settings: Content control cannot be deleted - check this box to protect the content control from being deleted. Contents cannot be edited - check this box to protect the contents of the content control from being edited. For certain types of content controls, the third tab is also available that contains the settings specific for the selected content control type only: Combo box, Drop-down list, Date, Check box. These settings are described above in the sections about adding the corresponding content controls. Click the OK button within the settings window to apply the changes. It's also possible to highlight content controls with a certain color. To highlight controls with a color: Click the button to the left of the control border to select the control, Click the arrow next to the Content Controls icon at the top toolbar, Select the Highlight Settings option from the menu, Select the necessary color on the available palettes: Theme Colors, Standard Colors or specify a new Custom Color. To remove previously applied color highlighting, use the No highlighting option. The selected highlight options will be applied to all the content controls in the document. Removing content controls To remove a control and leave all its contents, click the content control to select it, then proceed in one of the following ways: Click the arrow next to the Content Controls icon at the top toolbar and select the Remove content control option from the menu. Right-click the content control and use the Remove content control option from the contextual menu. To remove a control and all its contents, select the necessary control and press the Delete key on the keyboard." + "body": "Content controls are objects containing different types of contents, such as text, objects etc. Depending on the selected content control type, you can create a form with input fields that can be filled in by other users, or protect some parts of the document from being edited or deleted, etc. Note: the feature to add new content controls is available in the paid version only. In the free Community version, you can edit existing content controls, as well as copy and paste them. Currently, you can add the following types of content controls: Plain Text, Rich Text, Picture, Combo box, Drop-down list, Date, Check box. Plain Text is an object containing text that cannot be formatted. Plain text content controls cannot contain more than one paragraph. Rich Text is an object containing text that can be formatted. Rich text content controls can contain several paragraphs, lists, and objects (images, shapes, tables etc.). Picture is an object containing a single image. Combo box is an object containing a drop-down list with a set of choices. It allows choosing one of the predefined values from the list and edit the selected value if necessary. Drop-down list is an object containing a drop-down list with a set of choices. It allows choosing one of the predefined values from the list. The selected value cannot be edited. Date is an object containing a calendar that allows choosing a date. Check box is an object that allows displaying two states: the check box is selected and the check box is cleared. Adding content controls Create a new Plain Text content control position the insertion point within the text line where the content control should be added, or select a text passage to transform it into a content control. switch to the Insert tab of the top toolbar. click the arrow next to the Content Controls icon. choose the Plain Text option from the menu. The content control will be inserted at the insertion point within existing text line. Replace the default text within the content control (\"Your text here\") with your own text: select the default text, and type in a new text or copy a text passage from anywhere and paste it into the content control. The Plain text content controls do not allow adding line breaks and cannot contain other objects such as images, tables, etc. Create a new Rich Text content control position the insertion point within the text line where the content control should be added, or select one or more of the existing paragraphs you want to become the control contents. switch to the Insert tab of the top toolbar. click the arrow next to the Content Controls icon. choose the Rich Text option from the menu. The control will be inserted in a new paragraph. Replace the default text within the control (\"Your text here\") with your own one: select the default text, and type in a new text or copy a text passage from anywhere and paste it into the content control. Rich text content controls allow adding line breaks, i.e. can contain multiple paragraphs as well as some objects, such as images, tables, other content controls etc. Create a new Picture content control position the insertion point within a line of the text where you want the control to be added. switch to the Insert tab of the top toolbar. click the arrow next to the Content Controls icon. choose the Picture option from the menu - the content control will be inserted at the insertion point. click the image icon in the button above the content control border - a standard file selection window will open. Choose an image stored on your computer and click Open. The selected image will be displayed within the content control. To replace the image, click the image icon in the button above the content control border and select another image. Create a new Combo box or Drop-down list content control The Combo box and Drop-down list content controls contain a drop-down list with a set of choices. They can be created amost in the same way. The main difference between them is that the selected value in the drop-down list cannot be edited, while the selected value in the combo box can be replaced. position the insertion point within a line of the text where you want the control to be added. switch to the Insert tab of the top toolbar. click the arrow next to the Content Controls icon. choose the Combo box or Drop-down list option from the menu - the control will be inserted at the insertion point. right-click the added control and choose the Content control settings option from the contextual menu. in the the opened Content Control Settings window, switch to the Combo box or Drop-down list tab, depending on the selected content control type. to add a new list item, click the Add button and fill in the available fields in the the opened window: specify the necessary text in the Display name field, e.g. Yes, No, Other. This text will be displayed in the content control within the document. by default, the text in the Value field corresponds to the one entered in the Display name field. If you want to edit the text in the Value field, note that the entered value must be unique for each item. click the OK button. you can edit or delete the list items by using the Edit or Delete buttons on the right or change the item order using the Up and Down button. when all the necessary choices are set, click the OK button to save the settings and close the window. You can click the arrow button in the right part of the added Combo box or Drop-down list content control to open the item list and choose the necessary one. Once the necessary item is selected from the Combo box, you can edit the displayed text by replacing it with your text entirely or partially. The Drop-down list does not allow editing the selected item. Create a new Date content control position the insertion point within the text where content control should be added. switch to the Insert tab of the top toolbar. click the arrow next to the Content Controls icon. choose the Date option from the menu - the content control with the current date will be inserted at the insertion point. right-click the added content control and choose the Content control settings option from the contextual menu. in the opened Content Control Settings window, switch to the Date format tab. choose the necessary Language and select the necessary date format in the Display the date like this list. click the OK button to save the settings and close the window. You can click the arrow button in the right part of the added Date content control to open the calendar and choose the necessary date. Create a new Check box content control position the insertion point within the text line where the content control should be added. switch to the Insert tab of the top toolbar. click the arrow next to the Content Controls icon. choose the Check box option from the menu - the content control will be inserted at the insertion point. right-click the added content control and choose the Content control settings option from the contextual menu. in the opened Content Control Settings window, switch to the Check box tab. click the Checked symbol button to specify the necessary symbol for the selected check box or the Unchecked symbol to select how the cleared check box should look like. The Symbol window will open. To learn more on how to work with symbols, please refer to this article. when the symbols are specified, click the OK button to save the settings and close the window. The added check box is displayed in the unchecked mode. If you click the added check box it will be checked with the symbol selected in the Checked symbol list. Note: The content control border is only visible when the control is selected. The borders do not appear on a printed version. Moving content controls Content controls can be moved to another place in the document: click the button on the left of the control border to select the control and drag it without releasing the mouse button to another position in the text. You can also copy and paste content controls: select the necessary control and use the Ctrl+C/Ctrl+V key combinations. Editing plain text and rich text content controls Text within plain text and rich text content controls can be formatted by using the icons on the top toolbar: you can adjust the font type, size, color, apply decoration styles and formatting presets. It's also possible to use the Paragraph - Advanced settings window accessible from the contextual menu or from the right sidebar to change the text properties. Text within rich text content controls can be formatted like a regular text, i.e. you can set line spacing, change paragraph indents, adjust tab stops, etc. Changing content control settings No matter which type of content controls is selected, you can change the content control settings in the General and Locking sections of the Content Control Settings window. To open the content control settings, you can proceed in the following ways: Select the necessary content control, click the arrow next to the Content Controls icon on the top toolbar and select the Control Settings option from the menu. Right-click anywhere within the content control and use the Content control settings option from the contextual menu. A new window will open. Ot the General tab, you can adjust the following settings: Specify the content control Title, Placeholder, or Tag in the corresponding fields. The title will be displayed when the control is selected. The placeholder is the main text displayed within the content control element. Tags are used to identify content controls so that you can make a reference to them in your code. Choose if you want to display the content control with a Bounding box or not. Use the None option to display the control without the bounding box. If you select the Bounding box option, you can choose the Color of this box using the field below. Click the Apply to All button to apply the specified Appearance settings to all the content controls in the document. On the Locking tab, you can protect the content control from being deleted or edited using the following settings: Content control cannot be deleted - check this box to protect the content control from being deleted. Contents cannot be edited - check this box to protect the contents of the content control from being edited. For certain types of content controls, the third tab that contains the specific settings for the selected content control type is also available: Combo box, Drop-down list, Date, Check box. These settings are described above in the sections about adding the corresponding content controls. Click the OK button within the settings window to apply the changes. It's also possible to highlight content controls with a certain color. To highlight controls with a color: Click the button on the left of the control border to select the control, Click the arrow next to the Content Controls icon on the top toolbar, Select the Highlight Settings option from the menu, Choose the required color from the available palettes: Theme Colors, Standard Colors or specify a new Custom Color. To remove previously applied color highlighting, use the No highlighting option. The selected highlight options will be applied to all the content controls in the document. Removing content controls To remove a content control and leave all its contents, select a content control, then proceed in one of the following ways: Click the arrow next to the Content Controls icon on the top toolbar and select the Remove content control option from the menu. Right-click the content control and use the Remove content control option from the contextual menu. To remove a control and all its contents, select the necessary control and press the Delete key on the keyboard." + }, + { + "id": "UsageInstructions/InsertDateTime.htm", + "title": "Insert date and time", + "body": "To isnert Date and time into your document, put the cursor where you want to insert Date and time, switch to the Insert tab of the top toolbar, click the Date & time icon on the top toolbar, in the Date & time window that will appear, specify the following parameters: Select the required language. Select one of the suggested formats. Check the Update automatically checkbox to let the date & time update automatically based on the current state. Note: you can also update the date and time manually by using the Refresh field option from the contextual menu. Click the Set as default button to make the current format the default for this language. Click the OK button." }, { "id": "UsageInstructions/InsertDropCap.htm", "title": "Insert a drop cap", - "body": "A Drop cap is the first letter of a paragraph that is much larger than others and takes up several lines in height. To add a drop cap, put the cursor within the paragraph you need, switch to the Insert tab of the top toolbar, click the Drop Cap icon at the top toolbar, in the opened drop-down list select the option you need: In Text - to place the drop cap within the paragraph. In Margin - to place the drop cap in the left margin. The 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 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 icon that appears after hovering your mouse cursor over the frame. To delete the added drop cap, select it, click the Drop Cap icon at the Insert tab of the top toolbar and choose the None option from the drop-down list. To adjust the added drop cap parameters, select it, click the 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: The Drop Cap tab allows to set the following parameters: Position - is used to change the drop cap placement. Select the In Text or In Margin option, or click None to delete the drop cap. Font - is used to select one of the fonts from the list of the available ones. Height in rows - is used to specify how many lines the drop cap should span. It's possible to select a value from 1 to 10. Distance from text - is used to specify the amount of space between the text of the paragraph and the right border of the frame that surrounds the drop cap. The Borders & Fill tab allows to add a border around the drop cap and adjust its parameters. They are the following: Border parameters (size, color and presence or absence) - set the border size, select its color and choose the borders (top, bottom, left, right or their combination) you want to apply these settings to. Background color - choose the color for the drop cap background. The Margins tab allows to set the distance between the drop cap and the Top, Bottom, Left and Right borders around it (if the borders have previously been added). Once the drop cap is added you can also change the Frame parameters. To access them, right click within the frame and select the Frame Advanced Settings from the menu. The Frame - Advanced Settings window will open: The Frame tab allows to set the following parameters: Position - is used to select the Inline or Flow wrapping style. Or you can click None to delete the frame. Width and Height - are used to change the frame dimensions. The Auto option allows to automatically adjust the frame size to fit the drop cap in it. The Exactly option allows to specify fixed values. The At least option is used to set the minimum height value (if you change the drop cap size, the frame height changes accordingly, but it cannot be less than the specified value). Horizontal parameters are used either to set the frame exact position in the selected units of measurement relative to a margin, page or column, or to align the frame (left, center or right) relative to one of these reference points. You can also set the horizontal Distance from text i.e. the amount of space between the vertical frame borders and the text of the paragraph. Vertical parameters are used either to set the frame exact position in the selected units of measurement relative to a margin, page or paragraph, or to align the frame (top, center or bottom) relative to one of these reference points. You can also set the vertical Distance from text i.e. the amount of space between the horizontal frame borders and the text of the paragraph. Move with text - controls whether the frame moves as the paragraph to which it is anchored moves. The Borders & Fill and Margins tabs allow to set just the same parameters as at the tabs of the same name in the Drop Cap - Advanced Settings window." + "body": "A drop cap is a large capital letter used at the beginning of a paragraph or section. The size of a drop cap is usually several lines. To add a drop cap, place the cursor within the required paragraph, switch to the Insert tab of the top toolbar, click the Drop Cap icon on the top toolbar, in the opened drop-down list select the option you need: In Text - to place the drop cap within the paragraph. In Margin - to place the drop cap in the left margin. The 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 on 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 icon that appears after hovering your mouse cursor over the frame. To delete the added drop cap, select it, click the Drop Cap icon on the Insert tab of the top toolbar and choose the None option from the drop-down list. To adjust the added drop cap parameters, select it, click the 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 appear: The Drop Cap tab allows adjusting the following parameters: Position is used to change the placement of a drop cap. Select the In Text or In Margin option, or click None to delete the drop cap. Font is used to select a font from the list of the available fonts. Height in rows is used to define how many lines a drop cap should span. It's possible to select a value from 1 to 10. Distance from text is used to specify the amount of spacing between the text of the paragraph and the right border of the drop cap frame. The Borders & Fill tab allows adding a border around a drop cap and adjusting its parameters. They are the following: Border parameters (size, color and presence or absence) - set the border size, select its color and choose the borders (top, bottom, left, right or their combination) you want to apply these settings to. Background color - choose the color for the drop cap background. The Margins tab allows setting the distance between the drop cap and the Top, Bottom, Left and Right borders around it (if the borders have previously been added). Once the drop cap is added you can also change the Frame parameters. To access them, right click within the frame and select the Frame Advanced Settings from the menu. The Frame - Advanced Settings window will open: The Frame tab allows adjusting the following parameters: Position is used to select the Inline or Flow wrapping style. You can also click None to delete the frame. Width and Height are used to change the frame dimensions. The Auto option allows automatically adjusting the frame size to fit the drop cap. The Exactly option allows specifying fixed values. The At least option is used to set the minimum height value (if you change the drop cap size, the frame height changes accordingly, but it cannot be less than the specified value). Horizontal parameters are used either to set the exact position of the frame in the selected units of measurement with respect to a margin, page or column, or to align the frame (left, center or right) with respect to one of these reference points. You can also set the horizontal Distance from text i.e. the amount of space between the vertical frame borders and the text of the paragraph. Vertical parameters are used either to set the exact position of the frame is the selected units of measurement with respect to a margin, page or paragraph, or to align the frame (top, center or bottom) with respect to one of these reference points. You can also set the vertical Distance from text i.e. the amount of space between the horizontal frame borders and the text of the paragraph. Move with text is used to make sure that the frame moves as the paragraph to which it is anchored. The Borders & Fill and Margins allow adjusting the same parameters as the corresponding tabs in the Drop Cap - Advanced Settings window." }, { "id": "UsageInstructions/InsertEquation.htm", "title": "Insert equations", - "body": "Document Editor allows you to build equations using the built-in templates, edit them, insert special characters (including mathematical operators, Greek letters, accents etc.). Add a new equation To insert an equation from the gallery, put the cursor within the necessary line , switch to the Insert tab of the top toolbar, click the arrow next to the Equation icon at the top toolbar, 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, 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 or icon at the Home tab of the top toolbar. 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 . 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. It's also possible to add a caption to the equation. To learn more on how to work with captions for equations, you can refer to this article. Enter values The insertion point specifies where the next character you enter will appear. To position the insertion point precisely, click within a placeholder and use the keyboard arrows to move the insertion point by one character left/right or one line up/down. If you need to create a new placeholder below the slot with the insertion point within the selected template, press Enter. 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 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. To add some new equation elements you can also use the right-click menu options: To add a new argument that goes before or after the existing one within Brackets, you can right-click on the existing argument and select the Insert argument before/after option from the menu. To add a new equation within Cases with several conditions from the Brackets group (or equations of other types, if you've previously added new placeholders by pressing Enter), you can right-click on an empty placeholder or entered equation within it and select the Insert equation before/after option from the menu. To add a new row or a column in a Matrix, you can right-click on a placeholder within it, select the Insert option from the menu, then select Row Above/Below or Column Left/Right. Note: currently, equations cannot be entered using the linear format, i.e. \\sqrt(4&x^3). 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 and 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. 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). To change the Scripts position relating to text, you can right-click on the equation that includes scripts and select the Scripts before/after text option from the menu. To change the argument size for Scripts, Radicals, Integrals, Large Operators, Limits and Logarithms, Operators as well as for overbraces/underbraces and templates with grouping characters from the Accents group, you can right-click on the argument you want to change and select the Increase/Decrease argument size option from the menu. To specify whether an empty degree placeholder should be displayed or not for a Radical, you can right-click on the radical and select the Hide/Show degree option from the menu. To specify whether an empty limit placeholder should be displayed or not for an Integral or Large Operator, you can right-click on the equation and select the Hide/Show top/bottom limit option from the menu. To change the limits position relating to the integral or operator sign for Integrals or Large Operators, you can right-click on the equation and select the Change limits location option from the menu. The limits can be displayed to the right of the operator sign (as subscripts and superscripts) or directly above and below the operator sign. To change the limits position relating to text for Limits and Logarithms and templates with grouping characters from the Accents group, you can right-click on the equation and select the Limit over/under text option from the menu. To choose which of the Brackets should be displayed, you can right-click on the expression within them and select the Hide/Show opening/closing bracket option from the menu. To control the Brackets size, you can right-click on the expression within them. The Stretch brackets option is selected by default so that the brackets can grow according to the expression within them, but you can deselect this option to prevent brackets from stretching. When this option is activated, you can also use the Match brackets to argument height option. To change the character position relating to text for overbraces/underbraces or overbars/underbars from the Accents group, you can right-click on the template and select the Char/Bar over/under text option from the menu. To choose which borders should be displayed for a Boxed formula from the Accents group, you can right-click on the equation and select the Border properties option from the menu, then select Hide/Show top/bottom/left/right border or Add/Hide horizontal/vertical/diagonal line. To specify whether empty placeholders should be displayed or not for a Matrix, you can right-click on it and select the Hide/Show placeholder option from the menu. To align some equation elements you can use the right-click menu options: To align equations within Cases with several conditions from the Brackets group (or equations of other types, if you've previously added new placeholders by pressing Enter), you can right-click on an equation, select the Alignment option from the menu, then select the alignment type: Top, Center, or Bottom. To align a Matrix vertically, you can right-click on the matrix, select the Matrix Alignment option from the menu, then select the alignment type: Top, Center, or Bottom. To align elements within a Matrix column horizontally, you can right-click on a placeholder within the column, select the Column Alignment option from the menu, then select the alignment type: Left, Center, or Right. Delete equation elements To delete a part of the equation, select the part you want to delete by dragging the mouse or holding down the Shift key and using the arrow buttons, then press the Delete key on the keyboard. A slot can only be deleted together with the template it belongs to. To delete the entire equation, select it completely by dragging the mouse or double-clicking on the equation box and press the Delete key on the keyboard. To delete some equation elements you can also use the right-click menu options: To delete a Radical, you can right-click on it and select the Delete radical option from the menu. To delete a Subscript and/or Superscript, you can right-click on the expression that contains them and select the Remove subscript/superscript option from the menu. If the expression contains scripts that go before text, the Remove scripts option is available. To delete Brackets, you can right-click on the expression within them and select the Delete enclosing characters or Delete enclosing characters and separators option from the menu. If the expression within Brackets inclides more than one argument, you can right-click on the argument you want to delete and select the Delete argument option from the menu. If Brackets enclose more than one equation (i.e. Cases with several conditions), you can right-click on the equation you want to delete and select the Delete equation option from the menu. This option is also available for equations of other types if you've previously added new placeholders by pressing Enter. To delete a Limit, you can right-click on it and select the Remove limit option from the menu. To delete an Accent, you can right-click on it and select the Remove accent character, Delete char or Remove bar option from the menu (the available options differ depending on the selected accent). To delete a row or a column of a Matrix, you can right-click on the placeholder within the row/column you need to delete, select the Delete option from the menu, then select Delete Row/Column." + "body": "The Document Editor allows you to build equations using the built-in templates, edit them, insert special characters (including mathematical operators, Greek letters, accents, etc.). Add a new equation To insert an equation from the gallery, put the cursor within the necessary line , switch to the Insert tab of the top toolbar, click the arrow next to the Equation icon on the top toolbar, 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, 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 to the left or to the right, click on the equation box and use the or icon on the Home tab of the top toolbar. Each equation template represents a set of slots. A slot is a position for each element that makes up the equation. An empty slot (also called as a placeholder) has a dotted outline . 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. It's also possible to add a caption to the equation. To learn more on how to work with captions for equations, please refer to this article. Enter values The insertion point specifies where the next character will appear. To position the insertion point precisely, click within the placeholder and use the keyboard arrows to move the insertion point by one character left/right or one line up/down. If you need to create a new placeholder below the slot with the insertion point within the selected template, press Enter. 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 Equation menu on the Insert tab of the top toolbar or typing them from the keyboard (see the Math AutoСorrect option description), 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. To add some new equation elements you can also use the right-click menu options: To add a new argument that goes before or after the existing one within Brackets, you can right-click on the existing argument and select the Insert argument before/after option from the menu. To add a new equation within Cases with several conditions from the Brackets group (or equations of other types, if you've previously added new placeholders by pressing Enter), you can right-click on an empty placeholder or entered equation within it and select the Insert equation before/after option from the menu. To add a new row or a column in a Matrix, you can right-click on a placeholder within it, select the Insert option from the menu, then select Row Above/Below or Column Left/Right. Note: currently, equations cannot be entered using the linear format, i.e. \\sqrt(4&x^3). 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 a single line, automatic line breaking occurs while typing. 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 and buttons on 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 it. The selected part will be highlighted in blue. Then use the necessary buttons on the Home tab of the top toolbar to format the selected part. For example, you can remove the italic format for ordinary words that are not variables or constants. 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). To change the Scripts position relating to text, you can right-click on the equation that includes scripts and select the Scripts before/after text option from the menu. To change the argument size for Scripts, Radicals, Integrals, Large Operators, Limits and Logarithms, Operators as well as for overbraces/underbraces and templates with grouping characters from the Accents group, you can right-click on the argument you want to change and select the Increase/Decrease argument size option from the menu. To specify whether an empty degree placeholder should be displayed or not for a Radical, you can right-click on the radical and select the Hide/Show degree option from the menu. To specify whether an empty limit placeholder should be displayed or not for an Integral or Large Operator, you can right-click on the equation and select the Hide/Show top/bottom limit option from the menu. To change the limits position relating to the integral or operator sign for Integrals or Large Operators, you can right-click on the equation and select the Change limits location option from the menu. The limits can be displayed on the right of the operator sign (as subscripts and superscripts) or directly above and below the operator sign. To change the limits position relating to text for Limits and Logarithms and templates with grouping characters from the Accents group, you can right-click on the equation and select the Limit over/under text option from the menu. To choose which of the Brackets should be displayed, you can right-click on the expression within them and select the Hide/Show opening/closing bracket option from the menu. To control the Brackets size, you can right-click on the expression within them. The Stretch brackets option is selected by default so that the brackets can grow according to the expression within them, but you can deselect this option to prevent brackets from stretching. When this option is activated, you can also use the Match brackets to argument height option. To change the character position relating to text for overbraces/underbraces or overbars/underbars from the Accents group, you can right-click on the template and select the Char/Bar over/under text option from the menu. To choose which borders should be displayed for a Boxed formula from the Accents group, you can right-click on the equation and select the Border properties option from the menu, then select Hide/Show top/bottom/left/right border or Add/Hide horizontal/vertical/diagonal line. To specify whether empty placeholders should be displayed or not for a Matrix, you can right-click on it and select the Hide/Show placeholder option from the menu. To align some equation elements you can use the right-click menu options: To align equations within Cases with several conditions from the Brackets group (or equations of other types, if you've previously added new placeholders by pressing Enter), you can right-click on an equation, select the Alignment option from the menu, then select the alignment type: Top, Center, or Bottom. To align a Matrix vertically, you can right-click on the matrix, select the Matrix Alignment option from the menu, then select the alignment type: Top, Center, or Bottom. To align elements within a Matrix column horizontally, you can right-click on a placeholder within the column, select the Column Alignment option from the menu, then select the alignment type: Left, Center, or Right. Delete equation elements To delete a part of the equation, select it by dragging the mouse or holding down the Shift key and using the arrow buttons, then press the Delete key on the keyboard. A slot can only be deleted together with the template it belongs to. To delete the entire equation, select it completely by dragging the mouse or double-clicking on the equation box and press the Delete key on the keyboard. To delete some equation elements, you can also use the right-click menu options: To delete a Radical, you can right-click on it and select the Delete radical option from the menu. To delete a Subscript and/or Superscript, you can right-click on the expression that contains them and select the Remove subscript/superscript option from the menu. If the expression contains scripts that go before text, the Remove scripts option is available. To delete Brackets, you can right-click on the expression within them and select the Delete enclosing characters or Delete enclosing characters and separators option from the menu. If the expression within Brackets inclides more than one argument, you can right-click on the argument you want to delete and select the Delete argument option from the menu. If Brackets enclose more than one equation (i.e. Cases with several conditions), you can right-click on the equation you want to delete and select the Delete equation option from the menu. This option is also available for equations of other types if you've previously added new placeholders by pressing Enter. To delete a Limit, you can right-click on it and select the Remove limit option from the menu. To delete an Accent, you can right-click on it and select the Remove accent character, Delete char or Remove bar option from the menu (the available options differ depending on the selected accent). To delete a row or a column of a Matrix, you can right-click on the placeholder within the row/column you need to delete, select the Delete option from the menu, then select Delete Row/Column. Convert equations If you open an existing document containing equations which were created with an old version of equation editor (for example, with MS Office versions before 2007), you need to convert these equations to the Office Math ML format to be able to edit them. To convert an equation, double-click it. The warning window will appear: To convert the selected equation only, click the Yes button in the warning window. To convert all equations in this document, check the Apply to all equations box and click Yes. Once the equation is converted, you can edit it." }, { "id": "UsageInstructions/InsertFootnotes.htm", "title": "Insert footnotes", - "body": "You can add footnotes to provide explanations or comments for certain sentences or terms used in your text, make references to the sources etc. To insert a footnote into your document, position the insertion point at the end of the text passage that you want to add a footnote to, switch to the References tab of the top toolbar, click the Footnote icon at the top toolbar, or click the arrow next to the 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. type in the footnote text. Repeat the above mentioned operations to add subsequent footnotes for other text passages in the document. The footnotes are numbered automatically. If you hover the mouse pointer over the footnote mark in the document text, a small pop-up window with the footnote text appears. To easily navigate between the added footnotes within the document text, click the arrow next to the Footnote icon at the References tab of the top toolbar, in the Go to Footnotes section, use the arrow to go to the previous footnote or the arrow to go to the next footnote. To edit the footnotes settings, click the arrow next to the Footnote icon at the References tab of the top toolbar, select the Notes Settings option from the menu, change the current parameters in the Notes Settings window that opens: Set the Location of footnotes on the page selecting one of the available options: Bottom of page - to position footnotes at the bottom of the page (this option is selected by default). Below text - to position footnotes closer to the text. This option can be useful in cases when the page contains a short text. Adjust the footnotes Format: Number Format - select the necessary number format from the available ones: 1, 2, 3,..., a, b, c,..., A, B, C,..., i, ii, iii,..., I, II, III,.... Start at - use the arrows to set the number or letter you want to start numbering with. Numbering - select a way to number your footnotes: Continuous - to number footnotes sequentially throughout the document, Restart each section - to start footnote numbering with the number 1 (or some other specified character) at the beginning of each section, Restart each page - to start footnote numbering with the number 1 (or some other specified character) at the beginning of each page. Custom Mark - set a special character or a word you want to use as the footnote mark (e.g. * or Note1). Enter the necessary character/word into the text entry field and click the Insert button at the bottom of the Notes Settings window. Use the Apply changes to drop-down list to select if you want to apply the specified notes settings to the Whole document or the Current section only. Note: to use different footnotes formatting in separate parts of the document, you need to add section breaks first. When ready, click the Apply button. 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, click the arrow next to the Footnote icon at the References tab of the top toolbar, select the Delete All Footnotes option from the menu." + "body": "You can insert footnotes to add explanations or comments for certain sentences or terms used in your text, make references to the sources, etc. To insert a footnote into your document, position the insertion point at the end of the text passage that you want to add the footnote to, switch to the References tab of the top toolbar, click the Footnote icon on the top toolbar, or click the arrow next to the 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 text of the document, and the insertion point moves to the bottom of the current page. type in the footnote text. Repeat the above mentioned operations to add subsequent footnotes for other text passages in the document. The footnotes are numbered automatically. If you hover the mouse pointer over the footnote mark in the document text, a small pop-up window with the footnote text appears. To easily navigate through the added footnotes in the text of the document, click the arrow next to the Footnote icon on the References tab of the top toolbar, in the Go to Footnotes section, use the arrow to go to the previous footnote or the arrow to go to the next footnote. To edit the footnotes settings, click the arrow next to the Footnote icon on the References tab of the top toolbar, select the Notes Settings option from the menu, change the current parameters in the Notes Settings window that will appear: Set the Location of footnotes on the page selecting one of the available options: Bottom of page - to position footnotes at the bottom of the page (this option is selected by default). Below text - to position footnotes closer to the text. This option can be useful in cases when the page contains a short text. Adjust the footnotes Format: Number Format - select the necessary number format from the available ones: 1, 2, 3,..., a, b, c,..., A, B, C,..., i, ii, iii,..., I, II, III,.... Start at - use the arrows to set the number or letter you want to start numbering with. Numbering - select a way to number your footnotes: Continuous - to number footnotes sequentially throughout the document, Restart each section - to start footnote numbering with 1 (or another specified character) at the beginning of each section, Restart each page - to start footnote numbering with 1 (or another specified character) at the beginning of each page. Custom Mark - set a special character or a word you want to use as the footnote mark (e.g. * or Note1). Enter the necessary character/word into the text entry field and click the Insert button at the bottom of the Notes Settings window. Use the Apply changes to drop-down list if you want to apply the specified notes settings to the Whole document or the Current section only. Note: to use different footnotes formatting in separate parts of the document, you need to add section breaks first. When you finish, click the Apply button. To remove a single footnote, position the insertion point directly before the footnote mark in the text and press Delete. Other footnotes will be renumbered automatically. To delete all the footnotes in the document, click the arrow next to the Footnote icon on the References tab of the top toolbar, select the Delete All Footnotes option from the menu." }, { "id": "UsageInstructions/InsertHeadersFooters.htm", "title": "Insert headers and footers", - "body": "To add a header or footer to your document or edit the existing one, switch to the Insert tab of the top toolbar, click the Header/Footer icon at the top toolbar, select one of the following options: Edit Header to insert or edit the header text. Edit Footer to insert or edit the footer text. change the current parameters for headers or footers at the right sidebar: Set the Position of text relative to the top (for headers) or bottom (for footers) of the page. Check the Different first page box to apply a different header or footer to the very first page or in case you don't want to add any header/ footer to it at all. Use the Different odd and even pages box to add different headers/footer for odd and even pages. The Link to Previous option is available in case you've previously added sections into your document. If not, it will be grayed out. Moreover, this option is also unavailable for the very first section (i.e. when a header or footer that belongs to the first section is selected). By default, this box is checked, so that the same headers/footers are applied to all the sections. If you select a header or footer area, you will see that the area is marked with the Same as Previous label. Uncheck the Link to Previous box to use different headers/footers for each section of the document. The Same as Previous label will no longer be displayed. To enter a text or edit the already entered text and adjust the header or footer settings, you can also double-click within the upper or lower part of a page or click with the right mouse button there and select the only menu option - Edit Header or Edit Footer. To switch to the document body, double-click within the working area. The text you use as a header or footer will be displayed in gray. Note: please refer to the Insert page numbers section to learn how to add page numbers to your document." + "body": "To add a new header or footer to your document or edit one that already exists, switch to the Insert tab of the top toolbar, click the Header/Footer icon on the top toolbar, select one of the following options: Edit Header to insert or edit the header text. Edit Footer to insert or edit the footer text. change the current parameters for headers or footers on the right sidebar: Set the Position of the text: to the top for headers or to the bottom for footers. Check the Different first page box to apply a different header or footer to the very first page or in case you don't want to add any header/ footer to it at all. Use the Different odd and even pages box to add different headers/footer for odd and even pages. The Link to Previous option is available in case you've previously added sections into your document. If not, it will be grayed out. Moreover, this option is also unavailable for the very first section (i.e. when a header or footer that belongs to the first section is selected). By default, this box is checked, so that the same headers/footers are applied to all the sections. If you select a header or footer area, you will see that the area is marked with the Same as Previous label. Uncheck the Link to Previous box to use different headers/footers for each section of the document. The Same as Previous label will no longer be displayed. To enter a text or edit the already entered text and adjust the header or footer settings, you can also double-click anywhere on the top or bottom margin of your document or click with the right mouse button there and select the only menu option - Edit Header or Edit Footer. To switch to the document body, double-click within the working area. The text you use as a header or footer will be displayed in gray. Note: please refer to the Insert page numbers section to learn how to add page numbers to your document." }, { "id": "UsageInstructions/InsertImages.htm", "title": "Insert images", - "body": "In Document Editor, you can insert images in the most popular formats into your document. The following image formats are supported: BMP, GIF, JPEG, JPG, PNG. Insert an image To insert an image into the document text, place the cursor where you want the image to be put, switch to the Insert tab of the top toolbar, click the Image icon at the top toolbar, select one of the following options to load the image: the Image from File option will open the standard dialog window for file selection. Browse your computer hard disk drive for the necessary file and click the Open button the Image from URL option will open the window where you can enter the necessary image web address and click the OK button the Image from Storage option will open the Select data source window. Select an image stored on your portal and click the OK button once the image is added you can change its size, properties, and position. It's also possible to add a caption to the image. To learn more on how to work with captions for images, you can refer to this article. Move and resize images To change the image size, drag small squares situated on its edges. To maintain the original proportions of the selected image while resizing, hold down the Shift key and drag one of the corner icons. To alter the image position, use the icon that appears after hovering your mouse cursor over the image. Drag the image to the necessary position without releasing the mouse button. When you move the image, guide lines are displayed to help you position the object on the page precisely (if a wrapping style other than inline is selected). To rotate the image, hover the mouse cursor over the rotation handle and drag it clockwise or counterclockwise. To constrain the rotation angle to 15 degree increments, hold down the Shift key while rotating. Note: the list of keyboard shortcuts that can be used when working with objects is available here. Adjust image settings Some 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 icon on the right. Here you can change the following properties: Size is used to view the current image Width and Height. If necessary, you can restore the actual image size clicking the Actual Size button. The Fit to Margin button allows to resize the image, so that it occupies all the space between the left and right page margin. The Crop button is used to crop the image. Click the Crop button to activate cropping handles which appear on the image corners and in the center of each its side. Manually drag the handles to set the cropping area. You can move the mouse cursor over the cropping area border so that it turns into the icon and drag the area. To crop a single side, drag the handle located in the center of this side. To simultaneously crop two adjacent sides, drag one of the corner handles. To equally crop two opposite sides of the image, hold down the Ctrl key when dragging the handle in the center of one of these sides. To equally crop all sides of the image, hold down the Ctrl key when dragging any of the corner handles. When the cropping area is specified, click the Crop button once again, or press the Esc key, or click anywhere outside of the cropping area to apply the changes. After the cropping area is selected, it's also possible to use the Fill and Fit options available from the Crop drop-down menu. Click the Crop button once again and select the option you need: If you select the Fill option, the central part of the original image will be preserved and used to fill the selected cropping area, while other parts of the image will be removed. If you select the Fit option, the image will be resized so that it fits the cropping area height or width. No parts of the original image will be removed, but empty spaces may appear within the selected cropping area. Rotation is used to rotate the image by 90 degrees clockwise or counterclockwise as well as to flip the image horizontally or vertically. Click one of the buttons: to rotate the image by 90 degrees counterclockwise to rotate the image by 90 degrees clockwise to flip the image horizontally (left to right) to flip the image vertically (upside down) 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). Replace Image is used to replace the current image loading another one From File or From URL. 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. 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. Rotate is used to rotate the image by 90 degrees clockwise or counterclockwise as well as to flip the image horizontally or vertically. Crop is used to apply one of the cropping options: Crop, Fill or Fit. Select the Crop option from the submenu, then drag the cropping handles to set the cropping area, and click one of these three options from the submenu once again to apply the changes. Actual Size is used to change the current image size to the actual one. Replace image is used to replace the current image loading another one From File or From URL. Image Advanced Settings is used to open the 'Image - Advanced Settings' window. When the image is selected, the Shape settings icon is also available on the right. You can click this icon to open the Shape settings tab at the right sidebar and adjust the shape Stroke type, size and color as well as change the shape type selecting another shape from the Change Autoshape menu. The shape of the image will change correspondingly. At the Shape Settings tab, you can also use the Show shadow option to add a shadow to the image. Adjust image advanced settings To change the image advanced settings, click the image with the right mouse button and select the Image Advanced Settings option from the right-click menu or just click the Show advanced settings link at the right sidebar. The image properties window will open: 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 button is clicked (in this case it looks like this ), the width and height will be changed together preserving the original image aspect ratio. To restore the actual size of the added image, click the Actual Size button. The Rotation tab contains the following parameters: Angle - use this option to rotate the image by an exactly specified angle. Enter the necessary value measured in degrees into the field or adjust it using the arrows on the right. Flipped - check the Horizontally box to flip the image horizontally (left to right) or check the Vertically box to flip the image vertically (upside down). The Text Wrapping tab contains the following parameters: Wrapping Style - use this option to change the way the image is positioned relative to the text: it will either be a part of the text (in case you select the inline style) or bypassed by it from all sides (if you select one of the other styles). Inline - the image is considered to be a part of the text, like a character, so when the text moves, the image moves as well. In this case the positioning options are inaccessible. If one of the following styles is selected, the image can be moved independently of the text and positioned on the page exactly: Square - the text wraps the rectangular box that bounds the image. Tight - the text wraps the actual image edges. 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. Top and bottom - the text is only above and below the image. In front - the image overlaps the text. 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). 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: Alignment (left, center, right) relative to character, column, left margin, margin, page or right margin, Absolute Position measured in absolute units i.e. Centimeters/Points/Inches (depending on the option specified at the File -> Advanced Settings... tab) to the right of character, column, left margin, margin, page or right margin, Relative position measured in percent relative to the left margin, margin, page or right margin. The Vertical section allows you to select one of the following three image positioning types: Alignment (top, center, bottom) relative to line, margin, bottom margin, paragraph, page or top margin, Absolute Position measured in absolute units i.e. Centimeters/Points/Inches (depending on the option specified at the File -> Advanced Settings... tab) below line, margin, bottom margin, paragraph, page or top margin, Relative position measured in percent relative to the margin, bottom margin, page or top margin. Move object with text controls whether the image moves as the text to which it is anchored moves. Allow overlap controls whether two images overlap or not if you drag them near each other on the page. 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 image." + "body": "In the Document Editor, you can insert images in the most popular formats into your document. The following image formats are supported: BMP, GIF, JPEG, JPG, PNG. Insert an image To insert an image into the document text, place the cursor where you want the image to be put, switch to the Insert tab of the top toolbar, click the Image icon on the top toolbar, select one of the following options to load the image: the Image from File option will open a standard dialog window for to select a file. Browse your computer hard disk drive for the necessary file and click the Open button the Image from URL option will open the window where you can enter the web address of the requiredimage, and click the OK button the Image from Storage option will open the Select data source window. Select an image stored on your portal and click the OK button once the image is added, you can change its size, properties, and position. It's also possible to add a caption to the image. To learn more on how to work with captions for images, you can refer to this article. Move and resize images To change the image size, drag small squares situated on its edges. To maintain the original proportions of the selected image while resizing, hold down the Shift key and drag one of the corner icons. To alter the image position, use the icon that appears after hovering your mouse cursor over the image. Drag the image to the necessary position without releasing the mouse button. When you move the image, the guide lines are displayed to help you precisely position the object on the page (if the selected wrapping style is different from the inline). To rotate the image, hover the mouse cursor over the rotation handle and drag it clockwise or counterclockwise. To constrain the rotation angle to 15 degree increments, hold down the Shift key while rotating. Note: the list of keyboard shortcuts that can be used when working with objects is available here. Adjust image settings Some 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 icon on the right. Here you can change the following properties: Size is used to view the Width and Height of the current image. If necessary, you can restore the actual image size clicking the Actual Size button. The Fit to Margin button allows you to resize the image, so that it occupies all the space between the left and right page margin. The Crop button is used to crop the image. Click the Crop button to activate cropping handles which appear on the image corners and in the center of each its side. Manually drag the handles to set the cropping area. You can move the mouse cursor over the cropping area border so that it turns into the icon and drag the area. To crop a single side, drag the handle located in the center of this side. To simultaneously crop two adjacent sides, drag one of the corner handles. To equally crop the two opposite sides of the image, hold down the Ctrl key when dragging the handle in the center of one of these sides. To equally crop all sides of the image, hold down the Ctrl key when dragging any of the corner handles. When the cropping area is specified, click the Crop button once again, or press the Esc key, or click anywhere outside of the cropping area to apply the changes. After the cropping area is selected, it's also possible to use the Fill and Fit options available from the Crop drop-down menu. Click the Crop button once again and select the option you need: If you select the Fill option, the central part of the original image will be preserved and used to fill the selected cropping area, while the other parts of the image will be removed. If you select the Fit option, the image will be resized so that it fits the height and the width of the cropping area. No parts of the original image will be removed, but empty spaces may appear within the selected cropping area. Rotation is used to rotate the image by 90 degrees clockwise or counterclockwise as well as to flip the image horizontally or vertically. Click one of the buttons: to rotate the image by 90 degrees counterclockwise to rotate the image by 90 degrees clockwise to flip the image horizontally (left to right) to flip the image vertically (upside down) 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). Replace Image is used to replace the current image by loading another one From File, From Storage, or From URL. You can also find some of these options in the right-click menu. The menu options are: Cut, Copy, Paste - standard options which are used to cut or copy the selected text/object and paste the previously cut/copied text passage or object to the current cursor position. Arrange is used to bring the selected image to foreground, send it 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, please refer to this page. Align is used to align the image to the left, in the center, to the right, at the top, in the middle or at the bottom. To learn more on how to align objects, please 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 the selected wrapping style is not 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. Rotate is used to rotate the image by 90 degrees clockwise or counterclockwise as well as to flip the image horizontally or vertically. Crop is used to apply one of the cropping options: Crop, Fill or Fit. Select the Crop option from the submenu, then drag the cropping handles to set the cropping area, and click one of these three options from the submenu once again to apply the changes. Actual Size is used to change the current image size to the actual one. Replace image is used to replace the current image by loading another one From File or From URL. Image Advanced Settings is used to open the 'Image - Advanced Settings' window. When the image is selected, the Shape settings icon is also available on the right. You can click this icon to open the Shape settings tab on the right sidebar and adjust the shape Stroke type, size and color as well as change the shape type selecting another shape from the Change Autoshape menu. The shape of the image will change correspondingly. On the Shape Settings tab, you can also use the Show shadow option to add a shadow to the image. Adjust image advanced settings To change the image advanced settings, click the image with the right mouse button and select the Image Advanced Settings option from the right-click menu or just click the Show advanced settings link on the right sidebar. The image properties window will open: The Size tab contains the following parameters: Width and Height - use these options to change the width and/or height. If the Constant proportions button is clicked (in this case it looks like this ), the width and height will be changed together preserving the original image aspect ratio. To restore the actual size of the added image, click the Actual Size button. The Rotation tab contains the following parameters: Angle - use this option to rotate the image by an exactly specified angle. Enter the necessary value measured in degrees into the field or adjust it using the arrows on the right. Flipped - check the Horizontally box to flip the image horizontally (left to right) or check the Vertically box to flip the image vertically (upside down). The Text Wrapping tab contains the following parameters: Wrapping Style - use this option to change the way the image is positioned relative to the text: it will either be a part of the text (in case you select the inline style) or bypassed by it from all sides (if you select one of the other styles). Inline - the image is considered to be a part of the text, like a character, so when the text moves, the image moves as well. In this case the positioning options are inaccessible. If one of the following styles is selected, the image can be moved independently of the text and positioned on the page exactly: Square - the text wraps the rectangular box that bounds the image. Tight - the text wraps the actual image edges. 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. Top and bottom - the text is only above and below the image. In front - the image overlaps the text. 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). 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: Alignment (left, center, right) relative to character, column, left margin, margin, page or right margin, Absolute Position measured in absolute units i.e. Centimeters/Points/Inches (depending on the option specified on the File -> Advanced Settings... tab) to the right of character, column, left margin, margin, page or right margin, Relative position measured in percent relative to the left margin, margin, page or right margin. The Vertical section allows you to select one of the following three image positioning types: Alignment (top, center, bottom) relative to line, margin, bottom margin, paragraph, page or top margin, Absolute Position measured in absolute units i.e. Centimeters/Points/Inches (depending on the option specified on the File -> Advanced Settings... tab) below line, margin, bottom margin, paragraph, page or top margin, Relative position measured in percent relative to the margin, bottom margin, page or top margin. Move object with text ensures that the image moves along with the text to which it is anchored. Allow overlap makes is possible for two images to overlap if you drag them near each other on the page. The Alternative Text tab allows specifying a Title and Description which will be read to people with vision or cognitive impairments to help them better understand what information the image contains." }, { "id": "UsageInstructions/InsertPageNumbers.htm", "title": "Insert page numbers", - "body": "To insert page numbers into your document, switch to the Insert tab of the top toolbar, click the Header/Footer icon at the top toolbar, choose the Insert Page Number submenu, select one of the following options: To put a page number to each page of your document, select the page number position on the page. To insert a page number at the current cursor position, select the To Current Position option. Note: to insert a current page number at the current cursor position you can also use the Ctrl+Shift+P key combination. To insert the total number of pages in your document (e.g. if you want to create the Page X of Y entry): put the cursor where you want to insert the total number of pages, click the Header/Footer icon at the top toolbar, select the Insert number of pages option. To edit the page number settings, double-click the page number added, change the current parameters at the right sidebar: Set the Position of page numbers on the page as well as relative to the top and bottom of the page. Check the Different first page box to apply a different page number to the very first page or in case you don't want to add any number to it at all. Use the Different odd and even pages box to insert different page numbers for odd and even pages. The Link to Previous option is available in case you've previously added sections into your document. If not, it will be grayed out. Moreover, this option is also unavailable for the very first section (i.e. when a header or footer that belongs to the first section is selected). By default, this box is checked, so that unified numbering is applied to all the sections. If you select a header or footer area, you will see that the area is marked with the Same as Previous label. Uncheck the Link to Previous box to use different page numbering for each section of the document. The Same as Previous label will no longer be displayed. The Page Numbering section allows to adjust page numbering options across different sections of the document. The Continue from previous section option is selected by default and allows to keep continuous page numbering after a section break. If you want to start page numbering with a specific number in the current section of the document, select the Start at radio button and enter the necessary starting value in the field on the right. To return to the document editing, double-click within the working area." + "body": "To insert page numbers into your document, switch to the Insert tab of the top toolbar, click the Header/Footer icon on the top toolbar, choose the Insert Page Number submenu, select one of the following options: To add a page number to each page of your document, select the page number position on the page. To insert a page number at the current cursor position, select the To Current Position option. Note: to insert a current page number at the current cursor position you can also use the Ctrl+Shift+P key combination. To insert the total number of pages in your document (e.g. if you want to create the Page X of Y entry): put the cursor where you want to insert the total number of pages, click the Header/Footer icon on the top toolbar, select the Insert number of pages option. To edit the page number settings, double-click the page number added, change the current parameters on the right sidebar: Set the Position of page numbers on the page accordingly to the top and bottom of the page. Check the Different first page box to apply a different page number to the very first page or in case you don't want to add any number to it at all. Use the Different odd and even pages box to insert different page numbers for odd and even pages. The Link to Previous option is available in case you've previously added sections into your document. If not, it will be grayed out. Moreover, this option is also unavailable for the very first section (i.e. when a header or footer that belongs to the first section is selected). By default, this box is checked, so that unified numbering is applied to all the sections. If you select a header or footer area, you will see that the area is marked with the Same as Previous label. Uncheck the Link to Previous box to use different page numbering for each section of the document. The Same as Previous label will no longer be displayed. The Page Numbering section allows adjusting page numbering options throughout different sections of the document. The Continue from previous section option is selected by default and makes it possible to keep continuous page numbering after a section break. If you want to start page numbering with a specific number in the current section of the document, select the Start at radio button and enter the required starting value in the field on the right. To return to the document editing, double-click within the working area." }, { "id": "UsageInstructions/InsertSymbols.htm", "title": "Insert symbols and characters", - "body": "During working process you may need to insert a symbol which is not on your keyboard. To insert such symbols into your document, use the Insert symbol option and follow these simple steps: place the cursor at the location where a special symbol has to be inserted, switch to the Insert tab of the top toolbar, click the Symbol, The Symbol dialog box appears from which you can select the appropriate symbol, use the Range section to quickly find the nesessary symbol. All symbols are divided into specific groups, for example, select 'Currency Symbols' if you want to insert a currency character. If this character is not in the set, select a different font. Many of them also have characters other than the standard set. Or, enter the Unicode hex value of the symbol you want into the Unicode hex value field. This code can be found in the Character map. Previously used symbols are also displayed in the Recently used symbols field, click Insert. The selected character will be added to the document. Insert ASCII symbols ASCII table is also used to add characters. To do this, hold down ALT key and use the numeric keypad to enter the character code. Note: be sure to use the numeric keypad, not the numbers on the main keyboard. To enable the numeric keypad, press the Num Lock key. For example, to add a paragraph character (§), press and hold down ALT while typing 789, and then release ALT key. Insert symbols using Unicode table Additional charachters and symbols might also be found via Windows symbol table. To open this table, do one of the following: in the Search field write 'Character table' and open it, simultaneously presss Win + R, and then in the following window type charmap.exe and click OK. In the opened Character Map, select one of the Character sets, Groups and Fonts. Next, click on the nesessary characters, copy them to clipboard and paste in the right place of the document." + "body": "To insert a special symbol which can not be typed on the keybord, use the Insert symbol option and follow these simple steps: place the cursor where a special symbol should be inserted, switch to the Insert tab of the top toolbar, click the Symbol, The Symbol dialog box will appear, and you will be able to select the required symbol, use the Range section to quickly find the nesessary symbol. All symbols are divided into specific groups, for example, select 'Currency Symbols' if you want to insert a currency character. If the required character is not in the set, select a different font. Many of them also have characters which differ from the standard set. Or enter the Unicode hex value of the required symbol you want into the Unicode hex value field. This code can be found in the Character map. You can also use the Special characters tab to choose a special character from the list. The previously used symbols are also displayed in the Recently used symbols field, click Insert. The selected character will be added to the document. Insert ASCII symbols The ASCII table is also used to add characters. To do this, hold down the ALT key and use the numeric keypad to enter the character code. Note: be sure to use the numeric keypad, not the numbers on the main keyboard. To enable the numeric keypad, press the Num Lock key. For example, to add a paragraph character (§), press and hold down ALT while typing 789, and then release the ALT key. Insert symbols using the Unicode table Additional charachters and symbols can also be found in the Windows symbol table. To open this table, do of the following: in the Search field write 'Character table' and open it, simultaneously presss Win + R, and then in the following window type charmap.exe and click OK. In the opened Character Map, select one of the Character sets, Groups and Fonts. Next, click on the required characters, copy them to the clipboard and paste where necessary." }, { "id": "UsageInstructions/InsertTables.htm", "title": "Insert tables", - "body": "Insert a table To insert a table into the document text, place the cursor where you want the table to be put, switch to the Insert tab of the top toolbar, click the Table icon at the top toolbar, select the option to create a table: either a table with predefined number of cells (10 by 8 cells maximum) If you want to quickly add a table, just select the number of rows (8 maximum) and columns (10 maximum). or a custom table In case you need more than 10 by 8 cell table, select the Insert Custom Table option that will open the window where you can enter the necessary number of rows and columns respectively, then click the OK button. If you want to draw a table using the mouse, select the Draw Table option. This can be useful, if you want to create a table with rows and colums of different sizes. The mouse cursor will turn into the pencil . Draw a rectangular shape where you want to add a table, then add rows by drawing horizontal lines and columns by drawing vertical lines within the table boundary. once the table is added you can change its properties, size and position. To resize a table, hover the mouse cursor over the handle in its lower right corner and drag it until the table reaches the necessary size. You can also manually change the width of a certain column or the height of a row. Move the mouse cursor over the right border of the column so that the cursor turns into the bidirectional arrow and drag the border to the left or right to set the necessary width. To change the height of a single row manually, move the mouse cursor over the bottom border of the row so that the cursor turns into the bidirectional arrow and drag the border up or down. To move a table, hold down the handle in its upper left corner and drag it to the necessary place in the document. It's also possible to add a caption to the table. To learn more on how to work with captions for tables, you can refer to this article. Select a table or its part To select an entire table, click the handle in its upper left corner. To select a certain cell, move the mouse cursor to the left side of the necessary cell so that the cursor turns into the black arrow , then left-click. To select a certain row, move the mouse cursor to the left border of the table next to the necessary row so that the cursor turns into the horizontal black arrow , then left-click. To select a certain column, move the mouse cursor to the top border of the necessary column so that the cursor turns into the downward black arrow , then left-click. It's also possible to select a cell, row, column or table using options from the contextual menu or from the Rows & Columns section at the right sidebar. Note: to move around in a table you can use keyboard shortcuts. Adjust table settings Some of the table properties as well as its structure can be altered using 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. Select is used to select a row, column, cell, or table. Insert is used to insert a row above or row below the row where the cursor is placed as well as to insert a column at the left or right side from the column where the cursor is placed. It's also possible to insert several rows or columns. If you select the Several Rows/Columns option, the Insert Several window opens. Select the Rows or Columns option from the list, specify the number of rows/column you want to add, choose where they should be added: Above the cursor or Below the cursor and click OK. Delete is used to delete a row, column, table or cells. If you select the Cells option, the Delete Cells window will open, where you can select if you want to Shift cells left, Delete entire row, or Delete entire column. Merge Cells is available if two or more cells are selected and is used to merge them. It's also possible to merge cells by erasing a boundary between them using the eraser tool. To do this, click the Table icon at the top toolbar, choose the Erase Table option. The mouse cursor will turn into the eraser . Move the mouse cursor over the border between the cells you want to merge and erase it. Split Cell... is used to open a window where you can select the needed number of columns and rows the cell will be split in. It's also possible to split a cell by drawing rows or columns using the pencil tool. To do this, click the Table icon at the top toolbar, choose the Draw Table option. The mouse cursor will turn into the pencil . Draw a horizontal line to create a row or a vertical line to create a column. Distribute rows is used to adjust the selected cells so that they have the same height without changing the overall table height. Distribute columns is used to adjust the selected cells so that they have the same width without changing the overall table width. Cell Vertical Alignment is used to align the text top, center or bottom in the selected cell. Text Direction - is used to change the text orientation in a cell. You can place the text horizontally, vertically from top to bottom (Rotate Text Down), or vertically from bottom to top (Rotate Text Up). Table Advanced Settings is used to open the 'Table - Advanced Settings' window. Hyperlink is used to insert a hyperlink. Paragraph Advanced Settings is used to open the 'Paragraph - Advanced Settings' window. You can also change the table properties at the right sidebar: Rows and Columns are used to select the table parts that you want to be highlighted. For rows: Header - to highlight the first row Total - to highlight the last row Banded - to highlight every other row For columns: First - to highlight the first column Last - to highlight the last column Banded - to highlight every other column Select from Template is used to choose a table template from the available ones. Borders Style is used to select the border size, color, style as well as background color. Rows & Columns is used to perform some operations with the table: select, delete, insert rows and columns, merge cells, split a cell. Rows & Columns Size is used to adjust the width and height of the currently selected cell. In this section, you can also Distribute rows so that all the selected cells have equal height or Distribute columns so that all the selected cells have equal width. Add formula is used to insert a formula into the selected table cell. Repeat as header row at the top of each page is used to insert the same header row at the top of each page in long tables. Show advanced settings is used to open the 'Table - Advanced Settings' window. Adjust table advanced settings To change the advanced table properties, click the table with the right mouse button and select the Table Advanced Settings option from the right-click menu or use the Show advanced settings link at the right sidebar. The table properties window will open: The Table tab allows to change properties of the entire table. The Table Size section contains the following parameters: Width - by default, the table width is automatically adjusted to fit the page width, i.e. the table occupies all the space between the left and right page margin. You can check this box and specify the necessary table width manually. Measure in - allows to specify if you want to set the table width in absolute units i.e. Centimeters/Points/Inches (depending on the option specified at the File -> Advanced Settings... tab) or in Percent of the overall page width. Note: you can also adjust the table size manually changing the row height and column width. Move the mouse cursor over a row/column border until it turns into the bidirectional arrow and drag the border. You can also use the markers on the horizontal ruler to change the column width and the markers on the vertical ruler to change the row height. Automatically resize to fit contents - enables automatic change of each column width in accordance with the text within its cells. The Default Cell Margins section allows to change the space between the text within the cells and the cell border used by default. The Options section allows to change the following parameter: Spacing between cells - the cell spacing which will be filled with the Table Background color. The Cell tab allows to change properties of individual cells. First you need to select the cell you want to apply the changes to or select the entire table to change properties of all its cells. The Cell Size section contains the following parameters: Preferred width - allows to set a preferred cell width. This is the size that a cell strives to fit to, but in some cases it may not be possible to fit to this exact value. For example, if the text within a cell exceeds the specified width, it will be broken into the next line so that the preferred cell width remains unchanged, but if you insert a new column, the preferred width will be reduced. Measure in - allows to specify if you want to set the cell width in absolute units i.e. Centimeters/Points/Inches (depending on the option specified at the File -> Advanced Settings... tab) or in Percent of the overall table width. Note: you can also adjust the cell width manually. To make a single cell in a column wider or narrower than the overall column width, select the necessary cell and move the mouse cursor over its right border until it turns into the bidirectional arrow, then drag the border. To change the width of all the cells in a column, use the markers on the horizontal ruler to change the column width. The Cell Margins section allows to adjust the space between the text within the cells and the cell border. By default, standard values are used (the default values can also be altered at the Table tab), but you can uncheck the Use default margins box and enter the necessary values manually. The Cell Options section allows to change the following parameter: The Wrap text option is enabled by default. It allows to wrap text within a cell that exceeds its width onto the next line expanding the row height and keeping the column width unchanged. The Borders & Background tab contains the following parameters: 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 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 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. The Table Position tab is available only if the Flow table 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. Vertical parameters include the table alignment (top, center, bottom) relative to margin, page or text as well as the table position below margin, page or text. The Options section allows to change the following parameters: Move object with text controls whether the table moves as the text into which it is inserted moves. Allow overlap controls whether two tables are merged into one large table or overlap if you drag them near each other on the page. The Text Wrapping tab contains the following parameters: Text wrapping style - Inline table or Flow table. Use the necessary option to change the way the table is positioned relative to the text: it will either be a part of the text (in case you select the inline table) or bypassed by it from all sides (if you select the flow table). After you select the wrapping style, the additional wrapping parameters can be set both for inline and flow tables: For the inline table, you can specify the table alignment and indent from left. For the flow table, you can specify the distance from text and table position at the Table Position 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 table." + "body": "Insert a table To insert a table into the document text, place the cursor where the table should be added, switch to the Insert tab of the top toolbar, click the Table icon on the top toolbar, select the option to create a table: either a table with predefined number of cells (10 by 8 cells maximum) If you want to quickly add a table, just select the number of rows (8 maximum) and columns (10 maximum). or a custom table In case you need more than 10 by 8 cell table, select the Insert Custom Table option that will open the window where you can enter the necessary number of rows and columns respectively, then click the OK button. If you want to draw a table using the mouse, select the Draw Table option. This can be useful, if you want to create a table with rows and colums of different sizes. The mouse cursor will turn into the pencil . Draw a rectangular shape where you want to add a table, then add rows by drawing horizontal lines and columns by drawing vertical lines within the table boundary. once the table is added you can change its properties, size and position. To resize a table, hover the mouse cursor over the handle in its lower right corner and drag it until the table reaches the necessary size. You can also manually change the width of a certain column or the height of a row. Move the mouse cursor over the right border of the column so that the cursor turns into the bidirectional arrow and drag the border to the left or right to set the necessary width. To change the height of a single row manually, move the mouse cursor over the bottom border of the row so that the cursor turns into the bidirectional arrow and drag the border up or down. To move a table, hold down the handle in its upper left corner and drag it to the necessary place in the document. It's also possible to add a caption to the table. To learn more on how to work with captions for tables, you can refer to this article. Select a table or its part To select an entire table, click the handle in its upper left corner. To select a certain cell, move the mouse cursor to the left side of the necessary cell so that the cursor turns into the black arrow , then left-click. To select a certain row, move the mouse cursor to the left border of the table next to the necessary row so that the cursor turns into the horizontal black arrow , then left-click. To select a certain column, move the mouse cursor to the top border of the necessary column so that the cursor turns into the downward black arrow , then left-click. It's also possible to select a cell, row, column or table using options from the contextual menu or from the Rows & Columns section on the right sidebar. Note: to move around in a table you can use keyboard shortcuts. Adjust table settings Some of the table properties as well as its structure can be altered using the right-click menu. The menu options are: Cut, Copy, Paste - standard options which are used to cut or copy the selected text/object and paste the previously cut/copied text passage or object to the current cursor position. Select is used to select a row, column, cell, or table. Insert is used to insert a row above or row below the row where the cursor is placed as well as to insert a column at the left or right side from the column where the cursor is placed. It's also possible to insert several rows or columns. If you select the Several Rows/Columns option, the Insert Several window will appear. Select the Rows or Columns option from the list, specify the number of rows/column you want to add, choose where they should be added: Above the cursor or Below the cursor and click OK. Delete is used to delete a row, column, table or cells. If you select the Cells option, the Delete Cells window will open, where you can select if you want to Shift cells left, Delete entire row, or Delete entire column. Merge Cells is available if two or more cells are selected and is used to merge them. It's also possible to merge cells by erasing a boundary between them using the eraser tool. To do this, click the Table icon on the top toolbar, choose the Erase Table option. The mouse cursor will turn into the eraser . Move the mouse cursor over the border between the cells you want to merge and erase it. Split Cell... is used to open a window where you can select the needed number of columns and rows the cell will be split in. It's also possible to split a cell by drawing rows or columns using the pencil tool. To do this, click the Table icon on the top toolbar, choose the Draw Table option. The mouse cursor will turn into the pencil . Draw a horizontal line to create a row or a vertical line to create a column. Distribute rows is used to adjust the selected cells so that they have the same height without changing the overall table height. Distribute columns is used to adjust the selected cells so that they have the same width without changing the overall table width. Cell Vertical Alignment is used to align the text top, center or bottom in the selected cell. Text Direction - is used to change the text orientation in a cell. You can place the text horizontally, vertically from top to bottom (Rotate Text Down), or vertically from bottom to top (Rotate Text Up). Table Advanced Settings is used to open the 'Table - Advanced Settings' window. Hyperlink is used to insert a hyperlink. Paragraph Advanced Settings is used to open the 'Paragraph - Advanced Settings' window. You can also change the table properties on the right sidebar: Rows and Columns are used to select the table parts that you want to be highlighted. For rows: Header - to highlight the first row Total - to highlight the last row Banded - to highlight every other row For columns: First - to highlight the first column Last - to highlight the last column Banded - to highlight every other column Select from Template is used to choose a table template from the available ones. Borders Style is used to select the border size, color, style as well as background color. Rows & Columns is used to perform some operations with the table: select, delete, insert rows and columns, merge cells, split a cell. Rows & Columns Size is used to adjust the width and height of the currently selected cell. In this section, you can also Distribute rows so that all the selected cells have equal height or Distribute columns so that all the selected cells have equal width. Add formula is used to insert a formula into the selected table cell. Repeat as header row at the top of each page is used to insert the same header row at the top of each page in long tables. Show advanced settings is used to open the 'Table - Advanced Settings' window. Adjust table advanced settings To change the advanced table properties, click the table with the right mouse button and select the Table Advanced Settings option from the right-click menu or use the Show advanced settings link on the right sidebar. The table properties window will open: The Table tab allows changing the properties of the entire table. The Table Size section contains the following parameters: Width - by default, the table width is automatically adjusted to fit the page width, i.e. the table occupies all the space between the left and right page margin. You can check this box and specify the necessary table width manually. Measure in allows specifying the table width in absolute units i.e. Centimeters/Points/Inches (depending on the option specified on the File -> Advanced Settings... tab) or in Percent of the overall page width. Note: you can also adjust the table size manually changing the row height and column width. Move the mouse cursor over a row/column border until it turns into the bidirectional arrow and drag the border. You can also use the markers on the horizontal ruler to change the column width and the markers on the vertical ruler to change the row height. Automatically resize to fit contents - allows automatically change the width of each column in accordance with the text within its cells. The Default Cell Margins section allows changing the space between the text within the cells and the cell border used by default. The Options section allows changing the following parameter: Spacing between cells - the cell spacing which will be filled with the Table Background color. The Cell tab allows changing the properties of individual cells. First you need to select the required cell or select the entire table to change the properties of all its cells. The Cell Size section contains the following parameters: Preferred width - allows setting the preferred cell width. This is the size that a cell strives to fit, but in some cases, it may not be possible to fit this exact value. For example, if the text within a cell exceeds the specified width, it will be broken into the next line so that the preferred cell width remains unchanged, but if you insert a new column, the preferred width will be reduced. Measure in - allows specifying the cell width in absolute units i.e. Centimeters/Points/Inches (depending on the option specified on the File -> Advanced Settings... tab) or in Percent of the overall table width. Note: you can also adjust the cell width manually. To make a single cell in a column wider or narrower than the overall column width, select the necessary cell and move the mouse cursor over its right border until it turns into the bidirectional arrow, then drag the border. To change the width of all the cells in a column, use the markers on the horizontal ruler to change the column width. The Cell Margins allows adjusting the space between the text within the cells and the cell border. By default, the standard values are used (the default, these values can also be altered on the Table tab), but you can uncheck the Use default margins box and enter the necessary values manually. The Cell Options section allows changing the following parameter: The Wrap text option is enabled by default. It allows wrapping the text within a cell that exceeds its width onto the next line expanding the row height and keeping the column width unchanged. The Borders & Background tab contains the following parameters: 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 choose not to show the table borders by clicking the button or deselecting all the borders manually on the diagram, they will be indicated with a dotted line in the document. To make them disappear at all, click the Nonprinting characters icon on 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 on the Table tab. The Table Position tab is available only if the Flow table option on 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. Vertical parameters include the table alignment (top, center, bottom) relative to margin, page or text as well as the table position below margin, page or text. The Options section allows changing the following parameters: Move object with text ensures that the table moves with the text. Allow overlap controls whether two tables are merged into one large table or overlap if you drag them near each other on the page. The Text Wrapping tab contains the following parameters: Text wrapping style - Inline table or Flow table. Use the necessary option to change the way the table is positioned relative to the text: it will either be a part of the text (in case you select the inline table) or bypassed by it from all sides (if you select the flow table). After you select the wrapping style, the additional wrapping parameters can be set both for inline and flow tables: For the inline table, you can specify the table alignment and indent from left. For the flow table, you can specify the distance from text and table position on the Table Position tab. The Alternative Text tab allows specifying the Title and Description which will be read to people with vision or cognitive impairments to help them better understand the contents of the table." }, { "id": "UsageInstructions/InsertTextObjects.htm", "title": "Insert text objects", - "body": "To make your text more emphatic and draw attention to a specific part of the document, 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). Add a text object You can add a text object anywhere on the page. To do that: switch to the Insert tab of the top toolbar, select the necessary text object type: to add a text box, click the Text Box 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 at the top toolbar and selecting the shape from the Basic Shapes group. to add a Text Art object, click the 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. click outside of the text object to apply the changes and return to the document. The text within the text object is a part of the latter (when you move or rotate the text object, the text moves or rotates with it). As an inserted text object represents a rectangular frame with text in it (Text Art objects have invisible text box borders by default) and this frame is a common autoshape, you can change both the shape and text properties. To delete the added text object, click on the text box border and press the Delete key on the keyboard. The text within the text box will also be deleted. Format a text box Select the text box clicking on its border to be able to change its properties. When the text box is selected, its borders are displayed as solid (not dashed) lines. 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 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, rotate or flip a text box, 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. 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. 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 Text Down (sets a vertical direction, from top to bottom) or Rotate Text Up (sets a vertical direction, from bottom to top). To align the text vertically within the text box, right-click the text, select the Vertical Alignment option and then choose one of the available options: Align Top, Align Center or Align Bottom. Other formatting options that you can apply are the same as the ones for regular text. Please refer to the corresponding help sections to learn more about the necessary operation. You can: align the text horizontally within the text box adjust the font type, size, color, apply decoration styles and formatting presets set line spacing, change paragraph indents, adjust tab stops for the multi-line text within the text box insert a hyperlink You can also click the Text Art settings 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 icon on the right sidebar. 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: Color Fill - select this option to specify the solid color you want to fill the inner space of letters with. Click the colored box below and select the necessary color from the available color sets or specify any color you like: Gradient Fill - select this option to fill the letters with two colors which smoothly change from one to another. Style - choose one of the available options: Linear (colors change in a straight line i.e. along a horizontal/vertical axis or diagonally at a 45 degree angle) or Radial (colors change in a circular path from the center to the edges). Direction - choose a template from the menu. If the Linear gradient is selected, the following directions are available: top-left to bottom-right, top to bottom, top-right to bottom-left, right to left, bottom-right to top-left, bottom to top, bottom-left to top-right, left to right. If the Radial gradient is selected, only one template is available. Gradient - click on the left slider under the gradient bar to activate the color box which corresponds to the first color. Click on the color box on the right to choose the first color in the palette. Drag the slider to set the gradient stop i.e. the point where one color changes into another. Use the right slider under the gradient bar to specify the second color and set the gradient stop. Note: if one of these two options is selected, you can also set an Opacity level dragging the slider or entering the percent value manually. The default value is 100%. It corresponds to the full opacity. The 0% value corresponds to the full transparency. No Fill - select this option if you don't want to use any fill. Adjust the font Stroke width, color and type. To change the stroke width, select one of the available options from the Size dropdown list. The available options are: 0.5 pt, 1 pt, 1.5 pt, 2.25 pt, 3 pt, 4.5 pt, 6 pt. Alternatively, select the No Line option if you don't want to use any stroke. To change the stroke color, click on the colored box below and select the necessary color. To change the stroke type, select the necessary option from the corresponding dropdown list (a solid line is applied by default, you can change it to one of the available dashed lines). Apply a text effect by selecting the necessary text transformation type from the Transform gallery. You can adjust the degree of the text distortion by dragging the pink diamond-shaped handle." + "body": "To make your text more emphatic and draw attention to a specific part of the document, you can insert a text box (a rectangular frame that allows entering text within it) or a Text Art object (a text box with a predefined font style and color that allows applying some effects to the text). Add a text object You can add a text object anywhere on the page. To do that: switch to the Insert tab of the top toolbar, select the necessary text object type: to add a text box, click the Text Box icon on the top toolbar, then click where the text box should be added, 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 on the top toolbar and selecting the shape from the Basic Shapes group. to add a Text Art object, click the Text Art icon on 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. click outside of the text object to apply the changes and return to the document. The text within the text object is a part of the latter (when you move or rotate the text object, the text moves or rotates with it). As the inserted text object represents a rectangular frame with text in it (Text Art objects have invisible text box borders by default), and this frame is a common autoshape, you can change both the shape and text properties. To delete the added text object, click on the text box border and press the Delete key on the keyboard. The text within the text box will also be deleted. Format a text box Select the text box by clicking on its border to be able to change its properties. When the text box is selected, its borders are displayed as solid (not dashed) lines. 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 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, rotate or flip a text box, 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, please refer to this page. Format the text within the text box Click the text within the text box to change its properties. When the text is selected, the text box borders are displayed as dashed lines. Note: it's also possible to change the text formatting when the text box (not the text itself) is selected. In thus 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 the previously selected text fragment separately. 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 Text Down (sets a vertical direction, from top to bottom) or Rotate Text Up (sets a vertical direction, from bottom to top). To align the text vertically within the text box, right-click the text, select the Vertical Alignment option and then choose one of the available options: Align Top, Align Center or Align Bottom. Other formatting options that you can apply are the same as the ones for regular text. Please refer to the corresponding help sections to learn more about the necessary operation. You can: align the text horizontally within the text box adjust the font type, size, color, apply decoration styles and formatting presets set line spacing, change paragraph indents, adjust tab stops for the multi-line text within the text box insert a hyperlink You can also click the Text Art settings 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 icon on the right sidebar. Change the applied text style by selecting a new Template from the gallery. You can also change the basic style by selecting a different font type, size etc. Change the font Fill. You can choose the following options: Color Fill - select this option to specify the solid color to fill the inner space of letters. Click the colored box below and select the necessary color from the available color sets or specify any color you like: Gradient Fill - select this option to fill the letters with two colors which smoothly change from one to another. Style - choose one of the available options: Linear (colors change in a straight line i.e. along a horizontal/vertical axis or diagonally at a 45 degree angle) or Radial (colors change in a circular path from the center to the edges). Direction - choose a template from the menu. If the Linear gradient is selected, the following directions are available: top-left to bottom-right, top to bottom, top-right to bottom-left, right to left, bottom-right to top-left, bottom to top, bottom-left to top-right, left to right. If the Radial gradient is selected, only one template is available. Gradient - click on the left slider under the gradient bar to activate the color box which corresponds to the first color. Click on the color box on the right to choose the first color in the palette. Drag the slider to set the gradient stop i.e. the point where one color changes into another. Use the right slider under the gradient bar to specify the second color and set the gradient stop. Note: if one of these two options is selected, you can also set an Opacity level dragging the slider or entering the percent value manually. The default value is 100%. It corresponds to the full opacity. The 0% value corresponds to the full transparency. No Fill - select this option if you don't want to use any fill. Adjust the font Stroke width, color and type. To change the stroke width, select one of the available options from the Size dropdown list. The available options are: 0.5 pt, 1 pt, 1.5 pt, 2.25 pt, 3 pt, 4.5 pt, 6 pt. Alternatively, select the No Line option if you don't want to use any stroke. To change the stroke color, click on the colored box below and select the necessary color. To change the stroke type, select the necessary option from the corresponding dropdown list (a solid line is applied by default, you can change it to one of the available dashed lines). Apply a text effect by selecting the necessary text transformation type from the Transform gallery. You can adjust the degree of the text distortion by dragging the pink diamond-shaped handle." }, { "id": "UsageInstructions/LineSpacing.htm", "title": "Set paragraph line spacing", - "body": "In Document Editor, 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. To do that, put the cursor within the paragraph you need, or select several paragraphs with the mouse or all the text in the document by pressing the Ctrl+A key combination, use the corresponding fields 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. Before - set the amount of space before the paragraph. After - set the amount of space after the paragraph. Don't add interval between paragraphs of the same style - check this box in case you don't need any space between paragraphs of the same style. These parameters can also be found in the Paragraph - Advanced Settings window. To open the Paragraph - Advanced Settings window, right-click the text and choose the Paragraph Advanced Settings option from the menu or use the Show advanced settings option at the right sidebar. Then switch to the Indents & Spacing tab and go to the Spacing section. To quickly change the current paragraph line spacing, you can also use the 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." + "body": "In the Document Editor, you can set the line height for the text lines within the paragraph as well as the margins between the current paragraph and the previous one or the subsequent paragraphs. To do that, place the cursor within the required paragraph, or select several paragraphs with the mouse or the whole text by pressing the Ctrl+A key combination, use the corresponding fields on 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 in 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 defines the amount of spacing between paragraphs. Before defines the amount of spacing before the paragraph. After defines the amount of spacing after the paragraph. Don't add interval between paragraphs of the same style - please check this box if you don't need any spacing between paragraphs of the same style. These parameters can also be found in the Paragraph - Advanced Settings window. To open the Paragraph - Advanced Settings window, right-click the text and choose the Paragraph Advanced Settings option from the menu or use the Show advanced settings option on the right sidebar. Then switch to the Indents & Spacing tab and go to the Spacing section. To quickly change the current paragraph line spacing, you can also use the Paragraph line spacing icon on the Home tab of the top toolbar selecting the required value from the list: 1.0, 1.15, 1.5, 2.0, 2.5, or 3.0 lines." + }, + { + "id": "UsageInstructions/MathAutoCorrect.htm", + "title": "Use Math AutoCorrect", + "body": "When working with equations, you can insert a lot of symbols, accents and mathematical operation signs typing them on the keyboard instead of choosing a template from the gallery. In the equation editor, place the insertion point within the necessary placeholder, type a math autocorrect code, then press Spacebar. The entered code will be converted into the corresponding symbol, and the space will be eliminated. Note: The codes are case sensitive. The table below contains all the currently supported codes available in the Document Editor. The full list of the supported codes can also be found on the File tab in the Advanced Settings... -> Proofing section. Code Symbol Category !! Symbols ... Dots :: Operators := Operators /< Relational operators /> Relational operators /= Relational operators \\above Above/Below scripts \\acute Accents \\aleph Hebrew letters \\alpha Greek letters \\Alpha Greek letters \\amalg Binary operators \\angle Geometry notation \\aoint Integrals \\approx Relational operators \\asmash Arrows \\ast Binary operators \\asymp Relational operators \\atop Operators \\bar Over/Underbar \\Bar Accents \\because Relational operators \\begin Delimiters \\below Above/Below scripts \\bet Hebrew letters \\beta Greek letters \\Beta Greek letters \\beth Hebrew letters \\bigcap Large operators \\bigcup Large operators \\bigodot Large operators \\bigoplus Large operators \\bigotimes Large operators \\bigsqcup Large operators \\biguplus Large operators \\bigvee Large operators \\bigwedge Large operators \\binomial Equations \\bot Logic notation \\bowtie Relational operators \\box Symbols \\boxdot Binary operators \\boxminus Binary operators \\boxplus Binary operators \\bra Delimiters \\break Symbols \\breve Accents \\bullet Binary operators \\cap Binary operators \\cbrt Square roots and radicals \\cases Symbols \\cdot Binary operators \\cdots Dots \\check Accents \\chi Greek letters \\Chi Greek letters \\circ Binary operators \\close Delimiters \\clubsuit Symbols \\coint Integrals \\cong Relational operators \\coprod Math operators \\cup Binary operators \\dalet Hebrew letters \\daleth Hebrew letters \\dashv Relational operators \\dd Double-struck letters \\Dd Double-struck letters \\ddddot Accents \\dddot Accents \\ddot Accents \\ddots Dots \\defeq Relational operators \\degc Symbols \\degf Symbols \\degree Symbols \\delta Greek letters \\Delta Greek letters \\Deltaeq Operators \\diamond Binary operators \\diamondsuit Symbols \\div Binary operators \\dot Accents \\doteq Relational operators \\dots Dots \\doublea Double-struck letters \\doubleA Double-struck letters \\doubleb Double-struck letters \\doubleB Double-struck letters \\doublec Double-struck letters \\doubleC Double-struck letters \\doubled Double-struck letters \\doubleD Double-struck letters \\doublee Double-struck letters \\doubleE Double-struck letters \\doublef Double-struck letters \\doubleF Double-struck letters \\doubleg Double-struck letters \\doubleG Double-struck letters \\doubleh Double-struck letters \\doubleH Double-struck letters \\doublei Double-struck letters \\doubleI Double-struck letters \\doublej Double-struck letters \\doubleJ Double-struck letters \\doublek Double-struck letters \\doubleK Double-struck letters \\doublel Double-struck letters \\doubleL Double-struck letters \\doublem Double-struck letters \\doubleM Double-struck letters \\doublen Double-struck letters \\doubleN Double-struck letters \\doubleo Double-struck letters \\doubleO Double-struck letters \\doublep Double-struck letters \\doubleP Double-struck letters \\doubleq Double-struck letters \\doubleQ Double-struck letters \\doubler Double-struck letters \\doubleR Double-struck letters \\doubles Double-struck letters \\doubleS Double-struck letters \\doublet Double-struck letters \\doubleT Double-struck letters \\doubleu Double-struck letters \\doubleU Double-struck letters \\doublev Double-struck letters \\doubleV Double-struck letters \\doublew Double-struck letters \\doubleW Double-struck letters \\doublex Double-struck letters \\doubleX Double-struck letters \\doubley Double-struck letters \\doubleY Double-struck letters \\doublez Double-struck letters \\doubleZ Double-struck letters \\downarrow Arrows \\Downarrow Arrows \\dsmash Arrows \\ee Double-struck letters \\ell Symbols \\emptyset Set notations \\emsp Space characters \\end Delimiters \\ensp Space characters \\epsilon Greek letters \\Epsilon Greek letters \\eqarray Symbols \\equiv Relational operators \\eta Greek letters \\Eta Greek letters \\exists Logic notations \\forall Logic notations \\fraktura Fraktur letters \\frakturA Fraktur letters \\frakturb Fraktur letters \\frakturB Fraktur letters \\frakturc Fraktur letters \\frakturC Fraktur letters \\frakturd Fraktur letters \\frakturD Fraktur letters \\frakture Fraktur letters \\frakturE Fraktur letters \\frakturf Fraktur letters \\frakturF Fraktur letters \\frakturg Fraktur letters \\frakturG Fraktur letters \\frakturh Fraktur letters \\frakturH Fraktur letters \\frakturi Fraktur letters \\frakturI Fraktur letters \\frakturk Fraktur letters \\frakturK Fraktur letters \\frakturl Fraktur letters \\frakturL Fraktur letters \\frakturm Fraktur letters \\frakturM Fraktur letters \\frakturn Fraktur letters \\frakturN Fraktur letters \\frakturo Fraktur letters \\frakturO Fraktur letters \\frakturp Fraktur letters \\frakturP Fraktur letters \\frakturq Fraktur letters \\frakturQ Fraktur letters \\frakturr Fraktur letters \\frakturR Fraktur letters \\frakturs Fraktur letters \\frakturS Fraktur letters \\frakturt Fraktur letters \\frakturT Fraktur letters \\frakturu Fraktur letters \\frakturU Fraktur letters \\frakturv Fraktur letters \\frakturV Fraktur letters \\frakturw Fraktur letters \\frakturW Fraktur letters \\frakturx Fraktur letters \\frakturX Fraktur letters \\fraktury Fraktur letters \\frakturY Fraktur letters \\frakturz Fraktur letters \\frakturZ Fraktur letters \\frown Relational operators \\funcapply Binary operators \\G Greek letters \\gamma Greek letters \\Gamma Greek letters \\ge Relational operators \\geq Relational operators \\gets Arrows \\gg Relational operators \\gimel Hebrew letters \\grave Accents \\hairsp Space characters \\hat Accents \\hbar Symbols \\heartsuit Symbols \\hookleftarrow Arrows \\hookrightarrow Arrows \\hphantom Arrows \\hsmash Arrows \\hvec Accents \\identitymatrix Matrices \\ii Double-struck letters \\iiint Integrals \\iint Integrals \\iiiint Integrals \\Im Symbols \\imath Symbols \\in Relational operators \\inc Symbols \\infty Symbols \\int Integrals \\integral Integrals \\iota Greek letters \\Iota Greek letters \\itimes Math operators \\j Symbols \\jj Double-struck letters \\jmath Symbols \\kappa Greek letters \\Kappa Greek letters \\ket Delimiters \\lambda Greek letters \\Lambda Greek letters \\langle Delimiters \\lbbrack Delimiters \\lbrace Delimiters \\lbrack Delimiters \\lceil Delimiters \\ldiv Fraction slashes \\ldivide Fraction slashes \\ldots Dots \\le Relational operators \\left Delimiters \\leftarrow Arrows \\Leftarrow Arrows \\leftharpoondown Arrows \\leftharpoonup Arrows \\leftrightarrow Arrows \\Leftrightarrow Arrows \\leq Relational operators \\lfloor Delimiters \\lhvec Accents \\limit Limits \\ll Relational operators \\lmoust Delimiters \\Longleftarrow Arrows \\Longleftrightarrow Arrows \\Longrightarrow Arrows \\lrhar Arrows \\lvec Accents \\mapsto Arrows \\matrix Matrices \\medsp Space characters \\mid Relational operators \\middle Symbols \\models Relational operators \\mp Binary operators \\mu Greek letters \\Mu Greek letters \\nabla Symbols \\naryand Operators \\nbsp Space characters \\ne Relational operators \\nearrow Arrows \\neq Relational operators \\ni Relational operators \\norm Delimiters \\notcontain Relational operators \\notelement Relational operators \\notin Relational operators \\nu Greek letters \\Nu Greek letters \\nwarrow Arrows \\o Greek letters \\O Greek letters \\odot Binary operators \\of Operators \\oiiint Integrals \\oiint Integrals \\oint Integrals \\omega Greek letters \\Omega Greek letters \\ominus Binary operators \\open Delimiters \\oplus Binary operators \\otimes Binary operators \\over Delimiters \\overbar Accents \\overbrace Accents \\overbracket Accents \\overline Accents \\overparen Accents \\overshell Accents \\parallel Geometry notation \\partial Symbols \\pmatrix Matrices \\perp Geometry notation \\phantom Symbols \\phi Greek letters \\Phi Greek letters \\pi Greek letters \\Pi Greek letters \\pm Binary operators \\pppprime Primes \\ppprime Primes \\pprime Primes \\prec Relational operators \\preceq Relational operators \\prime Primes \\prod Math operators \\propto Relational operators \\psi Greek letters \\Psi Greek letters \\qdrt Square roots and radicals \\quadratic Square roots and radicals \\rangle Delimiters \\Rangle Delimiters \\ratio Relational operators \\rbrace Delimiters \\rbrack Delimiters \\Rbrack Delimiters \\rceil Delimiters \\rddots Dots \\Re Symbols \\rect Symbols \\rfloor Delimiters \\rho Greek letters \\Rho Greek letters \\rhvec Accents \\right Delimiters \\rightarrow Arrows \\Rightarrow Arrows \\rightharpoondown Arrows \\rightharpoonup Arrows \\rmoust Delimiters \\root Symbols \\scripta Scripts \\scriptA Scripts \\scriptb Scripts \\scriptB Scripts \\scriptc Scripts \\scriptC Scripts \\scriptd Scripts \\scriptD Scripts \\scripte Scripts \\scriptE Scripts \\scriptf Scripts \\scriptF Scripts \\scriptg Scripts \\scriptG Scripts \\scripth Scripts \\scriptH Scripts \\scripti Scripts \\scriptI Scripts \\scriptk Scripts \\scriptK Scripts \\scriptl Scripts \\scriptL Scripts \\scriptm Scripts \\scriptM Scripts \\scriptn Scripts \\scriptN Scripts \\scripto Scripts \\scriptO Scripts \\scriptp Scripts \\scriptP Scripts \\scriptq Scripts \\scriptQ Scripts \\scriptr Scripts \\scriptR Scripts \\scripts Scripts \\scriptS Scripts \\scriptt Scripts \\scriptT Scripts \\scriptu Scripts \\scriptU Scripts \\scriptv Scripts \\scriptV Scripts \\scriptw Scripts \\scriptW Scripts \\scriptx Scripts \\scriptX Scripts \\scripty Scripts \\scriptY Scripts \\scriptz Scripts \\scriptZ Scripts \\sdiv Fraction slashes \\sdivide Fraction slashes \\searrow Arrows \\setminus Binary operators \\sigma Greek letters \\Sigma Greek letters \\sim Relational operators \\simeq Relational operators \\smash Arrows \\smile Relational operators \\spadesuit Symbols \\sqcap Binary operators \\sqcup Binary operators \\sqrt Square roots and radicals \\sqsubseteq Set notation \\sqsuperseteq Set notation \\star Binary operators \\subset Set notation \\subseteq Set notation \\succ Relational operators \\succeq Relational operators \\sum Math operators \\superset Set notation \\superseteq Set notation \\swarrow Arrows \\tau Greek letters \\Tau Greek letters \\therefore Relational operators \\theta Greek letters \\Theta Greek letters \\thicksp Space characters \\thinsp Space characters \\tilde Accents \\times Binary operators \\to Arrows \\top Logic notation \\tvec Arrows \\ubar Accents \\Ubar Accents \\underbar Accents \\underbrace Accents \\underbracket Accents \\underline Accents \\underparen Accents \\uparrow Arrows \\Uparrow Arrows \\updownarrow Arrows \\Updownarrow Arrows \\uplus Binary operators \\upsilon Greek letters \\Upsilon Greek letters \\varepsilon Greek letters \\varphi Greek letters \\varpi Greek letters \\varrho Greek letters \\varsigma Greek letters \\vartheta Greek letters \\vbar Delimiters \\vdash Relational operators \\vdots Dots \\vec Accents \\vee Binary operators \\vert Delimiters \\Vert Delimiters \\Vmatrix Matrices \\vphantom Arrows \\vthicksp Space characters \\wedge Binary operators \\wp Symbols \\wr Binary operators \\xi Greek letters \\Xi Greek letters \\zeta Greek letters \\Zeta Greek letters \\zwnj Space characters \\zwsp Space characters ~= Relational operators -+ Binary operators +- Binary operators << Relational operators <= Relational operators -> Arrows >= Relational operators >> Relational operators" }, { "id": "UsageInstructions/NonprintingCharacters.htm", "title": "Show/hide nonprinting characters", - "body": "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 icon at the Home tab of the top toolbar. Alternatively, you can use the Ctrl+Shift+Num8 key combination. Nonprinting characters include: Spaces Inserted when you press the Spacebar on the keyboard. It creates a space between characters. Tabs Inserted when you press the Tab key. It's used to advance the cursor to the next tab stop. Paragraph marks (i.e. hard returns) Inserted when you press the Enter key. It ends a paragraph and adds a bit of space after it. It contains information about the paragraph formatting. Line breaks (i.e. soft returns) Inserted when you use the Shift+Enter key combination. It breaks the current line and puts lines of text close together. Soft return is primarily used in titles and headings. Nonbreaking spaces Inserted when you use the Ctrl+Shift+Spacebar key combination. It creates a space between characters which can't be used to start a new line. Page breaks Inserted when you use the 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 Inserted when you use the 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 Inserted when you use the 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 These markers contain formatting codes for the individual cell and row, respectively. Small black square in the margin to the left of a paragraph It indicates that at least one of the paragraph options was applied, e.g. Keep lines together, Page break before. Anchor symbols They indicate the position of floating objects (those with a wrapping style other than Inline), e.g. images, autoshapes, charts. You should select an object to make its anchor visible." + "body": "Nonprinting characters help you edit a document. They indicate the presence of various types of formatting elements, but they cannot be printed with the document even if they are displayed on the screen. To show or hide nonprinting characters, click the Nonprinting characters icon at the Home tab on the top toolbar. Alternatively, you can use the Ctrl+Shift+Num8 key combination. Nonprinting characters include: Spaces Inserted when you press the Spacebar on the keyboard. They create a space between characters. Tabs Inserted when you press the Tab key. They are used to advance the cursor to the next tab stop. Paragraph marks (i.e. hard returns) Inserted when you press the Enter key. They ends a paragraph and adds a bit of space after it. They also contain information about the paragraph formatting. Line breaks (i.e. soft returns) Inserted when you use the Shift+Enter key combination. They break the current line and put the text lines close together. Soft return are primarily used in titles and headings. Nonbreaking spaces Inserted when you use the Ctrl+Shift+Spacebar key combination. They create a space between characters which can't be used to start a new line. Page breaks Inserted when you use the Breaks icon on the Insert or Layout tabs of the top toolbar and then select one of the Insert Page Break submenu options (the section break indicator differs depending on which option is selected: Next Page, Continuous Page, Even Page or Odd Page). Section breaks Inserted when you use the Breaks icon on 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 Inserted when you use the Breaks icon on 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 Contain formatting codes for an individual cell and a row, respectively. Small black square in the margin to the left of a paragraph Indicates that at least one of the paragraph options was applied, e.g. Keep lines together, Page break before. Anchor symbols Indicate the position of floating objects (objects whose wrapping style is different from Inline), e.g. images, autoshapes, charts. You should select an object to make its anchor visible." }, { "id": "UsageInstructions/OpenCreateNew.htm", "title": "Create a new document or open an existing one", - "body": "To create a new document In the online editor click the File tab of the top toolbar, select the Create New option. In the desktop editor in the main program window, select the Document menu item from the Create new section of the left sidebar - a new file will open in a new tab, when all the necessary changes are made, click the Save icon in the upper left corner or switch to the File tab and choose the Save as menu item. in the file manager window, select the file location, specify its name, choose the format you want to save the document to (DOCX, Document template (DOTX), ODT, OTT, RTF, TXT, PDF or PDFA) and click the Save button. To open an existing document In the desktop editor in the main program window, select the Open local file menu item at the left sidebar, choose the necessary document from the file manager window and click the Open button. You can also right-click the necessary document in the file manager window, select the Open with option and choose the necessary application from the menu. If the office documents files are associated with the application, you can also open documents by double-clicking the file name in the file explorer window. All the directories that you have accessed using the desktop editor will be displayed in the Recent folders list so that you can quickly access them afterwards. Click the necessary folder to select one of the files stored in it. To open a recently edited document In the online editor click the File tab of the top toolbar, select the Open Recent... option, choose the document you need from the list of recently edited documents. In the desktop editor in the main program window, select the Recent files menu item at the left sidebar, choose the document you need from the list of recently edited documents. To open the folder where the file is stored in a new browser tab in the online version, in the file explorer window in the desktop version, click the Open file location icon on the right side of the editor header. Alternatively, you can switch to the File tab of the top toolbar and select the Open file location option." + "body": "To create a new document In the online editor click the File tab on the top toolbar, select the Create New option. In the desktop editor in the main program window, select the Document menu item from the Create new section on the left sidebar - a new file will open in a new tab, when all the necessary changes are made, click the Save icon in the upper left corner or switch to the File tab and choose the Save as menu item. in the file manager window, select the file location, specify its name, choose the required format for saving (DOCX, Document template (DOTX), ODT, OTT, RTF, TXT, PDF or PDFA) and click the Save button. To open an existing document In the desktop editor in the main program window, select the Open local file menu item on the left sidebar, choose the required document from the file manager window and click the Open button. You can also right-click the required document in the file manager window, select the Open with option and choose the necessary application from the menu. If text documents are associated with the application you need, you can also open them by double-clicking the file name in the file explorer window. All the directories that you have navigated through using the desktop editor will be displayed in the Recent folders list so that you can quickly access them afterwards. Click the required folder to select one of the files stored there. To open a recently edited document In the online editor click the File tab on the top toolbar, select the Open Recent... option, choose the document you need from the list of recently edited documents. In the desktop editor in the main program window, select the Recent files menu item on the left sidebar, choose the document you need from the list of recently edited documents. To open the folder, where the file is stored, in a new browser tab in the online editor in the file explorer window in the desktop editor, click the Open file location icon on the right side of the editor header. Alternatively, you can switch to the File tab on the top toolbar and select the Open file location option." }, { "id": "UsageInstructions/PageBreaks.htm", "title": "Insert page breaks", - "body": "In Document Editor, you can add a page break to start a new page, insert a blank page and adjust pagination options. To insert a page break at the current cursor position click the 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. You can also use the Ctrl+Enter key combination. To insert a blank page at the current cursor position click the Blank Page icon at the Insert tab of the top toolbar. This inserts two page breaks that creates a blank page. 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 click the right mouse button, select the Paragraph Advanced Settings option in the menu or use the Show advanced settings link at the right sidebar, and check the Page break before box at the Line & Page Breaks tab of the opened Paragraph - Advanced Settings window. To keep lines together so that only whole paragraphs will be moved to the new page (i.e. there will be no page break between the lines within a single paragraph), click the right mouse button and select the Keep lines together option in the menu, or click the right mouse button, select the Paragraph Advanced Settings option in the menu or use the Show advanced settings link at the right sidebar, and check the Keep lines together box at the Line & Page Breaks in the opened Paragraph - Advanced Settings window. The Line & Page Breaks tab of the Paragraph - Advanced Settings window allows you to set two more pagination options: Keep with next - is used to prevent a page break between the selected paragraph and the next one. Orphan control - is selected by default and used to prevent a single line of the paragraph (the first or last) from appearing at the top or bottom of the page." + "body": "In the Document Editor, you can add a page break to start a new page, insert a blank page and adjust pagination options. To insert a page break at the current cursor position click the Breaks icon on 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. You can also use the Ctrl+Enter key combination. To insert a blank page at the current cursor position click the Blank Page icon on the Insert tab of the top toolbar. This action inserts two page breaks that create a blank page. 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 click the right mouse button, select the Paragraph Advanced Settings option in the menu or use the Show advanced settings link on the right sidebar, and check the Page break before box at the Line & Page Breaks tab of the opened Paragraph - Advanced Settings window. To keep lines together so that only whole paragraphs will be moved to the new page (i.e. there will be no page break between the lines within a single paragraph), click the right mouse button and select the Keep lines together option in the menu, or click the right mouse button, select the Paragraph Advanced Settings option on the menu or use the Show advanced settings link at the right sidebar, and check the Keep lines together box at the Line & Page Breaks in the opened Paragraph - Advanced Settings window. The Line & Page Breaks tab of the Paragraph - Advanced Settings window allows you to set two more pagination options: Keep with next - is used to prevent a page break between the selected paragraph and the next one. Orphan control - is selected by default and used to prevent a single line of the paragraph (the first or last) from appearing at the top or bottom of the page." }, { "id": "UsageInstructions/ParagraphIndents.htm", "title": "Change paragraph indents", - "body": "In Document Editor, you can change the first line offset from the left part of the page as well as the paragraph offset from the left and right sides of the page. To do that, put the cursor within the paragraph you need, or select several paragraphs with the mouse or all the text in the document by pressing the Ctrl+A key combination, click the right mouse button and select the Paragraph Advanced Settings option from the menu or use the Show advanced settings link at the right sidebar, in the opened Paragraph - Advanced Settings window, switch to the Indents & Spacing tab and set the necessary parameters in the Indents section: Left - set the paragraph offset from the left side of the page specifying the necessary numeric value, Right - set the paragraph offset from the right side of the page specifying the necessary numeric value, Special - set an indent for the first line of the paragraph: select the corresponding menu item ((none), First line, Hanging) and change the default numeric value specified for First Line or Hanging, click the OK button. 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 and Increase indent . You can also use the horizontal ruler to set indents. Select the necessary paragraph(s) and drag the indent markers along the ruler. First Line Indent marker is used to set the offset from the left side of the page for the first line of the paragraph. Hanging Indent marker is used to set the offset from the left side of the page for the second line and all the subsequent lines of the paragraph. Left Indent marker is used to set the entire paragraph offset from the left side of the page. Right Indent marker is used to set the paragraph offset from the right side of the page." + "body": "the Document Editor, you can change the first line offset from the left side of the page as well as the paragraph offset from the left and right sides of the page. To do that, place the cursor within the required paragraph, or select several paragraphs with the mouse or the whole text by pressing the Ctrl+A key combination, click the right mouse button and select the Paragraph Advanced Settings option from the menu or use the Show advanced settings link on the right sidebar, in the opened Paragraph - Advanced Settings window, switch to the Indents & Spacing tab and set the necessary parameters in the Indents section: Left - set the paragraph offset from the left side of the page specifying the necessary numeric value, Right - set the paragraph offset from the right side of the page specifying the necessary numeric value, Special - set an indent for the first line of the paragraph: select the corresponding menu item ((none), First line, Hanging) and change the default numeric value specified for First Line or Hanging, click the OK button. To quickly change the paragraph offset from the left side of the page, you can also use the corresponding icons on the Home tab of the top toolbar: Decrease indent and Increase indent . You can also use the horizontal ruler to set indents. Select the necessary paragraph(s) and drag the indent markers along the ruler. The First Line Indent marker is used to set an offset from the left side of the page for the first line of the paragraph. The Hanging Indent marker is used to set an offset from the left side of the page for the second line and all the subsequent lines of the paragraph. The Left Indent marker is used to set an offset for the entire paragraph from the left side of the page. The Right Indent marker is used to set a paragraph offset from the right side of the page." }, { "id": "UsageInstructions/SavePrintDownload.htm", "title": "Save/download/print your document", - "body": "Save/download/ print your document Saving By default, online Document Editor automatically saves your file each 2 seconds when you work on it preventing your data loss in case of the unexpected program closing. If you co-edit the file in the Fast mode, the timer requests for updates 25 times a second and saves the changes if they have been made. When the file is being co-edited in the Strict mode, changes are automatically saved at 10-minute intervals. If you need, you can easily select the preferred co-editing mode or disable the Autosave feature on the Advanced Settings page. To save your current document manually in the current format and location, press the Save icon in the left part of the editor header, or use the Ctrl+S key combination, or click the File tab of the top toolbar and select the Save option. Note: in the desktop version, to prevent data loss in case of the unexpected program closing you can turn on the Autorecover option at the Advanced Settings page. In the desktop version, you can save the document with another name, in a new location or format, click the File tab of the top toolbar, select the Save as... option, choose one of the available formats depending on your needs: DOCX, ODT, RTF, TXT, PDF, PDFA. You can also choose the Document template (DOTX or OTT) option. Downloading In the online version, you can download the resulting document onto your computer hard disk drive, click the File tab of the top toolbar, select the Download as... option, choose one of the available formats depending on your needs: DOCX, PDF, ODT, TXT, DOTX, PDF/A, OTT, RTF, HTML. Saving a copy In the online version, you can save a copy of the file on your portal, click the File tab of the top toolbar, select the Save Copy as... option, choose one of the available formats depending on your needs: DOCX, PDF, ODT, TXT, DOTX, PDF/A, OTT, RTF, HTML, select a location of the file on the portal and press Save. Printing To print out the current document, click the Print icon in the left part of the editor header, or use the Ctrl+P key combination, or click the File tab of the top toolbar and select the Print option. It's also possible to print a selected text passage using the Print Selection option from the contextual menu. In the desktop version, the file will be printed directly. In the online version, 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. Some browsers (e.g. Chrome and Opera) support direct printing." + "body": "Save/download/ print your document Saving By default, online Document Editor automatically saves your file each 2 seconds when you work on it to prevent your data loss in case the program closes unexpectedly. If you co-edit the file in the Fast mode, the timer requests for updates 25 times a second and saves the changes if they have been made. When the file is being co-edited in the Strict mode, changes are automatically saved at 10-minute intervals. If necessary, you can easily select the preferred co-editing mode or disable the Autosave feature on the Advanced Settings page. To save your current document manually in the current format and location, press the Save icon in the left part of the editor header, or use the Ctrl+S key combination, or click the File tab of the top toolbar and select the Save option. Note: in the desktop version, to prevent data from loss in case program closes unexpectedly, you can turn on the Autorecover option on the Advanced Settings page. In the desktop version, you can save the document with another name, in a new location or format, click the File tab of the top toolbar, select the Save as... option, choose one of the available formats depending on your needs: DOCX, ODT, RTF, TXT, PDF, PDFA. You can also choose the Document template (DOTX or OTT) option. Downloading In the online version, you can download the resulting document onto your computer hard disk drive, click the File tab of the top toolbar, select the Download as... option, choose one of the available formats depending on your needs: DOCX, PDF, ODT, TXT, DOTX, PDF/A, OTT, RTF, HTML. Saving a copy In the online version, you can save a copy of the file on your portal, click the File tab of the top toolbar, select the Save Copy as... option, choose one of the available formats depending on your needs: DOCX, PDF, ODT, TXT, DOTX, PDF/A, OTT, RTF, HTML, select a location of the file on the portal and press Save. Printing To print out the current document, click the Print icon in the left part of the editor header, or use the Ctrl+P key combination, or click the File tab of the top toolbar and select the Print option. It's also possible to print a selected text passage using the Print Selection option from the contextual menu both in the Edit and View modes (Right Mouse Button Click and choose option Print selection). In the desktop version, the file will be printed directly. In the online version, 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. Some browsers (e.g. Chrome and Opera) support direct printing." }, { "id": "UsageInstructions/SectionBreaks.htm", "title": "Insert section breaks", - "body": "Section breaks allow you to apply a different layout or formatting for the certain parts of your document. For example, you can use individual headers and footers, page numbering, footnotes format, margins, size, orientation, or column number for each separate section. Note: an inserted section break defines formatting of the preceding part of the document. To insert a section break at the current cursor position: click the Breaks icon at the Insert or Layout tab of the top toolbar, select the Insert Section Break submenu select the necessary section break type: Next Page - to start a new section from the next page Continuous Page - to start a new section at the current page Even Page - to start a new section from the next even page Odd Page - to start a new section from the next odd page Added section breaks are indicated in your document by a double dotted line: If you do not see the inserted section breaks, click the 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." + "body": "Section breaks allow you to apply different layouts or formatting styles to a certain part of your document. For example, you can use individual headers and footers, page numbering, footnotes format, margins, size, orientation, or column number for each separate section. Note: an inserted section break defines formatting of the preceding part of the document. To insert a section break at the current cursor position: click the Breaks icon on the Insert or Layout tab of the top toolbar, select the Insert Section Break submenu select the necessary section break type: Next Page - to start a new section from the next page Continuous Page - to start a new section on the current page Even Page - to start a new section from the next even page Odd Page - to start a new section from the next odd page The added section breaks are indicated in your document with a double dotted line: If you do not see the inserted section breaks, click the icon on 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 previous section, when you remove a section break, this section formatting will also be deleted. When you delete a section break, the text before and after the break is combined into one section. The new combined section will use the formatting from the section that followed the section break." }, { "id": "UsageInstructions/SetOutlineLevel.htm", - "title": "Set up paragraph outline level", - "body": "Outline level means the paragraph level in the document structure. The following levels are available: Basic Text, Level 1 - Level 9. Outline level can be specified in different ways, for example, by using heading styles: once you assign a heading style (Heading 1 - Heading 9) to a paragraph, it acquires a corresponding outline level. If you assign a level to a paragraph using the paragraph advanced settings, the paragraph acquires the structure level only while its style remains unchanged. The outline level can also be changed at the Navigation panel on the left using the contextual menu options. To change a paragraph outline level using the paragraph advanced settings, right-click the text and choose the Paragraph Advanced Settings option from the contextual menu or use the Show advanced settings option at the right sidebar, open the Paragraph - Advanced Settings window, switch to the Indents & Spacing tab, select the necessary outline level from the Outline level list. click the OK button to apply the changes." + "title": "Set up a paragraph outline level", + "body": "Set up paragraph outline level An outline level is the paragraph level in the document structure. The following levels are available: Basic Text, Level 1 - Level 9. The outline level can be specified in different ways, for example, by using heading styles: once you assign a heading style (Heading 1 - Heading 9) to a paragraph, it acquires yje corresponding outline level. If you assign a level to a paragraph using the paragraph advanced settings, the paragraph acquires the structure level only while its style remains unchanged. The outline level can be also changed in the Navigation panel on the left using the contextual menu options. To change a paragraph outline level using the paragraph advanced settings, right-click the text and choose the Paragraph Advanced Settings option from the contextual menu or use the Show advanced settings option on the right sidebar, open the Paragraph - Advanced Settings window, switch to the Indents & Spacing tab, select the necessary outline level from the Outline level list. click the OK button to apply the changes." }, { "id": "UsageInstructions/SetPageParameters.htm", "title": "Set page parameters", - "body": "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 Orientation icon. The default orientation type is Portrait that can be switched to Album. Page Size Change the default A4 format clicking the 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) A4 (21cm x 29,7cm) A5 (14,81cm x 20,99cm) B5 (17,6cm x 25,01cm) Envelope #10 (10,48cm x 24,13cm) Envelope DL (11,01cm x 22,01cm) Tabloid (27,94cm x 43,17cm) AЗ (29,7cm x 42,01cm) Tabloid Oversize (30,48cm x 45,71cm) ROC 16K (19,68cm x 27,3cm) Envelope Choukei 3 (11,99cm x 23,49cm) Super B/A3 (33,02cm x 48,25cm) 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 select the necessary Preset (US Letter, US Legal, A4, A5, B5, Envelope #10, Envelope DL, Tabloid, AЗ, Tabloid Oversize, ROC 16K, Envelope Choukei 3, Super B/A3, A0, A1, A2, A6) or set custom 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. 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 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. Gutter position is used to set up additional space on the left or top of the document. Gutter option might come in handy to make sure bookbinding does not cover text. In Margins window enter the necessary gutter position into the entry fields and choose where it should be placed in. Note: Gutter position function cannot be used when Mirror margins option is checked. In Multiple pages drop-down menu choose Mirror margins option to to set up facing pages for double-sided documents. With this option checked, Left and Right margins turn into Inside and Outside margins respectively. In Orientation drop-down menu choose from Portrait and Landscape options. All applied changes to the document will be displayed in the Preview window. 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 list so that you can apply them to some other documents.

            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): Columns Apply a multi-column layout clicking the Columns icon and selecting the necessary column type from the drop-down list. The following options are available: Two - to add two columns of the same width, Three - to add three columns of the same width, Left - to add two columns: a narrow column on the left and a wide column on the right, Right - to add two columns: a narrow column on the right and a wide column on the left. 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. 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 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: . If you do not see the inserted column breaks, click the 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. To cancel columns and return to a regular single-column layout, click the Columns icon at the top toolbar and select the One option from the list." + "body": "To change page layout, i.e. set page orientation and size, adjust margins and insert columns, use the corresponding icons on 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 by type clicking the Orientation icon. The default orientation type is Portrait that can be switched to Album. Page Size Change the default A4 format by clicking the Size icon and selecting the required format from the list. The following preset sizes are available: US Letter (21,59cm x 27,94cm) US Legal (21,59cm x 35,56cm) A4 (21cm x 29,7cm) A5 (14,81cm x 20,99cm) B5 (17,6cm x 25,01cm) Envelope #10 (10,48cm x 24,13cm) Envelope DL (11,01cm x 22,01cm) Tabloid (27,94cm x 43,17cm) AЗ (29,7cm x 42,01cm) Tabloid Oversize (30,48cm x 45,71cm) ROC 16K (19,68cm x 27,3cm) Envelope Choukei 3 (11,99cm x 23,49cm) Super B/A3 (33,02cm x 48,25cm) 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 select the required Preset (US Letter, US Legal, A4, A5, B5, Envelope #10, Envelope DL, Tabloid, AЗ, Tabloid Oversize, ROC 16K, Envelope Choukei 3, Super B/A3, A0, A1, A2, A6) or set custom Width and Height values. Enter new values into the entry fields or adjust the existing values using the arrow buttons. When you finish, click OK to apply the changes. Page Margins Change the default margins, i.e. the blank space between the left, right, top and bottom page edges and the paragraph text, by clicking the 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. Enter the required Top, Bottom, Left and Right page margin values into the entry fields or adjust the existing values using arrow buttons. Gutter position is used to set up additional space on the left side of the document or at its top. The Gutter option is helpful to make sure that bookbinding does not cover the text. In the Margins enter the required gutter position into the entry fields and choose where it should be placed in. Note: the Gutter position cannot be used when the Mirror margins option is checked. In the Multiple pages drop-down menu, choose the Mirror margins option to set up facing pages for double-sided documents. With this option checked, Left and Right margins turn into Inside and Outside margins respectively. In Orientation drop-down menu choose from Portrait and Landscape options. All applied changes to the document will be displayed in the Preview window. When you finish, 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 list so that you will be able to apply them to other documents. 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): Columns Apply a multi-column layout by clicking the Columns icon and selecting the necessary column type from the drop-down list. The following options are available: Two - to add two columns of the same width, Three - to add three columns of the same width, Left - to add two columns: a narrow column on the left and a wide column on the right, Right - to add two columns: a narrow column on the right and a wide column on the left. If you want to adjust column settings, select the Custom Columns option from the list. The Columns window will appear, and you'll be able to set the required Number of columns (you can 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 you finish, click OK to apply the changes. To exactly specify where a new column should start, place the cursor before the text that you want to move to the new column, click the Breaks icon on the top toolbar and then select the Insert Column Break option. The text will be moved to the next column. The inserted column breaks are indicated in your document with a dotted line: . If you do not see the inserted column breaks, click the icon at the Home tab on the top toolbar to make them visible. 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. To cancel columns and return to a regular single-column layout, click the Columns icon on the top toolbar and select the One option from the list." }, { "id": "UsageInstructions/SetTabStops.htm", "title": "Set tab stops", - "body": "In Document Editor, you can change tab stops i.e. the position the cursor advances to when you press the Tab key on the keyboard. To set tab stops you can use the horizontal ruler: Select the necessary tab stop type clicking the button in the upper left corner of the working area. The following three tab types are available: Left - lines up your text by the left side at the tab stop position; the text moves to the right from the tab stop as you type. Such a tab stop will be indicated on the horizontal ruler by the marker. Center - centers the text at the tab stop position. Such a tab stop will be indicated on the horizontal ruler by the marker. Right - lines up your text by the right side at the tab stop position; the text moves to the left from the tab stop as you type. Such a tab stop will be indicated on the horizontal ruler by the marker. 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. You can also use the paragraph properties window to adjust tab stops. Click the right mouse button, select the Paragraph Advanced Settings option in the menu or use the Show advanced settings link at the right sidebar, and switch to the Tabs tab in the opened Paragraph - Advanced Settings window. You can set the following parameters: Default Tab is set at 1.25 cm. You can decrease or increase this value using the arrow buttons or enter the necessary one in the box. Tab Position - is used to set custom tab stops. Enter the necessary value in this box, adjust it more precisely using the arrow buttons and press the Specify button. Your custom tab position will be added to the list in the field below. If you've previously added some tab stops using the ruler, all these tab positions will also be displayed in the list. Alignment - is used to set the necessary alignment type for each of the tab positions in the list above. Select the necessary tab position in the list, choose the Left, Center or Right option from the drop-down list and press the Specify button. Leader - allows to choose a character used to create a leader for each of the tab positions. A leader is a line of characters (dots or hyphens) that fills the space between tabs. Select the necessary tab position in the list, choose the leader type from the drop-down list and press the Specify button. To delete tab stops from the list select a tab stop and press the Remove or Remove All button." + "body": "In the Document Editor, you can change tab stops. A tab stop is a term used to describe the location where the cursor stops after the Tab key is pressed. To set tab stops you can use the horizontal ruler: Select the necessary tab stop type by clicking the button in the upper left corner of the working area. The following three tab types are available: Left Tab Stop lines up the text to the left side at the tab stop position; the text moves to the right from the tab stop while you type. Such a tab stop will be indicated on the horizontal ruler with the Left Tab Stop marker. Center Tab Stop centers the text at the tab stop position. Such a tab stop will be indicated on the horizontal ruler with the Center Tab Stop marker. Right Tab Stop lines up the text to the right side at the tab stop position; the text moves to the left from the tab stop while you type. Such a tab stop will be indicated on the horizontal ruler with the Right Tab Stop marker. 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. You can also use the paragraph properties window to adjust tab stops. Click the right mouse button, select the Paragraph Advanced Settings option in the menu or use the Show advanced settings link on the right sidebar, and switch to the Tabs tab in the opened Paragraph - Advanced Settings window. You can set the following parameters: Default Tab is set at 1.25 cm. You can decrease or increase this value by using the arrow buttons or entering the required value in the box. Tab Position is used to set custom tab stops. Enter the required value in this box, adjust it more precisely by using the arrow buttons and press the Specify button. Your custom tab position will be added to the list in the field below. If you've previously added some tab stops using the ruler, all these tab positions will also be displayed in the list. Alignment - is used to set the necessary alignment type for each of the tab positions in the list above. Select the necessary tab position in the list, choose the Left, Center or Right option from the drop-down list and press the Specify button. Leader - allows choosing a character to create a leader for each tab positions. A leader is a line of characters (dots or hyphens) that fills the space between tabs. Select the necessary tab position in the list, choose the leader type from the drop-down list and press the Specify button. To delete tab stops from the list, select a tab stop and press the Remove or Remove All button." }, { "id": "UsageInstructions/UseMailMerge.htm", "title": "Use Mail Merge", - "body": "Note: this option is available in the online version only. The Mail Merge feature is used to create a set of documents combining a common content which is taken from a text document and some individual components (variables, such as names, greetings etc.) taken from a spreadsheet (for example, a customer list). It can be useful if you need to create a lot of personalized letters and send them to recipients. To start working with the Mail Merge feature, Prepare a data source and load it to the main document 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 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. Verify or change the recipients list Click the Edit recipients list button on the top of the right sidebar to open the Mail Merge Recipients window, where the content of the selected data source is displayed. Here you can add new information, edit or delete the existing data, if necessary. To simplify working with data, you can use the icons on the top of the window: and - to copy and paste the copied data and - to undo and redo undone actions and - to sort your data within a selected range of cells in ascending or descending order - to enable the filter for the previously selected range of cells or to remove the applied filter - to clear all the applied filter parameters Note: to learn more on how to use the filter you can refer to the Sort and filter data section of the Spreadsheet Editor help. - to search for a certain value and replace it with another one, if necessary Note: to learn more on how to use the Find and Replace tool you can refer to the Search and Replace Functions section of the Spreadsheet Editor help. After all the necessary changes are made, click the Save & Exit button. To discard the changes, click the Close button. Insert merge fields and check the results Place the mouse cursor in the text of the main document where you want a merge field to be inserted, click the Insert Merge Field button at the right sidebar and select the necessary field from the list. The available fields correspond to the data in the first cell of each column of the selected data source. Add all the fields you need anywhere in the document. Turn on the Highlight merge fields switcher at the right sidebar to make the inserted fields more noticeable in the document text. Turn on the Preview results switcher at the right sidebar to view the document text with the merge fields replaced with actual values from the data source. Use the arrow buttons to preview versions of the merged document for each record. To delete an inserted field, disable the Preview results mode, select the field with the mouse and press the Delete key on the keyboard. To replace an inserted field, disable the Preview results mode, select the field with the mouse, click the Insert Merge Field button at the right sidebar and choose a new field from the list. Specify the merge parameters Select the merge type. You can start mass mailing or save the result as a file in the PDF or Docx format to be able to print or edit it later. Select the necessary option from the Merge to list: PDF - to create a single document in the PDF format that includes all the merged copies so that you can print them later Docx - to create a single document in the Docx format that includes all the merged copies so that you can edit individual copies later Email - to send the results to recipients by email Note: the recipients' email addresses must be specified in the loaded data source and you need to have at least one email account connected in the Mail module on your portal. Choose the records you want to apply the merge to: All records (this option is selected by default) - to create merged documents for all records from the loaded data source Current record - to create a merged document for the record that is currently displayed From ... To - to create merged documents for a range of records (in this case you need to specify two values: the number of the first record and the last record in the desired range) Note: the maximum allowed quantity of recipients is 100. If you have more than 100 recipients in your data source, please, perform the mail merge by stages: specify the values from 1 to 100, wait until the mail merge process is over, then repeat the operation specifying the values from 101 to N etc. Complete the merge If you've decided to save the merge results as a file, click the Download button to store the file anywhere on your PC. You'll find the downloaded file in your default Downloads folder. click the Save button to save the file on your portal. In the Folder for save window that opens, you can change the file name and specify the folder where you want to save the file. You can also check the Open merged document in new tab box to check the result once the merge process is finished. Finally, click Save in the Folder for save window. If you've selected the Email option, the Merge button will be available on the right sidebar. After you click it, the Send to Email window will open: In the From list, select the mail account you want to use for sending mail, if you have several accounts connected in the Mail module. In the To list, select the merge field corresponding to email addresses of the recipients, if it was not selected automatically. Enter your message subject in the Subject Line field. Select the mail format from the list: HTML, Attach as DOCX or Attach as PDF. When one of the two latter options is selected, you also need to specify the File name for attachments and enter the Message (the text of your letter that will be sent to recipients). Click the Send button. Once the mailing is over you'll receive a notification to your email specified in the From field." + "body": "Note: this option is available in the online version only. The Mail Merge feature is used to create a set of documents combining a common content which is taken from a text document and some individual components (variables, such as names, greetings etc.) taken from a spreadsheet (for example, a customer list). It can be useful if you need to create a lot of personalized letters and send them to recipients. To start working with the Mail Merge feature, Prepare a data source and load it to the main document 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 icon on 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 on the left part of the window. Select the required file and click OK. Once the data source is loaded, the Mail Merge setting tab will be available on the right sidebar. Verify or change the recipients list Click the Edit recipients list button on the top of the right sidebar to open the Mail Merge Recipients window, where the content of the selected data source is displayed. In the opened window, you can add new information, edit or delete the existing data if necessary. To simplify working with data, you can use the icons at the top of the window: and - to copy and paste the copied data and - to undo and redo undone actions and - to sort your data within a selected range of cells in ascending or descending order - to enable the filter for the previously selected range of cells or to remove the applied filter - to clear all the applied filter parameters Note: to learn more on how to use the filter, please refer to the Sort and filter data section of the Spreadsheet Editor help. - to search for a certain value and replace it with another one, if necessary Note: to learn more on how to use the Find and Replace tool, please refer to the Search and Replace Functions section of the Spreadsheet Editor help. After all the necessary changes are made, click the Save & Exit button. To discard the changes, click the Close button. Insert merge fields and check the results Place the mouse cursor where the merge field should be inserted, click the Insert Merge Field button on the right sidebar and select the necessary field from the list. The available fields correspond to the data in the first cell of each column of the selected data source. All the required fields can be added anywhere. Turn on the Highlight merge fields switcher on the right sidebar to make the inserted fields more noticeable in the text. Turn on the Preview results switcher on the right sidebar to view the text with the merge fields replaced with actual values from the data source. Use the arrow buttons to preview the versions of the merged document for each record. To delete an inserted field, disable the Preview results mode, select the field with the mouse and press the Delete key on the keyboard. To replace an inserted field, disable the Preview results mode, select the field with the mouse, click the Insert Merge Field button on the right sidebar and choose a new field from the list. Specify the merge parameters Select the merge type. You can start mass mailing or save the result as a PDF or Docx file to print or edit it later. Select the necessary option from the Merge to list: PDF - to create a single PDF document that includes all the merged copies that can be printed later Docx - to create a single Docx document that includes all the merged copies that can be edited individually later Email - to send the results to recipients by email Note: the recipients' email addresses must be specified in the loaded data source and you need to have at least one email account connected in the Mail module on your portal. Choose all the required records to be applied: All records (this option is selected by default) - to create merged documents for all records from the loaded data source Current record - to create a merged document for the record that is currently displayed From ... To - to create merged documents for a range of records (in this case you need to specify two values: the number of the first record and the last record in the desired range) Note: the maximum allowed quantity of recipients is 100. If you have more than 100 recipients in your data source, please, perform the mail merge by stages: specify the values from 1 to 100, wait until the mail merge process is over, then repeat the operation specifying the values from 101 to N etc. Complete the merge If you've decided to save the merge results as a file, click the Download button to save the file on your PC. You'll find the downloaded file in your default Downloads folder. click the Save button to save the file on your portal. In the opened Folder for save window, you can change the file name and specify the folder where you want to save the file. You can also check the Open merged document in new tab box to check the result when the merge process is finished. Finally, click Save in the Folder for save window. If you've selected the Email option, the Merge button will be available on the right sidebar. After you click it, the Send to Email window will open: In the From list, select the required mail account if you have several accounts connected to the Mail module. In the To list, select the merge field corresponding to the email addresses of the recipients if this option was not selected automatically. Enter your message subject in the Subject Line field. Select the mail format from the list: HTML, Attach as DOCX or Attach as PDF. When one of the two latter options is selected, you also need to specify the File name for attachments and enter the Message (the text of your letter that will be sent to recipients). Click the Send button. Once the mailing is over, you'll receive a notification to your email specified in the From field." }, { "id": "UsageInstructions/ViewDocInfo.htm", "title": "View document information", - "body": "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 a number of the file properties which describe the document. Some of these properties are updated automatically, and some of them can be edited. Location - the folder in the Documents module where the file is stored. Owner - the name of the user who have created the file. Uploaded - the date and time when the file has been created. These properties are available in the online version only. Statistics - the number of pages, paragraphs, words, symbols, symbols with spaces. Title, Subject, Comment - these properties allow to simplify your documents classification. You can specify the necessary text in the properties fields. Last Modified - the date and time when the file was last modified. Last Modified By - the name of the user who have made the latest change in the document if a document has been shared and it can be edited by several users. Application - the application the document was created with. Author - the person who have created the file. You can enter the necessary name in this field. Press Enter to add a new field that allows to specify one more author. If you changed the file properties, click the Apply button to apply the changes. Note: Online Editors allow you to change the document name 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 In the online version, you can view the information about permissions to the files stored in the cloud. 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 In the online version, you can view the version history for the files stored in the cloud. Note: this option is not available 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. It's also possible to open the history of versions using the Version History icon at the Collaboration tab of the top toolbar. 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. 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." + "body": "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 a number of the file properties which describe the document. Some of these properties are updated automatically, and some of them can be edited. Location - the folder in the Documents module where the file is stored. Owner - the name of the user who has created the file. Uploaded - the date and time when the file has been created. These properties are available in the online version only. Statistics - the number of pages, paragraphs, words, symbols, symbols with spaces. Title, Subject, Comment - these properties allow yoy to simplify your documents classification. You can specify the necessary text in the properties fields. Last Modified - the date and time when the file was last modified. Last Modified By - the name of the user who has made the latest change to the document. This option is available if the document has been shared and can be edited by several users. Application - the application the document has been created with. Author - the person who has created the file. You can enter the necessary name in this field. Press Enter to add a new field that allows you to specify one more author. If you changed the file properties, click the Apply button to apply the changes. Note: The online Editors allow you to change the name of the document directly in 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 will appear and click OK. Permission Information In the online version, you can view the information about permissions to the files stored in the cloud. 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 on 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 In the online version, you can view the version history for the files stored in the cloud. Note: this option is not available 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. It's also possible to open the history of versions using the Version History icon on the Collaboration tab of the top toolbar. 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 on the left sidebar. The changes made by the version/revision author are marked with the color which is displayed next to the author's name on the left sidebar. You can use the Restore link below the selected version/revision to restore it. To return to the current version of the document, 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." } ] \ No newline at end of file diff --git a/apps/documenteditor/mobile/locale/cs.json b/apps/documenteditor/mobile/locale/cs.json index 2d583dee3..514a1a0d3 100644 --- a/apps/documenteditor/mobile/locale/cs.json +++ b/apps/documenteditor/mobile/locale/cs.json @@ -1,16 +1,23 @@ { + "Common.Controllers.Collaboration.textAddReply": "Přidat odpověď", "Common.Controllers.Collaboration.textAtLeast": "alespoň", "Common.Controllers.Collaboration.textAuto": "automaticky", "Common.Controllers.Collaboration.textBaseline": "Základ", "Common.Controllers.Collaboration.textBold": "Tučné", "Common.Controllers.Collaboration.textBreakBefore": "Rozdělit stránku před", + "Common.Controllers.Collaboration.textCancel": "Zrušit", "Common.Controllers.Collaboration.textCaps": "Všechno velkými", "Common.Controllers.Collaboration.textCenter": "Zarovnat na střed", "Common.Controllers.Collaboration.textChart": "Graf", "Common.Controllers.Collaboration.textColor": "Barva písma", "Common.Controllers.Collaboration.textContextual": "Nepřidávejte interval mezi odstavce se stejným stylem", + "Common.Controllers.Collaboration.textDelete": "Smazat", + "Common.Controllers.Collaboration.textDeleteComment": "Smazat komentář", "Common.Controllers.Collaboration.textDeleted": "Smazáno:", + "Common.Controllers.Collaboration.textDeleteReply": "Smazat odpověď", + "Common.Controllers.Collaboration.textDone": "Hotovo", "Common.Controllers.Collaboration.textDStrikeout": "Dvojité přeškrtnutí", + "Common.Controllers.Collaboration.textEdit": "Upravit", "Common.Controllers.Collaboration.textEditUser": "Uživatelé, kteří soubor právě upravují:", "Common.Controllers.Collaboration.textEquation": "Rovnice", "Common.Controllers.Collaboration.textExact": "přesně", @@ -27,8 +34,11 @@ "Common.Controllers.Collaboration.textKeepNext": "Svázat s následujícím", "Common.Controllers.Collaboration.textLeft": "Zarovnat vlevo", "Common.Controllers.Collaboration.textLineSpacing": "Rozestupy řádků:", + "Common.Controllers.Collaboration.textMessageDeleteComment": "Opravdu chcete smazat tento komentář?", + "Common.Controllers.Collaboration.textMessageDeleteReply": "Opravdu chcete smazat tuto odpověď?", "Common.Controllers.Collaboration.textMultiple": "vícero", "Common.Controllers.Collaboration.textNoBreakBefore": "Nezalamovat stránku před", + "Common.Controllers.Collaboration.textNoChanges": "Žádné změny.", "Common.Controllers.Collaboration.textNoContextual": "Přidat interval mezi odstavce stejného stylu", "Common.Controllers.Collaboration.textNoKeepLines": "Neudržovat řádky u sebe", "Common.Controllers.Collaboration.textNoKeepNext": "Neudržovat s následující", @@ -42,6 +52,8 @@ "Common.Controllers.Collaboration.textParaMoveFromUp": "Přesunuto nahoru:", "Common.Controllers.Collaboration.textParaMoveTo": "Přesunuto:", "Common.Controllers.Collaboration.textPosition": "Pozice", + "Common.Controllers.Collaboration.textReopen": "Znovu otevřít", + "Common.Controllers.Collaboration.textResolve": "Vyřešit", "Common.Controllers.Collaboration.textRight": "Zarovnat vpravo", "Common.Controllers.Collaboration.textShape": "Tvar", "Common.Controllers.Collaboration.textShd": "Barva pozadí", @@ -58,21 +70,32 @@ "Common.Controllers.Collaboration.textTabs": "Změnit záložky", "Common.Controllers.Collaboration.textUnderline": "Podtržené", "Common.Controllers.Collaboration.textWidow": "Ovládací prvek okna", + "Common.Controllers.Collaboration.textYes": "Ano", "Common.UI.ThemeColorPalette.textCustomColors": "Uživatelsky určené barvy", "Common.UI.ThemeColorPalette.textStandartColors": "Standardní barvy", "Common.UI.ThemeColorPalette.textThemeColors": "Barvy tématu", "Common.Utils.Metric.txtCm": "cm", "Common.Utils.Metric.txtPt": "pt", + "Common.Views.Collaboration.textAccept": "Přijmout", "Common.Views.Collaboration.textAcceptAllChanges": "Přijmout všechny změny", + "Common.Views.Collaboration.textAddReply": "Přidat odpověď", + "Common.Views.Collaboration.textAllChangesAcceptedPreview": "Všechny změny přijaty", + "Common.Views.Collaboration.textAllChangesEditing": "Všechny změny (Upravení)", + "Common.Views.Collaboration.textAllChangesRejectedPreview": "Všechny změny zamítnuty", "Common.Views.Collaboration.textBack": "Zpět", + "Common.Views.Collaboration.textCancel": "Zrušit", "Common.Views.Collaboration.textChange": "Zrevidovat změnu", "Common.Views.Collaboration.textCollaboration": "Spolupráce", "Common.Views.Collaboration.textDisplayMode": "Režim zobrazení", + "Common.Views.Collaboration.textDone": "Hotovo", + "Common.Views.Collaboration.textEditReply": "Upravit odpověď", "Common.Views.Collaboration.textEditUsers": "Uživatelé", + "Common.Views.Collaboration.textEditСomment": "Upravit komentář", "Common.Views.Collaboration.textFinal": "Konečné", "Common.Views.Collaboration.textMarkup": "Značka", "Common.Views.Collaboration.textNoComments": "Tento dokument neobsahuje komentáře", "Common.Views.Collaboration.textOriginal": "Původní", + "Common.Views.Collaboration.textReject": "Odmítnout", "Common.Views.Collaboration.textRejectAllChanges": "Odmítnout všechny změny", "Common.Views.Collaboration.textReview": "Sledovat změny", "Common.Views.Collaboration.textReviewing": "Revize", @@ -85,12 +108,17 @@ "DE.Controllers.AddImage.txtNotUrl": "Toto pole by mělo obsahovat adresu URL ve formátu \"http://www.example.com\"", "DE.Controllers.AddOther.textBelowText": "Pod textem", "DE.Controllers.AddOther.textBottomOfPage": "Spodní část stránky", + "DE.Controllers.AddOther.textCancel": "Zrušit", + "DE.Controllers.AddOther.textContinue": "Pokračovat", + "DE.Controllers.AddOther.textDelete": "Smazat", + "DE.Controllers.AddOther.textDeleteDraft": "Opravdu chcete návrh smazat?", "DE.Controllers.AddOther.txtNotUrl": "Toto pole by mělo obsahovat adresu URL ve formátu \"http://www.example.com\"", "DE.Controllers.AddTable.textCancel": "Zrušit", "DE.Controllers.AddTable.textColumns": "Sloupce", "DE.Controllers.AddTable.textRows": "Řádky", "DE.Controllers.AddTable.textTableSize": "Velikost tabulky", "DE.Controllers.DocumentHolder.errorCopyCutPaste": "Akce kopírovat, vyjmout a vložit použitím kontextové nabídky budou prováděny pouze v rámci právě otevřeného souboru.", + "DE.Controllers.DocumentHolder.menuAddComment": "Přidat komentář", "DE.Controllers.DocumentHolder.menuAddLink": "Přidat odkaz", "DE.Controllers.DocumentHolder.menuCopy": "Kopírovat", "DE.Controllers.DocumentHolder.menuCut": "Vyjmout", @@ -104,6 +132,7 @@ "DE.Controllers.DocumentHolder.menuReview": "Revize", "DE.Controllers.DocumentHolder.menuReviewChange": "Zrevidovat změnu", "DE.Controllers.DocumentHolder.menuSplit": "Rozdělit buňku", + "DE.Controllers.DocumentHolder.menuViewComment": "Zobrazit komentář", "DE.Controllers.DocumentHolder.sheetCancel": "Zrušit", "DE.Controllers.DocumentHolder.textCancel": "Storno", "DE.Controllers.DocumentHolder.textColumns": "Sloupce", @@ -156,6 +185,7 @@ "DE.Controllers.Main.errorKeyExpire": "Klíč deskriptoru vypršel", "DE.Controllers.Main.errorMailMergeLoadFile": "Načítání dokumentu se nezdařilo. Vyberte jiný soubor.", "DE.Controllers.Main.errorMailMergeSaveFile": "Spojování selhalo.", + "DE.Controllers.Main.errorOpensource": "Použitím volné komunitní verze můžete otevřít dokumenty pouze pro čtení. Pro přístup k mobilním editorům je vyžadována komerční licence.", "DE.Controllers.Main.errorProcessSaveResult": "Ukládání selhalo.", "DE.Controllers.Main.errorServerVersion": "Verze editoru byla aktualizována. Stránka bude znovu načtena, aby se provedly změny.", "DE.Controllers.Main.errorStockChart": "Nespravné pořadí řádků. Chcete-li vytvořit burzovní graf umístěte data na list v následujícím pořadí:
            otevírací cena, maximální cena, minimální cena, uzavírací cena.", @@ -202,14 +232,18 @@ "DE.Controllers.Main.textContactUs": "Obchodní oddělení", "DE.Controllers.Main.textCustomLoader": "Mějte na paměti, že dle podmínek licence nejste oprávněni měnit načítač.
            Pro získání nabídky se obraťte na naše obchodní oddělení.", "DE.Controllers.Main.textDone": "Hotovo", + "DE.Controllers.Main.textHasMacros": "Soubor obsahuje automatická makra.
            Chcete spustit makra?", "DE.Controllers.Main.textLoadingDocument": "Načítání dokumentu", + "DE.Controllers.Main.textNo": "Ne", "DE.Controllers.Main.textNoLicenseTitle": "omezení na %1 spojení", "DE.Controllers.Main.textOK": "OK", "DE.Controllers.Main.textPaidFeature": "Placená funkce", "DE.Controllers.Main.textPassword": "Heslo", "DE.Controllers.Main.textPreloader": "Nahrávám ...", + "DE.Controllers.Main.textRemember": "Zapamatovat mou volbu", "DE.Controllers.Main.textTryUndoRedo": "Funkce zpět/zopakovat jsou vypnuty pro rychlý co-editační režim.", "DE.Controllers.Main.textUsername": "Uživatelské jméno ", + "DE.Controllers.Main.textYes": "Ano", "DE.Controllers.Main.titleLicenseExp": "Platnost licence vypršela", "DE.Controllers.Main.titleServerVersion": "Editor byl aktualizován", "DE.Controllers.Main.titleUpdateVersion": "Verze změněna", @@ -256,6 +290,7 @@ "DE.Controllers.Search.textNoTextFound": "Text nebyl nalezen", "DE.Controllers.Search.textReplaceAll": "Nahradit vše", "DE.Controllers.Settings.notcriticalErrorTitle": "Varování", + "DE.Controllers.Settings.textCustomSize": "Vlastní velikost", "DE.Controllers.Settings.txtLoading": "Nahrávám ...", "DE.Controllers.Settings.unknownText": "Neznámý", "DE.Controllers.Settings.warnDownloadAs": "Pokud budete pokračovat v ukládání v tomto formátu, vše kromě textu bude ztraceno.
            Opravdu chcete pokračovat?", @@ -271,14 +306,18 @@ "DE.Views.AddImage.textImageURL": "URL obrázku", "DE.Views.AddImage.textInsertImage": "Vložit obrázek", "DE.Views.AddImage.textLinkSettings": "Nastavení odkazů", + "DE.Views.AddOther.textAddComment": "Přidat komentář", "DE.Views.AddOther.textAddLink": "Přidat odkaz", "DE.Views.AddOther.textBack": "Zpět", + "DE.Views.AddOther.textBreak": "Přestávka", "DE.Views.AddOther.textCenterBottom": "Uprostřed", "DE.Views.AddOther.textCenterTop": "Nahoře uprostřed", "DE.Views.AddOther.textColumnBreak": "Zalomení sloupce", + "DE.Views.AddOther.textComment": "Komentář", "DE.Views.AddOther.textContPage": "Souvislá stránka", "DE.Views.AddOther.textCurrentPos": "Aktuální pozice", "DE.Views.AddOther.textDisplay": "Zobrazit", + "DE.Views.AddOther.textDone": "Hotovo", "DE.Views.AddOther.textEvenPage": "Sudá stránka", "DE.Views.AddOther.textFootnote": "Poznámka pod čarou", "DE.Views.AddOther.textFormat": "Formát", @@ -486,6 +525,9 @@ "DE.Views.Settings.textCreateDate": "Datum vytvoření", "DE.Views.Settings.textCustom": "Vlastní", "DE.Views.Settings.textCustomSize": "Vlastní velikost", + "DE.Views.Settings.textDisableAll": "Vypnout vše", + "DE.Views.Settings.textDisableAllMacrosWithNotification": "Vypnout všechna makra s oznámením", + "DE.Views.Settings.textDisableAllMacrosWithoutNotification": "Vypnout všechna makra bez oznámení", "DE.Views.Settings.textDisplayComments": "Komentáře", "DE.Views.Settings.textDisplayResolvedComments": "Vyřešené komentáře", "DE.Views.Settings.textDocInfo": "Informace dokumentu", @@ -497,6 +539,8 @@ "DE.Views.Settings.textDownloadAs": "Stáhnout jako...", "DE.Views.Settings.textEditDoc": "Upravit dokument", "DE.Views.Settings.textEmail": "E-mail", + "DE.Views.Settings.textEnableAll": "Zapnout vše", + "DE.Views.Settings.textEnableAllMacrosWithoutNotification": "Zapnout všechna makra bez oznámení", "DE.Views.Settings.textFind": "Najít", "DE.Views.Settings.textFindAndReplace": "Najít a nahradit", "DE.Views.Settings.textFormat": "Formát", @@ -509,6 +553,7 @@ "DE.Views.Settings.textLeft": "Vlevo", "DE.Views.Settings.textLoading": "Nahrávám ...", "DE.Views.Settings.textLocation": "Umístění", + "DE.Views.Settings.textMacrosSettings": "Nastavení maker", "DE.Views.Settings.textMargins": "Okraje", "DE.Views.Settings.textNoCharacters": "Netisknutelné znaky", "DE.Views.Settings.textOrientation": "Orientace", @@ -523,6 +568,7 @@ "DE.Views.Settings.textReview": "Sledovat změny", "DE.Views.Settings.textRight": "Vpravo", "DE.Views.Settings.textSettings": "Nastavení", + "DE.Views.Settings.textShowNotification": "Zobrazit oznámení", "DE.Views.Settings.textSpaces": "Mezery", "DE.Views.Settings.textSpellcheck": "Kontrola pravopisu", "DE.Views.Settings.textStatistic": "Statistika", diff --git a/apps/documenteditor/mobile/locale/de.json b/apps/documenteditor/mobile/locale/de.json index 138d1c1ee..4dd9eb846 100644 --- a/apps/documenteditor/mobile/locale/de.json +++ b/apps/documenteditor/mobile/locale/de.json @@ -185,6 +185,7 @@ "DE.Controllers.Main.errorKeyExpire": "Der Schlüsseldeskriptor ist abgelaufen", "DE.Controllers.Main.errorMailMergeLoadFile": "Fehler beim Laden des Dokuments. Bitte wählen Sie eine andere Datei.", "DE.Controllers.Main.errorMailMergeSaveFile": "Verbinden ist fehlgeschlagen.", + "DE.Controllers.Main.errorOpensource": "Sie können in der kostenlosen Community-Version nur Dokumente zu betrachten öffnen. Eine kommerzielle Lizenz ist für die Nutzung der mobilen Web-Editoren erforderlich.", "DE.Controllers.Main.errorProcessSaveResult": "Fehler beim Speichern von Daten.", "DE.Controllers.Main.errorServerVersion": "Editor-Version wurde aktualisiert. Die Seite wird neu geladen, um die Änderungen zu übernehmen.", "DE.Controllers.Main.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.", @@ -233,8 +234,8 @@ "DE.Controllers.Main.textDone": "Fertig", "DE.Controllers.Main.textHasMacros": "Diese Datei beinhaltet Makros.
            Möchten Sie Makros ausführen?", "DE.Controllers.Main.textLoadingDocument": "Dokument wird geladen", - "DE.Controllers.Main.textNoLicenseTitle": "Lizenzlimit erreicht", "DE.Controllers.Main.textNo": "Nein", + "DE.Controllers.Main.textNoLicenseTitle": "Lizenzlimit erreicht", "DE.Controllers.Main.textOK": "OK", "DE.Controllers.Main.textPaidFeature": "Kostenpflichtige Funktion", "DE.Controllers.Main.textPassword": "Kennwort", @@ -280,8 +281,8 @@ "DE.Controllers.Main.uploadImageTextText": "Bild wird hochgeladen...", "DE.Controllers.Main.uploadImageTitleText": "Bild wird hochgeladen", "DE.Controllers.Main.waitText": "Bitte warten...", - "DE.Controllers.Main.warnLicenseExp": "Ihre Lizenz ist abgelaufen.
            Bitte aktualisieren Sie Ihre Lizenz und laden Sie die Seite neu.", "DE.Controllers.Main.warnLicenseExceeded": "Sie haben das Limit für gleichzeitige Verbindungen in %1-Editoren erreicht. Dieses Dokument wird nur zum Anzeigen geöffnet.
            Bitte wenden Sie sich an Ihren Administrator, um weitere Informationen zu erhalten.", + "DE.Controllers.Main.warnLicenseExp": "Ihre Lizenz ist abgelaufen.
            Bitte aktualisieren Sie Ihre Lizenz und laden Sie die Seite neu.", "DE.Controllers.Main.warnLicenseUsersExceeded": "Sie haben das Benutzerlimit für %1-Editoren erreicht. Bitte wenden Sie sich an Ihren Administrator, um weitere Informationen zu erhalten.", "DE.Controllers.Main.warnNoLicense": "Sie haben das Limit für gleichzeitige Verbindungen in %1-Editoren erreicht. Dieses Dokument wird nur zum Anzeigen geöffnet.
            Bitte kontaktieren Sie unser Verkaufsteam, um persönliche Upgrade-Bedingungen zu erhalten.", "DE.Controllers.Main.warnNoLicenseUsers": "Sie haben das Benutzerlimit für %1-Editoren erreicht. Bitte kontaktieren Sie unser Verkaufsteam, um persönliche Upgrade-Bedingungen zu erhalten.", @@ -308,6 +309,7 @@ "DE.Views.AddOther.textAddComment": "Kommentar hinzufügen", "DE.Views.AddOther.textAddLink": "Link hinzufügen", "DE.Views.AddOther.textBack": "Zurück", + "DE.Views.AddOther.textBreak": "Pause", "DE.Views.AddOther.textCenterBottom": "Mitte Unten", "DE.Views.AddOther.textCenterTop": "Mitte oben", "DE.Views.AddOther.textColumnBreak": "Spaltenumbruch", diff --git a/apps/documenteditor/mobile/locale/en.json b/apps/documenteditor/mobile/locale/en.json index 4a00881d1..84fad9a31 100644 --- a/apps/documenteditor/mobile/locale/en.json +++ b/apps/documenteditor/mobile/locale/en.json @@ -185,6 +185,7 @@ "DE.Controllers.Main.errorKeyExpire": "Key descriptor expired", "DE.Controllers.Main.errorMailMergeLoadFile": "Loading the document failed. Please select a different file.", "DE.Controllers.Main.errorMailMergeSaveFile": "Merge failed.", + "DE.Controllers.Main.errorOpensource": "Using the free Community version you can open documents for viewing only. To access mobile web editors, a commercial license is required.", "DE.Controllers.Main.errorProcessSaveResult": "Saving is failed.", "DE.Controllers.Main.errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", "DE.Controllers.Main.errorSessionAbsolute": "The document editing session has expired. Please reload the page.", @@ -236,8 +237,8 @@ "DE.Controllers.Main.textDone": "Done", "DE.Controllers.Main.textHasMacros": "The file contains automatic macros.
            Do you want to run macros?", "DE.Controllers.Main.textLoadingDocument": "Loading document", - "DE.Controllers.Main.textNoLicenseTitle": "License limit reached", "DE.Controllers.Main.textNo": "No", + "DE.Controllers.Main.textNoLicenseTitle": "License limit reached", "DE.Controllers.Main.textOK": "OK", "DE.Controllers.Main.textPaidFeature": "Paid feature", "DE.Controllers.Main.textPassword": "Password", @@ -283,11 +284,11 @@ "DE.Controllers.Main.uploadImageTextText": "Uploading image...", "DE.Controllers.Main.uploadImageTitleText": "Uploading Image", "DE.Controllers.Main.waitText": "Please, wait...", + "DE.Controllers.Main.warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only.
            Contact your administrator to learn more.", "DE.Controllers.Main.warnLicenseExp": "Your license has expired.
            Please update your license and refresh the page.", + "DE.Controllers.Main.warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", "DE.Controllers.Main.warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only.
            Contact %1 sales team for personal upgrade terms.", "DE.Controllers.Main.warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", - "DE.Controllers.Main.warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only.
            Contact your administrator to learn more.", - "DE.Controllers.Main.warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", "DE.Controllers.Main.warnProcessRightsChange": "You have been denied the right to edit the file.", "DE.Controllers.Search.textNoTextFound": "Text not Found", "DE.Controllers.Search.textReplaceAll": "Replace All", diff --git a/apps/documenteditor/mobile/locale/es.json b/apps/documenteditor/mobile/locale/es.json index 70993d61f..e80c2c69e 100644 --- a/apps/documenteditor/mobile/locale/es.json +++ b/apps/documenteditor/mobile/locale/es.json @@ -1,17 +1,24 @@ { + "Common.Controllers.Collaboration.textAddReply": "Añadir respuesta", "Common.Controllers.Collaboration.textAtLeast": "al menos", "Common.Controllers.Collaboration.textAuto": "auto", "Common.Controllers.Collaboration.textBaseline": "Línea de base", "Common.Controllers.Collaboration.textBold": "Negrita", "Common.Controllers.Collaboration.textBreakBefore": "Salto de página anterior", + "Common.Controllers.Collaboration.textCancel": "Cancelar", "Common.Controllers.Collaboration.textCaps": "Mayúsculas", "Common.Controllers.Collaboration.textCenter": "Alinear al centro", "Common.Controllers.Collaboration.textChart": "Gráfico", "Common.Controllers.Collaboration.textColor": "Color de fuente", "Common.Controllers.Collaboration.textContextual": "No añadir intervalo entre párrafos del mismo estilo", + "Common.Controllers.Collaboration.textDelete": "Eliminar", + "Common.Controllers.Collaboration.textDeleteComment": "Eliminar comentario", "Common.Controllers.Collaboration.textDeleted": "Eliminado:", + "Common.Controllers.Collaboration.textDeleteReply": "Eliminar respuesta", + "Common.Controllers.Collaboration.textDone": "Listo", "Common.Controllers.Collaboration.textDStrikeout": "Doble tachado", - "Common.Controllers.Collaboration.textEditUser": "El documento está siendo editado por múltiples usuarios.", + "Common.Controllers.Collaboration.textEdit": "Editar", + "Common.Controllers.Collaboration.textEditUser": "Usuarios que están editando el archivo:", "Common.Controllers.Collaboration.textEquation": "Ecuación", "Common.Controllers.Collaboration.textExact": "exactamente", "Common.Controllers.Collaboration.textFirstLine": "Primera línea", @@ -27,8 +34,11 @@ "Common.Controllers.Collaboration.textKeepNext": "Mantener con el siguiente", "Common.Controllers.Collaboration.textLeft": "Alinear a la izquierda", "Common.Controllers.Collaboration.textLineSpacing": "Espaciado de línea: ", + "Common.Controllers.Collaboration.textMessageDeleteComment": "¿Realmente quiere eliminar este comentario?", + "Common.Controllers.Collaboration.textMessageDeleteReply": "¿Realmente quiere eliminar esta respuesta?", "Common.Controllers.Collaboration.textMultiple": "Multiplicador", "Common.Controllers.Collaboration.textNoBreakBefore": "Sin salto de página anterior", + "Common.Controllers.Collaboration.textNoChanges": "No hay cambios.", "Common.Controllers.Collaboration.textNoContextual": "Añadir intervalo entre párrafos del mismo estilo", "Common.Controllers.Collaboration.textNoKeepLines": "No mantener líneas juntas", "Common.Controllers.Collaboration.textNoKeepNext": "No mantener con el siguiente", @@ -42,6 +52,8 @@ "Common.Controllers.Collaboration.textParaMoveFromUp": "Subido:", "Common.Controllers.Collaboration.textParaMoveTo": "Movido:", "Common.Controllers.Collaboration.textPosition": "Posición", + "Common.Controllers.Collaboration.textReopen": "Volver a abrir", + "Common.Controllers.Collaboration.textResolve": "Resolver", "Common.Controllers.Collaboration.textRight": "Alinear a la derecha", "Common.Controllers.Collaboration.textShape": "Forma", "Common.Controllers.Collaboration.textShd": "Color del fondo", @@ -58,21 +70,32 @@ "Common.Controllers.Collaboration.textTabs": "Cambiar tabuladores", "Common.Controllers.Collaboration.textUnderline": "Subrayado", "Common.Controllers.Collaboration.textWidow": "Widow control", + "Common.Controllers.Collaboration.textYes": "Sí", "Common.UI.ThemeColorPalette.textCustomColors": "Colores personalizados", "Common.UI.ThemeColorPalette.textStandartColors": "Colores estándar", "Common.UI.ThemeColorPalette.textThemeColors": "Colores de tema", "Common.Utils.Metric.txtCm": "cm", "Common.Utils.Metric.txtPt": "pt", + "Common.Views.Collaboration.textAccept": "Aceptar", "Common.Views.Collaboration.textAcceptAllChanges": "Aceptar todos los cambios", + "Common.Views.Collaboration.textAddReply": "Añadir respuesta", + "Common.Views.Collaboration.textAllChangesAcceptedPreview": "Todos los cambio aceptados (Vista previa)", + "Common.Views.Collaboration.textAllChangesEditing": "Todos los cambios (Edición)", + "Common.Views.Collaboration.textAllChangesRejectedPreview": "Todos los cambios rechazados (Vista previa)", "Common.Views.Collaboration.textBack": "Atrás", + "Common.Views.Collaboration.textCancel": "Cancelar", "Common.Views.Collaboration.textChange": "Revisar cambios", "Common.Views.Collaboration.textCollaboration": "Colaboración", "Common.Views.Collaboration.textDisplayMode": "Modo de visualización", + "Common.Views.Collaboration.textDone": "Listo", + "Common.Views.Collaboration.textEditReply": "Editar respuesta", "Common.Views.Collaboration.textEditUsers": "Usuarios", + "Common.Views.Collaboration.textEditСomment": "Editar comentario", "Common.Views.Collaboration.textFinal": "Final", "Common.Views.Collaboration.textMarkup": "Cambios", "Common.Views.Collaboration.textNoComments": "Este documento no contiene comentarios.", "Common.Views.Collaboration.textOriginal": "Original", + "Common.Views.Collaboration.textReject": "Rechazar", "Common.Views.Collaboration.textRejectAllChanges": "Rechazar todos los cambios", "Common.Views.Collaboration.textReview": "Seguimiento de cambios", "Common.Views.Collaboration.textReviewing": "Revisión", @@ -85,12 +108,17 @@ "DE.Controllers.AddImage.txtNotUrl": "Este campo debe ser URL-dirección en el formato 'http://www.example.com'", "DE.Controllers.AddOther.textBelowText": "Bajo el texto", "DE.Controllers.AddOther.textBottomOfPage": "Al pie de la página", + "DE.Controllers.AddOther.textCancel": "Cancelar", + "DE.Controllers.AddOther.textContinue": "Continuar", + "DE.Controllers.AddOther.textDelete": "Eliminar", + "DE.Controllers.AddOther.textDeleteDraft": "¿Realmente quiere eliminar el borrador?", "DE.Controllers.AddOther.txtNotUrl": "Este campo debe ser URL-dirección en el formato 'http://www.example.com'", "DE.Controllers.AddTable.textCancel": "Cancelar", "DE.Controllers.AddTable.textColumns": "Columnas", "DE.Controllers.AddTable.textRows": "Filas", "DE.Controllers.AddTable.textTableSize": "Tamaño de tabla", "DE.Controllers.DocumentHolder.errorCopyCutPaste": "Las acciones de copiar, cortar y pegar utilizando el menú contextual se realizarán sólo dentro del archivo actual.", + "DE.Controllers.DocumentHolder.menuAddComment": "Añadir comentario", "DE.Controllers.DocumentHolder.menuAddLink": "Añadir enlace ", "DE.Controllers.DocumentHolder.menuCopy": "Copiar ", "DE.Controllers.DocumentHolder.menuCut": "Cortar", @@ -104,6 +132,7 @@ "DE.Controllers.DocumentHolder.menuReview": "Revista", "DE.Controllers.DocumentHolder.menuReviewChange": "Revisar cambios", "DE.Controllers.DocumentHolder.menuSplit": "Dividir celda", + "DE.Controllers.DocumentHolder.menuViewComment": "Ver comentario", "DE.Controllers.DocumentHolder.sheetCancel": "Cancelar", "DE.Controllers.DocumentHolder.textCancel": "Cancelar", "DE.Controllers.DocumentHolder.textColumns": "Columnas", @@ -156,6 +185,7 @@ "DE.Controllers.Main.errorKeyExpire": "Descriptor de clave ha expirado", "DE.Controllers.Main.errorMailMergeLoadFile": "Error al cargar el archivo. Por favor seleccione uno distinto.", "DE.Controllers.Main.errorMailMergeSaveFile": "Error de fusión.", + "DE.Controllers.Main.errorOpensource": "Usando la gratuita versión Community, puede abrir los documentos sólo para verlos. Para acceder a los editores web móviles se requiere una licencia comercial.", "DE.Controllers.Main.errorProcessSaveResult": "Fallo en guardar", "DE.Controllers.Main.errorServerVersion": "La versión del editor ha sido actualizada. La página será recargada para aplicar los cambios.", "DE.Controllers.Main.errorStockChart": "Orden de las filas incorrecto. Para crear un gráfico de cotizaciones introduzca los datos en la hoja en el orden siguiente:
            precio de apertura, precio máximo, precio mínimo, precio de cierre.", @@ -163,7 +193,7 @@ "DE.Controllers.Main.errorUpdateVersionOnDisconnect": "La conexión a Internet se ha restaurado y la versión del archivo ha cambiado a
            . Antes de continuar trabajando, necesita descargar el archivo o copiar su contenido para asegurarse de que no ha perdido nada, por ultimo recargue esta pagina.", "DE.Controllers.Main.errorUserDrop": "No se puede acceder al archivo ahora.", "DE.Controllers.Main.errorUsersExceed": "El número de usuarios fue superado", - "DE.Controllers.Main.errorViewerDisconnect": "Se ha perdido la conexión. Usted todavía puede visualizar el documento,
            pero no podrá descargarlo antes de que conexión sea restaurada y se actualice la página.", + "DE.Controllers.Main.errorViewerDisconnect": "Se ha perdido la conexión. Usted todavía puede visualizar el documento,
            pero no podrá descargarlo antes de que la conexión sea restaurada y se actualice la página.", "DE.Controllers.Main.leavePageText": "Hay cambios no guardados en este documento. Haga clic en \"Permanecer en esta página\" para esperar la función de guardar automáticamente del documento. Haga clic en \"Abandonar esta página\" para descartar todos los cambios no guardados.", "DE.Controllers.Main.loadFontsTextText": "Cargando datos...", "DE.Controllers.Main.loadFontsTitleText": "Cargando datos", @@ -202,14 +232,18 @@ "DE.Controllers.Main.textContactUs": "Equipo de ventas", "DE.Controllers.Main.textCustomLoader": "Note, por favor, que según los términos de la licencia Usted no tiene derecho a cambiar el cargador.
            Por favor, póngase en contacto con nuestro Departamento de Ventas para obtener una cotización.", "DE.Controllers.Main.textDone": "Listo", + "DE.Controllers.Main.textHasMacros": "El archivo contiene macros automáticas.
            ¿Quiere ejecutar macros?", "DE.Controllers.Main.textLoadingDocument": "Cargando documento", - "DE.Controllers.Main.textNoLicenseTitle": "%1 limitación de conexiones", + "DE.Controllers.Main.textNo": "No", + "DE.Controllers.Main.textNoLicenseTitle": "Se ha alcanzado el límite de licencias", "DE.Controllers.Main.textOK": "OK", "DE.Controllers.Main.textPaidFeature": "Función de pago", "DE.Controllers.Main.textPassword": "Contraseña", "DE.Controllers.Main.textPreloader": "Cargando...", + "DE.Controllers.Main.textRemember": "Recordar mi elección", "DE.Controllers.Main.textTryUndoRedo": "Las funciones Deshacer/Rehacer son desactivados en el modo de co-edición rápido.", "DE.Controllers.Main.textUsername": "Nombre de usuario", + "DE.Controllers.Main.textYes": "Sí", "DE.Controllers.Main.titleLicenseExp": "Licencia ha expirado", "DE.Controllers.Main.titleServerVersion": "Editor ha sido actualizado", "DE.Controllers.Main.titleUpdateVersion": "Versión se ha cambiado", @@ -247,15 +281,16 @@ "DE.Controllers.Main.uploadImageTextText": "Subiendo imagen...", "DE.Controllers.Main.uploadImageTitleText": "Subiendo imagen", "DE.Controllers.Main.waitText": "Por favor, espere...", - "DE.Controllers.Main.warnLicenseExceeded": "Se ha excedido el número permitido de las conexiones simultáneas al servidor de documentos, y el documento se abrirá para sólo lectura.
            Por favor, contacte con su administrador para recibir más información.", + "DE.Controllers.Main.warnLicenseExceeded": "Usted ha alcanzado el límite de conexiones simultáneas con %1 editores. Este documento se abrirá sólo para su visualización.
            Por favor, contacte con su administrador para recibir más información.", "DE.Controllers.Main.warnLicenseExp": "Su licencia ha expirado.
            Por favor, actualice su licencia y después recargue la página.", - "DE.Controllers.Main.warnLicenseUsersExceeded": "Se ha excedido el número permitido de los usuarios simultáneos, y el documento se abrirá para sólo lectura.
            Por favor, contacte con su administrador para recibir más información.", - "DE.Controllers.Main.warnNoLicense": "Esta versión de los editores de %1 tiene ciertas limitaciones para el número de conexiones simultáneas al servidor de documentos.
            Si se requiere más, por favor, considere comprar una licencia comercial.", - "DE.Controllers.Main.warnNoLicenseUsers": "Esta versión de editores %1 tiene ciertas limitaciones para usuarios simultáneos.
            Si necesita más, por favor, considere comprar una licencia comercial.", + "DE.Controllers.Main.warnLicenseUsersExceeded": "Usted ha alcanzado el límite de usuarios para los editores de %1. Por favor, contacte con su administrador para recibir más información.", + "DE.Controllers.Main.warnNoLicense": "Usted ha alcanzado el límite de conexiones simultáneas con %1 editores. Este documento se abrirá sólo para su visualización.
            Contacte con el equipo de ventas de %1 para conocer los términos de actualización personal.", + "DE.Controllers.Main.warnNoLicenseUsers": "Usted ha alcanzado el límite de usuarios para los editores de %1.
            Contacte con el equipo de ventas de %1 para conocer los términos de actualización personal.", "DE.Controllers.Main.warnProcessRightsChange": "El derecho de edición del archivo es denegado.", "DE.Controllers.Search.textNoTextFound": "Texto no es encontrado", "DE.Controllers.Search.textReplaceAll": "Reemplazar todo", "DE.Controllers.Settings.notcriticalErrorTitle": "Aviso", + "DE.Controllers.Settings.textCustomSize": "Tamaño personalizado", "DE.Controllers.Settings.txtLoading": "Cargando...", "DE.Controllers.Settings.unknownText": "Desconocido", "DE.Controllers.Settings.warnDownloadAs": "Si sigue guardando en este formato todas las características a excepción del texto se perderán.
            ¿Está seguro de que quiere continuar?", @@ -271,14 +306,18 @@ "DE.Views.AddImage.textImageURL": "URL de imagen", "DE.Views.AddImage.textInsertImage": "Insertar imagen", "DE.Views.AddImage.textLinkSettings": "Ajustes de enlace", + "DE.Views.AddOther.textAddComment": "Añadir comentario", "DE.Views.AddOther.textAddLink": "Añadir enlace ", "DE.Views.AddOther.textBack": "Atrás", + "DE.Views.AddOther.textBreak": "Salto", "DE.Views.AddOther.textCenterBottom": "Abajo en centro", "DE.Views.AddOther.textCenterTop": "Arriba en el centro", "DE.Views.AddOther.textColumnBreak": "Salto de columna", + "DE.Views.AddOther.textComment": "Comentario", "DE.Views.AddOther.textContPage": "Página continua", "DE.Views.AddOther.textCurrentPos": "Posición actual", "DE.Views.AddOther.textDisplay": "Mostrar", + "DE.Views.AddOther.textDone": "Listo", "DE.Views.AddOther.textEvenPage": "Página par", "DE.Views.AddOther.textFootnote": "Nota al pie", "DE.Views.AddOther.textFormat": "Formato", @@ -481,11 +520,14 @@ "DE.Views.Settings.textCollaboration": "Colaboración", "DE.Views.Settings.textColorSchemes": "Esquemas de color", "DE.Views.Settings.textComment": "Comentario", - "DE.Views.Settings.textCommentingDisplay": "Mostrar Comentarios", + "DE.Views.Settings.textCommentingDisplay": "Visualización de comentarios", "DE.Views.Settings.textCreated": "Creado; Creada", "DE.Views.Settings.textCreateDate": "Fecha de creación", "DE.Views.Settings.textCustom": "Personalizado", "DE.Views.Settings.textCustomSize": "Tamaño personalizado", + "DE.Views.Settings.textDisableAll": "Deshabilitar todo", + "DE.Views.Settings.textDisableAllMacrosWithNotification": "Deshabilitar todas las macros con notificación", + "DE.Views.Settings.textDisableAllMacrosWithoutNotification": "Deshabilitar todas las macros sin notificación", "DE.Views.Settings.textDisplayComments": "Comentarios", "DE.Views.Settings.textDisplayResolvedComments": "Comentarios resueltos.", "DE.Views.Settings.textDocInfo": "Información de documento", @@ -497,6 +539,8 @@ "DE.Views.Settings.textDownloadAs": "Descargar como...", "DE.Views.Settings.textEditDoc": "Editar documento", "DE.Views.Settings.textEmail": "E-mail", + "DE.Views.Settings.textEnableAll": "Habilitar todo", + "DE.Views.Settings.textEnableAllMacrosWithoutNotification": "Habilitar todas las macros sin notificación ", "DE.Views.Settings.textFind": "Encontrar", "DE.Views.Settings.textFindAndReplace": "Encontrar y reemplazar", "DE.Views.Settings.textFormat": "Formato", @@ -509,6 +553,7 @@ "DE.Views.Settings.textLeft": "A la izquierda", "DE.Views.Settings.textLoading": "Cargando...", "DE.Views.Settings.textLocation": "Lugar", + "DE.Views.Settings.textMacrosSettings": "Ajustes de macros", "DE.Views.Settings.textMargins": "Márgenes", "DE.Views.Settings.textNoCharacters": "Caracteres no imprimibles", "DE.Views.Settings.textOrientation": "Orientación ", @@ -523,6 +568,7 @@ "DE.Views.Settings.textReview": "Seguimiento de cambios", "DE.Views.Settings.textRight": "A la derecha", "DE.Views.Settings.textSettings": "Ajustes", + "DE.Views.Settings.textShowNotification": "Mostrar notificación", "DE.Views.Settings.textSpaces": "Espacios", "DE.Views.Settings.textSpellcheck": "Сorrección ortográfica", "DE.Views.Settings.textStatistic": "Estadística", diff --git a/apps/documenteditor/mobile/locale/fr.json b/apps/documenteditor/mobile/locale/fr.json index cc1f420cd..5f344b28f 100644 --- a/apps/documenteditor/mobile/locale/fr.json +++ b/apps/documenteditor/mobile/locale/fr.json @@ -38,6 +38,7 @@ "Common.Controllers.Collaboration.textMessageDeleteReply": "Voulez-vous vraiment supprimer", "Common.Controllers.Collaboration.textMultiple": "multiple ", "Common.Controllers.Collaboration.textNoBreakBefore": "Pas de saut de page avant", + "Common.Controllers.Collaboration.textNoChanges": "Aucune modification", "Common.Controllers.Collaboration.textNoContextual": "Ajouter un intervalle entre les paragraphes du même style", "Common.Controllers.Collaboration.textNoKeepLines": "Ne gardez pas de lignes ensemble", "Common.Controllers.Collaboration.textNoKeepNext": "Ne gardez pas avec la prochaine", @@ -51,6 +52,8 @@ "Common.Controllers.Collaboration.textParaMoveFromUp": "Déplacé vers le haut:", "Common.Controllers.Collaboration.textParaMoveTo": "Déplacé:", "Common.Controllers.Collaboration.textPosition": "Position", + "Common.Controllers.Collaboration.textReopen": "Rouvrir", + "Common.Controllers.Collaboration.textResolve": "Résoudre", "Common.Controllers.Collaboration.textRight": "Aligner à droite", "Common.Controllers.Collaboration.textShape": "Forme", "Common.Controllers.Collaboration.textShd": "Couleur d'arrière-plan", @@ -67,6 +70,7 @@ "Common.Controllers.Collaboration.textTabs": "Changer les tabulations", "Common.Controllers.Collaboration.textUnderline": "Souligné", "Common.Controllers.Collaboration.textWidow": "Contrôle des veuves", + "Common.Controllers.Collaboration.textYes": "Oui", "Common.UI.ThemeColorPalette.textCustomColors": "Couleurs personnalisées", "Common.UI.ThemeColorPalette.textStandartColors": "Couleurs standard", "Common.UI.ThemeColorPalette.textThemeColors": "Couleurs de thème", @@ -128,6 +132,7 @@ "DE.Controllers.DocumentHolder.menuReview": "Révision", "DE.Controllers.DocumentHolder.menuReviewChange": "Réviser modifications", "DE.Controllers.DocumentHolder.menuSplit": "Fractionner la cellule", + "DE.Controllers.DocumentHolder.menuViewComment": "Voir le commentaire", "DE.Controllers.DocumentHolder.sheetCancel": "Annuler", "DE.Controllers.DocumentHolder.textCancel": "Annuler", "DE.Controllers.DocumentHolder.textColumns": "Colonnes", @@ -180,9 +185,10 @@ "DE.Controllers.Main.errorKeyExpire": "Descripteur de clés expiré", "DE.Controllers.Main.errorMailMergeLoadFile": "Échec du chargement", "DE.Controllers.Main.errorMailMergeSaveFile": "Fusion a échoué.", + "DE.Controllers.Main.errorOpensource": "L'utilisation la version gratuite \"Community version\" permet uniquement la visualisation des documents. Pour avoir accès à l'édition sur mobile, une version commerciale est nécessaire.", "DE.Controllers.Main.errorProcessSaveResult": "Échec de l‘enregistrement.", "DE.Controllers.Main.errorServerVersion": "La version de l'éditeur a été mise à jour. La page sera rechargée pour appliquer les modifications.", - "DE.Controllers.Main.errorStockChart": "L'ordre des lignes est incorrect. Pour créer un graphique boursier organisez vos données sur la feuille de calcul dans l'ordre suivant:
            cours à l'ouverture, cours maximal, cours minimal, cours à la clôture.", + "DE.Controllers.Main.errorStockChart": "Ordre lignes incorrect. Pour créer un diagramme boursier, positionnez les données sur la feuille de calcul dans l'ordre suivant :
            cours à l'ouverture, cours maximal, cours minimal, cours à la clôture.", "DE.Controllers.Main.errorUpdateVersion": "La version du fichier a été changée. La page sera rechargée.", "DE.Controllers.Main.errorUpdateVersionOnDisconnect": "La connexion internet a été rétablie, la version du fichier est modifiée.
            Avant de continuer, téléchargez le fichier ou copiez le contenu pour vous assurer que tous les changements ont été enregistrés, et rechargez la page.", "DE.Controllers.Main.errorUserDrop": "Impossible d'accéder au fichier.", @@ -226,15 +232,18 @@ "DE.Controllers.Main.textContactUs": "L'équipe de ventes", "DE.Controllers.Main.textCustomLoader": "Veuillez noter que conformément aux clauses du contrat de licence vous n'êtes pas autorisé à changer le chargeur.
            Veuillez contacter notre Service des Ventes pour obtenir le devis.", "DE.Controllers.Main.textDone": "Terminé", + "DE.Controllers.Main.textHasMacros": "Le fichier contient des macros automatiques.
            Voulez-vous exécuter les macros ?", "DE.Controllers.Main.textLoadingDocument": "Chargement du document", - "DE.Controllers.Main.textNoLicenseTitle": "La limite de la licence est atteinte", "DE.Controllers.Main.textNo": "Non", + "DE.Controllers.Main.textNoLicenseTitle": "La limite de la licence est atteinte", "DE.Controllers.Main.textOK": "OK", "DE.Controllers.Main.textPaidFeature": "Fonction payée", "DE.Controllers.Main.textPassword": "Mot de passe", "DE.Controllers.Main.textPreloader": "Chargement en cours...", + "DE.Controllers.Main.textRemember": "Se souvenir de mon choix", "DE.Controllers.Main.textTryUndoRedo": "Les fonctions Annuler/Rétablir sont désactivées pour le mode collaboratif rapide.", "DE.Controllers.Main.textUsername": "Nom d'utilisateur", + "DE.Controllers.Main.textYes": "Oui", "DE.Controllers.Main.titleLicenseExp": "Licence expirée", "DE.Controllers.Main.titleServerVersion": "L'éditeur est mis à jour", "DE.Controllers.Main.titleUpdateVersion": "Version a été modifiée", @@ -272,8 +281,8 @@ "DE.Controllers.Main.uploadImageTextText": "Chargement d'une image en cours...", "DE.Controllers.Main.uploadImageTitleText": "Chargement d'une image", "DE.Controllers.Main.waitText": "Veuillez patienter...", - "DE.Controllers.Main.warnLicenseExp": "Votre licence a expiré.
            Veuillez mettre à jour votre licence et actualisez la page.", "DE.Controllers.Main.warnLicenseExceeded": "Vous avez dépassé le nombre maximal de connexions simultanées aux éditeurs %1. Ce document sera ouvert à la lecture seulement.
            Contactez votre administrateur pour en savoir davantage.", + "DE.Controllers.Main.warnLicenseExp": "Votre licence a expiré.
            Veuillez mettre à jour votre licence et actualisez la page.", "DE.Controllers.Main.warnLicenseUsersExceeded": "Vous avez dépassé le nombre maximal d’utilisateurs des éditeurs %1. Contactez votre administrateur pour en savoir davantage.", "DE.Controllers.Main.warnNoLicense": "Vous avez dépassé le nombre maximal de connexions simultanées aux éditeurs %1. Ce document sera ouvert à la lecture seulement.
            Contactez l’équipe des ventes %1 pour mettre à jour les termes de la licence.", "DE.Controllers.Main.warnNoLicenseUsers": "Vous avez dépassé le nombre maximal d’utilisateurs des éditeurs %1. Contactez l’équipe des ventes %1 pour mettre à jour les termes de la licence.", @@ -300,6 +309,7 @@ "DE.Views.AddOther.textAddComment": "Ajouter commentaire", "DE.Views.AddOther.textAddLink": "Ajouter le lien", "DE.Views.AddOther.textBack": "Retour", + "DE.Views.AddOther.textBreak": "Saut", "DE.Views.AddOther.textCenterBottom": "En bas au centre", "DE.Views.AddOther.textCenterTop": "En haut au centre", "DE.Views.AddOther.textColumnBreak": "Saut de colonne", @@ -494,7 +504,7 @@ "DE.Views.EditText.textSubscript": "Indice", "DE.Views.Search.textCase": "Respecter la casse", "DE.Views.Search.textDone": "Effectué", - "DE.Views.Search.textFind": "Trouver", + "DE.Views.Search.textFind": "Rechercher", "DE.Views.Search.textFindAndReplace": "Rechercher et remplacer", "DE.Views.Search.textHighlight": "Surligner les résultats", "DE.Views.Search.textReplace": "Remplacer", @@ -531,7 +541,7 @@ "DE.Views.Settings.textEmail": "e-mail", "DE.Views.Settings.textEnableAll": "Activer tout", "DE.Views.Settings.textEnableAllMacrosWithoutNotification": "Activer tous les macros sans", - "DE.Views.Settings.textFind": "Trouver", + "DE.Views.Settings.textFind": "Rechercher", "DE.Views.Settings.textFindAndReplace": "Rechercher et remplacer", "DE.Views.Settings.textFormat": "Format", "DE.Views.Settings.textHelp": "Aide", @@ -558,6 +568,7 @@ "DE.Views.Settings.textReview": "Suivre des modifications", "DE.Views.Settings.textRight": "A droite", "DE.Views.Settings.textSettings": "Paramètres", + "DE.Views.Settings.textShowNotification": "Montrer la notification", "DE.Views.Settings.textSpaces": "Espaces", "DE.Views.Settings.textSpellcheck": "Vérification de l'orthographe", "DE.Views.Settings.textStatistic": "Statistique", diff --git a/apps/documenteditor/mobile/locale/it.json b/apps/documenteditor/mobile/locale/it.json index 7d7cabe26..214624022 100644 --- a/apps/documenteditor/mobile/locale/it.json +++ b/apps/documenteditor/mobile/locale/it.json @@ -246,9 +246,9 @@ "DE.Controllers.Main.uploadImageSizeMessage": "È stata superata la dimensione massima per l'immagine.", "DE.Controllers.Main.uploadImageTextText": "Caricamento dell'immagine in corso...", "DE.Controllers.Main.uploadImageTitleText": "Caricamento dell'immagine", - "DE.Controllers.Main.waitText": "Per favore, attendi...", - "DE.Controllers.Main.warnLicenseExp": "La tua licenza è scaduta.
            Si prega di aggiornare la licenza e ricaricare la pagina.", + "DE.Controllers.Main.waitText": "Attendere prego...", "DE.Controllers.Main.warnLicenseExceeded": "Hai raggiunto il limite per le connessioni simultanee agli editor %1. Questo documento verrà aperto in sola lettura.
            Contatta l’amministratore per saperne di più.", + "DE.Controllers.Main.warnLicenseExp": "La tua licenza è scaduta.
            Si prega di aggiornare la licenza e ricaricare la pagina.", "DE.Controllers.Main.warnLicenseUsersExceeded": "Hai raggiunto il limite per gli utenti con accesso agli editor %1. Contatta l’amministratore per saperne di più.", "DE.Controllers.Main.warnNoLicense": "Hai raggiunto il limite per le connessioni simultanee agli editor %1. Questo documento verrà aperto in sola lettura.
            Contatta il team di vendita di %1 per i termini di aggiornamento personali.", "DE.Controllers.Main.warnNoLicenseUsers": "Hai raggiunto il limite per gli utenti con accesso agli editor %1. Contatta il team di vendita di %1 per i termini di aggiornamento personali.", diff --git a/apps/documenteditor/mobile/locale/ja.json b/apps/documenteditor/mobile/locale/ja.json index 687ce095b..4d9a02b34 100644 --- a/apps/documenteditor/mobile/locale/ja.json +++ b/apps/documenteditor/mobile/locale/ja.json @@ -1,20 +1,29 @@ { + "Common.Controllers.Collaboration.textAddReply": "返信の追加", "Common.Controllers.Collaboration.textAtLeast": "最小", "Common.Controllers.Collaboration.textAuto": "自動", "Common.Controllers.Collaboration.textBaseline": "ベースライン", "Common.Controllers.Collaboration.textBold": "太字", + "Common.Controllers.Collaboration.textCancel": "キャンセル", "Common.Controllers.Collaboration.textCaps": "全ての大字", "Common.Controllers.Collaboration.textCenter": "中央揃え", "Common.Controllers.Collaboration.textChart": "グラフ", "Common.Controllers.Collaboration.textColor": "フォントの色", + "Common.Controllers.Collaboration.textDelete": "削除", + "Common.Controllers.Collaboration.textDeleteComment": "コメントを削除する", "Common.Controllers.Collaboration.textDeleted": "削除済み:", + "Common.Controllers.Collaboration.textDeleteReply": "返事を削除する", + "Common.Controllers.Collaboration.textDone": "完了", + "Common.Controllers.Collaboration.textEdit": "編集", "Common.Controllers.Collaboration.textEquation": "数式", "Common.Controllers.Collaboration.textExact": "固定値", "Common.Controllers.Collaboration.textFirstLine": "先頭行", "Common.Controllers.Collaboration.textFormatted": "書式付き", "Common.Controllers.Collaboration.textImage": "画像", "Common.Controllers.Collaboration.textInserted": "挿入済み:", + "Common.Controllers.Collaboration.textItalic": "イタリック", "Common.Controllers.Collaboration.textJustify": "両端揃え", + "Common.Controllers.Collaboration.textKeepLines": "段落を分割しない", "Common.Controllers.Collaboration.textLeft": "左揃え", "Common.Controllers.Collaboration.textNoContextual": "同じなスタイルの段落の間に間隔を追加する", "Common.Controllers.Collaboration.textNum": "番号設定の変更", @@ -33,15 +42,28 @@ "Common.UI.ThemeColorPalette.textCustomColors": "ユーザー設定色", "Common.Utils.Metric.txtCm": "センチ", "Common.Views.Collaboration.textAcceptAllChanges": "すべての変更を反映する", + "Common.Views.Collaboration.textAddReply": "返信の追加", + "Common.Views.Collaboration.textAllChangesAcceptedPreview": "すべての変更が承認されました(プレビュー)", + "Common.Views.Collaboration.textAllChangesEditing": "全ての変更(編集)", + "Common.Views.Collaboration.textAllChangesRejectedPreview": "すべての変更が拒否されました(プレビュー)", "Common.Views.Collaboration.textBack": "戻る", + "Common.Views.Collaboration.textCancel": "キャンセル", "Common.Views.Collaboration.textCollaboration": "共同編集", "Common.Views.Collaboration.textDisplayMode": "表示モード", + "Common.Views.Collaboration.textDone": "完了", + "Common.Views.Collaboration.textEditReply": "返事の編集", + "Common.Views.Collaboration.textEditСomment": "コメントの編集", "Common.Views.Collaboration.textСomments": "コメント", "DE.Controllers.AddContainer.textImage": "画像", + "DE.Controllers.AddOther.textBelowText": "テキストより下", "DE.Controllers.AddOther.textBottomOfPage": "ページ下", + "DE.Controllers.AddOther.textCancel": "キャンセル", + "DE.Controllers.AddOther.textContinue": "続ける", + "DE.Controllers.AddOther.textDelete": "削除", "DE.Controllers.AddTable.textCancel": "キャンセル", "DE.Controllers.AddTable.textColumns": "列", "DE.Controllers.DocumentHolder.errorCopyCutPaste": "コンテキストメニューを使用したコピー、切り取り、貼り付けの操作は、同じファイル内でのみ実行できます。", + "DE.Controllers.DocumentHolder.menuAddComment": "コメントの追加", "DE.Controllers.DocumentHolder.menuAddLink": "リンクを追加する", "DE.Controllers.DocumentHolder.menuCopy": "コピー", "DE.Controllers.DocumentHolder.menuCut": "切り取り", @@ -57,13 +79,20 @@ "DE.Controllers.EditContainer.textChart": "グラフ", "DE.Controllers.EditContainer.textFooter": "フッター", "DE.Controllers.EditContainer.textHeader": "ヘッダー", + "DE.Controllers.EditContainer.textHyperlink": "ハイパーリンク", "DE.Controllers.EditContainer.textImage": "画像", + "DE.Controllers.EditContainer.textParagraph": "段落", + "DE.Controllers.EditContainer.textSettings": "設定", "DE.Controllers.EditText.textAuto": "自動", "DE.Controllers.EditText.textFonts": "フォント", "DE.Controllers.Main.advDRMEnterPassword": "パスワード入力:", "DE.Controllers.Main.closeButtonText": "ファイルを閉じる", "DE.Controllers.Main.convertationTimeoutText": "変換のタイムアウトを超過しました。", "DE.Controllers.Main.criticalErrorTitle": "エラー", + "DE.Controllers.Main.downloadMergeText": "ダウンロード中...", + "DE.Controllers.Main.downloadMergeTitle": "ダウンロード中", + "DE.Controllers.Main.downloadTextText": "文書のダウンロード中", + "DE.Controllers.Main.downloadTitleText": "文書のダウンロード中", "DE.Controllers.Main.errorBadImageUrl": "画像のURLが正しくありません。", "DE.Controllers.Main.errorDataRange": "データ範囲が正しくありません", "DE.Controllers.Main.errorDefaultMessage": "エラー コード:%1", @@ -74,23 +103,47 @@ "DE.Controllers.Main.textBack": "戻る", "DE.Controllers.Main.textCancel": "キャンセル", "DE.Controllers.Main.textClose": "閉じる", + "DE.Controllers.Main.textContactUs": "営業部に連絡する", "DE.Controllers.Main.textDone": "完了", "DE.Controllers.Main.textNoLicenseTitle": "接続制限", "DE.Controllers.Main.txtDiagramTitle": "グラフのタイトル", "DE.Controllers.Main.txtFooter": "フッター", "DE.Controllers.Main.txtHeader": "ヘッダー", + "DE.Controllers.Main.txtProtected": "パスワードを入力してファイルを開くと、ファイルの既存のパスワードがリセットされます。", + "DE.Controllers.Main.txtStyle_footnote_text": "脚注テキスト", + "DE.Controllers.Main.txtStyle_Heading_1": "見出し1", + "DE.Controllers.Main.txtStyle_Heading_2": "見出し2", + "DE.Controllers.Main.txtStyle_Heading_3": "見出し3", + "DE.Controllers.Main.txtStyle_Heading_4": "見出し4", + "DE.Controllers.Main.txtStyle_Heading_5": "見出し5", + "DE.Controllers.Main.txtStyle_Heading_6": "見出し6", + "DE.Controllers.Main.txtStyle_Heading_7": "見出し7", + "DE.Controllers.Main.txtStyle_Heading_8": "見出し8", + "DE.Controllers.Main.txtStyle_Heading_9": "見出し9", "DE.Views.AddImage.textAddress": "アドレス", "DE.Views.AddImage.textBack": "戻る", "DE.Views.AddImage.textImageURL": "画像URL", + "DE.Views.AddImage.textLinkSettings": "リンク設定", + "DE.Views.AddOther.textAddComment": "コメントの追加", "DE.Views.AddOther.textAddLink": "リンクを追加する", "DE.Views.AddOther.textBack": "戻る", + "DE.Views.AddOther.textBreak": "区切り", "DE.Views.AddOther.textCenterBottom": "下部中央", "DE.Views.AddOther.textCenterTop": "上部中央", + "DE.Views.AddOther.textColumnBreak": "段区切り", + "DE.Views.AddOther.textComment": "コメント", "DE.Views.AddOther.textContPage": "連続ページ表示", + "DE.Views.AddOther.textCurrentPos": "現在位置", "DE.Views.AddOther.textDisplay": "表示する", + "DE.Views.AddOther.textDone": "完了", "DE.Views.AddOther.textEvenPage": "偶数ページから開始", + "DE.Views.AddOther.textFootnote": "脚注", "DE.Views.AddOther.textFormat": "フォーマット", "DE.Views.AddOther.textInsert": "挿入", + "DE.Views.AddOther.textLeftBottom": "左下", + "DE.Views.AddOther.textLeftTop": "左上", + "DE.Views.AddOther.textPageBreak": "ページ区切り", + "DE.Views.AddOther.textPageNumber": "ページ番号", "DE.Views.EditChart.textAddCustomColor": "カストム色を追加する", "DE.Views.EditChart.textAlign": "配置", "DE.Views.EditChart.textBack": "戻る", @@ -105,6 +158,7 @@ "DE.Views.EditChart.textToForeground": "前に移動", "DE.Views.EditHeader.textDiffFirst": "先頭ページのみ別指定\t", "DE.Views.EditHeader.textDiffOdd": "奇数/偶数ページ別指定", + "DE.Views.EditHeader.textPrev": "前のセクションから続ける", "DE.Views.EditHyperlink.textDisplay": "表示する", "DE.Views.EditHyperlink.textEdit": "リンクを編集する", "DE.Views.EditImage.textAddress": "アドレス", @@ -115,6 +169,7 @@ "DE.Views.EditImage.textDistanceText": "文字列との間隔", "DE.Views.EditImage.textImageURL": "画像URL", "DE.Views.EditImage.textInline": "インライン", + "DE.Views.EditImage.textLinkSettings": "リンク設定", "DE.Views.EditImage.textOverlap": "オーバーラップさせる", "DE.Views.EditImage.textToForeground": "前に移動", "DE.Views.EditParagraph.textAddCustomColor": "カストム色を追加する", @@ -176,11 +231,14 @@ "DE.Views.Settings.textBottom": "下", "DE.Views.Settings.textCentimeter": "センチ", "DE.Views.Settings.textCollaboration": "共同編集", + "DE.Views.Settings.textColorSchemes": "配色", "DE.Views.Settings.textComment": "コメント", + "DE.Views.Settings.textCommentingDisplay": "コメント表示", "DE.Views.Settings.textCreated": "作成しました", "DE.Views.Settings.textCreateDate": "作成日時", "DE.Views.Settings.textCustom": "カスタム", "DE.Views.Settings.textDisplayComments": "コメント", + "DE.Views.Settings.textDocInfo": "文書の情報", "DE.Views.Settings.textDocTitle": "文書名", "DE.Views.Settings.textDocumentFormats": "ドキュメントフォーマット", "DE.Views.Settings.textDocumentSettings": "文書設定", @@ -193,5 +251,15 @@ "DE.Views.Settings.textFormat": "フォーマット", "DE.Views.Settings.textHelp": "ヘルプ", "DE.Views.Settings.textInch": "インチ", + "DE.Views.Settings.textLandscape": "横向き", + "DE.Views.Settings.textLastModifiedBy": "最終更新者", + "DE.Views.Settings.textLeft": "左", + "DE.Views.Settings.textMacrosSettings": "マクロの設定", + "DE.Views.Settings.textMargins": "余白", + "DE.Views.Settings.textOrientation": "印刷の向き", + "DE.Views.Settings.textParagraphs": "段落", + "DE.Views.Settings.textRight": "右", + "DE.Views.Settings.textSettings": "設定", + "DE.Views.Settings.textSymbols": "記号と特殊文字", "DE.Views.Toolbar.textBack": "戻る" } \ No newline at end of file diff --git a/apps/documenteditor/mobile/locale/ko.json b/apps/documenteditor/mobile/locale/ko.json index 32f0d1589..bc400a747 100644 --- a/apps/documenteditor/mobile/locale/ko.json +++ b/apps/documenteditor/mobile/locale/ko.json @@ -1,4 +1,5 @@ { + "Common.Controllers.Collaboration.textJustify": "양끝 정렬", "Common.UI.ThemeColorPalette.textStandartColors": "표준 색상", "Common.UI.ThemeColorPalette.textThemeColors": "테마 색", "Common.Utils.Metric.txtCm": "cm", @@ -14,6 +15,7 @@ "DE.Controllers.AddTable.textColumns": "열", "DE.Controllers.AddTable.textRows": "Rows", "DE.Controllers.AddTable.textTableSize": "표 크기", + "DE.Controllers.DocumentHolder.errorCopyCutPaste": "복사, 잘라내기 및 붙여 넣기 작업", "DE.Controllers.DocumentHolder.menuAddLink": "링크 추가", "DE.Controllers.DocumentHolder.menuCopy": "복사", "DE.Controllers.DocumentHolder.menuCut": "잘라 내기", @@ -24,6 +26,7 @@ "DE.Controllers.DocumentHolder.menuPaste": "붙여 넣기", "DE.Controllers.DocumentHolder.menuReview": "다시보기", "DE.Controllers.DocumentHolder.sheetCancel": "취소", + "DE.Controllers.DocumentHolder.textCopyCutPasteActions": "복사, 잘라내기 및 붙여 넣기", "DE.Controllers.DocumentHolder.textGuest": "Guest", "DE.Controllers.EditContainer.textChart": "차트", "DE.Controllers.EditContainer.textFooter": "꼬리말", @@ -354,6 +357,7 @@ "DE.Views.Search.textSearch": "검색", "DE.Views.Settings.textAbout": "정보", "DE.Views.Settings.textAddress": "주소", + "DE.Views.Settings.textAdvancedSettings": "어플리케이션 설정", "DE.Views.Settings.textAuthor": "저자", "DE.Views.Settings.textBack": "뒤로", "DE.Views.Settings.textCreateDate": "생성 날짜", diff --git a/apps/documenteditor/mobile/locale/nb.json b/apps/documenteditor/mobile/locale/nb.json index a2d533127..0efa2c29d 100644 --- a/apps/documenteditor/mobile/locale/nb.json +++ b/apps/documenteditor/mobile/locale/nb.json @@ -1,42 +1,356 @@ { + "Common.Controllers.Collaboration.textAddReply": "Legg til svar", + "Common.Controllers.Collaboration.textAtLeast": "minst", + "Common.Controllers.Collaboration.textAuto": "auto", + "Common.Controllers.Collaboration.textBaseline": "Grunnlinje", + "Common.Controllers.Collaboration.textBold": "Fet", + "Common.Controllers.Collaboration.textBreakBefore": "Sideskift før", + "Common.Controllers.Collaboration.textCancel": "Avbryt", + "Common.Controllers.Collaboration.textCaps": "Store bokstaver", + "Common.Controllers.Collaboration.textCenter": "Midtstill", + "Common.Controllers.Collaboration.textChart": "Diagram", + "Common.Controllers.Collaboration.textColor": "Skriftfarge", + "Common.Controllers.Collaboration.textContextual": "Ikke legg til avstand mellom avsnitt av samme stil", + "Common.Controllers.Collaboration.textDelete": "Slett", + "Common.Controllers.Collaboration.textDeleteComment": "Slett kommentar", + "Common.Controllers.Collaboration.textDeleted": "Slettet:", + "Common.Controllers.Collaboration.textDeleteReply": "Slett svar", + "Common.Controllers.Collaboration.textDone": "Ferdig", + "Common.Controllers.Collaboration.textDStrikeout": "Dobbel gjennomstreking", + "Common.Controllers.Collaboration.textEdit": "Rediger", + "Common.Controllers.Collaboration.textEditUser": "Brukere som redigerer filen:", + "Common.Controllers.Collaboration.textEquation": "Likning", + "Common.Controllers.Collaboration.textExact": "nøyaktig", + "Common.Controllers.Collaboration.textFirstLine": "Første linje", + "Common.Controllers.Collaboration.textFormatted": "Formatert", + "Common.Controllers.Collaboration.textHighlight": "Uthevingsfarge", + "Common.Controllers.Collaboration.textImage": "Bilde", + "Common.Controllers.Collaboration.textIndentLeft": "Ventreinnrykk", + "Common.Controllers.Collaboration.textIndentRight": "Høyreinnrykk", + "Common.Controllers.Collaboration.textInserted": "Satt inn:", + "Common.Controllers.Collaboration.textJustify": "Blokkjuster", + "Common.Controllers.Collaboration.textLeft": "Venstrejuster", + "Common.Controllers.Collaboration.textLineSpacing": "Linjeavstand:", + "Common.Controllers.Collaboration.textMessageDeleteComment": "Ønsker du å slette denne kommentaren?", + "Common.Controllers.Collaboration.textMessageDeleteReply": "Ønsker du å slette dette svaret?", + "Common.Controllers.Collaboration.textMultiple": "Flere", + "Common.Controllers.Collaboration.textNoBreakBefore": "Ingen sideskift før", + "Common.Controllers.Collaboration.textNoChanges": "Ingen endringer.", + "Common.Controllers.Collaboration.textNoContextual": "Legg til mellomrom mellom avsnitt med samme stil", + "Common.Controllers.Collaboration.textNoKeepLines": "Ikke hold linjene sammen", + "Common.Controllers.Collaboration.textNum": "Endre nummerering", + "Common.Controllers.Collaboration.textParaDeleted": "Avsnitt slettet", + "Common.Controllers.Collaboration.textParaInserted": "Avsnitt satt inn", + "Common.Controllers.Collaboration.textPosition": "Posisjon", + "Common.Controllers.Collaboration.textReopen": "Åpne igjen", + "Common.Controllers.Collaboration.textResolve": "Løs", + "Common.Controllers.Collaboration.textRight": "Høyrejuster", + "Common.Controllers.Collaboration.textShape": "Figur", + "Common.Controllers.Collaboration.textShd": "Bakgrunnsfarge", + "Common.Controllers.Collaboration.textSmallCaps": "Små bokstaver", + "Common.Controllers.Collaboration.textSpacing": "Avstand", + "Common.Controllers.Collaboration.textSpacingAfter": "Avstand etter", + "Common.Controllers.Collaboration.textSpacingBefore": "Avstand før", + "Common.Controllers.Collaboration.textStrikeout": "Gjennomstreking", + "Common.Controllers.Collaboration.textSubScript": "Senket skrift", + "Common.Controllers.Collaboration.textSuperScript": "Hevet skrift", + "Common.Controllers.Collaboration.textTabs": "Bytt faner", + "Common.Controllers.Collaboration.textUnderline": "Understreking", + "Common.Controllers.Collaboration.textYes": "Ja", + "Common.UI.ThemeColorPalette.textCustomColors": "Egendefinerte farger", + "Common.UI.ThemeColorPalette.textStandartColors": "Standardfarger", + "Common.UI.ThemeColorPalette.textThemeColors": "Temafarger", "Common.Utils.Metric.txtCm": "cm", + "Common.Utils.Metric.txtPt": "pt", + "Common.Views.Collaboration.textAccept": "Godta", + "Common.Views.Collaboration.textAcceptAllChanges": "Godta alle endringer", + "Common.Views.Collaboration.textAddReply": "Legg til svar", + "Common.Views.Collaboration.textAllChangesAcceptedPreview": "Alle endringer er godtatt", + "Common.Views.Collaboration.textAllChangesEditing": "Alle endringer (Redigering)", + "Common.Views.Collaboration.textAllChangesRejectedPreview": "Alle endringer er avvist (Forhåndsvisning)", + "Common.Views.Collaboration.textBack": "Tilbake", + "Common.Views.Collaboration.textCancel": "Avbryt", + "Common.Views.Collaboration.textChange": "Gå igjennom endringer", + "Common.Views.Collaboration.textCollaboration": "Samarbeid", + "Common.Views.Collaboration.textDisplayMode": "Visningsmodus", + "Common.Views.Collaboration.textDone": "Ferdig", + "Common.Views.Collaboration.textEditReply": "Rediger svar", + "Common.Views.Collaboration.textEditUsers": "Brukere", + "Common.Views.Collaboration.textEditСomment": "Rediger kommentar", + "Common.Views.Collaboration.textNoComments": "Dette dokumentet kan ikke inneholde kommentarer", + "Common.Views.Collaboration.textOriginal": "Original", + "Common.Views.Collaboration.textReject": "Avvis", + "Common.Views.Collaboration.textRejectAllChanges": "Avvis alle endringer", + "Common.Views.Collaboration.textReview": "Spor endringer", + "Common.Views.Collaboration.textReviewing": "Gå igjennom", + "Common.Views.Collaboration.textСomments": "Kommentarer", + "DE.Controllers.AddContainer.textImage": "Bilde", + "DE.Controllers.AddContainer.textOther": "Andre", + "DE.Controllers.AddContainer.textShape": "Figur", + "DE.Controllers.AddContainer.textTable": "Tabell", + "DE.Controllers.AddImage.textEmptyImgUrl": "Du må angi bildelenke.", + "DE.Controllers.AddOther.textBelowText": "Under tekst", + "DE.Controllers.AddOther.textBottomOfPage": "Nederst på side", + "DE.Controllers.AddOther.textCancel": "Avbryt", + "DE.Controllers.AddOther.textContinue": "Fortsett", + "DE.Controllers.AddOther.textDelete": "Slett", + "DE.Controllers.AddOther.textDeleteDraft": "Ønsker du å slette utkastet?", "DE.Controllers.AddTable.textCancel": "Avbryt", "DE.Controllers.AddTable.textColumns": "Kolonner", + "DE.Controllers.AddTable.textRows": "Rader", + "DE.Controllers.AddTable.textTableSize": "Tabellstørrelse", + "DE.Controllers.DocumentHolder.menuAddComment": "Legg til kommentar", "DE.Controllers.DocumentHolder.menuAddLink": "Legg til lenke", + "DE.Controllers.DocumentHolder.menuCopy": "Kopier", + "DE.Controllers.DocumentHolder.menuCut": "Klipp ut", "DE.Controllers.DocumentHolder.menuDelete": "Slett", + "DE.Controllers.DocumentHolder.menuDeleteTable": "Slett tabell", + "DE.Controllers.DocumentHolder.menuEdit": "Rediger", + "DE.Controllers.DocumentHolder.menuOpenLink": "Åpne lenke", + "DE.Controllers.DocumentHolder.menuPaste": "Lim inn", + "DE.Controllers.DocumentHolder.menuReview": "Gå igjennom", + "DE.Controllers.DocumentHolder.menuReviewChange": "Gå igjennom endringer", + "DE.Controllers.DocumentHolder.menuViewComment": "Se kommentar", "DE.Controllers.DocumentHolder.sheetCancel": "Avbryt", + "DE.Controllers.DocumentHolder.textCancel": "Avbryt", + "DE.Controllers.DocumentHolder.textColumns": "Kolonner", + "DE.Controllers.DocumentHolder.textCopyCutPasteActions": "Handlinger for Kopier, Klipp ut og Lim inn", + "DE.Controllers.DocumentHolder.textDoNotShowAgain": "Ikke vis igjen", + "DE.Controllers.DocumentHolder.textGuest": "Gjest", + "DE.Controllers.DocumentHolder.textRows": "Rader", "DE.Controllers.EditContainer.textChart": "Diagram", + "DE.Controllers.EditContainer.textFooter": "Bunntekst", + "DE.Controllers.EditContainer.textHeader": "Topptekst", + "DE.Controllers.EditContainer.textHyperlink": "Lenke", + "DE.Controllers.EditContainer.textImage": "Bilde", + "DE.Controllers.EditContainer.textParagraph": "Avsnitt", + "DE.Controllers.EditContainer.textSettings": "Innstillinger", + "DE.Controllers.EditContainer.textShape": "Figur", + "DE.Controllers.EditContainer.textTable": "Tabell", + "DE.Controllers.EditContainer.textText": "Tekst", + "DE.Controllers.EditImage.textEmptyImgUrl": "Du må angi bildelenke.", "DE.Controllers.EditText.textAuto": "Auto", + "DE.Controllers.EditText.textFonts": "Skrifttyper", + "DE.Controllers.EditText.textPt": "pt", + "DE.Controllers.Main.advDRMEnterPassword": "Tast inn passord:", + "DE.Controllers.Main.advDRMOptions": "Beskyttet fil", + "DE.Controllers.Main.advDRMPassword": "Passord", "DE.Controllers.Main.advTxtOptions": "Velg TXT opsjoner", + "DE.Controllers.Main.applyChangesTextText": "Laster data...", + "DE.Controllers.Main.applyChangesTitleText": "Laster data", "DE.Controllers.Main.closeButtonText": "Lukk filen", + "DE.Controllers.Main.criticalErrorExtText": "Trykk 'OK' for å gå tilbake til dokumentlisten.", + "DE.Controllers.Main.criticalErrorTitle": "Feil", + "DE.Controllers.Main.downloadErrorText": "Nedlasting feilet.", + "DE.Controllers.Main.downloadMergeText": "Laster ned...", + "DE.Controllers.Main.downloadMergeTitle": "Laster ned", + "DE.Controllers.Main.downloadTextText": "Laster ned dokument...", + "DE.Controllers.Main.downloadTitleText": "Laster ned dokument", + "DE.Controllers.Main.errorAccessDeny": "Du forsøker å utføre en handling som du ikke har rettigheter til.
            Vennligst kontakt din Document Server administrator.", + "DE.Controllers.Main.errorBadImageUrl": "Bildelenke er feil", + "DE.Controllers.Main.errorCoAuthoringDisconnect": "Mistet tilkobling til server. Du kan ikke utføre endringer.", + "DE.Controllers.Main.errorDatabaseConnection": "Ekstern feil.
            Tilkoblingsfeil til database. Vennligst kontakt brukerstøtte.", + "DE.Controllers.Main.errorDataEncrypted": "Krypterte endringer har blitt mottatt, men de kan ikke bli dekodet.", + "DE.Controllers.Main.errorDataRange": "Feil dataområde.", + "DE.Controllers.Main.errorDefaultMessage": "Feilkode: %1", "DE.Controllers.Main.errorEditingDownloadas": "En feil skjedde ved arbeid med dokumentet.
            Bruk valget 'Last ned' til å lagre en backup av filen til din enhet.", + "DE.Controllers.Main.errorFilePassProtect": "Filen er passordbeskyttet og kan ikke åpnes.", + "DE.Controllers.Main.errorMailMergeLoadFile": "Lasting av dokumentet feilet. Vennligst velg en annen fil.", + "DE.Controllers.Main.errorOpensource": "Ved bruk av fellesskapsversjonen kan dokumenter kun åpnes i lesemodus. For å bruke mobil nettredigering trengs en kommersiell lisens. ", + "DE.Controllers.Main.errorProcessSaveResult": "Lagring feilet.", + "DE.Controllers.Main.errorServerVersion": "Redigeringsprogrammet har blitt oppdatert. Siden vil oppdateres og bruke endringene.", + "DE.Controllers.Main.errorUserDrop": "Filen kan ikke åpnes nå.", + "DE.Controllers.Main.errorUsersExceed": "Antall brukere ble overskredet", + "DE.Controllers.Main.leavePageText": "Du har ulagrede endringer i dette dokumentet. Trykk på 'Bli på denne siden' og vent på autolagring av dokumentet. Trykk på 'Forlat denne siden' for å forkaste ulagrede endringer.", + "DE.Controllers.Main.loadFontsTextText": "Laster data...", + "DE.Controllers.Main.loadFontsTitleText": "Laster data", + "DE.Controllers.Main.loadFontTextText": "Laster data...", + "DE.Controllers.Main.loadFontTitleText": "Laster data", + "DE.Controllers.Main.loadImagesTextText": "Laster bilder...", + "DE.Controllers.Main.loadImagesTitleText": "Laster bilder", + "DE.Controllers.Main.loadImageTextText": "Laster bilde...", + "DE.Controllers.Main.loadImageTitleText": "Laster bilde", + "DE.Controllers.Main.loadingDocumentTextText": "Laster dokument...", + "DE.Controllers.Main.loadingDocumentTitleText": "Laster dokument", + "DE.Controllers.Main.mailMergeLoadFileText": "Laster datakilde...", + "DE.Controllers.Main.mailMergeLoadFileTitle": "Laster datakilde", + "DE.Controllers.Main.notcriticalErrorTitle": "Advarsel", "DE.Controllers.Main.openErrorText": "Det har skjedd en feil når", + "DE.Controllers.Main.openTextText": "Åpner dokument...", + "DE.Controllers.Main.openTitleText": "Åpner dokument", + "DE.Controllers.Main.printTextText": "Skriver ut dokument...", + "DE.Controllers.Main.printTitleText": "Skriver ut dokument", "DE.Controllers.Main.saveErrorText": "Det har skjedd en feil når", + "DE.Controllers.Main.savePreparingText": "Forbereder lagring", + "DE.Controllers.Main.savePreparingTitle": "Forbereder lagring. Vennligst vent...", + "DE.Controllers.Main.saveTextText": "Lagrer dokument...", + "DE.Controllers.Main.saveTitleText": "Lagrer dokument", + "DE.Controllers.Main.scriptLoadError": "Forbindelsen er treg slik at noen komponenter ikke kunne lastes. Vennligst oppdater siden.", + "DE.Controllers.Main.sendMergeText": "Sender sammenslåing...", + "DE.Controllers.Main.sendMergeTitle": "Sender sammenslåing", + "DE.Controllers.Main.splitDividerErrorText": "Antall rader må kunne deles på %1", + "DE.Controllers.Main.splitMaxColsErrorText": "Antall kolonner må være mindre enn %1", + "DE.Controllers.Main.splitMaxRowsErrorText": "Antall rader må være mindre enn %1", "DE.Controllers.Main.textAnonymous": "Anonym", "DE.Controllers.Main.textBack": "Tilbake", + "DE.Controllers.Main.textBuyNow": "Besøk nettsted", "DE.Controllers.Main.textCancel": "Avbryt", "DE.Controllers.Main.textClose": "Lukk", + "DE.Controllers.Main.textContactUs": "Kontakt salgsavdelingen", + "DE.Controllers.Main.textDone": "Ferdig", + "DE.Controllers.Main.textHasMacros": "Filen inneholder automatiske makroer.
            Ønsker du å kjøre makroene?", + "DE.Controllers.Main.textLoadingDocument": "Laster dokument", + "DE.Controllers.Main.textNo": "Nei", + "DE.Controllers.Main.textNoLicenseTitle": "Lisensgrense oppnådd", + "DE.Controllers.Main.textOK": "OK", + "DE.Controllers.Main.textPaidFeature": "Betalt funksjon", + "DE.Controllers.Main.textPassword": "Passord", + "DE.Controllers.Main.textPreloader": "Laster...", + "DE.Controllers.Main.textRemember": "Husk valget mitt", + "DE.Controllers.Main.textUsername": "Brukernavn", + "DE.Controllers.Main.textYes": "Ja", + "DE.Controllers.Main.titleLicenseExp": "Utgått lisens", + "DE.Controllers.Main.titleServerVersion": "Redigeringsprogram ble oppdatert", + "DE.Controllers.Main.titleUpdateVersion": "Endret versjon", + "DE.Controllers.Main.txtArt": "Teksten din her", "DE.Controllers.Main.txtDiagramTitle": "Diagramtittel", + "DE.Controllers.Main.txtEditingMode": "Velg redigeringsmodus...", + "DE.Controllers.Main.txtFooter": "Bunntekst", + "DE.Controllers.Main.txtHeader": "Topptekst", + "DE.Controllers.Main.txtProtected": "Når du skriver inn passordet og åpner filen, vil nåværende passord til filen bli tilbakestilt.", + "DE.Controllers.Main.txtSeries": "Serier", + "DE.Controllers.Main.txtStyle_footnote_text": "Fotnotetekst", + "DE.Controllers.Main.txtStyle_Heading_1": "Overskrift 1", + "DE.Controllers.Main.txtStyle_Heading_2": "Overskrift 2", + "DE.Controllers.Main.txtStyle_Heading_3": "Overskrift 3", + "DE.Controllers.Main.txtStyle_Heading_4": "Overskrift 4", + "DE.Controllers.Main.txtStyle_Heading_5": "Overskrift 5", + "DE.Controllers.Main.txtStyle_Heading_6": "Overskrift 6", + "DE.Controllers.Main.txtStyle_Heading_7": "Overskrift 7", + "DE.Controllers.Main.txtStyle_Heading_8": "Overskrift 8", + "DE.Controllers.Main.txtStyle_Heading_9": "Overskrift 9", + "DE.Controllers.Main.txtStyle_Intense_Quote": "Kraftig sitat", + "DE.Controllers.Main.txtStyle_No_Spacing": "Ingen avstand", + "DE.Controllers.Main.txtStyle_Normal": "Normal", + "DE.Controllers.Main.txtStyle_Quote": "Sitat", + "DE.Controllers.Main.txtStyle_Subtitle": "Undertittel", + "DE.Controllers.Main.txtStyle_Title": "Tittel", + "DE.Controllers.Main.txtXAxis": "X-akse", + "DE.Controllers.Main.txtYAxis": "Y-akse", + "DE.Controllers.Main.unknownErrorText": "Ukjent feil.", + "DE.Controllers.Main.unsupportedBrowserErrorText": "Nettleseren din er ikke støttet.", + "DE.Controllers.Main.uploadImageExtMessage": "Ukjent bildeformat.", + "DE.Controllers.Main.uploadImageFileCountMessage": "Ingen bilder lastet opp.", + "DE.Controllers.Main.uploadImageSizeMessage": "Maksimal bildestørrelse overskredet.", + "DE.Controllers.Main.uploadImageTextText": "Laster opp bilde...", + "DE.Controllers.Main.uploadImageTitleText": "Laster opp bilde", + "DE.Controllers.Main.waitText": "Vennligst vent...", + "DE.Controllers.Main.warnLicenseExp": "Lisensen din har utløpt.
            Vennligst oppdater lisensen og oppdater siden.", + "DE.Controllers.Main.warnLicenseUsersExceeded": "Du har nådd brukergrensen på %1 redigeringsprogram. Kontakt administratoren din for mer informasjon.", + "DE.Controllers.Main.warnNoLicenseUsers": "Du har nådd brukergrensen på antall %1 redigeringsprogram. Kontakt %1 salgsteamet for personlig oppgraderingsvilkår.", + "DE.Controllers.Main.warnProcessRightsChange": "Du er nektet adgang til å redigere filen.", + "DE.Controllers.Search.textNoTextFound": "Fant ikke tekst", + "DE.Controllers.Search.textReplaceAll": "Erstatt alle", + "DE.Controllers.Settings.notcriticalErrorTitle": "Advarsel", + "DE.Controllers.Settings.textCustomSize": "Egendefinert størrelse", + "DE.Controllers.Settings.txtLoading": "Laster...", + "DE.Controllers.Settings.unknownText": "Ukjent", + "DE.Controllers.Toolbar.dlgLeaveMsgText": "Du har ulagrede endringer i dette dokumentet. Trykk på 'Bli på denne siden' og vent på autolagring av dokumentet. Trykk på 'Forlat denne siden' for å forkaste ulagrede endringer.", + "DE.Controllers.Toolbar.dlgLeaveTitleText": "Du forlater programmet", + "DE.Controllers.Toolbar.leaveButtonText": "Forlat denne siden", + "DE.Controllers.Toolbar.stayButtonText": "Bli på denne siden", "DE.Views.AddImage.textAddress": "Adresse", "DE.Views.AddImage.textBack": "Tilbake", + "DE.Views.AddImage.textFromLibrary": "Bilde fra bibliotek", + "DE.Views.AddImage.textFromURL": "Bilde fra lenke", + "DE.Views.AddImage.textImageURL": "Bildelenke", + "DE.Views.AddImage.textInsertImage": "Sett inn bilde", + "DE.Views.AddImage.textLinkSettings": "Lenkealternativer", + "DE.Views.AddOther.textAddComment": "Legg til kommentar", "DE.Views.AddOther.textAddLink": "Legg til lenke", "DE.Views.AddOther.textBack": "Tilbake", + "DE.Views.AddOther.textBreak": "Skift", "DE.Views.AddOther.textCenterBottom": "Midt bunn", "DE.Views.AddOther.textCenterTop": "Midt topp", "DE.Views.AddOther.textColumnBreak": "Kolonneskift", + "DE.Views.AddOther.textComment": "Kommentar", + "DE.Views.AddOther.textContPage": "Sammenhengende side", + "DE.Views.AddOther.textDisplay": "Vis", + "DE.Views.AddOther.textDone": "Ferdig", + "DE.Views.AddOther.textEvenPage": "Partallside", + "DE.Views.AddOther.textFootnote": "Fotnote", + "DE.Views.AddOther.textFormat": "Format", + "DE.Views.AddOther.textInsert": "Sett inn", + "DE.Views.AddOther.textInsertFootnote": "Sett inn fotnote", + "DE.Views.AddOther.textLeftBottom": "Venstre bunn", + "DE.Views.AddOther.textLeftTop": "Venstre topp", + "DE.Views.AddOther.textLink": "Lenke", + "DE.Views.AddOther.textLocation": "Plassering", + "DE.Views.AddOther.textNextPage": "Neste side", + "DE.Views.AddOther.textOddPage": "Oddetallsside", + "DE.Views.AddOther.textPageBreak": "Sideskift", + "DE.Views.AddOther.textPageNumber": "Sidetall", + "DE.Views.AddOther.textPosition": "Posisjon", + "DE.Views.AddOther.textRightBottom": "Høyre bunn", + "DE.Views.AddOther.textRightTop": "Høyre topp", + "DE.Views.AddOther.textStartFrom": "Start ved", + "DE.Views.AddOther.textTip": "Skjermtips", + "DE.Views.EditChart.textAddCustomColor": "Legg til egendefinert farge", "DE.Views.EditChart.textAlign": "Still opp", "DE.Views.EditChart.textBack": "Tilbake", "DE.Views.EditChart.textBehind": "Bak", "DE.Views.EditChart.textBorder": "Ramme", "DE.Views.EditChart.textColor": "Farge", + "DE.Views.EditChart.textCustomColor": "Egendefinert farge", + "DE.Views.EditChart.textDistanceText": "Avstand fra tekst", + "DE.Views.EditChart.textFill": "Fyll", + "DE.Views.EditChart.textInFront": "Foran", "DE.Views.EditChart.textOverlap": "Tillat overlapping", + "DE.Views.EditChart.textRemoveChart": "Slett diagram", + "DE.Views.EditChart.textReorder": "Ny rekkefølge", + "DE.Views.EditChart.textSize": "Størrelse", + "DE.Views.EditChart.textSquare": "Firkant", + "DE.Views.EditChart.textStyle": "Stil", + "DE.Views.EditChart.textThrough": "Gjennom", + "DE.Views.EditChart.textTight": "Tett", + "DE.Views.EditChart.textToBackground": "Plasser lengst bak", "DE.Views.EditChart.textToForeground": "Plasser fremst", + "DE.Views.EditChart.textTopBottom": "Topp og bunn", + "DE.Views.EditChart.textType": "Type", + "DE.Views.EditChart.textWrap": "Pakk inn", + "DE.Views.EditHeader.textFrom": "Start ved", + "DE.Views.EditHeader.textPageNumbering": "Sidenummerering", + "DE.Views.EditHeader.textPrev": "Fortsett fra forrige avsnitt", + "DE.Views.EditHeader.textSameAs": "Lenke til forrige", + "DE.Views.EditHyperlink.textDisplay": "Vis", + "DE.Views.EditHyperlink.textEdit": "Rediger lenke", + "DE.Views.EditHyperlink.textLink": "Lenke", + "DE.Views.EditHyperlink.textRemove": "Slett lenke", + "DE.Views.EditHyperlink.textTip": "Skjermtips", "DE.Views.EditImage.textAddress": "Adresse", "DE.Views.EditImage.textAlign": "Still opp", "DE.Views.EditImage.textBack": "Tilbake", "DE.Views.EditImage.textBehind": "Bak", + "DE.Views.EditImage.textDefault": "Faktisk størrelse", + "DE.Views.EditImage.textDistanceText": "Avstand fra tekst", + "DE.Views.EditImage.textFromLibrary": "Bilde fra bibliotek", + "DE.Views.EditImage.textFromURL": "Bilde fra lenke", + "DE.Views.EditImage.textImageURL": "Bildelenke", + "DE.Views.EditImage.textInFront": "Foran", + "DE.Views.EditImage.textLinkSettings": "Lenkealternativer", "DE.Views.EditImage.textOverlap": "Tillat overlapping", + "DE.Views.EditImage.textRemove": "Slett bilde", + "DE.Views.EditImage.textReorder": "Ny rekkefølge", + "DE.Views.EditImage.textReplace": "Erstatt", + "DE.Views.EditImage.textReplaceImg": "Erstatt bilde", + "DE.Views.EditImage.textSquare": "Firkant", + "DE.Views.EditImage.textThrough": "Gjennom", + "DE.Views.EditImage.textTight": "Tett", + "DE.Views.EditImage.textToBackground": "Plasser lengst bak", "DE.Views.EditImage.textToForeground": "Plasser fremst", + "DE.Views.EditImage.textTopBottom": "Topp og bunn", + "DE.Views.EditImage.textWrap": "Pakk inn", + "DE.Views.EditParagraph.textAddCustomColor": "Legg til egendefinert farge", "DE.Views.EditParagraph.textAdvanced": "Avansert", "DE.Views.EditParagraph.textAdvSettings": "Avanserte innstillinger", "DE.Views.EditParagraph.textAfter": "Etter", @@ -44,13 +358,38 @@ "DE.Views.EditParagraph.textBack": "Tilbake", "DE.Views.EditParagraph.textBackground": "Bakgrunn", "DE.Views.EditParagraph.textBefore": "Før", + "DE.Views.EditParagraph.textCustomColor": "Egendefinert farge", + "DE.Views.EditParagraph.textFirstLine": "Første linje", + "DE.Views.EditParagraph.textFromText": "Avstand fra tekst", + "DE.Views.EditParagraph.textPageBreak": "Sideskift før", + "DE.Views.EditParagraph.textPrgStyles": "Avsnittsstiler", + "DE.Views.EditParagraph.textSpaceBetween": "Mellomrom mellom avsnitt", + "DE.Views.EditShape.textAddCustomColor": "Legg til egendefinert farge", "DE.Views.EditShape.textAlign": "Still opp", "DE.Views.EditShape.textBack": "Tilbake", "DE.Views.EditShape.textBehind": "Bak", "DE.Views.EditShape.textBorder": "Ramme", "DE.Views.EditShape.textColor": "Farge", + "DE.Views.EditShape.textCustomColor": "Egendefinert farge", + "DE.Views.EditShape.textEffects": "Effekter", + "DE.Views.EditShape.textFill": "Fyll", + "DE.Views.EditShape.textFromText": "Avstand fra tekst", + "DE.Views.EditShape.textInFront": "Foran", + "DE.Views.EditShape.textOpacity": "Opasitet", "DE.Views.EditShape.textOverlap": "Tillat overlapping", + "DE.Views.EditShape.textRemoveShape": "Slett figur", + "DE.Views.EditShape.textReorder": "Ny rekkefølge", + "DE.Views.EditShape.textReplace": "Erstatt", + "DE.Views.EditShape.textSize": "Størrelse", + "DE.Views.EditShape.textSquare": "Firkant", + "DE.Views.EditShape.textStyle": "Stil", + "DE.Views.EditShape.textThrough": "Gjennom", + "DE.Views.EditShape.textTight": "Tett", + "DE.Views.EditShape.textToBackground": "Plasser lengst bak", "DE.Views.EditShape.textToForeground": "Plasser fremst", + "DE.Views.EditShape.textTopAndBottom": "Topp og bunn", + "DE.Views.EditShape.textWrap": "Pakk inn", + "DE.Views.EditTable.textAddCustomColor": "Legg til egendefinert farge", "DE.Views.EditTable.textAlign": "Still opp", "DE.Views.EditTable.textBack": "Tilbake", "DE.Views.EditTable.textBandedColumn": "Kolonne med bånd", @@ -58,17 +397,124 @@ "DE.Views.EditTable.textBorder": "Ramme", "DE.Views.EditTable.textCellMargins": "Cellemarginer", "DE.Views.EditTable.textColor": "Farge", + "DE.Views.EditTable.textCustomColor": "Egendefinert farge", + "DE.Views.EditTable.textFill": "Fyll", + "DE.Views.EditTable.textFirstColumn": "Første kolonne", + "DE.Views.EditTable.textFlow": "Flyt", + "DE.Views.EditTable.textFromText": "Avstand fra tekst", + "DE.Views.EditTable.textHeaderRow": "Topprad", + "DE.Views.EditTable.textLastColumn": "Siste kolonne", + "DE.Views.EditTable.textOptions": "Alternativer", + "DE.Views.EditTable.textRemoveTable": "Slett tabell", + "DE.Views.EditTable.textSize": "Størrelse", + "DE.Views.EditTable.textStyle": "Stil", + "DE.Views.EditTable.textStyleOptions": "Stilalternativer", + "DE.Views.EditTable.textTableOptions": "Tabellalternativer", + "DE.Views.EditTable.textTotalRow": "Total rad", + "DE.Views.EditTable.textWrap": "Pakk inn", + "DE.Views.EditText.textAddCustomColor": "Legg til egendefinert farge", "DE.Views.EditText.textAdditional": "I tillegg", "DE.Views.EditText.textAdditionalFormat": "Tilleggsformatering", "DE.Views.EditText.textAllCaps": "Store bokstaver", "DE.Views.EditText.textAutomatic": "Automatisk", "DE.Views.EditText.textBack": "Tilbake", "DE.Views.EditText.textBullets": "Kulepunkt", + "DE.Views.EditText.textCharacterBold": "B", + "DE.Views.EditText.textCharacterItalic": "I", + "DE.Views.EditText.textCharacterStrikethrough": "s", + "DE.Views.EditText.textCharacterUnderline": "U", + "DE.Views.EditText.textCustomColor": "Egendefinert farge", + "DE.Views.EditText.textDblStrikethrough": "Dobbel gjennomstreking", + "DE.Views.EditText.textDblSuperscript": "Hevet skrift", + "DE.Views.EditText.textFontColor": "Skriftfarge", + "DE.Views.EditText.textFontColors": "Skriftfarger", + "DE.Views.EditText.textFonts": "Skrifttyper", + "DE.Views.EditText.textHighlightColor": "Uthevingsfarge", + "DE.Views.EditText.textHighlightColors": "Uthevingsfarger", + "DE.Views.EditText.textLetterSpacing": "Bokstavavstand", + "DE.Views.EditText.textLineSpacing": "Linjeavstand", + "DE.Views.EditText.textNone": "ingen", + "DE.Views.EditText.textNumbers": "Tall", + "DE.Views.EditText.textSize": "Størrelse", + "DE.Views.EditText.textSmallCaps": "Små bokstaver", + "DE.Views.EditText.textStrikethrough": "Gjennomstreking", + "DE.Views.EditText.textSubscript": "Senket skrift", "DE.Views.Search.textCase": "Følsom for store og små bokstaver", + "DE.Views.Search.textDone": "Ferdig", + "DE.Views.Search.textFind": "Finn", + "DE.Views.Search.textFindAndReplace": "Finn og erstatt", + "DE.Views.Search.textHighlight": "Fremhev resultat", + "DE.Views.Search.textReplace": "Erstatt", + "DE.Views.Search.textSearch": "Søk", "DE.Views.Settings.textAbout": "Om", "DE.Views.Settings.textAddress": "Adresse", + "DE.Views.Settings.textAdvancedSettings": "Programalternativer", + "DE.Views.Settings.textApplication": "Applikasjon", "DE.Views.Settings.textAuthor": "Forfatter", "DE.Views.Settings.textBack": "Tilbake", "DE.Views.Settings.textBottom": "Bunn", + "DE.Views.Settings.textCentimeter": "Centimeter", + "DE.Views.Settings.textCollaboration": "Samarbeid", + "DE.Views.Settings.textColorSchemes": "Temafarger", + "DE.Views.Settings.textComment": "Kommentar", + "DE.Views.Settings.textCreated": "Opprettet", + "DE.Views.Settings.textCreateDate": "Opprettelsesdato", + "DE.Views.Settings.textCustom": "Egendefinert", + "DE.Views.Settings.textCustomSize": "Egendefinert størrelse", + "DE.Views.Settings.textDisableAll": "Deaktiver alt", + "DE.Views.Settings.textDisableAllMacrosWithNotification": "Deaktiver alle makroer med et varsel", + "DE.Views.Settings.textDisableAllMacrosWithoutNotification": "Deaktiver alle makroer uten varsling", + "DE.Views.Settings.textDisplayComments": "Kommentarer", + "DE.Views.Settings.textDisplayResolvedComments": "Løste kommentarer", + "DE.Views.Settings.textDocInfo": "Dokumentinformasjon", + "DE.Views.Settings.textDocTitle": "Dokumenttittel", + "DE.Views.Settings.textDocumentFormats": "Dokumentformater", + "DE.Views.Settings.textDocumentSettings": "Dokumentinnstillinger", + "DE.Views.Settings.textDone": "ferdig", + "DE.Views.Settings.textDownload": "Last ned", + "DE.Views.Settings.textDownloadAs": "Last ned som...", + "DE.Views.Settings.textEditDoc": "Rediger dokument", + "DE.Views.Settings.textEmail": "E-post", + "DE.Views.Settings.textEnableAll": "Aktiver alle", + "DE.Views.Settings.textEnableAllMacrosWithoutNotification": "Aktiver alle makroer uten varsling", + "DE.Views.Settings.textFind": "Finn", + "DE.Views.Settings.textFindAndReplace": "Finn og erstatt", + "DE.Views.Settings.textFormat": "Format", + "DE.Views.Settings.textHelp": "Hjelp", + "DE.Views.Settings.textHiddenTableBorders": "Skjulte tabellkanter", + "DE.Views.Settings.textInch": "Tomme", + "DE.Views.Settings.textLandscape": "Landskap", + "DE.Views.Settings.textLastModified": "Sist endret", + "DE.Views.Settings.textLastModifiedBy": "Sist endret av", + "DE.Views.Settings.textLeft": "Venstre", + "DE.Views.Settings.textLoading": "Laster...", + "DE.Views.Settings.textLocation": "Plassering", + "DE.Views.Settings.textMacrosSettings": "Makroalternativer", + "DE.Views.Settings.textMargins": "Marginer", + "DE.Views.Settings.textOrientation": "Orientering", + "DE.Views.Settings.textOwner": "Eier", + "DE.Views.Settings.textPages": "Sider", + "DE.Views.Settings.textParagraphs": "Avsnitt", + "DE.Views.Settings.textPoint": "Punkt", + "DE.Views.Settings.textPortrait": "Portrett", + "DE.Views.Settings.textPoweredBy": "Drevet av", + "DE.Views.Settings.textPrint": "Skriv ut", + "DE.Views.Settings.textReader": "Lesemodus", + "DE.Views.Settings.textReview": "Spor endringer", + "DE.Views.Settings.textRight": "Høyre", + "DE.Views.Settings.textSettings": "Innstillinger", + "DE.Views.Settings.textShowNotification": "Vis varsling", + "DE.Views.Settings.textSpaces": "Mellomrom", + "DE.Views.Settings.textSpellcheck": "Stavekontroll", + "DE.Views.Settings.textSubject": "Emne", + "DE.Views.Settings.textSymbols": "Symboler", + "DE.Views.Settings.textTel": "tlf", + "DE.Views.Settings.textTitle": "Tittel", + "DE.Views.Settings.textTop": "Topp", + "DE.Views.Settings.textUnitOfMeasurement": "Enhetsmål", + "DE.Views.Settings.textUploaded": "Lastet opp", + "DE.Views.Settings.textVersion": "Versjon", + "DE.Views.Settings.textWords": "Ord", + "DE.Views.Settings.unknownText": "Ukjent", "DE.Views.Toolbar.textBack": "Tilbake" } \ No newline at end of file diff --git a/apps/documenteditor/mobile/locale/nl.json b/apps/documenteditor/mobile/locale/nl.json index b30ad0ee7..3b2fad37e 100644 --- a/apps/documenteditor/mobile/locale/nl.json +++ b/apps/documenteditor/mobile/locale/nl.json @@ -1,19 +1,50 @@ { + "Common.Controllers.Collaboration.textAddReply": "Reactie toevoegen", + "Common.Controllers.Collaboration.textAtLeast": "ten minste", + "Common.Controllers.Collaboration.textAuto": "automatisch", + "Common.Controllers.Collaboration.textBold": "Vet", + "Common.Controllers.Collaboration.textCaps": "Hoofdletters", + "Common.Controllers.Collaboration.textCenter": "Centreren", + "Common.Controllers.Collaboration.textDeleted": "Verwijderd", + "Common.Controllers.Collaboration.textInserted": "Ingevoegd:", + "Common.Controllers.Collaboration.textJustify": "Uitvullen", + "Common.Controllers.Collaboration.textLeft": "Links uitlijnen", + "Common.Controllers.Collaboration.textNoContextual": "Interval toevoegen tussen alinea's met dezelfde stijl", + "Common.Controllers.Collaboration.textParaDeleted": "Alinea verwijderd", + "Common.Controllers.Collaboration.textParaFormatted": "Alinea ingedeeld", + "Common.Controllers.Collaboration.textParaInserted": "Alinea ingevoegd", + "Common.Controllers.Collaboration.textParaMoveFromDown": "Naar beneden:", + "Common.Controllers.Collaboration.textParaMoveFromUp": "Naar boven:", + "Common.Controllers.Collaboration.textParaMoveTo": "Verplaatst:", + "Common.Controllers.Collaboration.textRight": "Rechts uitlijnen", + "Common.Controllers.Collaboration.textShd": "Arcering", + "Common.Controllers.Collaboration.textTableChanged": "Tabel instellingen aangepast", + "Common.Controllers.Collaboration.textTableRowsAdd": "Tabel rijen toegevoegd", + "Common.Controllers.Collaboration.textTableRowsDel": "Tabel rijen verwijderd", "Common.UI.ThemeColorPalette.textStandartColors": "Standaardkleuren", "Common.UI.ThemeColorPalette.textThemeColors": "Themakleuren", "Common.Utils.Metric.txtCm": "cm", "Common.Utils.Metric.txtPt": "pt", + "Common.Views.Collaboration.textAccept": "Accepteren", + "Common.Views.Collaboration.textAcceptAllChanges": "Alle wijzigingen accepteren", + "Common.Views.Collaboration.textAddReply": "Reactie toevoegen", + "Common.Views.Collaboration.textAllChangesAcceptedPreview": "Alles accepteren (voorbeeld)", + "Common.Views.Collaboration.textAllChangesEditing": "Alle veranderingen (bewerken)", + "Common.Views.Collaboration.textAllChangesRejectedPreview": "Alle wijzigingen afkeuren (voorbeeld)", + "Common.Views.Collaboration.textBack": "Vorige", "DE.Controllers.AddContainer.textImage": "Afbeelding", "DE.Controllers.AddContainer.textOther": "Overige", "DE.Controllers.AddContainer.textShape": "Vorm", "DE.Controllers.AddContainer.textTable": "Tabel", "DE.Controllers.AddImage.textEmptyImgUrl": "U moet een URL opgeven voor de afbeelding.", "DE.Controllers.AddImage.txtNotUrl": "Dit veld moet een URL in de notatie 'http://www.example.com' bevatten", + "DE.Controllers.AddOther.textBottomOfPage": "Onder aan pagina", "DE.Controllers.AddOther.txtNotUrl": "Dit veld moet een URL in de notatie 'http://www.example.com' bevatten", "DE.Controllers.AddTable.textCancel": "Annuleren", "DE.Controllers.AddTable.textColumns": "Kolommen", "DE.Controllers.AddTable.textRows": "Rijen", "DE.Controllers.AddTable.textTableSize": "Tabelgrootte", + "DE.Controllers.DocumentHolder.menuAddComment": "Opmerking toevoegen", "DE.Controllers.DocumentHolder.menuAddLink": "Koppeling toevoegen", "DE.Controllers.DocumentHolder.menuCopy": "Kopiëren", "DE.Controllers.DocumentHolder.menuCut": "Knippen", @@ -181,6 +212,7 @@ "DE.Views.AddImage.textImageURL": "URL afbeelding", "DE.Views.AddImage.textInsertImage": "Afbeelding invoegen", "DE.Views.AddImage.textLinkSettings": "Koppelingsinstellingen", + "DE.Views.AddOther.textAddComment": "Opmerking toevoegen", "DE.Views.AddOther.textAddLink": "Koppeling toevoegen", "DE.Views.AddOther.textBack": "Terug", "DE.Views.AddOther.textCenterBottom": "Middenonder", @@ -203,6 +235,7 @@ "DE.Views.AddOther.textRightTop": "Rechtsboven", "DE.Views.AddOther.textSectionBreak": "Sectie-einde", "DE.Views.AddOther.textTip": "Scherminfo", + "DE.Views.EditChart.textAddCustomColor": "Aangepaste kleur toevoegen", "DE.Views.EditChart.textAlign": "Uitlijnen", "DE.Views.EditChart.textBack": "Terug", "DE.Views.EditChart.textBackward": "Naar achter verplaatsen", @@ -266,6 +299,7 @@ "DE.Views.EditImage.textToForeground": "Naar voorgrond brengen", "DE.Views.EditImage.textTopBottom": "Boven en onder", "DE.Views.EditImage.textWrap": "Terugloop", + "DE.Views.EditParagraph.textAddCustomColor": "Aangepaste kleur toevoegen", "DE.Views.EditParagraph.textAdvanced": "Geavanceerd", "DE.Views.EditParagraph.textAdvSettings": "Geavanceerde instellingen", "DE.Views.EditParagraph.textAfter": "Na", @@ -281,6 +315,7 @@ "DE.Views.EditParagraph.textPageBreak": "Pagina-einde vóór", "DE.Views.EditParagraph.textPrgStyles": "Alineastijlen", "DE.Views.EditParagraph.textSpaceBetween": "Ruimte tussen alinea's", + "DE.Views.EditShape.textAddCustomColor": "Aangepaste kleur toevoegen", "DE.Views.EditShape.textAlign": "Uitlijnen", "DE.Views.EditShape.textBack": "Terug", "DE.Views.EditShape.textBackward": "Naar achter verplaatsen", @@ -308,6 +343,7 @@ "DE.Views.EditShape.textTopAndBottom": "Boven en onder", "DE.Views.EditShape.textWithText": "Met tekst verplaatsen", "DE.Views.EditShape.textWrap": "Terugloop", + "DE.Views.EditTable.textAddCustomColor": "Aangepaste kleur toevoegen", "DE.Views.EditTable.textAlign": "Uitlijnen", "DE.Views.EditTable.textBack": "Terug", "DE.Views.EditTable.textBandedColumn": "Gestreepte kolom", @@ -333,6 +369,7 @@ "DE.Views.EditTable.textTotalRow": "Totaalrij", "DE.Views.EditTable.textWithText": "Met tekst verplaatsen", "DE.Views.EditTable.textWrap": "Terugloop", + "DE.Views.EditText.textAddCustomColor": "Aangepaste kleur toevoegen", "DE.Views.EditText.textAdditional": "Extra", "DE.Views.EditText.textAdditionalFormat": "Aanvullende opmaak", "DE.Views.EditText.textAllCaps": "Allemaal hoofdletters", @@ -367,6 +404,8 @@ "DE.Views.Search.textSearch": "Zoeken", "DE.Views.Settings.textAbout": "Over", "DE.Views.Settings.textAddress": "adres", + "DE.Views.Settings.textAdvancedSettings": "Instellingen", + "DE.Views.Settings.textApplication": "Applicatie", "DE.Views.Settings.textAuthor": "Auteur", "DE.Views.Settings.textBack": "Terug", "DE.Views.Settings.textBottom": "Onder", diff --git a/apps/documenteditor/mobile/locale/pt.json b/apps/documenteditor/mobile/locale/pt.json index bab0d8e51..1c67d9686 100644 --- a/apps/documenteditor/mobile/locale/pt.json +++ b/apps/documenteditor/mobile/locale/pt.json @@ -247,8 +247,8 @@ "DE.Controllers.Main.uploadImageTextText": "Carregando imagem...", "DE.Controllers.Main.uploadImageTitleText": "Carregando imagem", "DE.Controllers.Main.waitText": "Aguarde...", - "DE.Controllers.Main.warnLicenseExp": "Sua licença expirou.
            Atualize sua licença e atualize a página.", "DE.Controllers.Main.warnLicenseExceeded": "Você atingiu o limite de conexões simultâneas para editores %1. Este documento será aberto apenas para visualização.
            Entre em contato com seu administrador para saber mais.", + "DE.Controllers.Main.warnLicenseExp": "Sua licença expirou.
            Atualize sua licença e atualize a página.", "DE.Controllers.Main.warnLicenseUsersExceeded": "Você atingiu o limite de usuários para editores %1. Entre em contato com seu administrador para saber mais.", "DE.Controllers.Main.warnNoLicense": "Você atingiu o limite de conexões simultâneas para editores %1. Este documento será aberto apenas para visualização.
            Entre em contato com a equipe de vendas da %1 para obter os termos de atualização pessoais.", "DE.Controllers.Main.warnNoLicenseUsers": "Você atingiu o limite de usuários para editores %1.
            Entre em contato com a equipe de vendas da %1 para obter os termos de atualização pessoais.", diff --git a/apps/documenteditor/mobile/locale/ru.json b/apps/documenteditor/mobile/locale/ru.json index 16da74219..6342a8842 100644 --- a/apps/documenteditor/mobile/locale/ru.json +++ b/apps/documenteditor/mobile/locale/ru.json @@ -185,14 +185,18 @@ "DE.Controllers.Main.errorKeyExpire": "Срок действия дескриптора ключа истек", "DE.Controllers.Main.errorMailMergeLoadFile": "Загрузка документа не удалась. Выберите другой файл.", "DE.Controllers.Main.errorMailMergeSaveFile": "Не удалось выполнить слияние.", + "DE.Controllers.Main.errorOpensource": "Используя бесплатную версию Community, вы можете открывать документы только на просмотр. Для доступа к мобильным веб-редакторам требуется коммерческая лицензия.", "DE.Controllers.Main.errorProcessSaveResult": "Не удалось завершить сохранение.", "DE.Controllers.Main.errorServerVersion": "Версия редактора была обновлена. Страница будет перезагружена, чтобы применить изменения.", + "DE.Controllers.Main.errorSessionAbsolute": "Время сеанса редактирования документа истекло. Пожалуйста, обновите страницу.", + "DE.Controllers.Main.errorSessionIdle": "Документ долгое время не редактировался. Пожалуйста, обновите страницу.", + "DE.Controllers.Main.errorSessionToken": "Подключение к серверу было прервано. Пожалуйста, обновите страницу.", "DE.Controllers.Main.errorStockChart": "Неверный порядок строк. Чтобы создать биржевую диаграмму, расположите данные на листе в следующем порядке:
            цена открытия, максимальная цена, минимальная цена, цена закрытия.", "DE.Controllers.Main.errorUpdateVersion": "Версия файла была изменена. Страница будет перезагружена.", "DE.Controllers.Main.errorUpdateVersionOnDisconnect": "Подключение к Интернету было восстановлено, и версия файла изменилась.
            Прежде чем продолжить работу, надо скачать файл или скопировать его содержимое, чтобы обеспечить сохранность данных, а затем перезагрузить страницу.", "DE.Controllers.Main.errorUserDrop": "В настоящий момент файл недоступен.", "DE.Controllers.Main.errorUsersExceed": "Превышено количество пользователей", - "DE.Controllers.Main.errorViewerDisconnect": "Подключение прервано. Вы по-прежнему можете просматривать документ,
            но не сможете скачать его до восстановления подключения и обновления страницы.", + "DE.Controllers.Main.errorViewerDisconnect": "Подключение прервано. Вы можете просматривать документ,
            но не сможете скачать его до восстановления подключения и обновления страницы.", "DE.Controllers.Main.leavePageText": "В документе есть несохраненные изменения. Нажмите 'Остаться на странице', чтобы дождаться автосохранения документа. Нажмите 'Уйти со страницы', чтобы сбросить все несохраненные изменения.", "DE.Controllers.Main.loadFontsTextText": "Загрузка данных...", "DE.Controllers.Main.loadFontsTitleText": "Загрузка данных", @@ -233,8 +237,8 @@ "DE.Controllers.Main.textDone": "Готово", "DE.Controllers.Main.textHasMacros": "Файл содержит автозапускаемые макросы.
            Хотите запустить макросы?", "DE.Controllers.Main.textLoadingDocument": "Загрузка документа", - "DE.Controllers.Main.textNoLicenseTitle": "Лицензионное ограничение", "DE.Controllers.Main.textNo": "Нет", + "DE.Controllers.Main.textNoLicenseTitle": "Лицензионное ограничение", "DE.Controllers.Main.textOK": "OK", "DE.Controllers.Main.textPaidFeature": "Платная функция", "DE.Controllers.Main.textPassword": "Пароль", @@ -280,8 +284,8 @@ "DE.Controllers.Main.uploadImageTextText": "Загрузка рисунка...", "DE.Controllers.Main.uploadImageTitleText": "Загрузка рисунка", "DE.Controllers.Main.waitText": "Пожалуйста, подождите...", - "DE.Controllers.Main.warnLicenseExp": "Истек срок действия лицензии.
            Обновите лицензию, а затем обновите страницу.", "DE.Controllers.Main.warnLicenseExceeded": "Вы достигли лимита на одновременные подключения к редакторам %1. Этот документ будет открыт только на просмотр.
            Свяжитесь с администратором, чтобы узнать больше.", + "DE.Controllers.Main.warnLicenseExp": "Истек срок действия лицензии.
            Обновите лицензию, а затем обновите страницу.", "DE.Controllers.Main.warnLicenseUsersExceeded": "Вы достигли лимита на количество пользователей редакторов %1.
            Свяжитесь с администратором, чтобы узнать больше.", "DE.Controllers.Main.warnNoLicense": "Вы достигли лимита на одновременные подключения к редакторам %1. Этот документ будет открыт на просмотр.
            Напишите в отдел продаж %1, чтобы обсудить индивидуальные условия лицензирования.", "DE.Controllers.Main.warnNoLicenseUsers": "Вы достигли лимита на одновременные подключения к редакторам %1.
            Напишите в отдел продаж %1, чтобы обсудить индивидуальные условия лицензирования.", diff --git a/apps/documenteditor/mobile/locale/sk.json b/apps/documenteditor/mobile/locale/sk.json index 89d323bc4..328ba5e57 100644 --- a/apps/documenteditor/mobile/locale/sk.json +++ b/apps/documenteditor/mobile/locale/sk.json @@ -185,6 +185,7 @@ "DE.Controllers.Main.errorKeyExpire": "Kľúč deskriptora vypršal", "DE.Controllers.Main.errorMailMergeLoadFile": "Načítavanie dokumentu zlyhalo. Vyberte prosím iný súbor.", "DE.Controllers.Main.errorMailMergeSaveFile": "Zlúčenie zlyhalo.", + "DE.Controllers.Main.errorOpensource": "Pomocou bezplatnej verzie Community môžete otvoriť dokumenty iba na prezeranie. Na prístup k mobilným webovým editorom je potrebná komerčná licencia.", "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.", "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.", @@ -234,7 +235,7 @@ "DE.Controllers.Main.textHasMacros": "Súbor obsahuje automatické makrá.
            Chcete makrá spustiť?", "DE.Controllers.Main.textLoadingDocument": "Načítavanie dokumentu", "DE.Controllers.Main.textNo": "Nie", - "DE.Controllers.Main.textNoLicenseTitle": "limit pripojenia %1", + "DE.Controllers.Main.textNoLicenseTitle": "Bol dosiahnutý limit licencie", "DE.Controllers.Main.textOK": "OK", "DE.Controllers.Main.textPaidFeature": "Platený prvok", "DE.Controllers.Main.textPassword": "Heslo", @@ -284,7 +285,7 @@ "DE.Controllers.Main.warnLicenseExp": "Vaša licencia vypršala.
            Prosím, aktualizujte si svoju licenciu a obnovte stránku.", "DE.Controllers.Main.warnLicenseUsersExceeded": "Počet súbežných užívateľov bol prekročený a dokument bude znovu otvorený len na čítanie.
            Pre ďalšie informácie kontaktujte prosím vášho správcu.", "DE.Controllers.Main.warnNoLicense": "Táto verzia aplikácie %1 editors má určité obmedzenia pre súbežné pripojenia k dokumentovému serveru.
            Ak potrebujete viac, zvážte aktualizáciu aktuálnej licencie alebo zakúpenie komerčnej.", - "DE.Controllers.Main.warnNoLicenseUsers": "Táto verzia %1 editors má určité obmedzenia pre spolupracujúcich používateľov.
            Ak potrebujete viac, zvážte aktualizáciu vašej aktuálnej licencie alebo kúpu komerčnej.", + "DE.Controllers.Main.warnNoLicenseUsers": "Táto verzia %1 editors má určité obmedzenia pre spolupracujúcich používateľov.
            Ak potrebujete viac, zvážte aktualizáciu vašej licencie alebo kúpu komerčnej.", "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", diff --git a/apps/documenteditor/mobile/locale/sl.json b/apps/documenteditor/mobile/locale/sl.json index 960a3185b..73fde4ee4 100644 --- a/apps/documenteditor/mobile/locale/sl.json +++ b/apps/documenteditor/mobile/locale/sl.json @@ -2,6 +2,7 @@ "Common.Controllers.Collaboration.textAddReply": "Dodaj odgovor", "Common.Controllers.Collaboration.textAtLeast": "minimalno", "Common.Controllers.Collaboration.textAuto": "Samodejno", + "Common.Controllers.Collaboration.textBaseline": "Osnovna linija", "Common.Controllers.Collaboration.textBold": "Krepko", "Common.Controllers.Collaboration.textBreakBefore": "Prelom strani pred", "Common.Controllers.Collaboration.textCancel": "Prekliči", @@ -9,6 +10,7 @@ "Common.Controllers.Collaboration.textCenter": "Poravnava na sredino", "Common.Controllers.Collaboration.textChart": "Graf", "Common.Controllers.Collaboration.textColor": "Barva pisave", + "Common.Controllers.Collaboration.textContextual": "Ne dodajte intervala med odstavki istega sloga", "Common.Controllers.Collaboration.textDelete": "Izbriši", "Common.Controllers.Collaboration.textDeleteComment": "Izbriši komentar", "Common.Controllers.Collaboration.textDeleted": "Izbrisano:", @@ -24,12 +26,16 @@ "Common.Controllers.Collaboration.textImage": "Slika", "Common.Controllers.Collaboration.textInserted": "Vstavljeno:", "Common.Controllers.Collaboration.textItalic": "Ležeče", + "Common.Controllers.Collaboration.textJustify": "Poravnava obojestransko", "Common.Controllers.Collaboration.textKeepLines": "Linije ohrani skupaj", "Common.Controllers.Collaboration.textKeepNext": "Ohrani z naslednjim", "Common.Controllers.Collaboration.textLeft": "Poravnaj levo", "Common.Controllers.Collaboration.textMessageDeleteComment": "Ste prepričani da želite izbrisati ta komentar?", "Common.Controllers.Collaboration.textMessageDeleteReply": "Želite res izbrisati ta odgovor?", "Common.Controllers.Collaboration.textMultiple": "Večkratno", + "Common.Controllers.Collaboration.textNoChanges": "Tukaj ni sprememb.", + "Common.Controllers.Collaboration.textNoContextual": "Dodajte interval med odstavki istega sloga", + "Common.Controllers.Collaboration.textNoKeepNext": "Ne nadaljuj z naslednjim", "Common.Controllers.Collaboration.textNot": "Ne", "Common.Controllers.Collaboration.textNum": "Spremeni oštevilčevanje", "Common.Controllers.Collaboration.textParaDeleted": "Odstavek je izbrisan", @@ -44,9 +50,11 @@ "Common.Controllers.Collaboration.textRight": "Poravnaj desno", "Common.Controllers.Collaboration.textShape": "Oblika", "Common.Controllers.Collaboration.textShd": "Barva ozadja", + "Common.Controllers.Collaboration.textSmallCaps": "Male črke", "Common.Controllers.Collaboration.textSpacing": "Razmik", "Common.Controllers.Collaboration.textSpacingAfter": "Razmik pred", "Common.Controllers.Collaboration.textSpacingBefore": "Razmik za", + "Common.Controllers.Collaboration.textStrikeout": "Prečrtano", "Common.Controllers.Collaboration.textSubScript": "Podpisano", "Common.Controllers.Collaboration.textSuperScript": "Nadpisano", "Common.Controllers.Collaboration.textTableChanged": "Nastavitve tabele so se spremenile ", @@ -63,6 +71,7 @@ "Common.Views.Collaboration.textAcceptAllChanges": "Sprejmi vse spremembe", "Common.Views.Collaboration.textAddReply": "Dodaj odgovor", "Common.Views.Collaboration.textAllChangesAcceptedPreview": "Vse spremembe so sprejete (Predogled)", + "Common.Views.Collaboration.textAllChangesEditing": "Vse spremembe (urejanje)", "Common.Views.Collaboration.textAllChangesRejectedPreview": "Vse spremembe zavrnjene (Predogled)", "Common.Views.Collaboration.textBack": "Nazaj", "Common.Views.Collaboration.textCancel": "Prekliči", @@ -72,7 +81,9 @@ "Common.Views.Collaboration.textEditReply": "Uredi odgovor", "Common.Views.Collaboration.textEditUsers": "Uporabniki", "Common.Views.Collaboration.textEditСomment": "Uredi komentar", + "Common.Views.Collaboration.textFinal": "Končno", "Common.Views.Collaboration.textMarkup": "Označevanje", + "Common.Views.Collaboration.textNoComments": "Ta datoteka ne vsebuje komentarjev", "Common.Views.Collaboration.textOriginal": "Original", "Common.Views.Collaboration.textReject": "Zavrni", "Common.Views.Collaboration.textRejectAllChanges": "Zavrni vse spremembe", @@ -92,6 +103,7 @@ "DE.Controllers.AddTable.textCancel": "Prekliči", "DE.Controllers.AddTable.textColumns": "Stolpci", "DE.Controllers.AddTable.textRows": "Vrstice", + "DE.Controllers.AddTable.textTableSize": "Velikost tabele", "DE.Controllers.DocumentHolder.menuAddComment": "Dodaj komentar", "DE.Controllers.DocumentHolder.menuAddLink": "Dodaj povezavo", "DE.Controllers.DocumentHolder.menuCopy": "Kopiraj", @@ -104,6 +116,7 @@ "DE.Controllers.DocumentHolder.menuOpenLink": "Odpri povezavo", "DE.Controllers.DocumentHolder.menuPaste": "Prilepi", "DE.Controllers.DocumentHolder.menuReview": "Pregled", + "DE.Controllers.DocumentHolder.menuSplit": "Razdeli celico", "DE.Controllers.DocumentHolder.menuViewComment": "Ogled komentarja", "DE.Controllers.DocumentHolder.sheetCancel": "Prekliči", "DE.Controllers.DocumentHolder.textCancel": "Prekliči", @@ -134,6 +147,7 @@ "DE.Controllers.Main.applyChangesTitleText": "Nalaganje podatkov", "DE.Controllers.Main.closeButtonText": "Zapri datoteko", "DE.Controllers.Main.convertationTimeoutText": "Pretvorbena prekinitev presežena.", + "DE.Controllers.Main.criticalErrorExtText": "Pritisnite »V redu«, da se vrnete na seznam dokumentov.", "DE.Controllers.Main.criticalErrorTitle": "Napaka", "DE.Controllers.Main.downloadErrorText": "Prenos ni uspel.", "DE.Controllers.Main.downloadMergeText": "Prenašanje ...", @@ -142,7 +156,9 @@ "DE.Controllers.Main.downloadTitleText": "Prenašanje dokumenta", "DE.Controllers.Main.errorAccessDeny": "Poskušate izvesti dejanje, za katerega nimate pravic.
            Obrnite se na skrbnika strežnika dokumentov.", "DE.Controllers.Main.errorBadImageUrl": "URL slike je napačen", + "DE.Controllers.Main.errorConnectToServer": "Dokumenta ni bilo mogoče shraniti. Preverite nastavitve povezave ali se obrnite na skrbnika.
            Ko kliknete gumb »V redu«, boste pozvani, da prenesete dokument.", "DE.Controllers.Main.errorDatabaseConnection": "Zunanje težave.
            Težave s povezavo s podatkovno bazo. Prosimo kontaktirajte podporo.", + "DE.Controllers.Main.errorDataEncrypted": "Prejete so šifrirane spremembe, ki jih ni mogoče razvozlati.", "DE.Controllers.Main.errorDataRange": "Nepravilen obseg podatkov.", "DE.Controllers.Main.errorDefaultMessage": "Koda napake: %1", "DE.Controllers.Main.errorFilePassProtect": "Dokument je zaščiten z geslom in ga ni mogoče odpreti.", @@ -151,8 +167,12 @@ "DE.Controllers.Main.errorKeyExpire": "Ključni deskriptor je potekel", "DE.Controllers.Main.errorMailMergeSaveFile": "Spajanje je neuspešno", "DE.Controllers.Main.errorProcessSaveResult": "Shranjevanje je bilo neuspešno.", + "DE.Controllers.Main.errorServerVersion": "Različica urejevalnika je posodobljena. Stran bo ponovno naložena, da bo spremenila spremembe.", "DE.Controllers.Main.errorStockChart": "Nepravilen vrstni red vrstic. Za izgradnjo razpredelnice delnic podatke na strani navedite v sledečem vrstnem redu:
            otvoritvena cena, maksimalna cena, minimalna cena, zaključna cena.", "DE.Controllers.Main.errorUpdateVersion": "Različica datoteke je bila spremenjena. Stran bo osvežena.", + "DE.Controllers.Main.errorUserDrop": "Do datoteke v tem trenutku ni možno dostopati.", + "DE.Controllers.Main.errorUsersExceed": "Število uporabnikov je bilo preseženo", + "DE.Controllers.Main.leavePageText": "V tem dokumentu se nahajajo neshranjene spremembe. Kliknite »Ostani na tej strani«, da počakate na samodejno shranjevanje dokumenta. Kliknite »Zapusti to stran«, če želite zavreči vse neshranjene spremembe.", "DE.Controllers.Main.loadFontsTextText": "Nalaganje podatkov ...", "DE.Controllers.Main.loadFontsTitleText": "Nalaganje podatkov", "DE.Controllers.Main.loadFontTextText": "Nalaganje podatkov ...", @@ -174,6 +194,10 @@ "DE.Controllers.Main.savePreparingTitle": "Priprava za shranjevanje. Prosim počakajte ...", "DE.Controllers.Main.saveTextText": "Shranjevanje dokumenta ...", "DE.Controllers.Main.saveTitleText": "Shranjevanje dokumenta", + "DE.Controllers.Main.scriptLoadError": "Povezava je počasna, nekatere komponente niso pravilno naložene. Prosimo osvežite stran.", + "DE.Controllers.Main.splitDividerErrorText": "Število vrstic mora biti deljivo s številom %1", + "DE.Controllers.Main.splitMaxColsErrorText": "Število stolpcev mora biti manjše od %1", + "DE.Controllers.Main.splitMaxRowsErrorText": "Število vrstic mora biti manjše od %1", "DE.Controllers.Main.textAnonymous": "Anonimno", "DE.Controllers.Main.textBack": "Nazaj", "DE.Controllers.Main.textBuyNow": "Obišči spletno mesto", @@ -181,6 +205,7 @@ "DE.Controllers.Main.textClose": "Zapri", "DE.Controllers.Main.textContactUs": "Kontaktirajte oddelek za prodajo", "DE.Controllers.Main.textDone": "Končano", + "DE.Controllers.Main.textHasMacros": "Ta datoteka vsebuje avtomatske makroje.
            Jih želite res zagnati.", "DE.Controllers.Main.textLoadingDocument": "Nalaganje dokumenta", "DE.Controllers.Main.textNo": "Ne", "DE.Controllers.Main.textNoLicenseTitle": "%1 omejitev povezave", @@ -189,6 +214,7 @@ "DE.Controllers.Main.textPassword": "Geslo", "DE.Controllers.Main.textPreloader": "Nalaganje ...", "DE.Controllers.Main.textRemember": "Zapomni si mojo izbiro", + "DE.Controllers.Main.textTryUndoRedo": "Funkcije Undo / Redo so onemogočene za način hitrega urejanja.", "DE.Controllers.Main.textUsername": "Uporabniško ime", "DE.Controllers.Main.textYes": "Da", "DE.Controllers.Main.titleLicenseExp": "Licenca je potekla", @@ -213,6 +239,7 @@ "DE.Controllers.Main.txtStyle_No_Spacing": "Brez razmika", "DE.Controllers.Main.txtStyle_Normal": "Normalno", "DE.Controllers.Main.txtStyle_Quote": "Citiraj", + "DE.Controllers.Main.txtStyle_Subtitle": "Podnaslov", "DE.Controllers.Main.txtStyle_Title": "Naslov", "DE.Controllers.Main.txtXAxis": "X os", "DE.Controllers.Main.txtYAxis": "Y os", @@ -224,6 +251,11 @@ "DE.Controllers.Main.uploadImageTextText": "Nalaganje slike ...", "DE.Controllers.Main.uploadImageTitleText": "Nalaganje slike", "DE.Controllers.Main.waitText": "Prosimo počakajte ...", + "DE.Controllers.Main.warnLicenseExceeded": "Dosegli ste omejitev za istočasno povezavo z urejevalniki %1. Ta dokument bo na voljo samo za ogled.
            Če želite izvedeti več, se obrnite na skrbnika.", + "DE.Controllers.Main.warnLicenseExp": "Vaša licnenca je potekla.
            Prosimo nadgradite licenco in osvežite stran.", + "DE.Controllers.Main.warnLicenseUsersExceeded": "Dosegli ste omejitev uporabnikov za %1 urednike. Če želite izvedeti več, se obrnite na skrbnika.", + "DE.Controllers.Main.warnNoLicense": "Dosegli ste omejitev za istočasno povezavo z urejevalniki %1. Ta dokument bo na voljo samo za ogled.
            Za osebne pogoje nadgradnje se obrnite na %1 prodajno ekipo.", + "DE.Controllers.Main.warnNoLicenseUsers": "Dosegli ste omejitev uporabnika za %1 urednike. Za osebne pogoje nadgradnje se obrnite na %1 prodajno ekipo.", "DE.Controllers.Main.warnProcessRightsChange": "Pravica, da urejate datoteko je bila zavrnjena.", "DE.Controllers.Search.textNoTextFound": "Besedila ni mogoče najti", "DE.Controllers.Search.textReplaceAll": "Zamenjaj vse", @@ -232,7 +264,10 @@ "DE.Controllers.Settings.txtLoading": "Nalaganje ...", "DE.Controllers.Settings.unknownText": "Neznan", "DE.Controllers.Settings.warnDownloadAs": "Če boste nadaljevali s shranjevanje v tem formatu bodo vse funkcije razen besedila izgubljene.
            Ste prepričani, da želite nadaljevati?", + "DE.Controllers.Toolbar.dlgLeaveMsgText": "V tem dokumentu se nahajajo neshranjene spremembe. Kliknite »Ostani na tej strani«, da počakate na samodejno shranjevanje dokumenta. Kliknite »Zapusti to stran«, če želite zavreči vse neshranjene spremembe.", + "DE.Controllers.Toolbar.dlgLeaveTitleText": "Zapuščate aplikacijo", "DE.Controllers.Toolbar.leaveButtonText": "Zapusti to stran", + "DE.Controllers.Toolbar.stayButtonText": "Ostani na tej strani", "DE.Views.AddImage.textAddress": "Naslov", "DE.Views.AddImage.textBack": "Nazaj", "DE.Views.AddImage.textFromLibrary": "Slika iz knjižnice", @@ -244,6 +279,8 @@ "DE.Views.AddOther.textAddLink": "Dodaj povezavo", "DE.Views.AddOther.textBack": "Nazaj", "DE.Views.AddOther.textBreak": "Prelom", + "DE.Views.AddOther.textCenterBottom": "Sredina spodaj", + "DE.Views.AddOther.textCenterTop": "Sredina zgoraj", "DE.Views.AddOther.textColumnBreak": "Prelom stolpca", "DE.Views.AddOther.textComment": "Komentar", "DE.Views.AddOther.textContPage": "Nadaljuj stran", @@ -267,6 +304,8 @@ "DE.Views.AddOther.textRightBottom": "Desno spodaj", "DE.Views.AddOther.textRightTop": "Desno zgoraj", "DE.Views.AddOther.textSectionBreak": "Prelom sekcije", + "DE.Views.AddOther.textStartFrom": "Začni pri", + "DE.Views.AddOther.textTip": "Nasvet", "DE.Views.EditChart.textAddCustomColor": "Dodaj barvo po meri", "DE.Views.EditChart.textAlign": "Poravnava", "DE.Views.EditChart.textBack": "Nazaj", @@ -288,18 +327,21 @@ "DE.Views.EditChart.textSquare": "Kvadrat", "DE.Views.EditChart.textStyle": "Slog", "DE.Views.EditChart.textThrough": "Preko", + "DE.Views.EditChart.textTight": "Tesen", "DE.Views.EditChart.textToBackground": "Pošlji v ozadje", "DE.Views.EditChart.textToForeground": "Premakni v ospredje", "DE.Views.EditChart.textTopBottom": "Vrh in dno", "DE.Views.EditChart.textType": "Tip", "DE.Views.EditHeader.textDiffFirst": "Različna prva stran", "DE.Views.EditHeader.textDiffOdd": "Različne sode in lihe strani", + "DE.Views.EditHeader.textFrom": "Začni pri", "DE.Views.EditHeader.textPageNumbering": "Oštevilčevanje strani", "DE.Views.EditHeader.textSameAs": "Povezava k prejšnji", "DE.Views.EditHyperlink.textDisplay": "Prikaži", "DE.Views.EditHyperlink.textEdit": "Uredi povezavo", "DE.Views.EditHyperlink.textLink": "Povezava", "DE.Views.EditHyperlink.textRemove": "Odstrani povezavo", + "DE.Views.EditHyperlink.textTip": "Nasvet", "DE.Views.EditImage.textAddress": "Naslov", "DE.Views.EditImage.textAlign": "Poravnava", "DE.Views.EditImage.textBack": "Nazaj", @@ -322,6 +364,7 @@ "DE.Views.EditImage.textReplaceImg": "Zamenjaj sliko", "DE.Views.EditImage.textSquare": "Kvadrat", "DE.Views.EditImage.textThrough": "Preko", + "DE.Views.EditImage.textTight": "Tesen", "DE.Views.EditImage.textToBackground": "Pošlji v ozadje", "DE.Views.EditImage.textToForeground": "Premakni v ospredje", "DE.Views.EditImage.textTopBottom": "Vrh in dno", @@ -340,6 +383,7 @@ "DE.Views.EditParagraph.textKeepNext": "Ohrani z naslednjim", "DE.Views.EditParagraph.textPageBreak": "Prelom strani pred", "DE.Views.EditParagraph.textPrgStyles": "Oblikovanje odstavka", + "DE.Views.EditParagraph.textSpaceBetween": "Razmik med odstavki", "DE.Views.EditShape.textAddCustomColor": "Dodaj barvo po meri", "DE.Views.EditShape.textAlign": "Poravnava", "DE.Views.EditShape.textBack": "Nazaj", @@ -363,6 +407,7 @@ "DE.Views.EditShape.textSquare": "Kvadrat", "DE.Views.EditShape.textStyle": "Slog", "DE.Views.EditShape.textThrough": "Preko", + "DE.Views.EditShape.textTight": "Tesen", "DE.Views.EditShape.textToBackground": "Pošlji v ozadje", "DE.Views.EditShape.textToForeground": "Premakni v ospredje", "DE.Views.EditShape.textTopAndBottom": "Vrh in dno", @@ -370,6 +415,8 @@ "DE.Views.EditTable.textAddCustomColor": "Dodaj barvo po meri", "DE.Views.EditTable.textAlign": "Poravnava", "DE.Views.EditTable.textBack": "Nazaj", + "DE.Views.EditTable.textBandedColumn": "Stolpec", + "DE.Views.EditTable.textBandedRow": "Povezana vrstica", "DE.Views.EditTable.textBorder": "Obrobe", "DE.Views.EditTable.textCellMargins": "Robovi celice", "DE.Views.EditTable.textColor": "Barva", @@ -385,6 +432,8 @@ "DE.Views.EditTable.textRemoveTable": "Odstrani tabelo", "DE.Views.EditTable.textSize": "Velikost", "DE.Views.EditTable.textStyle": "Slog", + "DE.Views.EditTable.textStyleOptions": "Možnosti oblikovanja", + "DE.Views.EditTable.textTableOptions": "Možnosti tabele", "DE.Views.EditTable.textTotalRow": "Skupno število vrstic", "DE.Views.EditTable.textWithText": "Premakni z besedilom", "DE.Views.EditText.textAddCustomColor": "Dodaj barvo po meri", @@ -411,6 +460,8 @@ "DE.Views.EditText.textNone": "Nič", "DE.Views.EditText.textNumbers": "Števila", "DE.Views.EditText.textSize": "Velikost", + "DE.Views.EditText.textSmallCaps": "Male črke", + "DE.Views.EditText.textStrikethrough": "Prečrtano", "DE.Views.EditText.textSubscript": "Podpisano", "DE.Views.Search.textCase": "Občutljiv na velike in male črke", "DE.Views.Search.textDone": "Končano", @@ -475,9 +526,14 @@ "DE.Views.Settings.textPoweredBy": "Poganja", "DE.Views.Settings.textPrint": "Natisni", "DE.Views.Settings.textReader": "Način branja", + "DE.Views.Settings.textReview": "Sledi spremembam", "DE.Views.Settings.textRight": "Desno", "DE.Views.Settings.textSettings": "Nastavitve", "DE.Views.Settings.textShowNotification": "Prikaži obvestila", + "DE.Views.Settings.textSpaces": "Razmiki", + "DE.Views.Settings.textSpellcheck": "Preverjanje črkovanja", + "DE.Views.Settings.textStatistic": "Statistika", + "DE.Views.Settings.textSubject": "Zadeva", "DE.Views.Settings.textSymbols": "Simboli", "DE.Views.Settings.textTel": "Telefon", "DE.Views.Settings.textTitle": "Naslov", diff --git a/apps/documenteditor/mobile/locale/uk.json b/apps/documenteditor/mobile/locale/uk.json index aedd3b39e..c123be1ad 100644 --- a/apps/documenteditor/mobile/locale/uk.json +++ b/apps/documenteditor/mobile/locale/uk.json @@ -1,23 +1,55 @@ { + "Common.Controllers.Collaboration.textAddReply": "Додати відповідь", + "Common.Controllers.Collaboration.textAuto": "Авто", "Common.Controllers.Collaboration.textBold": "Грубий", + "Common.Controllers.Collaboration.textCancel": "Скасувати", + "Common.Controllers.Collaboration.textCaps": "Усі великі", + "Common.Controllers.Collaboration.textCenter": "Вирівняти по центру", "Common.Controllers.Collaboration.textChart": "Діаграма", "Common.Controllers.Collaboration.textColor": "Колір шрифту", + "Common.Controllers.Collaboration.textDelete": "Видалити", + "Common.Controllers.Collaboration.textDeleteComment": "Видалити коментар", "Common.Controllers.Collaboration.textDeleted": "Вилучено:", + "Common.Controllers.Collaboration.textDone": "Готово", + "Common.Controllers.Collaboration.textEdit": "Редагувати", + "Common.Controllers.Collaboration.textEquation": "Рівняння", + "Common.Controllers.Collaboration.textFirstLine": "Перша строка", "Common.Controllers.Collaboration.textHighlight": "Колір позначення", + "Common.Controllers.Collaboration.textImage": "Зображення", "Common.Controllers.Collaboration.textInserted": "Вставлено:", + "Common.Controllers.Collaboration.textItalic": "Курсив", + "Common.Controllers.Collaboration.textJustify": "Вирівняти по ширині", + "Common.Controllers.Collaboration.textLeft": "Вирівняти зліва", + "Common.Controllers.Collaboration.textMultiple": "множник", + "Common.Controllers.Collaboration.textNoContextual": "Додати інтервал між абзацами того ж стилю", + "Common.Controllers.Collaboration.textNot": "Не", "Common.Controllers.Collaboration.textNum": "Зміна нумерації", + "Common.Controllers.Collaboration.textRight": "Вирівняти справа", + "Common.Controllers.Collaboration.textShape": "Фігура", "Common.Controllers.Collaboration.textShd": "Колір тла", + "Common.Controllers.Collaboration.textSpacing": "Інтервал", "Common.Controllers.Collaboration.textTabs": "Змінити вкладки", + "Common.Controllers.Collaboration.textYes": "Так", "Common.UI.ThemeColorPalette.textCustomColors": "Власні кольори", "Common.UI.ThemeColorPalette.textStandartColors": "Стандартні кольори", "Common.UI.ThemeColorPalette.textThemeColors": "Кольори теми", "Common.Utils.Metric.txtCm": "см", "Common.Utils.Metric.txtPt": "Пт", + "Common.Views.Collaboration.textAccept": "Прийняти", + "Common.Views.Collaboration.textAddReply": "Додати відповідь", "Common.Views.Collaboration.textBack": "Назад", + "Common.Views.Collaboration.textCancel": "Скасувати", "Common.Views.Collaboration.textCollaboration": "Співпраця", + "Common.Views.Collaboration.textDisplayMode": "Режим показу", + "Common.Views.Collaboration.textDone": "Готово", + "Common.Views.Collaboration.textEditUsers": "Користувачі", + "Common.Views.Collaboration.textEditСomment": "Редагувати коментар", "Common.Views.Collaboration.textFinal": "Фінальний", "Common.Views.Collaboration.textMarkup": "Зміни", "Common.Views.Collaboration.textOriginal": "Початковий", + "Common.Views.Collaboration.textReject": "Відхилити", + "Common.Views.Collaboration.textRejectAllChanges": "Відхилити усі зміни", + "Common.Views.Collaboration.textСomments": "Коментаріі", "DE.Controllers.AddContainer.textImage": "Зображення", "DE.Controllers.AddContainer.textOther": "Інший", "DE.Controllers.AddContainer.textShape": "Форма", @@ -26,15 +58,20 @@ "DE.Controllers.AddImage.txtNotUrl": "Це поле має бути URL-адресою у форматі \"http://www.example.com\"", "DE.Controllers.AddOther.textBelowText": "Нижче тексту", "DE.Controllers.AddOther.textBottomOfPage": "Внизу сторінки", + "DE.Controllers.AddOther.textCancel": "Скасувати", + "DE.Controllers.AddOther.textContinue": "Продовжити", + "DE.Controllers.AddOther.textDelete": "Видалити", "DE.Controllers.AddOther.txtNotUrl": "Це поле має бути URL-адресою у форматі \"http://www.example.com\"", "DE.Controllers.AddTable.textCancel": "Скасувати", "DE.Controllers.AddTable.textColumns": "Стовпці", "DE.Controllers.AddTable.textRows": "Рядки", "DE.Controllers.AddTable.textTableSize": "Розмір таблиці", + "DE.Controllers.DocumentHolder.menuAddComment": "Додати коментар", "DE.Controllers.DocumentHolder.menuAddLink": "Додати посилання", "DE.Controllers.DocumentHolder.menuCopy": "Копіювати", "DE.Controllers.DocumentHolder.menuCut": "Вирізати", "DE.Controllers.DocumentHolder.menuDelete": "Видалити", + "DE.Controllers.DocumentHolder.menuDeleteTable": "Видалити таблицю", "DE.Controllers.DocumentHolder.menuEdit": "Редагувати", "DE.Controllers.DocumentHolder.menuMore": "Більше", "DE.Controllers.DocumentHolder.menuOpenLink": "Відкрити посилання", @@ -42,7 +79,9 @@ "DE.Controllers.DocumentHolder.sheetCancel": "Скасувати", "DE.Controllers.DocumentHolder.textCancel": "Скасувати", "DE.Controllers.DocumentHolder.textColumns": "Стовпці", + "DE.Controllers.DocumentHolder.textDoNotShowAgain": "Більше не відображати", "DE.Controllers.DocumentHolder.textGuest": "Гість", + "DE.Controllers.DocumentHolder.textRows": "Рядки", "DE.Controllers.EditContainer.textChart": "Діаграма", "DE.Controllers.EditContainer.textHyperlink": "Гіперсилка", "DE.Controllers.EditContainer.textImage": "Зображення", @@ -88,7 +127,7 @@ "DE.Controllers.Main.errorUpdateVersion": "Версія файлу була змінена. Сторінка буде перезавантажена.", "DE.Controllers.Main.errorUserDrop": "На даний момент файл не доступний.", "DE.Controllers.Main.errorUsersExceed": "Кількість користувачів перевищено", - "DE.Controllers.Main.errorViewerDisconnect": "З'єднання втрачено. Ви все ще можете переглянути документ
            , але не зможете завантажувати його до відновлення.", + "DE.Controllers.Main.errorViewerDisconnect": "З'єднання втрачено. Ви все ще можете переглянути документ,
            але не зможете завантажувати його до відновлення зеднання та оновлення сторінки.", "DE.Controllers.Main.leavePageText": "У цьому документі є незбережені зміни. Натисніть \"Залишатися на цій сторінці\", щоб дочекатись автоматичного збереження документа. Натисніть \"Покинути цю сторінку\", щоб відхилити всі незбережені зміни.", "DE.Controllers.Main.loadFontsTextText": "Завантаження дати...", "DE.Controllers.Main.loadFontsTitleText": "Дата завантаження", @@ -126,12 +165,14 @@ "DE.Controllers.Main.textContactUs": "Відділ продажів", "DE.Controllers.Main.textDone": "Готово", "DE.Controllers.Main.textLoadingDocument": "Завантаження документа", - "DE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE відкрита версія", + "DE.Controllers.Main.textNo": "Ні", + "DE.Controllers.Main.textNoLicenseTitle": "Досягнуто ліміту ліцензії", "DE.Controllers.Main.textOK": "OК", "DE.Controllers.Main.textPassword": "Пароль", "DE.Controllers.Main.textPreloader": "Завантаження...", "DE.Controllers.Main.textTryUndoRedo": "Функції Undo / Redo відключені для режиму швидкого редагування.", "DE.Controllers.Main.textUsername": "Ім'я користувача", + "DE.Controllers.Main.textYes": "Так", "DE.Controllers.Main.titleLicenseExp": "Термін дії ліцензії закінчився", "DE.Controllers.Main.titleServerVersion": "Редактор оновлено", "DE.Controllers.Main.titleUpdateVersion": "Версію змінено", @@ -164,12 +205,14 @@ "DE.Controllers.Main.uploadImageSizeMessage": "Максимальний розмір зображення перевищено.", "DE.Controllers.Main.uploadImageTextText": "Завантаження зображення...", "DE.Controllers.Main.uploadImageTitleText": "Завантаження зображення", + "DE.Controllers.Main.waitText": "Будь ласка, зачекайте...", "DE.Controllers.Main.warnLicenseExp": "Термін дії вашої ліцензії минув.
            Будь ласка, оновіть свою ліцензію та оновіть сторінку.", "DE.Controllers.Main.warnNoLicense": "Ви використовуєте відкриту версію %1. Ця версія має обмеження для одночасного підключення до сервера документів (20 підключень за один раз).
            Якщо вам потрібно більше, подумайте про придбання комерційної ліцензії.", "DE.Controllers.Main.warnProcessRightsChange": "Вам відмовлено у наданні права редагувати файл.", "DE.Controllers.Search.textNoTextFound": "Текст не знайдено", "DE.Controllers.Search.textReplaceAll": "Замінити усе", "DE.Controllers.Settings.notcriticalErrorTitle": "Застереження", + "DE.Controllers.Settings.textCustomSize": "Спеціальний розмір", "DE.Controllers.Settings.txtLoading": "Завантаження...", "DE.Controllers.Settings.unknownText": "Невідомий", "DE.Controllers.Settings.warnDownloadAs": "Якщо ви продовжите збереження в цьому форматі, всі функції, окрім тексту, буде втрачено.
            Ви впевнені, що хочете продовжити?", @@ -184,15 +227,19 @@ "DE.Views.AddImage.textImageURL": "URL зображення", "DE.Views.AddImage.textInsertImage": "Вставити зображення", "DE.Views.AddImage.textLinkSettings": "Налаштування посилання", + "DE.Views.AddOther.textAddComment": "Додати коментар", "DE.Views.AddOther.textAddLink": "Додати посилання", "DE.Views.AddOther.textBack": "Назад", "DE.Views.AddOther.textCenterBottom": "Центр внизу", "DE.Views.AddOther.textCenterTop": "Центр зверху", "DE.Views.AddOther.textColumnBreak": "Розрив стовпця", + "DE.Views.AddOther.textComment": "Коментар", "DE.Views.AddOther.textContPage": "Неперервна Сторінка", "DE.Views.AddOther.textCurrentPos": "Поточна позиція", "DE.Views.AddOther.textDisplay": "Дісплей", + "DE.Views.AddOther.textDone": "Готово", "DE.Views.AddOther.textEvenPage": "Навіть сторінка", + "DE.Views.AddOther.textFormat": "Формат", "DE.Views.AddOther.textInsert": "Вставити", "DE.Views.AddOther.textLeftBottom": "Зліва знизу", "DE.Views.AddOther.textLeftTop": "Зліва направо", @@ -233,6 +280,8 @@ "DE.Views.EditChart.textTopBottom": "Верх і низ", "DE.Views.EditChart.textType": "Тип", "DE.Views.EditChart.textWrap": "Обернути", + "DE.Views.EditHeader.textDiffFirst": "Різна перша сторінка", + "DE.Views.EditHeader.textDiffOdd": "Різні непарні та рівноцінні сторінки", "DE.Views.EditHyperlink.textDisplay": "Дісплей", "DE.Views.EditHyperlink.textEdit": "Редагувати посилання", "DE.Views.EditHyperlink.textLink": "Посилання", @@ -243,7 +292,7 @@ "DE.Views.EditImage.textBack": "Назад", "DE.Views.EditImage.textBackward": "Перемістити назад", "DE.Views.EditImage.textBehind": "Позаду", - "DE.Views.EditImage.textDefault": "За замовчуванням", + "DE.Views.EditImage.textDefault": "Реальний розмір", "DE.Views.EditImage.textDistanceText": "Відстань від тексту", "DE.Views.EditImage.textForward": "Перемістити вперед", "DE.Views.EditImage.textFromLibrary": "Зображення з бібліотеки", @@ -267,13 +316,14 @@ "DE.Views.EditImage.textWrap": "Обернути", "DE.Views.EditParagraph.textAddCustomColor": "Додати власний колір", "DE.Views.EditParagraph.textAdvanced": "Розширений", - "DE.Views.EditParagraph.textAdvSettings": "Розширені налаштування", + "DE.Views.EditParagraph.textAdvSettings": "Додаткові налаштування", "DE.Views.EditParagraph.textAfter": "після", "DE.Views.EditParagraph.textAuto": "Авто", "DE.Views.EditParagraph.textBack": "Назад", "DE.Views.EditParagraph.textBackground": "Задній фон", "DE.Views.EditParagraph.textBefore": "Перед", "DE.Views.EditParagraph.textCustomColor": "Власний колір", + "DE.Views.EditParagraph.textFirstLine": "Перша строка", "DE.Views.EditParagraph.textFromText": "Відстань від тексту", "DE.Views.EditParagraph.textKeepLines": "Тримайте лінії разом", "DE.Views.EditParagraph.textKeepNext": "Зберегати з текстом", @@ -369,15 +419,20 @@ "DE.Views.Search.textSearch": "Пошук", "DE.Views.Settings.textAbout": "Про", "DE.Views.Settings.textAddress": "Адреса", + "DE.Views.Settings.textApplication": "Додаток", "DE.Views.Settings.textAuthor": "Автор", "DE.Views.Settings.textBack": "Назад", "DE.Views.Settings.textBottom": "Внизу", "DE.Views.Settings.textCentimeter": "Сантиметр", "DE.Views.Settings.textCollaboration": "Співпраця", "DE.Views.Settings.textColorSchemes": "Схеми кольорів", + "DE.Views.Settings.textComment": "Коментар", + "DE.Views.Settings.textCreated": "Створено", "DE.Views.Settings.textCreateDate": "Дата створення", "DE.Views.Settings.textCustom": "Користувальницький", "DE.Views.Settings.textCustomSize": "Спеціальний розмір", + "DE.Views.Settings.textDisableAll": "Вимкнути все", + "DE.Views.Settings.textDisplayComments": "Коментарі", "DE.Views.Settings.textDocInfo": "Інофрмація документа", "DE.Views.Settings.textDocTitle": "Назва документу", "DE.Views.Settings.textDocumentFormats": "Формати документа", @@ -387,23 +442,30 @@ "DE.Views.Settings.textDownloadAs": "Завантажити як...", "DE.Views.Settings.textEditDoc": "Редагувати документ", "DE.Views.Settings.textEmail": "Пошта", + "DE.Views.Settings.textEnableAll": "Увімкнути все", "DE.Views.Settings.textFind": "Знайти", "DE.Views.Settings.textFindAndReplace": "Знайти та перемістити", "DE.Views.Settings.textFormat": "Формат", "DE.Views.Settings.textHelp": "Допомога", "DE.Views.Settings.textLandscape": "ландшафт", + "DE.Views.Settings.textLastModifiedBy": "Востаннє змінено", + "DE.Views.Settings.textLeft": "Лівий", "DE.Views.Settings.textLoading": "Завантаження...", "DE.Views.Settings.textOrientation": "Орієнтація", + "DE.Views.Settings.textOwner": "Власник", "DE.Views.Settings.textPages": "Сторінки", "DE.Views.Settings.textParagraphs": "Параграфи", "DE.Views.Settings.textPortrait": "Портрет", "DE.Views.Settings.textPoweredBy": "Під керуванням", + "DE.Views.Settings.textPrint": "Роздрукувати", "DE.Views.Settings.textReader": "Режим читання", + "DE.Views.Settings.textRight": "Право", "DE.Views.Settings.textSettings": "Налаштування", "DE.Views.Settings.textSpaces": "Пробіли", "DE.Views.Settings.textStatistic": "Статистика", "DE.Views.Settings.textSymbols": "Символи", "DE.Views.Settings.textTel": "Телефон", + "DE.Views.Settings.textTitle": "Заголовок", "DE.Views.Settings.textVersion": "Версія", "DE.Views.Settings.textWords": "Слова", "DE.Views.Settings.unknownText": "Невідомий", diff --git a/apps/documenteditor/mobile/locale/zh.json b/apps/documenteditor/mobile/locale/zh.json index 44db04468..fcd2cbc40 100644 --- a/apps/documenteditor/mobile/locale/zh.json +++ b/apps/documenteditor/mobile/locale/zh.json @@ -1,16 +1,23 @@ { + "Common.Controllers.Collaboration.textAddReply": "添加回复", "Common.Controllers.Collaboration.textAtLeast": "至少", "Common.Controllers.Collaboration.textAuto": "自动", "Common.Controllers.Collaboration.textBaseline": "基线", "Common.Controllers.Collaboration.textBold": "加粗", "Common.Controllers.Collaboration.textBreakBefore": "分页前", + "Common.Controllers.Collaboration.textCancel": "取消", "Common.Controllers.Collaboration.textCaps": "全部大写", "Common.Controllers.Collaboration.textCenter": "居中对齐", "Common.Controllers.Collaboration.textChart": "图表", "Common.Controllers.Collaboration.textColor": "字体颜色", "Common.Controllers.Collaboration.textContextual": "不要在相同样式的段落之间添加间隔", + "Common.Controllers.Collaboration.textDelete": "删除", + "Common.Controllers.Collaboration.textDeleteComment": "删除注释", "Common.Controllers.Collaboration.textDeleted": "已删除:", + "Common.Controllers.Collaboration.textDeleteReply": "删除回复", + "Common.Controllers.Collaboration.textDone": "完成", "Common.Controllers.Collaboration.textDStrikeout": "双删除线", + "Common.Controllers.Collaboration.textEdit": "编辑", "Common.Controllers.Collaboration.textEditUser": "文件正在被多个用户编辑。", "Common.Controllers.Collaboration.textEquation": "方程", "Common.Controllers.Collaboration.textExact": "精确", @@ -27,8 +34,11 @@ "Common.Controllers.Collaboration.textKeepNext": "与下一个保持一致", "Common.Controllers.Collaboration.textLeft": "左对齐", "Common.Controllers.Collaboration.textLineSpacing": "行间距:", + "Common.Controllers.Collaboration.textMessageDeleteComment": "你确定要删除这一注释吗?", + "Common.Controllers.Collaboration.textMessageDeleteReply": "你确定要删除这一回复吗?", "Common.Controllers.Collaboration.textMultiple": "倍数", "Common.Controllers.Collaboration.textNoBreakBefore": "之前没有分页", + "Common.Controllers.Collaboration.textNoChanges": "未进行任何修改。", "Common.Controllers.Collaboration.textNoContextual": "在相同样式的段落之间添加间隔", "Common.Controllers.Collaboration.textNoKeepLines": "不要保持一行", "Common.Controllers.Collaboration.textNoKeepNext": "不要跟着下一个", @@ -42,6 +52,8 @@ "Common.Controllers.Collaboration.textParaMoveFromUp": "已上移", "Common.Controllers.Collaboration.textParaMoveTo": "已移动", "Common.Controllers.Collaboration.textPosition": "职位", + "Common.Controllers.Collaboration.textReopen": "重新打开", + "Common.Controllers.Collaboration.textResolve": "解决", "Common.Controllers.Collaboration.textRight": "右对齐", "Common.Controllers.Collaboration.textShape": "形状", "Common.Controllers.Collaboration.textShd": "背景颜色", @@ -58,21 +70,32 @@ "Common.Controllers.Collaboration.textTabs": "更改选项卡", "Common.Controllers.Collaboration.textUnderline": "下划线", "Common.Controllers.Collaboration.textWidow": "窗口控制", + "Common.Controllers.Collaboration.textYes": "是", "Common.UI.ThemeColorPalette.textCustomColors": "自定义颜色", "Common.UI.ThemeColorPalette.textStandartColors": "标准颜色", "Common.UI.ThemeColorPalette.textThemeColors": "主题颜色", "Common.Utils.Metric.txtCm": "厘米", "Common.Utils.Metric.txtPt": "像素", + "Common.Views.Collaboration.textAccept": "接受", "Common.Views.Collaboration.textAcceptAllChanges": "接受所有更改", + "Common.Views.Collaboration.textAddReply": "添加回复", + "Common.Views.Collaboration.textAllChangesAcceptedPreview": "已经接受所有更改 (预览)", + "Common.Views.Collaboration.textAllChangesEditing": "所有更改 (编辑中)", + "Common.Views.Collaboration.textAllChangesRejectedPreview": "已经否决所有更改 (预览)", "Common.Views.Collaboration.textBack": "返回", + "Common.Views.Collaboration.textCancel": "取消", "Common.Views.Collaboration.textChange": "审查变更", "Common.Views.Collaboration.textCollaboration": "协作", "Common.Views.Collaboration.textDisplayMode": "显示模式", + "Common.Views.Collaboration.textDone": "完成", + "Common.Views.Collaboration.textEditReply": "编辑回复", "Common.Views.Collaboration.textEditUsers": "用户", + "Common.Views.Collaboration.textEditСomment": "编辑注释", "Common.Views.Collaboration.textFinal": "最终版", "Common.Views.Collaboration.textMarkup": "标记", "Common.Views.Collaboration.textNoComments": "这个文档没包括评论", "Common.Views.Collaboration.textOriginal": "原始版", + "Common.Views.Collaboration.textReject": "拒绝", "Common.Views.Collaboration.textRejectAllChanges": "拒绝所有更改", "Common.Views.Collaboration.textReview": "跟踪变化", "Common.Views.Collaboration.textReviewing": "审阅", @@ -85,12 +108,17 @@ "DE.Controllers.AddImage.txtNotUrl": "该字段应为“http://www.example.com”格式的URL", "DE.Controllers.AddOther.textBelowText": "文字下方", "DE.Controllers.AddOther.textBottomOfPage": "页面底部", + "DE.Controllers.AddOther.textCancel": "取消", + "DE.Controllers.AddOther.textContinue": "继续", + "DE.Controllers.AddOther.textDelete": "删除", + "DE.Controllers.AddOther.textDeleteDraft": "你确定要删除这一稿吗?", "DE.Controllers.AddOther.txtNotUrl": "该字段应为“http://www.example.com”格式的URL", "DE.Controllers.AddTable.textCancel": "取消", "DE.Controllers.AddTable.textColumns": "列", "DE.Controllers.AddTable.textRows": "行", "DE.Controllers.AddTable.textTableSize": "表格大小", "DE.Controllers.DocumentHolder.errorCopyCutPaste": "使用上下文菜单的复制、剪切和粘贴操作将仅在当前文件中执行。", + "DE.Controllers.DocumentHolder.menuAddComment": "添加注释", "DE.Controllers.DocumentHolder.menuAddLink": "增加链接", "DE.Controllers.DocumentHolder.menuCopy": "复制", "DE.Controllers.DocumentHolder.menuCut": "剪切", @@ -104,6 +132,7 @@ "DE.Controllers.DocumentHolder.menuReview": "检查", "DE.Controllers.DocumentHolder.menuReviewChange": "审查变更", "DE.Controllers.DocumentHolder.menuSplit": "拆分单元格", + "DE.Controllers.DocumentHolder.menuViewComment": "查看注释", "DE.Controllers.DocumentHolder.sheetCancel": "取消", "DE.Controllers.DocumentHolder.textCancel": "取消", "DE.Controllers.DocumentHolder.textColumns": "列", @@ -156,6 +185,7 @@ "DE.Controllers.Main.errorKeyExpire": "密钥过期", "DE.Controllers.Main.errorMailMergeLoadFile": "加载失败", "DE.Controllers.Main.errorMailMergeSaveFile": "合并失败", + "DE.Controllers.Main.errorOpensource": "这个免费的社区版本只能够用来查看文件。要想在手机上使用在线编辑工具,请购买商业版。", "DE.Controllers.Main.errorProcessSaveResult": "保存失败", "DE.Controllers.Main.errorServerVersion": "该编辑版本已经更新。该页面将被重新加载以应用更改。", "DE.Controllers.Main.errorStockChart": "行顺序不正确。建立股票图表将数据按照以下顺序放置在表格上:
            开盘价,最高价格,最低价格,收盘价。", @@ -202,14 +232,18 @@ "DE.Controllers.Main.textContactUs": "联系销售", "DE.Controllers.Main.textCustomLoader": "请注意,根据许可条款您无权更改加载程序。
            请联系我们的销售部门获取报价。", "DE.Controllers.Main.textDone": "完成", + "DE.Controllers.Main.textHasMacros": "这个文件带有自动宏。
            是否要运行宏?", "DE.Controllers.Main.textLoadingDocument": "文件加载中…", - "DE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE开源版本", + "DE.Controllers.Main.textNo": "不", + "DE.Controllers.Main.textNoLicenseTitle": "限制连接数为 %1 ", "DE.Controllers.Main.textOK": "确定", "DE.Controllers.Main.textPaidFeature": "付费功能", "DE.Controllers.Main.textPassword": "密码", "DE.Controllers.Main.textPreloader": "载入中……", + "DE.Controllers.Main.textRemember": "记住我的选择", "DE.Controllers.Main.textTryUndoRedo": "快速共同编辑模式下,Undo / Redo功能被禁用。", "DE.Controllers.Main.textUsername": "用户名", + "DE.Controllers.Main.textYes": "是", "DE.Controllers.Main.titleLicenseExp": "许可证过期", "DE.Controllers.Main.titleServerVersion": "编辑器已更新", "DE.Controllers.Main.titleUpdateVersion": "版本已变化", @@ -256,6 +290,7 @@ "DE.Controllers.Search.textNoTextFound": "文本没找到", "DE.Controllers.Search.textReplaceAll": "全部替换", "DE.Controllers.Settings.notcriticalErrorTitle": "警告", + "DE.Controllers.Settings.textCustomSize": "自定义大小", "DE.Controllers.Settings.txtLoading": "载入中……", "DE.Controllers.Settings.unknownText": "未知", "DE.Controllers.Settings.warnDownloadAs": "如果您继续以此格式保存,除文本之外的所有功能将丢失。
            您确定要继续吗?", @@ -271,14 +306,18 @@ "DE.Views.AddImage.textImageURL": "图片地址", "DE.Views.AddImage.textInsertImage": "插入图像", "DE.Views.AddImage.textLinkSettings": "链接设置", + "DE.Views.AddOther.textAddComment": "添加注释", "DE.Views.AddOther.textAddLink": "增加链接", "DE.Views.AddOther.textBack": "返回", + "DE.Views.AddOther.textBreak": "换行", "DE.Views.AddOther.textCenterBottom": "中间底部", "DE.Views.AddOther.textCenterTop": "中心顶部", "DE.Views.AddOther.textColumnBreak": "分栏", + "DE.Views.AddOther.textComment": "注释", "DE.Views.AddOther.textContPage": "连续页", "DE.Views.AddOther.textCurrentPos": "当前位置", "DE.Views.AddOther.textDisplay": "展示", + "DE.Views.AddOther.textDone": "完成", "DE.Views.AddOther.textEvenPage": "偶数页", "DE.Views.AddOther.textFootnote": "脚注", "DE.Views.AddOther.textFormat": "格式", @@ -486,6 +525,9 @@ "DE.Views.Settings.textCreateDate": "创建日期", "DE.Views.Settings.textCustom": "自定义", "DE.Views.Settings.textCustomSize": "自定义大小", + "DE.Views.Settings.textDisableAll": "解除所有项目", + "DE.Views.Settings.textDisableAllMacrosWithNotification": "解除所有带通知的宏", + "DE.Views.Settings.textDisableAllMacrosWithoutNotification": "解除所有不带通知的宏", "DE.Views.Settings.textDisplayComments": "评论", "DE.Views.Settings.textDisplayResolvedComments": "已解决的评论", "DE.Views.Settings.textDocInfo": "文件信息", @@ -497,6 +539,8 @@ "DE.Views.Settings.textDownloadAs": "下载为...", "DE.Views.Settings.textEditDoc": "编辑文档", "DE.Views.Settings.textEmail": "电子邮件", + "DE.Views.Settings.textEnableAll": "启动所有项目", + "DE.Views.Settings.textEnableAllMacrosWithoutNotification": "启动所有不带通知的宏", "DE.Views.Settings.textFind": "查找", "DE.Views.Settings.textFindAndReplace": "查找和替换", "DE.Views.Settings.textFormat": "格式", @@ -509,6 +553,7 @@ "DE.Views.Settings.textLeft": "左", "DE.Views.Settings.textLoading": "加载中…", "DE.Views.Settings.textLocation": "位置", + "DE.Views.Settings.textMacrosSettings": "宏设置", "DE.Views.Settings.textMargins": "边距", "DE.Views.Settings.textNoCharacters": "不打印字符", "DE.Views.Settings.textOrientation": "选项", @@ -523,6 +568,7 @@ "DE.Views.Settings.textReview": "跟踪变化", "DE.Views.Settings.textRight": "对", "DE.Views.Settings.textSettings": "设置", + "DE.Views.Settings.textShowNotification": "显示通知", "DE.Views.Settings.textSpaces": "间隔", "DE.Views.Settings.textSpellcheck": "拼写检查", "DE.Views.Settings.textStatistic": "统计", diff --git a/apps/presentationeditor/embed/locale/ja.json b/apps/presentationeditor/embed/locale/ja.json index db008863d..23824190d 100644 --- a/apps/presentationeditor/embed/locale/ja.json +++ b/apps/presentationeditor/embed/locale/ja.json @@ -1,4 +1,5 @@ { + "common.view.modals.txtCopy": "クリップボードにコピーする", "common.view.modals.txtEmbed": "埋め込み", "common.view.modals.txtHeight": "高さ", "common.view.modals.txtShare": "共有リンク", diff --git a/apps/presentationeditor/embed/locale/ko.json b/apps/presentationeditor/embed/locale/ko.json index 0ad5e1224..b86a5835d 100644 --- a/apps/presentationeditor/embed/locale/ko.json +++ b/apps/presentationeditor/embed/locale/ko.json @@ -1,28 +1,30 @@ { "common.view.modals.txtCopy": "클립보드로 복사", - "common.view.modals.txtEmbed": "퍼가기", + "common.view.modals.txtEmbed": "개체 삽입", "common.view.modals.txtHeight": "높이", "common.view.modals.txtShare": "링크 공유", - "common.view.modals.txtWidth": "너비", + "common.view.modals.txtWidth": "넓이", "PE.ApplicationController.convertationErrorText": "변환 실패", - "PE.ApplicationController.convertationTimeoutText": "전환 시간 초과를 초과했습니다.", + "PE.ApplicationController.convertationTimeoutText": "변환 시간을 초과했습니다.", "PE.ApplicationController.criticalErrorTitle": "오류", - "PE.ApplicationController.downloadErrorText": "다운로드하지 못했습니다.", - "PE.ApplicationController.downloadTextText": "프리젠 테이션 다운로드 중 ...", - "PE.ApplicationController.errorAccessDeny": "권한이없는 작업을 수행하려고합니다.
            Document Server 관리자에게 문의하십시오.", + "PE.ApplicationController.downloadErrorText": "다운로드 실패", + "PE.ApplicationController.downloadTextText": "프리젠테이션 다운로드 중 ...", + "PE.ApplicationController.errorAccessDeny": "권한이없는 작업을 수행하려고합니다. \n문서 서버 관리자에게 보다 자세한 내용을 안내 받으시기 바랍니다.", "PE.ApplicationController.errorDefaultMessage": "오류 코드 : %1", - "PE.ApplicationController.errorFilePassProtect": "이 문서는 암호로 보호되어있어 열 수 없습니다.", + "PE.ApplicationController.errorFilePassProtect": "이 문서는 암호로 보호되어 있어 열 수 없습니다.", + "PE.ApplicationController.errorFileSizeExceed": "파일의 크기가 서버에서 정해진 범위를 초과 했습니다. 문서 서버 관리자에게 해당 내용에 대한 자세한 안내를 받아 보시기 바랍니다.", + "PE.ApplicationController.errorUpdateVersionOnDisconnect": "인터넷 연결이 복구 되었으며 파일에 수정 사항이 발생되었습니다. 작업을 계속 하시기 전에 반드시 기존의 파일을 다운로드하거나 내용을 복사해서 작업 내용을 잃어 버리는 일이 없도록 한 후에 이 페이지를 새로 고침(reload) 해 주시기 바랍니다.", "PE.ApplicationController.errorUserDrop": "파일에 지금 액세스 할 수 없습니다.", "PE.ApplicationController.notcriticalErrorTitle": "경고", - "PE.ApplicationController.scriptLoadError": "연결 속도가 느려, 일부 요소들이 로드되지 않았습니다. 페이지를 다시 새로 고침해주세요.", - "PE.ApplicationController.textLoadingDocument": "프레젠테이션로드 중", - "PE.ApplicationController.textOf": "중", - "PE.ApplicationController.txtClose": "완료", - "PE.ApplicationController.unknownErrorText": "알 수없는 오류.", - "PE.ApplicationController.unsupportedBrowserErrorText": "사용중인 브라우저가 지원되지 않습니다.", - "PE.ApplicationController.waitText": "잠시만 기달려주세요...", + "PE.ApplicationController.scriptLoadError": "연결 속도가 느려 일부 요소들이 로드되지 않았습니다. 페이지를 다시 새로 고침해주세요.", + "PE.ApplicationController.textLoadingDocument": "프레젠테이션 로드 중", + "PE.ApplicationController.textOf": "의", + "PE.ApplicationController.txtClose": "닫기", + "PE.ApplicationController.unknownErrorText": "알 수 없는 오류.", + "PE.ApplicationController.unsupportedBrowserErrorText": "사용 중인 브라우저가 지원되지 않습니다.", + "PE.ApplicationController.waitText": "잠시만 기다려주세요...", "PE.ApplicationView.txtDownload": "다운로드", - "PE.ApplicationView.txtEmbed": "퍼가기", + "PE.ApplicationView.txtEmbed": "개체 삽입", "PE.ApplicationView.txtFullScreen": "전체 화면", "PE.ApplicationView.txtShare": "공유" } \ No newline at end of file diff --git a/apps/presentationeditor/embed/locale/nl.json b/apps/presentationeditor/embed/locale/nl.json index 5b96f398b..a45fa4175 100644 --- a/apps/presentationeditor/embed/locale/nl.json +++ b/apps/presentationeditor/embed/locale/nl.json @@ -1,7 +1,10 @@ { "common.view.modals.txtCopy": "Kopieer naar klembord", + "common.view.modals.txtEmbed": "Invoegen", "common.view.modals.txtHeight": "Hoogte", + "common.view.modals.txtShare": "Link delen", "common.view.modals.txtWidth": "Breedte", + "PE.ApplicationController.convertationErrorText": "Conversie is mislukt", "PE.ApplicationController.convertationTimeoutText": "Time-out voor conversie overschreden.", "PE.ApplicationController.criticalErrorTitle": "Fout", "PE.ApplicationController.downloadErrorText": "Download mislukt.", @@ -9,6 +12,8 @@ "PE.ApplicationController.errorAccessDeny": "U probeert een actie uit te voeren waarvoor u geen rechten hebt.
            Neem contact op met de beheerder van de documentserver.", "PE.ApplicationController.errorDefaultMessage": "Foutcode: %1", "PE.ApplicationController.errorFilePassProtect": "Het bestand is beschermd met een wachtwoord en kan niet worden geopend.", + "PE.ApplicationController.errorFileSizeExceed": "De bestandsgrootte overschrijdt de limiet die is ingesteld voor uw server.
            Neem contact op met uw Document Server-beheerder voor details.", + "PE.ApplicationController.errorUpdateVersionOnDisconnect": "De internetverbinding is hersteld en de bestandsversie is gewijzigd.
            Voordat u verder kunt werken, moet u het bestand downloaden of de inhoud kopiëren om er zeker van te zijn dat er niets verloren gaat, en deze pagina vervolgens opnieuw laden.", "PE.ApplicationController.errorUserDrop": "Toegang tot het bestand is op dit moment niet mogelijk.", "PE.ApplicationController.notcriticalErrorTitle": "Waarschuwing", "PE.ApplicationController.scriptLoadError": "De verbinding is te langzaam, sommige componenten konden niet geladen worden. Laad de pagina opnieuw.", @@ -17,7 +22,9 @@ "PE.ApplicationController.txtClose": "Sluiten", "PE.ApplicationController.unknownErrorText": "Onbekende fout.", "PE.ApplicationController.unsupportedBrowserErrorText": "Uw browser wordt niet ondersteund.", + "PE.ApplicationController.waitText": "Een moment geduld", "PE.ApplicationView.txtDownload": "Downloaden", + "PE.ApplicationView.txtEmbed": "Invoegen", "PE.ApplicationView.txtFullScreen": "Volledig scherm", "PE.ApplicationView.txtShare": "Delen" } \ No newline at end of file diff --git a/apps/presentationeditor/embed/locale/sk.json b/apps/presentationeditor/embed/locale/sk.json index 8bdccff4d..065844e58 100644 --- a/apps/presentationeditor/embed/locale/sk.json +++ b/apps/presentationeditor/embed/locale/sk.json @@ -1,5 +1,6 @@ { "common.view.modals.txtCopy": "Skopírovať do schránky", + "common.view.modals.txtEmbed": "Vložiť", "common.view.modals.txtHeight": "Výška", "common.view.modals.txtShare": "Zdieľať odkaz", "common.view.modals.txtWidth": "Šírka", @@ -23,6 +24,7 @@ "PE.ApplicationController.unsupportedBrowserErrorText": "Váš prehliadač nie je podporovaný.", "PE.ApplicationController.waitText": "Prosím čakajte...", "PE.ApplicationView.txtDownload": "Stiahnuť", + "PE.ApplicationView.txtEmbed": "Vložiť", "PE.ApplicationView.txtFullScreen": "Celá obrazovka", "PE.ApplicationView.txtShare": "Zdieľať" } \ No newline at end of file diff --git a/apps/presentationeditor/embed/locale/uk.json b/apps/presentationeditor/embed/locale/uk.json index 6c23bb573..5c4770de8 100644 --- a/apps/presentationeditor/embed/locale/uk.json +++ b/apps/presentationeditor/embed/locale/uk.json @@ -1,22 +1,30 @@ { "common.view.modals.txtCopy": "Копіювати в буфер обміну", + "common.view.modals.txtEmbed": "Вставити", "common.view.modals.txtHeight": "Висота", + "common.view.modals.txtShare": "Поділитися посиланням", "common.view.modals.txtWidth": "Ширина", - "PE.ApplicationController.convertationTimeoutText": "Термін переходу перевищено.", + "PE.ApplicationController.convertationErrorText": "Не вдалося конвертувати", + "PE.ApplicationController.convertationTimeoutText": "Перевищено час очікування конверсії.", "PE.ApplicationController.criticalErrorTitle": "Помилка", "PE.ApplicationController.downloadErrorText": "Завантаження не вдалося", "PE.ApplicationController.downloadTextText": "Завантаження презентації...", "PE.ApplicationController.errorAccessDeny": "Ви намагаєтеся виконати дію, на яку у вас немає прав.
            Будь ласка, зв'яжіться з адміністратором вашого Сервера документів.", "PE.ApplicationController.errorDefaultMessage": "Код помилки: %1", "PE.ApplicationController.errorFilePassProtect": "Документ захищений паролем і його неможливо відкрити.", + "PE.ApplicationController.errorFileSizeExceed": "Розмір файлу перевищує обмеження, встановлені для вашого сервера.
            Для детальної інформації зверніться до адміністратора сервера документів.", + "PE.ApplicationController.errorUpdateVersionOnDisconnect": "Підключення до Інтернету було відновлено, а версія файлу змінена.
            Перш ніж продовжувати роботу, потрібно завантажити файл або скопіювати його вміст, щоб переконатися, що нічого не втрачено, а потім перезавантажити цю сторінку.", "PE.ApplicationController.errorUserDrop": "На даний момент файл не доступний.", "PE.ApplicationController.notcriticalErrorTitle": "Застереження", + "PE.ApplicationController.scriptLoadError": "З'єднання занадто повільне, деякі компоненти не вдалося завантажити. Перезавантажте сторінку.", "PE.ApplicationController.textLoadingDocument": "Завантаження презентації", "PE.ApplicationController.textOf": "з", "PE.ApplicationController.txtClose": "Закрити", "PE.ApplicationController.unknownErrorText": "Невідома помилка.", "PE.ApplicationController.unsupportedBrowserErrorText": "Ваш браузер не підтримується", + "PE.ApplicationController.waitText": "Будь ласка, зачекайте...", "PE.ApplicationView.txtDownload": "Завантажити", + "PE.ApplicationView.txtEmbed": "Вставити", "PE.ApplicationView.txtFullScreen": "Повноекранний режим", "PE.ApplicationView.txtShare": "Доступ" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/de.json b/apps/presentationeditor/main/locale/de.json index 5223d19bf..b6949734c 100644 --- a/apps/presentationeditor/main/locale/de.json +++ b/apps/presentationeditor/main/locale/de.json @@ -596,8 +596,8 @@ "PE.Controllers.Main.waitText": "Bitte warten...", "PE.Controllers.Main.warnBrowserIE9": "Die Anwendung hat geringe Fähigkeiten in IE9. Nutzen Sie IE10 oder höher.", "PE.Controllers.Main.warnBrowserZoom": "Die aktuelle Zoom-Einstellung Ihres Webbrowsers wird nicht völlig unterstützt. Bitte stellen Sie die Standardeinstellung mithilfe der Tastenkombination Strg+0 wieder her.", - "PE.Controllers.Main.warnLicenseExp": "Ihre Lizenz ist abgelaufen.
            Bitte aktualisieren Sie Ihre Lizenz und laden Sie die Seite neu.", "PE.Controllers.Main.warnLicenseExceeded": "Sie haben das Limit für gleichzeitige Verbindungen in %1-Editoren erreicht. Dieses Dokument wird nur zum Anzeigen geöffnet.
            Bitte wenden Sie sich an Ihren Administrator, um weitere Informationen zu erhalten.", + "PE.Controllers.Main.warnLicenseExp": "Ihre Lizenz ist abgelaufen.
            Bitte aktualisieren Sie Ihre Lizenz und laden Sie die Seite neu.", "PE.Controllers.Main.warnLicenseUsersExceeded": "Sie haben das Benutzerlimit für %1-Editoren erreicht. Bitte wenden Sie sich an Ihren Administrator, um weitere Informationen zu erhalten.", "PE.Controllers.Main.warnNoLicense": "Sie haben das Limit für gleichzeitige Verbindungen in %1-Editoren erreicht. Dieses Dokument wird nur zum Anzeigen geöffnet.
            Bitte kontaktieren Sie unser Verkaufsteam, um persönliche Upgrade-Bedingungen zu erhalten.", "PE.Controllers.Main.warnNoLicenseUsers": "Sie haben das Benutzerlimit für %1-Editoren erreicht. Bitte kontaktieren Sie unser Verkaufsteam, um persönliche Upgrade-Bedingungen zu erhalten.", diff --git a/apps/presentationeditor/main/locale/en.json b/apps/presentationeditor/main/locale/en.json index 8dc00e830..02d808736 100644 --- a/apps/presentationeditor/main/locale/en.json +++ b/apps/presentationeditor/main/locale/en.json @@ -644,11 +644,11 @@ "PE.Controllers.Main.waitText": "Please, wait...", "PE.Controllers.Main.warnBrowserIE9": "The application has low capabilities on IE9. Use IE10 or higher", "PE.Controllers.Main.warnBrowserZoom": "Your browser current zoom setting is not fully supported. Please reset to the default zoom by pressing Ctrl+0.", + "PE.Controllers.Main.warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only.
            Contact your administrator to learn more.", "PE.Controllers.Main.warnLicenseExp": "Your license has expired.
            Please update your license and refresh the page.", + "PE.Controllers.Main.warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", "PE.Controllers.Main.warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only.
            Contact %1 sales team for personal upgrade terms.", "PE.Controllers.Main.warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", - "PE.Controllers.Main.warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only.
            Contact your administrator to learn more.", - "PE.Controllers.Main.warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", "PE.Controllers.Main.warnProcessRightsChange": "You have been denied the right to edit the file.", "PE.Controllers.Statusbar.zoomText": "Zoom {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 system fonts, the saved font will be used when it is available.
            Do you want to continue?", diff --git a/apps/presentationeditor/main/locale/es.json b/apps/presentationeditor/main/locale/es.json index 2819e1260..bf608cc49 100644 --- a/apps/presentationeditor/main/locale/es.json +++ b/apps/presentationeditor/main/locale/es.json @@ -14,6 +14,7 @@ "Common.define.chartData.textPoint": "XY (Dispersión)", "Common.define.chartData.textStock": "De cotizaciones", "Common.define.chartData.textSurface": "Superficie", + "Common.Translation.warnFileLocked": "El archivo está siendo editado en otra aplicación. Puede continuar editándolo y guardarlo como una copia.", "Common.UI.ColorButton.textNewColor": "Color personalizado", "Common.UI.ComboBorderSize.txtNoBorders": "Sin bordes", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Sin bordes", @@ -57,6 +58,10 @@ "Common.Views.About.txtPoweredBy": "Desarrollado por", "Common.Views.About.txtTel": "tel.: ", "Common.Views.About.txtVersion": "Versión ", + "Common.Views.AutoCorrectDialog.textBy": "Por:", + "Common.Views.AutoCorrectDialog.textMathCorrect": "Autocorrección matemática", + "Common.Views.AutoCorrectDialog.textReplace": "Reemplazar", + "Common.Views.AutoCorrectDialog.textTitle": "Autocorrección", "Common.Views.Chat.textSend": "Enviar", "Common.Views.Comments.textAdd": "Añadir", "Common.Views.Comments.textAddComment": "Añadir", @@ -118,12 +123,19 @@ "Common.Views.InsertTableDialog.txtTitle": "Tamaño de tabla", "Common.Views.InsertTableDialog.txtTitleSplit": "Dividir celda", "Common.Views.LanguageDialog.labelSelect": "Seleccionar el idioma de documento", + "Common.Views.ListSettingsDialog.textBulleted": "Con viñetas", + "Common.Views.ListSettingsDialog.textNumbering": "Numerado", "Common.Views.ListSettingsDialog.tipChange": "Cambiar viñeta", "Common.Views.ListSettingsDialog.txtBullet": "Viñeta", "Common.Views.ListSettingsDialog.txtColor": "Color", + "Common.Views.ListSettingsDialog.txtNewBullet": "Nueva viñeta", + "Common.Views.ListSettingsDialog.txtNone": "Ninguno", "Common.Views.ListSettingsDialog.txtOfText": "% de texto", "Common.Views.ListSettingsDialog.txtSize": "Tamaño", "Common.Views.ListSettingsDialog.txtStart": "Empezar con", + "Common.Views.ListSettingsDialog.txtSymbol": "Símbolo", + "Common.Views.ListSettingsDialog.txtTitle": "Ajustes de lista", + "Common.Views.ListSettingsDialog.txtType": "Tipo", "Common.Views.OpenDialog.closeButtonText": "Cerrar archivo", "Common.Views.OpenDialog.txtEncoding": "Codificación", "Common.Views.OpenDialog.txtIncorrectPwd": "Clave incorrecta", @@ -162,6 +174,8 @@ "Common.Views.ReviewChanges.strStrictDesc": "Use el botón \"Guardar\" para sincronizar los cambios que o tú u otros habéis realizado", "Common.Views.ReviewChanges.tipAcceptCurrent": "Aceptar cambio actual", "Common.Views.ReviewChanges.tipCoAuthMode": "Establezca el modo de co-edición", + "Common.Views.ReviewChanges.tipCommentRem": "Eliminar comentarios", + "Common.Views.ReviewChanges.tipCommentRemCurrent": "Eliminar comentarios actuales", "Common.Views.ReviewChanges.tipHistory": "Mostrar historial de versiones", "Common.Views.ReviewChanges.tipRejectCurrent": "Rechazar Cambio Actual", "Common.Views.ReviewChanges.tipReview": "Rastrear cambios", @@ -176,6 +190,10 @@ "Common.Views.ReviewChanges.txtChat": "Chat", "Common.Views.ReviewChanges.txtClose": "Cerrar", "Common.Views.ReviewChanges.txtCoAuthMode": "Modo de co-edición", + "Common.Views.ReviewChanges.txtCommentRemAll": "Eliminar todos los comentarios", + "Common.Views.ReviewChanges.txtCommentRemCurrent": "Eliminar comentarios actuales", + "Common.Views.ReviewChanges.txtCommentRemMy": "Eliminar mis comentarios", + "Common.Views.ReviewChanges.txtCommentRemMyCurrent": "Eliminar mis actuales comentarios", "Common.Views.ReviewChanges.txtCommentRemove": "Eliminar", "Common.Views.ReviewChanges.txtDocLang": "Idioma", "Common.Views.ReviewChanges.txtFinal": "Todos los cambio aceptados (vista previa)", @@ -232,8 +250,33 @@ "Common.Views.SignSettingsDialog.textShowDate": "Presentar fecha de la firma", "Common.Views.SignSettingsDialog.textTitle": "Preparación de la firma", "Common.Views.SignSettingsDialog.txtEmpty": "Este campo es obligatorio", + "Common.Views.SymbolTableDialog.textCharacter": "Carácter", + "Common.Views.SymbolTableDialog.textCode": "Valor HEX de Unicode", + "Common.Views.SymbolTableDialog.textCopyright": "Signo de Copyright", + "Common.Views.SymbolTableDialog.textDCQuote": "Comillas dobles de cierre", + "Common.Views.SymbolTableDialog.textDOQuote": "Comillas dobles de apertura", + "Common.Views.SymbolTableDialog.textEllipsis": "Elipsis horizontal", + "Common.Views.SymbolTableDialog.textEmDash": "Guión largo", + "Common.Views.SymbolTableDialog.textEmSpace": "Espacio largo", + "Common.Views.SymbolTableDialog.textEnDash": "Guión corto", + "Common.Views.SymbolTableDialog.textEnSpace": "Espacio corto", "Common.Views.SymbolTableDialog.textFont": "Letra ", + "Common.Views.SymbolTableDialog.textNBHyphen": "Guión sin ruptura", + "Common.Views.SymbolTableDialog.textNBSpace": "Espacio de no separación", + "Common.Views.SymbolTableDialog.textPilcrow": "Signo de antígrafo", + "Common.Views.SymbolTableDialog.textQEmSpace": "1/4 Espacio largo", "Common.Views.SymbolTableDialog.textRange": "Rango", + "Common.Views.SymbolTableDialog.textRecent": "Símbolos utilizados recientemente", + "Common.Views.SymbolTableDialog.textRegistered": "Signo de marca registrada", + "Common.Views.SymbolTableDialog.textSCQuote": "Comillas simples de cierre", + "Common.Views.SymbolTableDialog.textSection": "Signo de sección", + "Common.Views.SymbolTableDialog.textShortcut": "Tecla de método abreviado", + "Common.Views.SymbolTableDialog.textSHyphen": "Guión virtual", + "Common.Views.SymbolTableDialog.textSOQuote": "Comillas simples de apertura", + "Common.Views.SymbolTableDialog.textSpecial": "Caracteres especiales", + "Common.Views.SymbolTableDialog.textSymbols": "Símbolos", + "Common.Views.SymbolTableDialog.textTitle": "Símbolo", + "Common.Views.SymbolTableDialog.textTradeMark": "Símbolo de marca comercial", "PE.Controllers.LeftMenu.newDocumentTitle": "Presentación sin nombre", "PE.Controllers.LeftMenu.notcriticalErrorTitle": "Aviso", "PE.Controllers.LeftMenu.requestEditRightsText": "Solicitando derechos de edición...", @@ -277,7 +320,7 @@ "PE.Controllers.Main.errorUpdateVersionOnDisconnect": "La conexión a Internet se ha restaurado y la versión del archivo ha cambiado a
            . Antes de continuar trabajando, necesita descargar el archivo o copiar su contenido para asegurarse de que no ha perdido nada, por ultimo recargue esta pagina.", "PE.Controllers.Main.errorUserDrop": "No se puede acceder al archivo ahora.", "PE.Controllers.Main.errorUsersExceed": "El número de usuarios permitido según su plan de precios fue excedido", - "PE.Controllers.Main.errorViewerDisconnect": "Se pierde la conexión. Usted todavía puede visualizar el documento,
            pero no puede descargar o imprimirlo hasta que la conexión sea restaurada.", + "PE.Controllers.Main.errorViewerDisconnect": "Se ha perdido la conexión. Usted todavía puede visualizar el documento,
            pero no puede descargar o imprimirlo hasta que la conexión sea restaurada y la página esté recargada.", "PE.Controllers.Main.leavePageText": "Hay cambios no guardados en esta presentación. Pulse \"Permanecer en esta página\", después \"Guardar\" para guardadarlos. Pulse \"Abandonar esta página\" para descartar todos los cambios no guardados.", "PE.Controllers.Main.loadFontsTextText": "Cargando datos...", "PE.Controllers.Main.loadFontsTitleText": "Cargando datos", @@ -316,9 +359,11 @@ "PE.Controllers.Main.textCloseTip": "Pulse para cerrar el consejo", "PE.Controllers.Main.textContactUs": "Contactar con equipo de ventas", "PE.Controllers.Main.textCustomLoader": "Note, por favor, que según los términos de la licencia Usted no tiene derecho a cambiar el cargador.
            Por favor, póngase en contacto con nuestro Departamento de Ventas para obtener una cotización.", + "PE.Controllers.Main.textHasMacros": "El archivo contiene macros automáticas.
            ¿Quiere ejecutar macros?", "PE.Controllers.Main.textLoadingDocument": "Cargando presentación", - "PE.Controllers.Main.textNoLicenseTitle": "%1 limitación de conexiones", + "PE.Controllers.Main.textNoLicenseTitle": "Se ha alcanzado el límite de licencias", "PE.Controllers.Main.textPaidFeature": "Función de pago", + "PE.Controllers.Main.textRemember": "Recordar mi elección", "PE.Controllers.Main.textShape": "Forma", "PE.Controllers.Main.textStrict": "Modo estricto", "PE.Controllers.Main.textTryUndoRedo": "Las funciones Anular/Rehacer se desactivan para el modo co-edición rápido.
            Haga Clic en el botón \"modo estricto\" para cambiar al modo de co-edición estricta para editar el archivo sin la interferencia de otros usuarios y enviar sus cambios sólo después de guardarlos. Se puede cambiar entre los modos de co-edición usando los ajustes avanzados de edición.", @@ -560,13 +605,16 @@ "PE.Controllers.Main.txtSlideText": "Texto de diapositiva", "PE.Controllers.Main.txtSlideTitle": "Título de diapositiva", "PE.Controllers.Main.txtStarsRibbons": "Cintas y estrellas", + "PE.Controllers.Main.txtTheme_basic": "Básico", "PE.Controllers.Main.txtTheme_blank": "En blanco", "PE.Controllers.Main.txtTheme_classic": "Clásico", "PE.Controllers.Main.txtTheme_corner": "De esquina", "PE.Controllers.Main.txtTheme_dotted": "De puntos", "PE.Controllers.Main.txtTheme_green": "Verde", + "PE.Controllers.Main.txtTheme_green_leaf": "Hoja verde", "PE.Controllers.Main.txtTheme_lines": "Líneas", "PE.Controllers.Main.txtTheme_office": "Oficina", + "PE.Controllers.Main.txtTheme_office_theme": "Tema de Office", "PE.Controllers.Main.txtTheme_official": "Oficial", "PE.Controllers.Main.txtTheme_pixel": "De píxel", "PE.Controllers.Main.txtTheme_safari": "Safari", @@ -583,11 +631,11 @@ "PE.Controllers.Main.waitText": "Por favor, espere...", "PE.Controllers.Main.warnBrowserIE9": "Este aplicación tiene baja capacidad en IE9. Utilice IE10 o superior", "PE.Controllers.Main.warnBrowserZoom": "La configuración actual de zoom de su navegador no está soportada por completo. Por favor restablezca zoom predeterminado pulsando Ctrl+0.", - "PE.Controllers.Main.warnLicenseExceeded": "Se ha excedido el número permitido de las conexiones simultáneas al servidor de documentos, y el documento se abrirá para sólo lectura.
            Por favor, contacte con su administrador para recibir más información.", + "PE.Controllers.Main.warnLicenseExceeded": "Usted ha alcanzado el límite de conexiones simultáneas con %1 editores. Este documento se abrirá sólo para su visualización.
            Por favor, contacte con su administrador para recibir más información.", "PE.Controllers.Main.warnLicenseExp": "Su licencia ha expirado.
            Por favor, actualice su licencia y después recargue la página.", - "PE.Controllers.Main.warnLicenseUsersExceeded": "Se ha excedido el número permitido de los usuarios simultáneos, y el documento se abrirá para sólo lectura.
            Por favor, contacte con su administrador para recibir más información.", - "PE.Controllers.Main.warnNoLicense": "Esta versión de Editores de %1 tiene ciertas limitaciones para el número de conexiones simultáneas al servidor de documentos.
            Si se requiere más, por favor, considere comprar una licencia comercial.", - "PE.Controllers.Main.warnNoLicenseUsers": "Esta versión de editores %1 tiene ciertas limitaciones para usuarios simultáneos.
            Si necesita más, por favor, considere comprar una licencia comercial.", + "PE.Controllers.Main.warnLicenseUsersExceeded": "Usted ha alcanzado el límite de usuarios para los editores de %1. Por favor, contacte con su administrador para recibir más información.", + "PE.Controllers.Main.warnNoLicense": "Usted ha alcanzado el límite de conexiones simultáneas con %1 editores. Este documento se abrirá sólo para su visualización.
            Contacte con el equipo de ventas de %1 para conocer los términos de actualización personal.", + "PE.Controllers.Main.warnNoLicenseUsers": "Usted ha alcanzado el límite de usuarios para los editores de %1. Contacte con el equipo de ventas de %1 para conocer los términos de actualización personal.", "PE.Controllers.Main.warnProcessRightsChange": "El derecho de edición del archivo es denegado.", "PE.Controllers.Statusbar.zoomText": "Zoom {0}%", "PE.Controllers.Toolbar.confirmAddFontName": "El tipo de letra que usted va a guardar no está disponible en este dispositivo.
            El estilo de letra se mostrará usando uno de los tipos de letra del dispositivo, el tipo de letra guardado va a usarse cuando esté disponible.
            ¿Desea continuar?", @@ -946,6 +994,7 @@ "PE.Views.DateTimeDialog.txtTitle": "Fecha y hora", "PE.Views.DocumentHolder.aboveText": "Arriba", "PE.Views.DocumentHolder.addCommentText": "Añadir comentario", + "PE.Views.DocumentHolder.addToLayoutText": "Añadir al Diseño", "PE.Views.DocumentHolder.advancedImageText": "Ajustes avanzados de imagen", "PE.Views.DocumentHolder.advancedParagraphText": "Ajustes avanzados de texto", "PE.Views.DocumentHolder.advancedShapeText": "Ajustes avanzados de forma", @@ -1006,6 +1055,7 @@ "PE.Views.DocumentHolder.textFlipH": "Voltear horizontalmente", "PE.Views.DocumentHolder.textFlipV": "Voltear verticalmente", "PE.Views.DocumentHolder.textFromFile": "De archivo", + "PE.Views.DocumentHolder.textFromStorage": "Desde almacenamiento", "PE.Views.DocumentHolder.textFromUrl": "De URL", "PE.Views.DocumentHolder.textNextPage": "Diapositiva siguiente", "PE.Views.DocumentHolder.textPaste": "Pegar", @@ -1093,6 +1143,7 @@ "PE.Views.DocumentHolder.txtPasteSourceFormat": "Mantener el formato original", "PE.Views.DocumentHolder.txtPressLink": "Pulse CTRL y haga clic en el enlace", "PE.Views.DocumentHolder.txtPreview": "Iniciar presentación", + "PE.Views.DocumentHolder.txtPrintSelection": "Imprimir selección", "PE.Views.DocumentHolder.txtRemFractionBar": "Quitar la barra de fracción", "PE.Views.DocumentHolder.txtRemLimit": "Eliminar límite", "PE.Views.DocumentHolder.txtRemoveAccentChar": "Quitar carácter de acento", @@ -1100,6 +1151,7 @@ "PE.Views.DocumentHolder.txtRemScripts": "Quitar índices", "PE.Views.DocumentHolder.txtRemSubscript": "Quitar subíndice", "PE.Views.DocumentHolder.txtRemSuperscript": "Quitar superíndice", + "PE.Views.DocumentHolder.txtResetLayout": "Restablecer diapositiva", "PE.Views.DocumentHolder.txtScriptsAfter": "Índices después de texto", "PE.Views.DocumentHolder.txtScriptsBefore": "Índices antes de texto", "PE.Views.DocumentHolder.txtSelectAll": "Seleccionar todo", @@ -1191,6 +1243,9 @@ "PE.Views.FileMenuPanels.Settings.strFontRender": "Hinting", "PE.Views.FileMenuPanels.Settings.strForcesave": "Siempre guardar en el servidor (de lo contrario guardar en el servidor al cerrar documento)", "PE.Views.FileMenuPanels.Settings.strInputMode": "Activar jeroglíficos", + "PE.Views.FileMenuPanels.Settings.strMacrosSettings": "Ajustes de macros", + "PE.Views.FileMenuPanels.Settings.strPaste": "Cortar, copiar y pegar", + "PE.Views.FileMenuPanels.Settings.strPasteButton": "Mostrar el botón Opciones de pegado cuando se pegue contenido", "PE.Views.FileMenuPanels.Settings.strShowChanges": "Cambios de colaboración en tiempo real", "PE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Activar corrección ortográfica", "PE.Views.FileMenuPanels.Settings.strStrict": "Estricto", @@ -1207,6 +1262,7 @@ "PE.Views.FileMenuPanels.Settings.textForceSave": "Guardar al servidor", "PE.Views.FileMenuPanels.Settings.textMinute": "Cada minuto", "PE.Views.FileMenuPanels.Settings.txtAll": "Ver todo", + "PE.Views.FileMenuPanels.Settings.txtAutoCorrect": "Opciones de autocorrección", "PE.Views.FileMenuPanels.Settings.txtCacheMode": "Modo de caché predeterminado", "PE.Views.FileMenuPanels.Settings.txtCm": "Centímetro", "PE.Views.FileMenuPanels.Settings.txtFitSlide": "Ajustar a la diapositiva", @@ -1216,8 +1272,15 @@ "PE.Views.FileMenuPanels.Settings.txtLast": "Ver últimos", "PE.Views.FileMenuPanels.Settings.txtMac": "como OS X", "PE.Views.FileMenuPanels.Settings.txtNative": "Nativo", + "PE.Views.FileMenuPanels.Settings.txtProofing": "Revisión", "PE.Views.FileMenuPanels.Settings.txtPt": "Punto", + "PE.Views.FileMenuPanels.Settings.txtRunMacros": "Habilitar todo", + "PE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "Habilitar todas las macros sin notificación ", "PE.Views.FileMenuPanels.Settings.txtSpellCheck": "Сorrección ortográfica", + "PE.Views.FileMenuPanels.Settings.txtStopMacros": "Deshabilitar todo", + "PE.Views.FileMenuPanels.Settings.txtStopMacrosDesc": "Deshabilitar todas las macros sin notificación", + "PE.Views.FileMenuPanels.Settings.txtWarnMacros": "Mostrar notificación", + "PE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Deshabilitar todas las macros con notificación", "PE.Views.FileMenuPanels.Settings.txtWin": "como Windows", "PE.Views.HeaderFooterDialog.applyAllText": "Aplicar a todo", "PE.Views.HeaderFooterDialog.applyText": "Aplicar", @@ -1241,6 +1304,7 @@ "PE.Views.HyperlinkSettingsDialog.textEmptyTooltip": "Introduzca informacíon sobre herramientas aquí", "PE.Views.HyperlinkSettingsDialog.textExternalLink": "Enlace externo", "PE.Views.HyperlinkSettingsDialog.textInternalLink": "Diapositiva en esta presentación", + "PE.Views.HyperlinkSettingsDialog.textSlides": "Diapositivas", "PE.Views.HyperlinkSettingsDialog.textTipText": "Información en pantalla", "PE.Views.HyperlinkSettingsDialog.textTitle": "Configuración de hiperenlace", "PE.Views.HyperlinkSettingsDialog.txtEmpty": "Este campo es obligatorio", @@ -1259,6 +1323,7 @@ "PE.Views.ImageSettings.textFitSlide": "Ajustar a la diapositiva", "PE.Views.ImageSettings.textFlip": "Volteo", "PE.Views.ImageSettings.textFromFile": "De archivo", + "PE.Views.ImageSettings.textFromStorage": "Desde almacenamiento", "PE.Views.ImageSettings.textFromUrl": "De URL", "PE.Views.ImageSettings.textHeight": "Altura", "PE.Views.ImageSettings.textHint270": "Girar 90° a la izquierda", @@ -1359,6 +1424,7 @@ "PE.Views.ShapeSettings.strFill": "Relleno", "PE.Views.ShapeSettings.strForeground": "Color de primer plano", "PE.Views.ShapeSettings.strPattern": "Patrón", + "PE.Views.ShapeSettings.strShadow": "Mostrar sombra", "PE.Views.ShapeSettings.strSize": "Tamaño", "PE.Views.ShapeSettings.strStroke": "Trazo", "PE.Views.ShapeSettings.strTransparency": "Opacidad ", @@ -1370,6 +1436,7 @@ "PE.Views.ShapeSettings.textEmptyPattern": "Sin patrón", "PE.Views.ShapeSettings.textFlip": "Volteo", "PE.Views.ShapeSettings.textFromFile": "De archivo", + "PE.Views.ShapeSettings.textFromStorage": "Desde almacenamiento", "PE.Views.ShapeSettings.textFromUrl": "De URL", "PE.Views.ShapeSettings.textGradient": "Gradiente", "PE.Views.ShapeSettings.textGradientFill": "Relleno degradado", @@ -1384,6 +1451,7 @@ "PE.Views.ShapeSettings.textRadial": "Radial", "PE.Views.ShapeSettings.textRotate90": "Girar 90°", "PE.Views.ShapeSettings.textRotation": "Rotación", + "PE.Views.ShapeSettings.textSelectImage": "Seleccionar imagen", "PE.Views.ShapeSettings.textSelectTexture": "Seleccionar", "PE.Views.ShapeSettings.textStretch": "Estirar", "PE.Views.ShapeSettings.textStyle": "Estilo", @@ -1409,6 +1477,7 @@ "PE.Views.ShapeSettingsAdvanced.textAltTitle": "Título", "PE.Views.ShapeSettingsAdvanced.textAngle": "Ángulo", "PE.Views.ShapeSettingsAdvanced.textArrows": "Flechas", + "PE.Views.ShapeSettingsAdvanced.textAutofit": "Autoajustar", "PE.Views.ShapeSettingsAdvanced.textBeginSize": "Tamaño inicial", "PE.Views.ShapeSettingsAdvanced.textBeginStyle": "Estilo inicial", "PE.Views.ShapeSettingsAdvanced.textBevel": "Biselado", @@ -1426,12 +1495,16 @@ "PE.Views.ShapeSettingsAdvanced.textLeft": "Izquierdo", "PE.Views.ShapeSettingsAdvanced.textLineStyle": "Estilo de línea", "PE.Views.ShapeSettingsAdvanced.textMiter": "Ángulo", + "PE.Views.ShapeSettingsAdvanced.textNofit": "No autoajustar", + "PE.Views.ShapeSettingsAdvanced.textResizeFit": "Ajustar tamaño de la forma al texto", "PE.Views.ShapeSettingsAdvanced.textRight": "Derecho", "PE.Views.ShapeSettingsAdvanced.textRotation": "Rotación", "PE.Views.ShapeSettingsAdvanced.textRound": "Redondeado", + "PE.Views.ShapeSettingsAdvanced.textShrink": "Comprimir el texto al desbordarse", "PE.Views.ShapeSettingsAdvanced.textSize": "Tamaño", "PE.Views.ShapeSettingsAdvanced.textSpacing": "Espacio entre columnas", "PE.Views.ShapeSettingsAdvanced.textSquare": "Cuadrado", + "PE.Views.ShapeSettingsAdvanced.textTextBox": "Cuadro de texto", "PE.Views.ShapeSettingsAdvanced.textTitle": "Forma - ajustes avanzados", "PE.Views.ShapeSettingsAdvanced.textTop": "Superior", "PE.Views.ShapeSettingsAdvanced.textVertically": "Verticalmente", @@ -1475,6 +1548,7 @@ "PE.Views.SlideSettings.textEmptyPattern": "Sin patrón", "PE.Views.SlideSettings.textFade": "Atenuación ", "PE.Views.SlideSettings.textFromFile": "De archivo", + "PE.Views.SlideSettings.textFromStorage": "Desde almacenamiento", "PE.Views.SlideSettings.textFromUrl": "De URL", "PE.Views.SlideSettings.textGradient": "Gradiente", "PE.Views.SlideSettings.textGradientFill": "Relleno degradado", @@ -1492,6 +1566,7 @@ "PE.Views.SlideSettings.textReset": "Anular cambios", "PE.Views.SlideSettings.textRight": "Derecho", "PE.Views.SlideSettings.textSec": "d", + "PE.Views.SlideSettings.textSelectImage": "Seleccionar imagen", "PE.Views.SlideSettings.textSelectTexture": "Seleccionar", "PE.Views.SlideSettings.textSmoothly": "Suavemente", "PE.Views.SlideSettings.textSplit": "Dividir", @@ -1604,6 +1679,13 @@ "PE.Views.TableSettings.tipTop": "Fijar sólo borde exterior superior", "PE.Views.TableSettings.txtNoBorders": "Sin bordes", "PE.Views.TableSettings.txtTable_Accent": "Acentuación", + "PE.Views.TableSettings.txtTable_DarkStyle": "Estilo oscuro", + "PE.Views.TableSettings.txtTable_LightStyle": "Estilo claro", + "PE.Views.TableSettings.txtTable_MediumStyle": "Estilo medio", + "PE.Views.TableSettings.txtTable_NoGrid": "Sin cuadrícula", + "PE.Views.TableSettings.txtTable_NoStyle": "Sin estilo", + "PE.Views.TableSettings.txtTable_TableGrid": "Cuadrícula de tabla", + "PE.Views.TableSettings.txtTable_ThemedStyle": "Estilo temático", "PE.Views.TableSettingsAdvanced.textAlt": "Texto alternativo", "PE.Views.TableSettingsAdvanced.textAltDescription": "Descripción", "PE.Views.TableSettingsAdvanced.textAltTip": "Representación de texto alternativa de la información sobre el objeto visual, que se leerá para las personas con deficiencia visual o deterioro cognitivo para ayudarles a entender mejor, que información contiene la imagen, autoforma, gráfica o tabla.", @@ -1663,7 +1745,9 @@ "PE.Views.Toolbar.capBtnComment": "Comentario", "PE.Views.Toolbar.capBtnDateTime": "Fecha y hora", "PE.Views.Toolbar.capBtnInsHeader": "Pie de página", + "PE.Views.Toolbar.capBtnInsSymbol": "Símbolo", "PE.Views.Toolbar.capBtnSlideNum": "Número de diapositiva", + "PE.Views.Toolbar.capInsertAudio": "Audio", "PE.Views.Toolbar.capInsertChart": "Diagrama", "PE.Views.Toolbar.capInsertEquation": "Ecuación", "PE.Views.Toolbar.capInsertHyperlink": "Hiperenlace", @@ -1671,6 +1755,7 @@ "PE.Views.Toolbar.capInsertShape": "Forma", "PE.Views.Toolbar.capInsertTable": "Tabla", "PE.Views.Toolbar.capInsertText": "Cuadro de Texto", + "PE.Views.Toolbar.capInsertVideo": "Vídeo", "PE.Views.Toolbar.capTabFile": "Archivo", "PE.Views.Toolbar.capTabHome": "Inicio", "PE.Views.Toolbar.capTabInsert": "Insertar", @@ -1694,6 +1779,7 @@ "PE.Views.Toolbar.textArrangeFront": "Traer al frente", "PE.Views.Toolbar.textBold": "Negrita", "PE.Views.Toolbar.textItalic": "Cursiva", + "PE.Views.Toolbar.textListSettings": "Ajustes de lista", "PE.Views.Toolbar.textNewColor": "Color personalizado", "PE.Views.Toolbar.textShapeAlignBottom": "Alinear en la parte inferior", "PE.Views.Toolbar.textShapeAlignCenter": "Alinear al centro", @@ -1723,6 +1809,7 @@ "PE.Views.Toolbar.tipColorSchemas": "Cambiar combinación de colores", "PE.Views.Toolbar.tipCopy": "Copiar", "PE.Views.Toolbar.tipCopyStyle": "Copiar estilo", + "PE.Views.Toolbar.tipDateTime": "Insertar la fecha y hora actuales", "PE.Views.Toolbar.tipDecPrLeft": "Reducir sangría", "PE.Views.Toolbar.tipEditHeader": "Editar pie de página", "PE.Views.Toolbar.tipFontColor": "Color de letra", @@ -1730,6 +1817,7 @@ "PE.Views.Toolbar.tipFontSize": "Tamaño de letra", "PE.Views.Toolbar.tipHAligh": "Alineación horizontal", "PE.Views.Toolbar.tipIncPrLeft": "Aumentar sangría", + "PE.Views.Toolbar.tipInsertAudio": "Insertar audio", "PE.Views.Toolbar.tipInsertChart": "Insertar gráfico", "PE.Views.Toolbar.tipInsertEquation": "Insertar ecuación", "PE.Views.Toolbar.tipInsertHyperlink": "Añadir hiperenlace", @@ -1739,6 +1827,7 @@ "PE.Views.Toolbar.tipInsertTable": "Insertar tabla", "PE.Views.Toolbar.tipInsertText": "Insertar cuadro de texto", "PE.Views.Toolbar.tipInsertTextArt": "Insertar Texto Arte", + "PE.Views.Toolbar.tipInsertVideo": "Insertar vídeo", "PE.Views.Toolbar.tipLineSpace": "Espaciado de línea", "PE.Views.Toolbar.tipMarkers": "Viñetas", "PE.Views.Toolbar.tipNumbers": "Numeración", @@ -1750,6 +1839,7 @@ "PE.Views.Toolbar.tipSaveCoauth": "Guarde los cambios para que otros usuarios los puedan ver.", "PE.Views.Toolbar.tipShapeAlign": "Alinear forma", "PE.Views.Toolbar.tipShapeArrange": "Arreglar forma", + "PE.Views.Toolbar.tipSlideNum": "Insertar el número de diapositiva", "PE.Views.Toolbar.tipSlideSize": "Seleccionar tamaño de diapositiva", "PE.Views.Toolbar.tipSlideTheme": "Tema de diapositiva", "PE.Views.Toolbar.tipUndo": "Deshacer", diff --git a/apps/presentationeditor/main/locale/fr.json b/apps/presentationeditor/main/locale/fr.json index 6660e9a82..3d0630282 100644 --- a/apps/presentationeditor/main/locale/fr.json +++ b/apps/presentationeditor/main/locale/fr.json @@ -14,6 +14,7 @@ "Common.define.chartData.textPoint": "Nuages de points (XY)", "Common.define.chartData.textStock": "Boursier", "Common.define.chartData.textSurface": "Surface", + "Common.UI.ColorButton.textNewColor": "Couleur personnalisée", "Common.UI.ComboBorderSize.txtNoBorders": "Pas de bordures", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Pas de bordures", "Common.UI.ComboDataView.emptyComboText": "Aucun style", @@ -279,7 +280,7 @@ "PE.Controllers.Main.errorSessionAbsolute": "Votre session a expiré. Veuillez recharger la page.", "PE.Controllers.Main.errorSessionIdle": "Le document n'a pas été modifié depuis trop longtemps. Veuillez recharger la page.", "PE.Controllers.Main.errorSessionToken": "La connexion au serveur a été interrompue. Veuillez recharger la page.", - "PE.Controllers.Main.errorStockChart": "L'ordre des lignes est incorrect. Pour créer un graphique boursier organisez vos données sur la feuille de calcul dans l'ordre suivant:
            cours à l'ouverture, cours maximal, cours minimal, cours à la clôture.", + "PE.Controllers.Main.errorStockChart": "Ordre lignes incorrect. Pour créer un diagramme boursier, positionnez les données sur la feuille de calcul dans l'ordre suivant :
            cours à l'ouverture, cours maximal, cours minimal, cours à la clôture.", "PE.Controllers.Main.errorToken": "Le jeton de sécurité du document n’était pas formé correctement.
            Veuillez contacter l'administrateur de Document Server.", "PE.Controllers.Main.errorTokenExpire": "Le jeton de sécurité du document a expiré.
            Veuillez contactez l'administrateur de Document Server.", "PE.Controllers.Main.errorUpdateVersion": "La version du fichier a été changée. La page sera rechargée.", @@ -595,8 +596,8 @@ "PE.Controllers.Main.waitText": "Veuillez patienter...", "PE.Controllers.Main.warnBrowserIE9": "L'application est peu compatible avec IE9. Utilisez IE10 ou version plus récente", "PE.Controllers.Main.warnBrowserZoom": "Le paramètre actuel de zoom de votre navigateur n'est pas accepté. Veuillez rétablir le niveau de zoom par défaut en appuyant sur Ctrl+0.", - "PE.Controllers.Main.warnLicenseExp": "Votre licence a expiré.
            Veuillez mettre à jour votre licence et actualisez la page.", "PE.Controllers.Main.warnLicenseExceeded": "Vous avez dépassé le nombre maximal de connexions simultanées aux éditeurs %1. Ce document sera ouvert à la lecture seulement.
            Contactez votre administrateur pour en savoir davantage.", + "PE.Controllers.Main.warnLicenseExp": "Votre licence a expiré.
            Veuillez mettre à jour votre licence et actualisez la page.", "PE.Controllers.Main.warnLicenseUsersExceeded": "Vous avez dépassé le nombre maximal d’utilisateurs des éditeurs %1. Contactez votre administrateur pour en savoir davantage.", "PE.Controllers.Main.warnNoLicense": "Vous avez dépassé le nombre maximal de connexions simultanées aux éditeurs %1. Ce document sera ouvert à la lecture seulement.
            Contactez l’équipe des ventes %1 pour mettre à jour les termes de la licence.", "PE.Controllers.Main.warnNoLicenseUsers": "Vous avez dépassé le nombre maximal d’utilisateurs des éditeurs %1. Contactez l’équipe des ventes %1 pour mettre à jour les termes de la licence.", @@ -1720,7 +1721,6 @@ "PE.Views.Toolbar.textItalic": "Italique", "PE.Views.Toolbar.textListSettings": "Paramètres de la liste", "PE.Views.Toolbar.textNewColor": "Couleur personnalisée", - "Common.UI.ColorButton.textNewColor": "Couleur personnalisée", "PE.Views.Toolbar.textShapeAlignBottom": "Aligner en bas", "PE.Views.Toolbar.textShapeAlignCenter": "Aligner au centre", "PE.Views.Toolbar.textShapeAlignLeft": "Aligner à gauche", diff --git a/apps/presentationeditor/main/locale/it.json b/apps/presentationeditor/main/locale/it.json index 56725c699..3296f33ff 100644 --- a/apps/presentationeditor/main/locale/it.json +++ b/apps/presentationeditor/main/locale/it.json @@ -631,8 +631,8 @@ "PE.Controllers.Main.waitText": "Per favore, attendi...", "PE.Controllers.Main.warnBrowserIE9": "L'applicazione è poco compatibile con IE9. Usa IE10 o più recente", "PE.Controllers.Main.warnBrowserZoom": "Le impostazioni correnti di zoom del tuo browser non sono completamente supportate. Per favore, ritorna allo zoom predefinito premendo Ctrl+0.", - "PE.Controllers.Main.warnLicenseExp": "La tua licenza è scaduta.
            Si prega di aggiornare la licenza e ricaricare la pagina.", "PE.Controllers.Main.warnLicenseExceeded": "Hai raggiunto il limite per le connessioni simultanee agli editor %1. Questo documento verrà aperto in sola lettura.
            Contatta l’amministratore per saperne di più.", + "PE.Controllers.Main.warnLicenseExp": "La tua licenza è scaduta.
            Si prega di aggiornare la licenza e ricaricare la pagina.", "PE.Controllers.Main.warnLicenseUsersExceeded": "Hai raggiunto il limite per gli utenti con accesso agli editor %1. Contatta l’amministratore per saperne di più.", "PE.Controllers.Main.warnNoLicense": "Hai raggiunto il limite per le connessioni simultanee agli editor %1. Questo documento verrà aperto in sola lettura.
            Contatta il team di vendita di %1 per i termini di aggiornamento personali.", "PE.Controllers.Main.warnNoLicenseUsers": "Hai raggiunto il limite per gli utenti con accesso agli editor %1. Contatta il team di vendita di %1 per i termini di aggiornamento personali.", diff --git a/apps/presentationeditor/main/locale/ja.json b/apps/presentationeditor/main/locale/ja.json index dbaa514fe..2d77b87b6 100644 --- a/apps/presentationeditor/main/locale/ja.json +++ b/apps/presentationeditor/main/locale/ja.json @@ -81,6 +81,7 @@ "Common.Views.ExternalDiagramEditor.textSave": "保存と終了", "Common.Views.ExternalDiagramEditor.textTitle": "グラフの編集", "Common.Views.Header.textBack": "ドキュメントに移動", + "Common.Views.Header.tipGoEdit": "このファイルを編集する", "Common.Views.Header.tipPrint": "印刷", "Common.Views.ImageFromUrlDialog.textUrl": "画像のURLの貼り付け", "Common.Views.ImageFromUrlDialog.txtEmpty": "このフィールドは必須項目です", @@ -91,12 +92,28 @@ "Common.Views.InsertTableDialog.txtMinText": "このフィールドの最小値は{0}です。", "Common.Views.InsertTableDialog.txtRows": "行数", "Common.Views.InsertTableDialog.txtTitle": "表のサイズ", + "Common.Views.ListSettingsDialog.txtColor": "色", + "Common.Views.ListSettingsDialog.txtSymbol": "記号", + "Common.Views.OpenDialog.closeButtonText": "ファイルを閉じる", + "Common.Views.OpenDialog.txtProtected": "パスワードを入力してファイルを開くと、ファイルの既存のパスワードがリセットされます。", "Common.Views.Plugins.groupCaption": "プラグイン", "Common.Views.Plugins.strPlugins": "プラグイン", + "Common.Views.Protection.hintPwd": "パスワードを変更するか削除する", + "Common.Views.Protection.txtDeletePwd": "パスワードを削除する", "Common.Views.RenameDialog.textName": "ファイル名", + "Common.Views.ReviewChanges.tipAcceptCurrent": "今の変更を受け入れる", + "Common.Views.ReviewChanges.tipCommentRemCurrent": "現在のコメントを削除する", + "Common.Views.ReviewChanges.txtAcceptCurrent": "今の変更を受け入れる", + "Common.Views.ReviewChanges.txtClose": "閉じる", + "Common.Views.ReviewChanges.txtCommentRemCurrent": "現在のコメントを削除する", + "Common.Views.ReviewChanges.txtCommentRemMyCurrent": "私の現在のコメントを削除する", + "Common.Views.ReviewPopover.textClose": "閉じる", + "Common.Views.SignDialog.textSelect": "選択", "Common.Views.SignDialog.textSelectImage": "画像を選択", "Common.Views.SignSettingsDialog.textAllowComment": " 署名者が署名ダイアログにコメントを追加できるようにする", "Common.Views.SignSettingsDialog.textShowDate": "署名欄に署名日を表示する", + "Common.Views.SymbolTableDialog.textSymbols": "記号と特殊文字", + "Common.Views.SymbolTableDialog.textTitle": "記号", "PE.Controllers.LeftMenu.newDocumentTitle": "名前が付けられていないプレゼンテーション", "PE.Controllers.LeftMenu.requestEditRightsText": "アクセス権の編集の要求中...", "PE.Controllers.LeftMenu.textNoTextFound": "検索データが見つかりませんでした。他の検索設定を選択してください。", @@ -151,6 +168,7 @@ "PE.Controllers.Main.splitMaxColsErrorText": "列の数は%1より小さくなければなりません。", "PE.Controllers.Main.splitMaxRowsErrorText": "行数は%1より小さくなければなりません。", "PE.Controllers.Main.textAnonymous": "匿名", + "PE.Controllers.Main.textClose": "閉じる", "PE.Controllers.Main.textCloseTip": "ヒントを閉じるためにクリックください", "PE.Controllers.Main.textLoadingDocument": "プレゼンテーションを読み込み中...", "PE.Controllers.Main.textShape": "図形", @@ -170,6 +188,7 @@ "PE.Controllers.Main.txtLines": "行", "PE.Controllers.Main.txtMath": "数学", "PE.Controllers.Main.txtNeedSynchronize": "更新があります。", + "PE.Controllers.Main.txtPicture": "画像", "PE.Controllers.Main.txtRectangles": "四角形", "PE.Controllers.Main.txtSeries": "系列", "PE.Controllers.Main.txtShape_actionButtonHome": "ホームボタン", @@ -231,6 +250,7 @@ "PE.Controllers.Toolbar.textEmptyImgUrl": "画像のURLを指定しなければなりません。", "PE.Controllers.Toolbar.textFontSizeErr": "入力された値が正しくありません。
            1〜100の数値を入力してください。", "PE.Controllers.Toolbar.textInsert": "挿入", + "PE.Controllers.Toolbar.textSymbols": "記号と特殊文字", "PE.Controllers.Toolbar.textWarning": " 警告", "PE.Views.ChartSettings.textChartType": "グラフの種類の変更", "PE.Views.ChartSettings.textEditData": "データの編集", @@ -241,6 +261,7 @@ "PE.Views.ChartSettings.textWidth": "幅", "PE.Views.ChartSettingsAdvanced.textAlt": "代替テキスト", "PE.Views.ChartSettingsAdvanced.textTitle": "グラフ - 詳細設定", + "PE.Views.DateTimeDialog.textDefault": "既定に設定", "PE.Views.DateTimeDialog.textUpdate": "自動的に更新", "PE.Views.DateTimeDialog.txtTitle": "日付と時刻", "PE.Views.DocumentHolder.aboveText": "上", @@ -260,7 +281,7 @@ "PE.Views.DocumentHolder.direct270Text": "270度回転", "PE.Views.DocumentHolder.direct90Text": "90度回転", "PE.Views.DocumentHolder.directHText": "水平", - "PE.Views.DocumentHolder.directionText": "文字の方向", + "PE.Views.DocumentHolder.directionText": "文字列の方向", "PE.Views.DocumentHolder.editChartText": "データの編集", "PE.Views.DocumentHolder.editHyperlinkText": "ハイパーリンクの編集", "PE.Views.DocumentHolder.hyperlinkText": "ハイパーリンク", @@ -271,9 +292,12 @@ "PE.Views.DocumentHolder.insertRowBelowText": "行(下)", "PE.Views.DocumentHolder.insertRowText": "行の挿入", "PE.Views.DocumentHolder.insertText": "挿入", + "PE.Views.DocumentHolder.langText": "言語の選択", + "PE.Views.DocumentHolder.leftText": "左", "PE.Views.DocumentHolder.mergeCellsText": "セルの結合", "PE.Views.DocumentHolder.originalSizeText": "既定サイズ", "PE.Views.DocumentHolder.removeHyperlinkText": "ハイパーリンクの削除", + "PE.Views.DocumentHolder.rightText": "右", "PE.Views.DocumentHolder.rowText": "行", "PE.Views.DocumentHolder.selectText": "選択", "PE.Views.DocumentHolder.splitCellsText": "セルの分割...", @@ -284,6 +308,7 @@ "PE.Views.DocumentHolder.textArrangeForward": "前面へ移動", "PE.Views.DocumentHolder.textArrangeFront": "前景に移動", "PE.Views.DocumentHolder.textCopy": "コピー", + "PE.Views.DocumentHolder.textCropFill": "塗りつぶし", "PE.Views.DocumentHolder.textCut": "切り取り", "PE.Views.DocumentHolder.textFromFile": "ファイルから", "PE.Views.DocumentHolder.textNextPage": "次のスライド", @@ -310,6 +335,7 @@ "PE.Views.DocumentHolder.txtInsertArgAfter": "後に引数を挿入", "PE.Views.DocumentHolder.txtInsertArgBefore": "前に引数を挿入", "PE.Views.DocumentHolder.txtNewSlide": "新しいスライド", + "PE.Views.DocumentHolder.txtPastePicture": "画像", "PE.Views.DocumentHolder.txtPressLink": "リンクをクリックしてCTRLを押してください。 ", "PE.Views.DocumentHolder.txtPreview": "プレビュー", "PE.Views.DocumentHolder.txtSelectAll": "すべての選択", @@ -366,6 +392,7 @@ "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "変更を見れる前に、変更を受け入れる必要があります。", "PE.Views.FileMenuPanels.Settings.strFast": "速い", "PE.Views.FileMenuPanels.Settings.strInputMode": "漢字をターンにします。", + "PE.Views.FileMenuPanels.Settings.strMacrosSettings": "マクロの設定", "PE.Views.FileMenuPanels.Settings.strShowChanges": "リアルタイム共同編集の変更を表示します。", "PE.Views.FileMenuPanels.Settings.strStrict": "高レベル", "PE.Views.FileMenuPanels.Settings.strUnit": "販売単位", @@ -380,6 +407,7 @@ "PE.Views.FileMenuPanels.Settings.textDisabled": "無効", "PE.Views.FileMenuPanels.Settings.textMinute": "1 分ごと", "PE.Views.FileMenuPanels.Settings.txtAll": "全ての表示", + "PE.Views.FileMenuPanels.Settings.txtCacheMode": "既定のキャッシュ モード", "PE.Views.FileMenuPanels.Settings.txtCm": "センチ", "PE.Views.FileMenuPanels.Settings.txtFitSlide": "スライドを拡大または縮小します。", "PE.Views.FileMenuPanels.Settings.txtInch": "インチ", @@ -408,6 +436,7 @@ "PE.Views.HyperlinkSettingsDialog.txtPrev": "前のスライド", "PE.Views.HyperlinkSettingsDialog.txtSlide": "スライド", "PE.Views.ImageSettings.textAdvanced": "詳細設定の表示", + "PE.Views.ImageSettings.textCropFill": "塗りつぶし", "PE.Views.ImageSettings.textFromFile": " ファイルから", "PE.Views.ImageSettings.textFromUrl": "URLから", "PE.Views.ImageSettings.textHeight": "高さ", @@ -469,6 +498,7 @@ "PE.Views.RightMenu.txtImageSettings": "画像の設定", "PE.Views.RightMenu.txtParagraphSettings": "テキストの設定", "PE.Views.RightMenu.txtShapeSettings": "図形の設定", + "PE.Views.RightMenu.txtSignatureSettings": "サインの設定", "PE.Views.RightMenu.txtSlideSettings": "スライドの設定", "PE.Views.RightMenu.txtTableSettings": "表の設定", "PE.Views.RightMenu.txtTextArtSettings": "テキストアートの設定", @@ -632,6 +662,7 @@ "PE.Views.SlideSizeSettings.txtWidescreen2": "ワイド画面(16:10)", "PE.Views.Statusbar.goToPageText": "スライドへジャンプ", "PE.Views.Statusbar.pageIndexText": "スライド{0}から{1}", + "PE.Views.Statusbar.textShowCurrent": "このスライドからの表示", "PE.Views.Statusbar.tipAccessRights": "文書のアクセス許可のの管理", "PE.Views.Statusbar.tipFitPage": "スライドを拡大または縮小します。", "PE.Views.Statusbar.tipFitWidth": "幅を合わせる", @@ -736,8 +767,10 @@ "PE.Views.Toolbar.capBtnComment": "コメント", "PE.Views.Toolbar.capBtnDateTime": "日付と時刻", "PE.Views.Toolbar.capBtnInsHeader": "フッター", + "PE.Views.Toolbar.capBtnInsSymbol": "記号", "PE.Views.Toolbar.capBtnSlideNum": "スライド番号", "PE.Views.Toolbar.capInsertChart": "グラフ", + "PE.Views.Toolbar.capInsertHyperlink": "ハイパーリンク", "PE.Views.Toolbar.capInsertImage": "画像", "PE.Views.Toolbar.capInsertShape": "図形", "PE.Views.Toolbar.capInsertTable": "表", @@ -772,6 +805,7 @@ "PE.Views.Toolbar.textShapeAlignMiddle": "上下中央揃え", "PE.Views.Toolbar.textShapeAlignRight": "右揃え", "PE.Views.Toolbar.textShapeAlignTop": "上揃え", + "PE.Views.Toolbar.textShowCurrent": "このスライドからの表示", "PE.Views.Toolbar.textStrikeout": "取り消し線", "PE.Views.Toolbar.textSubscript": "下付き", "PE.Views.Toolbar.textSuperscript": "上付き文字", @@ -789,6 +823,7 @@ "PE.Views.Toolbar.tipColorSchemas": "配色の変更", "PE.Views.Toolbar.tipCopy": "コピー", "PE.Views.Toolbar.tipCopyStyle": "スタイルのコピー", + "PE.Views.Toolbar.tipDateTime": " 現在の日付と時刻を挿入", "PE.Views.Toolbar.tipDecPrLeft": "インデントを減らす", "PE.Views.Toolbar.tipEditHeader": "フッターの編集", "PE.Views.Toolbar.tipFontColor": "フォントの色", diff --git a/apps/presentationeditor/main/locale/nl.json b/apps/presentationeditor/main/locale/nl.json index e46d88f1e..601cef135 100644 --- a/apps/presentationeditor/main/locale/nl.json +++ b/apps/presentationeditor/main/locale/nl.json @@ -7,12 +7,15 @@ "Common.Controllers.ExternalDiagramEditor.warningTitle": "Waarschuwing", "Common.define.chartData.textArea": "Vlak", "Common.define.chartData.textBar": "Staaf", + "Common.define.chartData.textCharts": "Grafieken", "Common.define.chartData.textColumn": "Kolom", "Common.define.chartData.textLine": "Lijn", - "Common.define.chartData.textPie": "Cirkel", + "Common.define.chartData.textPie": "Taart", "Common.define.chartData.textPoint": "Spreiding", "Common.define.chartData.textStock": "Voorraad", "Common.define.chartData.textSurface": "Oppervlak", + "Common.Translation.warnFileLocked": "Het bestand wordt bewerkt in een andere app. U kunt doorgaan met bewerken en als kopie opslaan.", + "Common.UI.ColorButton.textNewColor": "Nieuwe aangepaste kleur toevoegen", "Common.UI.ComboBorderSize.txtNoBorders": "Geen randen", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Geen randen", "Common.UI.ComboDataView.emptyComboText": "Geen stijlen", @@ -55,6 +58,10 @@ "Common.Views.About.txtPoweredBy": "Aangedreven door", "Common.Views.About.txtTel": "Tel.:", "Common.Views.About.txtVersion": "Versie", + "Common.Views.AutoCorrectDialog.textBy": "Door:", + "Common.Views.AutoCorrectDialog.textMathCorrect": "Wiskundige autocorrectie", + "Common.Views.AutoCorrectDialog.textReplace": "Vervangen:", + "Common.Views.AutoCorrectDialog.textTitle": "Automatische spellingscontrole", "Common.Views.Chat.textSend": "Verzenden", "Common.Views.Comments.textAdd": "Toevoegen", "Common.Views.Comments.textAddComment": "Opmerking toevoegen", @@ -100,6 +107,7 @@ "Common.Views.Header.tipRedo": "Opnieuw", "Common.Views.Header.tipSave": "Opslaan", "Common.Views.Header.tipUndo": "Ongedaan maken", + "Common.Views.Header.tipUndock": "Ontkoppel in een apart venster", "Common.Views.Header.tipViewSettings": "Weergave-instellingen", "Common.Views.Header.tipViewUsers": "Gebruikers weergeven en toegangsrechten voor documenten beheren", "Common.Views.Header.txtAccessRights": "Toegangsrechten wijzigen", @@ -115,10 +123,24 @@ "Common.Views.InsertTableDialog.txtTitle": "Tabelgrootte", "Common.Views.InsertTableDialog.txtTitleSplit": "Cel Splitsen", "Common.Views.LanguageDialog.labelSelect": "Taal van document selecteren", + "Common.Views.ListSettingsDialog.textBulleted": "Opgesomd ", + "Common.Views.ListSettingsDialog.textNumbering": "Genummerd", + "Common.Views.ListSettingsDialog.tipChange": "Verander opsommingsteken", + "Common.Views.ListSettingsDialog.txtBullet": "Opsommingsteken", + "Common.Views.ListSettingsDialog.txtColor": "Kleur", + "Common.Views.ListSettingsDialog.txtNewBullet": "Nieuw opsommingsteken", + "Common.Views.ListSettingsDialog.txtNone": "geen", + "Common.Views.ListSettingsDialog.txtOfText": "% van tekst", + "Common.Views.ListSettingsDialog.txtSize": "Grootte", + "Common.Views.ListSettingsDialog.txtStart": "Beginnen bij", + "Common.Views.ListSettingsDialog.txtSymbol": "symbool", + "Common.Views.ListSettingsDialog.txtTitle": "Lijst instellingen", + "Common.Views.ListSettingsDialog.txtType": "Type", "Common.Views.OpenDialog.closeButtonText": "Bestand sluiten", "Common.Views.OpenDialog.txtEncoding": "Versleuteling", "Common.Views.OpenDialog.txtIncorrectPwd": "Wachtwoord is niet juist", "Common.Views.OpenDialog.txtPassword": "Wachtwoord", + "Common.Views.OpenDialog.txtProtected": "Nadat u het wachtwoord heeft ingevoerd en het bestand heeft geopend, wordt het huidige wachtwoord voor het bestand gereset.", "Common.Views.OpenDialog.txtTitle": "Opties voor %1 kiezen", "Common.Views.OpenDialog.txtTitleProtected": "Beschermd bestand", "Common.Views.PasswordDialog.txtDescription": "Pas een wachtwoord toe om dit document te beveiligen", @@ -152,6 +174,8 @@ "Common.Views.ReviewChanges.strStrictDesc": "Gebruik de 'Opslaan' knop om de wijzigingen van u en andere te synchroniseren.", "Common.Views.ReviewChanges.tipAcceptCurrent": "Huidige wijziging accepteren", "Common.Views.ReviewChanges.tipCoAuthMode": "Zet samenwerkings modus", + "Common.Views.ReviewChanges.tipCommentRem": "Alle opmerkingen verwijderen", + "Common.Views.ReviewChanges.tipCommentRemCurrent": "Verwijder huidige opmerking", "Common.Views.ReviewChanges.tipHistory": "Toon versie geschiedenis", "Common.Views.ReviewChanges.tipRejectCurrent": "Huidige wijziging afwijzen", "Common.Views.ReviewChanges.tipReview": "Wijzigingen bijhouden", @@ -166,6 +190,11 @@ "Common.Views.ReviewChanges.txtChat": "Chat", "Common.Views.ReviewChanges.txtClose": "Sluiten", "Common.Views.ReviewChanges.txtCoAuthMode": "Modus Gezamenlijk bewerken", + "Common.Views.ReviewChanges.txtCommentRemAll": "Alle commentaar verwijderen", + "Common.Views.ReviewChanges.txtCommentRemCurrent": "Verwijder huidige opmerking", + "Common.Views.ReviewChanges.txtCommentRemMy": "Verwijder al mijn commentaar", + "Common.Views.ReviewChanges.txtCommentRemMyCurrent": "Verwijder mijn huidige opmerkingen", + "Common.Views.ReviewChanges.txtCommentRemove": "Verwijderen", "Common.Views.ReviewChanges.txtDocLang": "Taal", "Common.Views.ReviewChanges.txtFinal": "Alle veranderingen geaccepteerd (Voorbeeld)", "Common.Views.ReviewChanges.txtFinalCap": "Einde", @@ -184,6 +213,20 @@ "Common.Views.ReviewChanges.txtSpelling": "Spellingcontrole", "Common.Views.ReviewChanges.txtTurnon": "Wijzigingen bijhouden", "Common.Views.ReviewChanges.txtView": "Weergavemodus", + "Common.Views.ReviewPopover.textAdd": "Toevoegen", + "Common.Views.ReviewPopover.textAddReply": "Antwoord toevoegen", + "Common.Views.ReviewPopover.textCancel": "Annuleren", + "Common.Views.ReviewPopover.textClose": "Afsluiten", + "Common.Views.ReviewPopover.textEdit": "OK", + "Common.Views.ReviewPopover.textMention": "+vermelding zal de gebruiker toegang geven tot het document en een email sturen", + "Common.Views.ReviewPopover.textMentionNotify": "+genoemde zal de gebruiker via email melden", + "Common.Views.ReviewPopover.textOpenAgain": "Opnieuw openen", + "Common.Views.ReviewPopover.textReply": "Beantwoorden", + "Common.Views.ReviewPopover.textResolve": "Oplossen", + "Common.Views.SaveAsDlg.textLoading": "Laden", + "Common.Views.SaveAsDlg.textTitle": "Map voor opslaan", + "Common.Views.SelectFileDlg.textLoading": "Laden", + "Common.Views.SelectFileDlg.textTitle": "Gegevensbron selecteren", "Common.Views.SignDialog.textBold": "Vet", "Common.Views.SignDialog.textCertificate": "Certificaat", "Common.Views.SignDialog.textChange": "Wijzigen", @@ -207,9 +250,40 @@ "Common.Views.SignSettingsDialog.textShowDate": "Toon signeer datum in handtekening regel", "Common.Views.SignSettingsDialog.textTitle": "Handtekening opzet", "Common.Views.SignSettingsDialog.txtEmpty": "Dit veld is vereist", + "Common.Views.SymbolTableDialog.textCharacter": "Teken", + "Common.Views.SymbolTableDialog.textCode": "Unicode HEX-waarde", + "Common.Views.SymbolTableDialog.textCopyright": "Copyright teken", + "Common.Views.SymbolTableDialog.textDCQuote": "Aanhalingsteken sluiten", + "Common.Views.SymbolTableDialog.textDOQuote": "Dubbel aanhalingsteken openen", + "Common.Views.SymbolTableDialog.textEllipsis": "Horizontale ellips", + "Common.Views.SymbolTableDialog.textEmDash": "streep", + "Common.Views.SymbolTableDialog.textEmSpace": "Spatie", + "Common.Views.SymbolTableDialog.textEnDash": "Korte streep", + "Common.Views.SymbolTableDialog.textEnSpace": "Korte spatie", + "Common.Views.SymbolTableDialog.textFont": "Lettertype", + "Common.Views.SymbolTableDialog.textNBHyphen": "Niet-afbrekenden koppelteken", + "Common.Views.SymbolTableDialog.textNBSpace": "niet-afbrekende spatie", + "Common.Views.SymbolTableDialog.textPilcrow": "Alineateken", + "Common.Views.SymbolTableDialog.textQEmSpace": "1/4 Em spatie", + "Common.Views.SymbolTableDialog.textRange": "Bereik", + "Common.Views.SymbolTableDialog.textRecent": "Recent gebruikte symbolen", + "Common.Views.SymbolTableDialog.textRegistered": "Geregistreerd teken", + "Common.Views.SymbolTableDialog.textSCQuote": "Enkele aanhalingsteken sluiten", + "Common.Views.SymbolTableDialog.textSection": "Sectie Teken", + "Common.Views.SymbolTableDialog.textShortcut": "Sneltoets", + "Common.Views.SymbolTableDialog.textSHyphen": "Zacht koppelteken", + "Common.Views.SymbolTableDialog.textSOQuote": "Een enkel citaat openen", + "Common.Views.SymbolTableDialog.textSpecial": "speciale karakters", + "Common.Views.SymbolTableDialog.textSymbols": "Symbolen", + "Common.Views.SymbolTableDialog.textTitle": "symbool", + "Common.Views.SymbolTableDialog.textTradeMark": "Handelsmerk symbool", "PE.Controllers.LeftMenu.newDocumentTitle": "Presentatie zonder naam", + "PE.Controllers.LeftMenu.notcriticalErrorTitle": "Waarschuwing", "PE.Controllers.LeftMenu.requestEditRightsText": "Bewerkrechten worden aangevraagd...", "PE.Controllers.LeftMenu.textNoTextFound": "De gegevens waarnaar u zoekt, zijn niet gevonden. Pas uw zoekopties aan.", + "PE.Controllers.LeftMenu.textReplaceSkipped": "De vervanging is uitgevoerd. {0} gevallen zijn overgeslagen.", + "PE.Controllers.LeftMenu.textReplaceSuccess": "De zoekactie is uitgevoerd. Vervangen items: {0}", + "PE.Controllers.LeftMenu.txtUntitled": "Naamloos", "PE.Controllers.Main.applyChangesTextText": "Gegevens worden geladen...", "PE.Controllers.Main.applyChangesTitleText": "Gegevens worden geladen", "PE.Controllers.Main.convertationTimeoutText": "Time-out voor conversie overschreden.", @@ -223,9 +297,14 @@ "PE.Controllers.Main.errorCoAuthoringDisconnect": "Verbinding met server is verbroken. Het document kan op dit moment niet worden bewerkt.", "PE.Controllers.Main.errorConnectToServer": "Het document kan niet worden opgeslagen. Controleer de verbindingsinstellingen of neem contact op met de beheerder.
            Wanneer u op de knop 'OK' klikt, wordt u gevraagd het document te downloaden.", "PE.Controllers.Main.errorDatabaseConnection": "Externe fout.
            Fout in databaseverbinding. Neem contact op met Support als deze fout zich blijft voordoen.", + "PE.Controllers.Main.errorDataEncrypted": "Versleutelde wijzigingen zijn ontvangen, deze kunnen niet ontcijferd worden.", "PE.Controllers.Main.errorDataRange": "Onjuist gegevensbereik.", "PE.Controllers.Main.errorDefaultMessage": "Foutcode: %1", + "PE.Controllers.Main.errorEditingDownloadas": "Er is een fout ontstaan tijdens het werken met het document.
            Gebruik de 'Opslaan als...' optie om het bestand als backup op te slaan op uw computer.", + "PE.Controllers.Main.errorEditingSaveas": "Er is een fout ontstaan tijdens het werken met het document.
            Gebruik de 'Opslaan als...' optie om het bestand als backup op te slaan op uw computer.", + "PE.Controllers.Main.errorEmailClient": "Er is geen e-mail client gevonden.", "PE.Controllers.Main.errorFilePassProtect": "Het bestand is beschermd met een wachtwoord en kan niet worden geopend.", + "PE.Controllers.Main.errorFileSizeExceed": "De bestandsgrootte overschrijdt de limiet die is ingesteld voor uw server.
            Neem contact op met uw Document Server-beheerder voor details.", "PE.Controllers.Main.errorForceSave": "Er is een fout ontstaan bij het opslaan van het bestand. Gebruik de 'Download als' knop om het bestand op te slaan op uw computer of probeer het later nog eens.", "PE.Controllers.Main.errorKeyEncrypt": "Onbekende sleuteldescriptor", "PE.Controllers.Main.errorKeyExpire": "Sleuteldescriptor vervallen", @@ -238,6 +317,7 @@ "PE.Controllers.Main.errorToken": "Het token voor de documentbeveiliging heeft niet de juiste indeling.
            Neem contact op met de beheerder van de documentserver.", "PE.Controllers.Main.errorTokenExpire": "Het token voor de documentbeveiliging is vervallen.
            Neem contact op met de beheerder van de documentserver.", "PE.Controllers.Main.errorUpdateVersion": "De bestandsversie is gewijzigd. De pagina wordt opnieuw geladen.", + "PE.Controllers.Main.errorUpdateVersionOnDisconnect": "De internetverbinding is hersteld en de bestandsversie is gewijzigd.
            Voordat u verder kunt werken, moet u het bestand downloaden of de inhoud kopiëren om er zeker van te zijn dat er niets verloren gaat, en deze pagina vervolgens opnieuw laden.", "PE.Controllers.Main.errorUserDrop": "Toegang tot het bestand is op dit moment niet mogelijk.", "PE.Controllers.Main.errorUsersExceed": "Het onder het prijsplan toegestane aantal gebruikers is overschreden", "PE.Controllers.Main.errorViewerDisconnect": "Verbinding is verbroken. U kunt het document nog wel bekijken,
            maar u kunt het pas downloaden of afdrukken als de verbinding is hersteld.", @@ -268,16 +348,22 @@ "PE.Controllers.Main.savePreparingTitle": "Bezig met voorbereiding op opslaan. Even geduld...", "PE.Controllers.Main.saveTextText": "Presentatie wordt opgeslagen...", "PE.Controllers.Main.saveTitleText": "Presentatie wordt opgeslagen", + "PE.Controllers.Main.scriptLoadError": "De verbinding is te langzaam, sommige componenten konden niet geladen worden. Laad de pagina opnieuw.", "PE.Controllers.Main.splitDividerErrorText": "Het aantal rijen moet deelbaar zijn door %1.", "PE.Controllers.Main.splitMaxColsErrorText": "Het aantal kolommen moet kleiner zijn dan %1.", "PE.Controllers.Main.splitMaxRowsErrorText": "Het aantal rijen moet minder zijn dan %1.", "PE.Controllers.Main.textAnonymous": "Anoniem", "PE.Controllers.Main.textBuyNow": "Website bezoeken", "PE.Controllers.Main.textChangesSaved": "Alle wijzigingen zijn opgeslagen", + "PE.Controllers.Main.textClose": "Afsluiten", "PE.Controllers.Main.textCloseTip": "Klik om de tip te sluiten", "PE.Controllers.Main.textContactUs": "Contact opnemen met Verkoop", + "PE.Controllers.Main.textCustomLoader": "Volgens de voorwaarden van de licentie heeft u geen recht om de lader aan te passen.
            Neem contact op met onze verkoopafdeling voor een offerte.", + "PE.Controllers.Main.textHasMacros": "Het bestand bevat automatische macro's.
            Wilt u macro's uitvoeren?", "PE.Controllers.Main.textLoadingDocument": "Presentatie wordt geladen", "PE.Controllers.Main.textNoLicenseTitle": "Only Office verbindingslimiet", + "PE.Controllers.Main.textPaidFeature": "Betaalde optie", + "PE.Controllers.Main.textRemember": "Onthoud voorkeur", "PE.Controllers.Main.textShape": "Vorm", "PE.Controllers.Main.textStrict": "Strikte modus", "PE.Controllers.Main.textTryUndoRedo": "De functies Ongedaan maken/Opnieuw worden uitgeschakeld in de modus Snel gezamenlijk bewerken.
            Klik op de knop 'Strikte modus' om over te schakelen naar de strikte modus voor gezamenlijk bewerken. U kunt het bestand dan zonder interferentie van andere gebruikers bewerken en uw wijzigingen verzenden wanneer u die opslaat. U kunt schakelen tussen de modi voor gezamenlijke bewerking via Geavanceerde instellingen van de editor.", @@ -307,6 +393,177 @@ "PE.Controllers.Main.txtPicture": "Afbeelding", "PE.Controllers.Main.txtRectangles": "Rechthoeken", "PE.Controllers.Main.txtSeries": "Serie", + "PE.Controllers.Main.txtShape_accentBorderCallout1": "Legenda met lijn 1 (Rand en Accentbalk)", + "PE.Controllers.Main.txtShape_accentBorderCallout2": "Legenda met lijn 2 (Rand met accentbalk)", + "PE.Controllers.Main.txtShape_accentBorderCallout3": "Legenda met lijn 3 (Rand met accent balk)", + "PE.Controllers.Main.txtShape_accentCallout1": "Legenda met lijn 1 (accentbalk)", + "PE.Controllers.Main.txtShape_accentCallout2": "Legenda met lijn 1(accentbalk)", + "PE.Controllers.Main.txtShape_accentCallout3": "Legenda met lijn 3 (accent balk)", + "PE.Controllers.Main.txtShape_actionButtonBackPrevious": "Terug of vorige knop", + "PE.Controllers.Main.txtShape_actionButtonBeginning": "Knop \"afspelen\"", + "PE.Controllers.Main.txtShape_actionButtonBlank": "Lege button", + "PE.Controllers.Main.txtShape_actionButtonDocument": "Document knop", + "PE.Controllers.Main.txtShape_actionButtonEnd": "Beëindigen", + "PE.Controllers.Main.txtShape_actionButtonForwardNext": "'Volgende' knop", + "PE.Controllers.Main.txtShape_actionButtonHelp": "Help knop", + "PE.Controllers.Main.txtShape_actionButtonHome": "Start knop", + "PE.Controllers.Main.txtShape_actionButtonInformation": "Informatieknop", + "PE.Controllers.Main.txtShape_actionButtonMovie": "Film knop", + "PE.Controllers.Main.txtShape_actionButtonReturn": "Return-knop", + "PE.Controllers.Main.txtShape_actionButtonSound": "Geluid knop", + "PE.Controllers.Main.txtShape_arc": "Boog", + "PE.Controllers.Main.txtShape_bentArrow": "Gebogen pijl", + "PE.Controllers.Main.txtShape_bentConnector5": "Rechthoekige verbinding", + "PE.Controllers.Main.txtShape_bentConnector5WithArrow": "Rechthoekige verbinding met peil", + "PE.Controllers.Main.txtShape_bentConnector5WithTwoArrows": "Rechthoekige verbinding met dubbele peilen", + "PE.Controllers.Main.txtShape_bentUpArrow": "Naar boven gebogen pijl", + "PE.Controllers.Main.txtShape_bevel": "Schuine rand", + "PE.Controllers.Main.txtShape_blockArc": "Blokboog", + "PE.Controllers.Main.txtShape_borderCallout1": "Legenda met lijn 1", + "PE.Controllers.Main.txtShape_borderCallout2": "Legenda met lijn 2", + "PE.Controllers.Main.txtShape_borderCallout3": "Legenda met lijn 3", + "PE.Controllers.Main.txtShape_bracePair": "Dubbele accolades", + "PE.Controllers.Main.txtShape_callout1": "Legenda met lijn 1 (Geen rand)", + "PE.Controllers.Main.txtShape_callout2": "Legenda met lijn 2 (geen rand)", + "PE.Controllers.Main.txtShape_callout3": "Legenda met lijn 3 (Geen rand)", + "PE.Controllers.Main.txtShape_can": "Emmer", + "PE.Controllers.Main.txtShape_chevron": "Chevron", + "PE.Controllers.Main.txtShape_chord": "Cirkelsegment", + "PE.Controllers.Main.txtShape_circularArrow": "Ronde pijl", + "PE.Controllers.Main.txtShape_cloud": "Cloud", + "PE.Controllers.Main.txtShape_cloudCallout": "Cloud legenda", + "PE.Controllers.Main.txtShape_corner": "Hoek", + "PE.Controllers.Main.txtShape_cube": "Kubus", + "PE.Controllers.Main.txtShape_curvedConnector3": "Gebogen verbinding", + "PE.Controllers.Main.txtShape_curvedConnector3WithArrow": "Gebogen verbinding met pijlen", + "PE.Controllers.Main.txtShape_curvedConnector3WithTwoArrows": "Gebogen verbinding met dubbele peilen", + "PE.Controllers.Main.txtShape_curvedDownArrow": "Gebogen pijl naar beneden", + "PE.Controllers.Main.txtShape_curvedLeftArrow": "Gebogen pijl naar links", + "PE.Controllers.Main.txtShape_curvedRightArrow": "Gebogen pijl naar rechts", + "PE.Controllers.Main.txtShape_curvedUpArrow": "Gebogen pijl naar boven", + "PE.Controllers.Main.txtShape_decagon": "Tienhoek", + "PE.Controllers.Main.txtShape_diagStripe": "Diagonale Strepen", + "PE.Controllers.Main.txtShape_diamond": "Diamant", + "PE.Controllers.Main.txtShape_dodecagon": "Twaalfhoek", + "PE.Controllers.Main.txtShape_donut": "Donut", + "PE.Controllers.Main.txtShape_doubleWave": "Dubbele golf", + "PE.Controllers.Main.txtShape_downArrow": "Pijl omlaag", + "PE.Controllers.Main.txtShape_downArrowCallout": "Legenda met peil naar beneden", + "PE.Controllers.Main.txtShape_ellipse": "Ovaal", + "PE.Controllers.Main.txtShape_ellipseRibbon": "Gebogen lint naar beneden", + "PE.Controllers.Main.txtShape_ellipseRibbon2": "Gebogen lint naar boven", + "PE.Controllers.Main.txtShape_flowChartAlternateProcess": "Alternatief proces stroomdiagram ", + "PE.Controllers.Main.txtShape_flowChartCollate": "Stroomdiagram: Sorteren", + "PE.Controllers.Main.txtShape_flowChartConnector": "Stroomdiagram: Verbinden", + "PE.Controllers.Main.txtShape_flowChartDecision": "Stroomdiagram: Beslissingen", + "PE.Controllers.Main.txtShape_flowChartDelay": "Stroomdiagram: Vertraging", + "PE.Controllers.Main.txtShape_flowChartDisplay": "Stroomdiagram: Beeldscherm", + "PE.Controllers.Main.txtShape_flowChartDocument": "Stroomdiagram: Document", + "PE.Controllers.Main.txtShape_flowChartExtract": "Stroomdiagram: Extractie", + "PE.Controllers.Main.txtShape_flowChartInputOutput": "Stroomdiagram: gegevens", + "PE.Controllers.Main.txtShape_flowChartInternalStorage": "Stroomdiagram: Interne opslag", + "PE.Controllers.Main.txtShape_flowChartMagneticDisk": "Stroomdiagram: Magnetische schijf", + "PE.Controllers.Main.txtShape_flowChartMagneticDrum": "Stroomdiagram: Opslag met directe toegang", + "PE.Controllers.Main.txtShape_flowChartMagneticTape": "Stroomdiagram: Sequentiële toegang", + "PE.Controllers.Main.txtShape_flowChartManualInput": "Stroomdiagram: Handmatige invoer", + "PE.Controllers.Main.txtShape_flowChartManualOperation": "Stroomdiagram: Handmatige bewerking", + "PE.Controllers.Main.txtShape_flowChartMerge": "Stroomdiagram: Samenvoegen", + "PE.Controllers.Main.txtShape_flowChartMultidocument": "Stroomdiagram: Meerdere documenten", + "PE.Controllers.Main.txtShape_flowChartOffpageConnector": "Stroomdiagram: Verbinding naar andere pagina", + "PE.Controllers.Main.txtShape_flowChartOnlineStorage": "Stroomdiagram: Opgeslagen gegevens", + "PE.Controllers.Main.txtShape_flowChartOr": "Stroomdiagram: Of", + "PE.Controllers.Main.txtShape_flowChartPredefinedProcess": "Stroomdiagram: Voorgedefinieerd", + "PE.Controllers.Main.txtShape_flowChartPreparation": "Stroomdiagram: Voorbereiding", + "PE.Controllers.Main.txtShape_flowChartProcess": "Stroomdiagram: Proces", + "PE.Controllers.Main.txtShape_flowChartPunchedCard": "Kaartdiagram", + "PE.Controllers.Main.txtShape_flowChartPunchedTape": "Stroomdiagram: Ponsband", + "PE.Controllers.Main.txtShape_flowChartSort": "Stroomdiagram: Sorteren", + "PE.Controllers.Main.txtShape_flowChartSummingJunction": "Stroomdiagram: Samenvoeging", + "PE.Controllers.Main.txtShape_flowChartTerminator": "Stroomdiagram: Beëindigen ", + "PE.Controllers.Main.txtShape_foldedCorner": "Ezelsoor", + "PE.Controllers.Main.txtShape_frame": "Kader", + "PE.Controllers.Main.txtShape_halfFrame": "Half kader", + "PE.Controllers.Main.txtShape_heart": "Hart", + "PE.Controllers.Main.txtShape_heptagon": "Zevenhoek", + "PE.Controllers.Main.txtShape_hexagon": "zeshoek", + "PE.Controllers.Main.txtShape_homePlate": "Vijfhoek", + "PE.Controllers.Main.txtShape_horizontalScroll": "Horizontaal scrollen", + "PE.Controllers.Main.txtShape_irregularSeal1": "Explosie 1", + "PE.Controllers.Main.txtShape_irregularSeal2": "Explosie 2", + "PE.Controllers.Main.txtShape_leftArrow": "Pijl links", + "PE.Controllers.Main.txtShape_leftArrowCallout": "Legenda met peil naar links", + "PE.Controllers.Main.txtShape_leftBrace": "Haakje links", + "PE.Controllers.Main.txtShape_leftBracket": "Links hoekige haak", + "PE.Controllers.Main.txtShape_leftRightArrow": "Peil naar links en rechts", + "PE.Controllers.Main.txtShape_leftRightArrowCallout": "Legenda met peil naar rechts", + "PE.Controllers.Main.txtShape_leftRightUpArrow": "Peil naar links, rechts en boven", + "PE.Controllers.Main.txtShape_leftUpArrow": "Peil naar links en boven", + "PE.Controllers.Main.txtShape_lightningBolt": "Bliksemschicht", + "PE.Controllers.Main.txtShape_line": "Lijn", + "PE.Controllers.Main.txtShape_lineWithArrow": "Pijl", + "PE.Controllers.Main.txtShape_lineWithTwoArrows": "Dubbele pijl", + "PE.Controllers.Main.txtShape_mathDivide": "Deling", + "PE.Controllers.Main.txtShape_mathEqual": "Gelijk", + "PE.Controllers.Main.txtShape_mathMinus": "Min", + "PE.Controllers.Main.txtShape_mathMultiply": "Vermenigvuldigen", + "PE.Controllers.Main.txtShape_mathNotEqual": "Niet gelijk", + "PE.Controllers.Main.txtShape_mathPlus": "Plus", + "PE.Controllers.Main.txtShape_moon": "Maan", + "PE.Controllers.Main.txtShape_noSmoking": "\"Nee\" Symbool", + "PE.Controllers.Main.txtShape_notchedRightArrow": "Pijl naar rechts met kerf", + "PE.Controllers.Main.txtShape_octagon": "Achthoek", + "PE.Controllers.Main.txtShape_parallelogram": "Parallellogram", + "PE.Controllers.Main.txtShape_pentagon": "Vijfhoek", + "PE.Controllers.Main.txtShape_pie": "Taart", + "PE.Controllers.Main.txtShape_plaque": "Onderteken", + "PE.Controllers.Main.txtShape_plus": "Plus", + "PE.Controllers.Main.txtShape_polyline1": "Krabbel", + "PE.Controllers.Main.txtShape_polyline2": "vrije vorm", + "PE.Controllers.Main.txtShape_quadArrow": "Peil in vier richtingen", + "PE.Controllers.Main.txtShape_quadArrowCallout": "Legenda met pijl in vier richtingen", + "PE.Controllers.Main.txtShape_rect": "Vierhoek", + "PE.Controllers.Main.txtShape_ribbon": "Lint naar beneden", + "PE.Controllers.Main.txtShape_ribbon2": "Lint naar boven", + "PE.Controllers.Main.txtShape_rightArrow": "Pijl rechts", + "PE.Controllers.Main.txtShape_rightArrowCallout": "Legenda met pijl naar rechts", + "PE.Controllers.Main.txtShape_rightBrace": "Haak Rechts", + "PE.Controllers.Main.txtShape_rightBracket": "accolade rechts", + "PE.Controllers.Main.txtShape_round1Rect": "Ronde enkele rechthoek", + "PE.Controllers.Main.txtShape_round2DiagRect": "Ronde diagonale rechthoek", + "PE.Controllers.Main.txtShape_round2SameRect": "Ronde rechthoek met dezelfde zijhoek", + "PE.Controllers.Main.txtShape_roundRect": "Afgeronde driehoek", + "PE.Controllers.Main.txtShape_rtTriangle": "Driehoek naar rechts", + "PE.Controllers.Main.txtShape_smileyFace": "Smiley", + "PE.Controllers.Main.txtShape_snip1Rect": "Snip Single Corner Rectangle", + "PE.Controllers.Main.txtShape_snip2DiagRect": "Knip Diagonale Hoek Rechthoek", + "PE.Controllers.Main.txtShape_snip2SameRect": "Knip Rechthoek in hoek aan dezelfde zijde", + "PE.Controllers.Main.txtShape_snipRoundRect": "Knip en rond enkele hoek rechthoek", + "PE.Controllers.Main.txtShape_spline": "Kromming", + "PE.Controllers.Main.txtShape_star10": "10-Punt ster", + "PE.Controllers.Main.txtShape_star12": "12-Punt ster", + "PE.Controllers.Main.txtShape_star16": "16-Punt ster", + "PE.Controllers.Main.txtShape_star24": "24-Punt ster", + "PE.Controllers.Main.txtShape_star32": "32-Punt ster", + "PE.Controllers.Main.txtShape_star4": "4-Punt ster", + "PE.Controllers.Main.txtShape_star5": "5-Punt ster", + "PE.Controllers.Main.txtShape_star6": "6-Punt ster", + "PE.Controllers.Main.txtShape_star7": "7-Punt ster", + "PE.Controllers.Main.txtShape_star8": "8-Punt ster", + "PE.Controllers.Main.txtShape_stripedRightArrow": "Pijl naar rechts met strepen", + "PE.Controllers.Main.txtShape_sun": "Zon", + "PE.Controllers.Main.txtShape_teardrop": "Traan", + "PE.Controllers.Main.txtShape_textRect": "Tekstvak", + "PE.Controllers.Main.txtShape_trapezoid": "Trapezium", + "PE.Controllers.Main.txtShape_triangle": "Driehoek", + "PE.Controllers.Main.txtShape_upArrow": "Pijl omhoog", + "PE.Controllers.Main.txtShape_upArrowCallout": "Legenda met peil omhoog", + "PE.Controllers.Main.txtShape_upDownArrow": "Peil naar boven en beneden", + "PE.Controllers.Main.txtShape_uturnArrow": "U-bocht pijl", + "PE.Controllers.Main.txtShape_verticalScroll": "Verticale scrolling", + "PE.Controllers.Main.txtShape_wave": "Golf", + "PE.Controllers.Main.txtShape_wedgeEllipseCallout": "Ovale legenda", + "PE.Controllers.Main.txtShape_wedgeRectCallout": "Rechthoekige legenda", + "PE.Controllers.Main.txtShape_wedgeRoundRectCallout": "Afgeronde rechthoekige Legenda", "PE.Controllers.Main.txtSldLtTBlank": "Leeg", "PE.Controllers.Main.txtSldLtTChart": "Grafiek", "PE.Controllers.Main.txtSldLtTChartAndTx": "Grafiek en tekst", @@ -348,13 +605,16 @@ "PE.Controllers.Main.txtSlideText": "Tekst van dia", "PE.Controllers.Main.txtSlideTitle": "Diatitel", "PE.Controllers.Main.txtStarsRibbons": "Sterren en linten", + "PE.Controllers.Main.txtTheme_basic": "Basis", "PE.Controllers.Main.txtTheme_blank": "Leeg", "PE.Controllers.Main.txtTheme_classic": "Klassiek", "PE.Controllers.Main.txtTheme_corner": "Hoek", "PE.Controllers.Main.txtTheme_dotted": "Stippels", "PE.Controllers.Main.txtTheme_green": "Groen", + "PE.Controllers.Main.txtTheme_green_leaf": "Natuur thema", "PE.Controllers.Main.txtTheme_lines": "Lijnen", "PE.Controllers.Main.txtTheme_office": "Kantoor", + "PE.Controllers.Main.txtTheme_office_theme": "Office thema", "PE.Controllers.Main.txtTheme_official": "Officieel", "PE.Controllers.Main.txtTheme_pixel": "Pixel", "PE.Controllers.Main.txtTheme_safari": "Safari", @@ -368,9 +628,12 @@ "PE.Controllers.Main.uploadImageSizeMessage": "Maximale afbeeldingsgrootte overschreden.", "PE.Controllers.Main.uploadImageTextText": "Afbeelding wordt geüpload...", "PE.Controllers.Main.uploadImageTitleText": "Afbeelding wordt geüpload", + "PE.Controllers.Main.waitText": "Een moment...", "PE.Controllers.Main.warnBrowserIE9": "Met IE9 heeft de toepassing beperkte mogelijkheden. Gebruik IE10 of hoger.", "PE.Controllers.Main.warnBrowserZoom": "De huidige zoominstelling van uw browser wordt niet ondersteund. Zet de zoominstelling terug op de standaardwaarde door op Ctrl+0 te drukken.", + "PE.Controllers.Main.warnLicenseExceeded": "Het aantal gelijktijdige verbindingen met de document server heeft het maximum overschreven. Het document zal geopend worden in een alleen-lezen modus.
            Neem contact op met de beheerder voor meer informatie.", "PE.Controllers.Main.warnLicenseExp": "Uw licentie is vervallen.
            Werk uw licentie bij en vernieuw de pagina.", + "PE.Controllers.Main.warnLicenseUsersExceeded": "Het aantal gelijktijdige gebruikers met de document server heeft het maximum overschreven. Het document zal geopend worden in een alleen-lezen modus.
            Neem contact op met de beheerder voor meer informatie.", "PE.Controllers.Main.warnNoLicense": "Deze versie van %1 bevat limieten voor het aantal gelijktijdige gebruikers.
            Indien meer nodig is, upgrade dan de huidige licentie of schaf een commerciële licentie aan.", "PE.Controllers.Main.warnNoLicenseUsers": "Deze versie van %1 bevat limieten voor het aantal gelijktijdige gebruikers.
            Indien meer nodig is, upgrade dan de huidige licentie of schaf een commerciële licentie aan.", "PE.Controllers.Main.warnProcessRightsChange": "Het recht om het bestand te bewerken is u ontzegd.", @@ -382,6 +645,7 @@ "PE.Controllers.Toolbar.textFontSizeErr": "De ingevoerde waarde is onjuist.
            Voer een waarde tussen 1 en 100 in", "PE.Controllers.Toolbar.textFraction": "Breuken", "PE.Controllers.Toolbar.textFunction": "Functies", + "PE.Controllers.Toolbar.textInsert": "Invoegen", "PE.Controllers.Toolbar.textIntegral": "Integralen", "PE.Controllers.Toolbar.textLargeOperator": "Grote operators", "PE.Controllers.Toolbar.textLimitAndLog": "Limieten en logaritmen", @@ -722,8 +986,15 @@ "PE.Views.ChartSettingsAdvanced.textAltTip": "De alternatieve, op tekst gebaseerde weergave van de visuele objectinformatie. Deze wordt voorgelezen voor mensen met visuele of cognitieve handicaps om hen te helpen begrijpen welke informatie aanwezig is in de afbeelding, AutoVorm, grafiek of tabel.", "PE.Views.ChartSettingsAdvanced.textAltTitle": "Titel", "PE.Views.ChartSettingsAdvanced.textTitle": "Grafiek - Geavanceerde instellingen", + "PE.Views.DateTimeDialog.confirmDefault": "Stel de standaardindeling in voor {0}: \"{1}\"", + "PE.Views.DateTimeDialog.textDefault": "stel in als standaard", + "PE.Views.DateTimeDialog.textFormat": "Formaat", + "PE.Views.DateTimeDialog.textLang": "Taal", + "PE.Views.DateTimeDialog.textUpdate": "Automatisch updaten", + "PE.Views.DateTimeDialog.txtTitle": "Datum & Tijd", "PE.Views.DocumentHolder.aboveText": "Boven", "PE.Views.DocumentHolder.addCommentText": "Opmerking toevoegen", + "PE.Views.DocumentHolder.addToLayoutText": "Toevoegen aan lay-out", "PE.Views.DocumentHolder.advancedImageText": "Geavanceerde afbeeldingsinstellingen", "PE.Views.DocumentHolder.advancedParagraphText": "Geavanceerde tekstinstellingen", "PE.Views.DocumentHolder.advancedShapeText": "Geavanceerde vorminstellingen", @@ -758,6 +1029,7 @@ "PE.Views.DocumentHolder.leftText": "Links", "PE.Views.DocumentHolder.loadSpellText": "Varianten worden geladen...", "PE.Views.DocumentHolder.mergeCellsText": "Cellen samenvoegen", + "PE.Views.DocumentHolder.mniCustomTable": "Aangepaste tabel invoegen", "PE.Views.DocumentHolder.moreText": "Meer varianten...", "PE.Views.DocumentHolder.noSpellVariantsText": "Geen varianten", "PE.Views.DocumentHolder.originalSizeText": "Standaardgrootte", @@ -774,15 +1046,24 @@ "PE.Views.DocumentHolder.textArrangeForward": "Naar Voren Verplaatsen", "PE.Views.DocumentHolder.textArrangeFront": "Naar voorgrond brengen", "PE.Views.DocumentHolder.textCopy": "Kopiëren", + "PE.Views.DocumentHolder.textCrop": "Uitsnijden", + "PE.Views.DocumentHolder.textCropFill": "Vullen", + "PE.Views.DocumentHolder.textCropFit": "Aanpassen", "PE.Views.DocumentHolder.textCut": "Knippen", "PE.Views.DocumentHolder.textDistributeCols": "Kolommen verdelen", "PE.Views.DocumentHolder.textDistributeRows": "Rijen verdelen", + "PE.Views.DocumentHolder.textFlipH": "Horizontaal omdraaien", + "PE.Views.DocumentHolder.textFlipV": "Verticaal omdraaien", "PE.Views.DocumentHolder.textFromFile": "Van bestand", + "PE.Views.DocumentHolder.textFromStorage": "Van Opslag", "PE.Views.DocumentHolder.textFromUrl": "Van URL", "PE.Views.DocumentHolder.textNextPage": "Volgende dia", "PE.Views.DocumentHolder.textPaste": "Plakken", "PE.Views.DocumentHolder.textPrevPage": "Vorige dia", "PE.Views.DocumentHolder.textReplace": "Afbeelding vervangen", + "PE.Views.DocumentHolder.textRotate": "Draaien", + "PE.Views.DocumentHolder.textRotate270": "Draaien 90° linksom", + "PE.Views.DocumentHolder.textRotate90": "Draaien 90° rechtsom", "PE.Views.DocumentHolder.textShapeAlignBottom": "Onder uitlijnen", "PE.Views.DocumentHolder.textShapeAlignCenter": "Midden uitlijnen", "PE.Views.DocumentHolder.textShapeAlignLeft": "Links uitlijnen", @@ -792,6 +1073,7 @@ "PE.Views.DocumentHolder.textSlideSettings": "Dia-instellingen", "PE.Views.DocumentHolder.textUndo": "Ongedaan maken", "PE.Views.DocumentHolder.tipIsLocked": "Dit element wordt op dit moment bewerkt door een andere gebruiker.", + "PE.Views.DocumentHolder.toDictionaryText": "Toevoegen aan woordenboek", "PE.Views.DocumentHolder.txtAddBottom": "Onderrand toevoegen", "PE.Views.DocumentHolder.txtAddFractionBar": "Deelteken toevoegen", "PE.Views.DocumentHolder.txtAddHor": "Horizontale lijn toevoegen", @@ -861,6 +1143,7 @@ "PE.Views.DocumentHolder.txtPasteSourceFormat": "Behoud bronopmaak", "PE.Views.DocumentHolder.txtPressLink": "Druk op Ctrl en klik op koppeling", "PE.Views.DocumentHolder.txtPreview": "Diavoorstelling starten", + "PE.Views.DocumentHolder.txtPrintSelection": "Selectie afdrukken", "PE.Views.DocumentHolder.txtRemFractionBar": "Deelteken verwijderen", "PE.Views.DocumentHolder.txtRemLimit": "Limiet verwijderen", "PE.Views.DocumentHolder.txtRemoveAccentChar": "Accentteken verwijderen", @@ -868,6 +1151,7 @@ "PE.Views.DocumentHolder.txtRemScripts": "Scripts verwijderen", "PE.Views.DocumentHolder.txtRemSubscript": "Subscript verwijderen", "PE.Views.DocumentHolder.txtRemSuperscript": "Superscript verwijderen", + "PE.Views.DocumentHolder.txtResetLayout": "Reset dia", "PE.Views.DocumentHolder.txtScriptsAfter": "Scripts na tekst", "PE.Views.DocumentHolder.txtScriptsBefore": "Scripts vóór tekst", "PE.Views.DocumentHolder.txtSelectAll": "Alles selecteren", @@ -912,6 +1196,7 @@ "PE.Views.FileMenu.btnRightsCaption": "Toegangsrechten...", "PE.Views.FileMenu.btnSaveAsCaption": "Opslaan als", "PE.Views.FileMenu.btnSaveCaption": "Opslaan", + "PE.Views.FileMenu.btnSaveCopyAsCaption": "Kopie opslaan als...", "PE.Views.FileMenu.btnSettingsCaption": "Geavanceerde instellingen...", "PE.Views.FileMenu.btnToEditCaption": "Presentatie bewerken", "PE.Views.FileMenuPanels.CreateNew.fromBlankText": "Van leeg bestand", @@ -919,11 +1204,22 @@ "PE.Views.FileMenuPanels.CreateNew.newDescriptionText": "Maak een nieuwe lege presentatie. Op de lege presentatie kunt u vervolgens stijlen en opmaak toepassen tijdens het bewerken. U kunt ook een van de sjablonen kiezen om te beginnen met een presentatie van een bepaald type of met een bepaald doel. In dat geval zijn sommige stijlen al toegepast.", "PE.Views.FileMenuPanels.CreateNew.newDocumentText": "Nieuwe presentatie", "PE.Views.FileMenuPanels.CreateNew.noTemplatesText": "Er zijn geen sjablonen", + "PE.Views.FileMenuPanels.DocumentInfo.okButtonText": "Toepassen", + "PE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Voeg auteur toe", + "PE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Tekst toevoegen", + "PE.Views.FileMenuPanels.DocumentInfo.txtAppName": "Applicatie", "PE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Auteur", "PE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Toegangsrechten wijzigen", + "PE.Views.FileMenuPanels.DocumentInfo.txtComment": "Opmerking", + "PE.Views.FileMenuPanels.DocumentInfo.txtCreated": "Aangemaakt", + "PE.Views.FileMenuPanels.DocumentInfo.txtModifyBy": "Laatst aangepast door", + "PE.Views.FileMenuPanels.DocumentInfo.txtModifyDate": "Laatst aangepast", + "PE.Views.FileMenuPanels.DocumentInfo.txtOwner": "Eigenaar", "PE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Locatie", "PE.Views.FileMenuPanels.DocumentInfo.txtRights": "Personen met rechten", + "PE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Onderwerp", "PE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Presentatietitel", + "PE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Geupload", "PE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Toegangsrechten wijzigen", "PE.Views.FileMenuPanels.DocumentRights.txtRights": "Personen met rechten", "PE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Waarschuwing", @@ -944,8 +1240,12 @@ "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Andere gebruikers zien uw wijzigingen onmiddellijk", "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "U moet de wijzigingen accepteren om die te kunnen zien", "PE.Views.FileMenuPanels.Settings.strFast": "Snel", + "PE.Views.FileMenuPanels.Settings.strFontRender": "Hints voor lettertype", "PE.Views.FileMenuPanels.Settings.strForcesave": "Altijd op server opslaan (anders op server opslaan bij sluiten document)", "PE.Views.FileMenuPanels.Settings.strInputMode": "Hiërogliefen inschakelen", + "PE.Views.FileMenuPanels.Settings.strMacrosSettings": "Macro instellingen", + "PE.Views.FileMenuPanels.Settings.strPaste": "Knippen, kopiëren en plakken", + "PE.Views.FileMenuPanels.Settings.strPasteButton": "Toon de knop Plakopties wanneer de inhoud is geplakt", "PE.Views.FileMenuPanels.Settings.strShowChanges": "Wijzigingen in real-time samenwerking", "PE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Optie voor spellingcontrole inschakelen", "PE.Views.FileMenuPanels.Settings.strStrict": "Strikt", @@ -962,14 +1262,40 @@ "PE.Views.FileMenuPanels.Settings.textForceSave": "Opslaan op server", "PE.Views.FileMenuPanels.Settings.textMinute": "Elke minuut", "PE.Views.FileMenuPanels.Settings.txtAll": "Alles weergeven", + "PE.Views.FileMenuPanels.Settings.txtAutoCorrect": "Instellingen automatische spellingscontrole", + "PE.Views.FileMenuPanels.Settings.txtCacheMode": "standaard cache modus", "PE.Views.FileMenuPanels.Settings.txtCm": "Centimeter", "PE.Views.FileMenuPanels.Settings.txtFitSlide": "Aanpassen aan dia", "PE.Views.FileMenuPanels.Settings.txtFitWidth": "Aan breedte aanpassen", "PE.Views.FileMenuPanels.Settings.txtInch": "Inch", "PE.Views.FileMenuPanels.Settings.txtInput": "Alternatieve invoer", "PE.Views.FileMenuPanels.Settings.txtLast": "Laatste weergeven", + "PE.Views.FileMenuPanels.Settings.txtMac": "als OS X", + "PE.Views.FileMenuPanels.Settings.txtNative": "Native", + "PE.Views.FileMenuPanels.Settings.txtProofing": "Controlleren", "PE.Views.FileMenuPanels.Settings.txtPt": "Punt", + "PE.Views.FileMenuPanels.Settings.txtRunMacros": "Alles inschakelen", + "PE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "Schakel alle macro's in zonder een notificatie", "PE.Views.FileMenuPanels.Settings.txtSpellCheck": "Spellingcontrole", + "PE.Views.FileMenuPanels.Settings.txtStopMacros": "Alles uitschakelen", + "PE.Views.FileMenuPanels.Settings.txtStopMacrosDesc": "Schakel alle macro's uit zonder melding", + "PE.Views.FileMenuPanels.Settings.txtWarnMacros": "Weergeef notificatie", + "PE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Schakel alle macro's uit met een melding", + "PE.Views.FileMenuPanels.Settings.txtWin": "als Windows", + "PE.Views.HeaderFooterDialog.applyAllText": "Op alles toepassen", + "PE.Views.HeaderFooterDialog.applyText": "Toepassen", + "PE.Views.HeaderFooterDialog.diffLanguage": "U kunt geen datumnotatie gebruiken in een andere taal dan het diamodel.
            Als u het model wilt wijzigen, klikt u op 'Toepassen op alles' in plaats van 'Toepassen'.", + "PE.Views.HeaderFooterDialog.notcriticalErrorTitle": "Waarschuwing", + "PE.Views.HeaderFooterDialog.textDateTime": "Datum & tijd", + "PE.Views.HeaderFooterDialog.textFixed": "Vast", + "PE.Views.HeaderFooterDialog.textFooter": "Tekst in voettekst", + "PE.Views.HeaderFooterDialog.textFormat": "Formaat", + "PE.Views.HeaderFooterDialog.textLang": "Taal", + "PE.Views.HeaderFooterDialog.textNotTitle": "Niet weergeven op titeldia", + "PE.Views.HeaderFooterDialog.textPreview": "Voorbeeld", + "PE.Views.HeaderFooterDialog.textSlideNum": "Dianummer", + "PE.Views.HeaderFooterDialog.textTitle": "Voettekst instellingen", + "PE.Views.HeaderFooterDialog.textUpdate": "Automatisch updaten", "PE.Views.HyperlinkSettingsDialog.strDisplay": "Weergeven", "PE.Views.HyperlinkSettingsDialog.strLinkTo": "Koppelen aan", "PE.Views.HyperlinkSettingsDialog.textDefault": "Geselecteerd tekstfragment", @@ -978,6 +1304,7 @@ "PE.Views.HyperlinkSettingsDialog.textEmptyTooltip": "Tooltip hier invoeren", "PE.Views.HyperlinkSettingsDialog.textExternalLink": "Externe koppeling", "PE.Views.HyperlinkSettingsDialog.textInternalLink": "Dia in deze presentatie", + "PE.Views.HyperlinkSettingsDialog.textSlides": "Dia's", "PE.Views.HyperlinkSettingsDialog.textTipText": "Tekst van Scherminfo", "PE.Views.HyperlinkSettingsDialog.textTitle": "Instellingen hyperlink", "PE.Views.HyperlinkSettingsDialog.txtEmpty": "Dit veld is vereist", @@ -988,26 +1315,43 @@ "PE.Views.HyperlinkSettingsDialog.txtPrev": "Vorige dia", "PE.Views.HyperlinkSettingsDialog.txtSlide": "Dia", "PE.Views.ImageSettings.textAdvanced": "Geavanceerde instellingen tonen", + "PE.Views.ImageSettings.textCrop": "Uitsnijden", + "PE.Views.ImageSettings.textCropFill": "Vullen", + "PE.Views.ImageSettings.textCropFit": "Aanpassen", "PE.Views.ImageSettings.textEdit": "Bewerken", "PE.Views.ImageSettings.textEditObject": "Object bewerken", + "PE.Views.ImageSettings.textFitSlide": "Aanpassen aan dia", + "PE.Views.ImageSettings.textFlip": "Draaien", "PE.Views.ImageSettings.textFromFile": "Van bestand", + "PE.Views.ImageSettings.textFromStorage": "Van Opslag", "PE.Views.ImageSettings.textFromUrl": "Van URL", "PE.Views.ImageSettings.textHeight": "Hoogte", + "PE.Views.ImageSettings.textHint270": "Draaien 90° linksom", + "PE.Views.ImageSettings.textHint90": "Draaien 90° rechtsom", + "PE.Views.ImageSettings.textHintFlipH": "Horizontaal omdraaien", + "PE.Views.ImageSettings.textHintFlipV": "Verticaal omdraaien", "PE.Views.ImageSettings.textInsert": "Afbeelding vervangen", "PE.Views.ImageSettings.textOriginalSize": "Standaardgrootte", + "PE.Views.ImageSettings.textRotate90": "Draaien 90°", + "PE.Views.ImageSettings.textRotation": "Draaien", "PE.Views.ImageSettings.textSize": "Grootte", "PE.Views.ImageSettings.textWidth": "Breedte", "PE.Views.ImageSettingsAdvanced.textAlt": "Alternatieve tekst", "PE.Views.ImageSettingsAdvanced.textAltDescription": "Beschrijving", "PE.Views.ImageSettingsAdvanced.textAltTip": "De alternatieve, op tekst gebaseerde weergave van de visuele objectinformatie. Deze wordt voorgelezen voor mensen met visuele of cognitieve handicaps om hen te helpen begrijpen welke informatie aanwezig is in de afbeelding, AutoVorm, grafiek of tabel.", "PE.Views.ImageSettingsAdvanced.textAltTitle": "Titel", + "PE.Views.ImageSettingsAdvanced.textAngle": "Hoek", + "PE.Views.ImageSettingsAdvanced.textFlipped": "Gedraaid", "PE.Views.ImageSettingsAdvanced.textHeight": "Hoogte", + "PE.Views.ImageSettingsAdvanced.textHorizontally": "Horizontaal", "PE.Views.ImageSettingsAdvanced.textKeepRatio": "Constante verhoudingen", - "PE.Views.ImageSettingsAdvanced.textOriginalSize": "Standaardgrootte", + "PE.Views.ImageSettingsAdvanced.textOriginalSize": "Ware grootte", "PE.Views.ImageSettingsAdvanced.textPlacement": "Plaatsing", "PE.Views.ImageSettingsAdvanced.textPosition": "Positie", + "PE.Views.ImageSettingsAdvanced.textRotation": "Draaien", "PE.Views.ImageSettingsAdvanced.textSize": "Grootte", "PE.Views.ImageSettingsAdvanced.textTitle": "Afbeelding - Geavanceerde instellingen", + "PE.Views.ImageSettingsAdvanced.textVertically": "Verticaal ", "PE.Views.ImageSettingsAdvanced.textWidth": "Breedte", "PE.Views.LeftMenu.tipAbout": "Over", "PE.Views.LeftMenu.tipChat": "Chat", @@ -1032,19 +1376,31 @@ "PE.Views.ParagraphSettingsAdvanced.noTabs": "De opgegeven tabbladen worden in dit veld weergegeven", "PE.Views.ParagraphSettingsAdvanced.strAllCaps": "Allemaal hoofdletters", "PE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Dubbel doorhalen", + "PE.Views.ParagraphSettingsAdvanced.strIndent": "Inspringen", "PE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Links", + "PE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing": "Regelafstand", "PE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Rechts", + "PE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter": "Na", + "PE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore": "Voor", + "PE.Views.ParagraphSettingsAdvanced.strIndentsSpecial": "Speciaal", "PE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Lettertype", "PE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "Inspringingen en plaatsing", "PE.Views.ParagraphSettingsAdvanced.strSmallCaps": "Kleine hoofdletters", + "PE.Views.ParagraphSettingsAdvanced.strSpacing": "Afstand", "PE.Views.ParagraphSettingsAdvanced.strStrike": "Doorhalen", "PE.Views.ParagraphSettingsAdvanced.strSubscript": "Subscript", "PE.Views.ParagraphSettingsAdvanced.strSuperscript": "Superscript", "PE.Views.ParagraphSettingsAdvanced.strTabs": "Tab", "PE.Views.ParagraphSettingsAdvanced.textAlign": "Uitlijning", + "PE.Views.ParagraphSettingsAdvanced.textAuto": "meerdere", "PE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Tekenafstand", "PE.Views.ParagraphSettingsAdvanced.textDefault": "Standaardtabblad", "PE.Views.ParagraphSettingsAdvanced.textEffects": "Effecten", + "PE.Views.ParagraphSettingsAdvanced.textExact": "exact", + "PE.Views.ParagraphSettingsAdvanced.textFirstLine": "Eerste alinea", + "PE.Views.ParagraphSettingsAdvanced.textHanging": "Hangend", + "PE.Views.ParagraphSettingsAdvanced.textJustified": "Uitgevuld", + "PE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(geen)", "PE.Views.ParagraphSettingsAdvanced.textRemove": "Verwijderen", "PE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Alles verwijderen", "PE.Views.ParagraphSettingsAdvanced.textSet": "Opgeven", @@ -1053,6 +1409,7 @@ "PE.Views.ParagraphSettingsAdvanced.textTabPosition": "Tabpositie", "PE.Views.ParagraphSettingsAdvanced.textTabRight": "Rechts", "PE.Views.ParagraphSettingsAdvanced.textTitle": "Alinea - Geavanceerde instellingen", + "PE.Views.ParagraphSettingsAdvanced.txtAutoText": "Automatisch", "PE.Views.RightMenu.txtChartSettings": "Grafiekinstellingen", "PE.Views.RightMenu.txtImageSettings": "Afbeeldingsinstellingen", "PE.Views.RightMenu.txtParagraphSettings": "Tekstinstellingen", @@ -1067,6 +1424,7 @@ "PE.Views.ShapeSettings.strFill": "Vulling", "PE.Views.ShapeSettings.strForeground": "Voorgrondkleur", "PE.Views.ShapeSettings.strPattern": "Patroon", + "PE.Views.ShapeSettings.strShadow": "Weergeef schaduw", "PE.Views.ShapeSettings.strSize": "Grootte", "PE.Views.ShapeSettings.strStroke": "Streek", "PE.Views.ShapeSettings.strTransparency": "Ondoorzichtigheid", @@ -1076,15 +1434,24 @@ "PE.Views.ShapeSettings.textColor": "Kleuropvulling", "PE.Views.ShapeSettings.textDirection": "Richting", "PE.Views.ShapeSettings.textEmptyPattern": "Geen patroon", + "PE.Views.ShapeSettings.textFlip": "Draaien", "PE.Views.ShapeSettings.textFromFile": "Van bestand", + "PE.Views.ShapeSettings.textFromStorage": "Van Opslag", "PE.Views.ShapeSettings.textFromUrl": "Van URL", "PE.Views.ShapeSettings.textGradient": "Kleurovergang", "PE.Views.ShapeSettings.textGradientFill": "Vulling met kleurovergang", + "PE.Views.ShapeSettings.textHint270": "Draaien 90° linksom", + "PE.Views.ShapeSettings.textHint90": "Draaien 90° rechtsom", + "PE.Views.ShapeSettings.textHintFlipH": "Horizontaal omdraaien", + "PE.Views.ShapeSettings.textHintFlipV": "Verticaal omdraaien", "PE.Views.ShapeSettings.textImageTexture": "Afbeelding of textuur", "PE.Views.ShapeSettings.textLinear": "Lineair", "PE.Views.ShapeSettings.textNoFill": "Geen vulling", "PE.Views.ShapeSettings.textPatternFill": "Patroon", "PE.Views.ShapeSettings.textRadial": "Radiaal", + "PE.Views.ShapeSettings.textRotate90": "Draaien 90°", + "PE.Views.ShapeSettings.textRotation": "Draaien", + "PE.Views.ShapeSettings.textSelectImage": "selecteer afbeelding", "PE.Views.ShapeSettings.textSelectTexture": "Selecteren", "PE.Views.ShapeSettings.textStretch": "Uitrekken", "PE.Views.ShapeSettings.textStyle": "Stijl", @@ -1108,7 +1475,9 @@ "PE.Views.ShapeSettingsAdvanced.textAltDescription": "Beschrijving", "PE.Views.ShapeSettingsAdvanced.textAltTip": "De alternatieve, op tekst gebaseerde weergave van de visuele objectinformatie. Deze wordt voorgelezen voor mensen met visuele of cognitieve handicaps om hen te helpen begrijpen welke informatie aanwezig is in de afbeelding, AutoVorm, grafiek of tabel.", "PE.Views.ShapeSettingsAdvanced.textAltTitle": "Titel", + "PE.Views.ShapeSettingsAdvanced.textAngle": "Hoek", "PE.Views.ShapeSettingsAdvanced.textArrows": "Pijlen", + "PE.Views.ShapeSettingsAdvanced.textAutofit": "Automatisch passend maken", "PE.Views.ShapeSettingsAdvanced.textBeginSize": "Begingrootte", "PE.Views.ShapeSettingsAdvanced.textBeginStyle": "Beginstijl", "PE.Views.ShapeSettingsAdvanced.textBevel": "Schuine rand", @@ -1118,19 +1487,27 @@ "PE.Views.ShapeSettingsAdvanced.textEndSize": "Eindgrootte", "PE.Views.ShapeSettingsAdvanced.textEndStyle": "Eindstijl", "PE.Views.ShapeSettingsAdvanced.textFlat": "Plat", + "PE.Views.ShapeSettingsAdvanced.textFlipped": "Gedraaid", "PE.Views.ShapeSettingsAdvanced.textHeight": "Hoogte", + "PE.Views.ShapeSettingsAdvanced.textHorizontally": "Horizontaal", "PE.Views.ShapeSettingsAdvanced.textJoinType": "Type join", "PE.Views.ShapeSettingsAdvanced.textKeepRatio": "Constante verhoudingen", "PE.Views.ShapeSettingsAdvanced.textLeft": "Links", "PE.Views.ShapeSettingsAdvanced.textLineStyle": "Lijnstijl", "PE.Views.ShapeSettingsAdvanced.textMiter": "Verstek", + "PE.Views.ShapeSettingsAdvanced.textNofit": "Niet automatisch aanpassen", + "PE.Views.ShapeSettingsAdvanced.textResizeFit": "Formaat aanpassen aan tekst", "PE.Views.ShapeSettingsAdvanced.textRight": "Rechts", + "PE.Views.ShapeSettingsAdvanced.textRotation": "Draaien", "PE.Views.ShapeSettingsAdvanced.textRound": "Rond", + "PE.Views.ShapeSettingsAdvanced.textShrink": "Tekst verkleinen bij overloop", "PE.Views.ShapeSettingsAdvanced.textSize": "Grootte", "PE.Views.ShapeSettingsAdvanced.textSpacing": "Afstand tussen kolommen", "PE.Views.ShapeSettingsAdvanced.textSquare": "Vierkant", + "PE.Views.ShapeSettingsAdvanced.textTextBox": "Tekstvak", "PE.Views.ShapeSettingsAdvanced.textTitle": "Vorm - Geavanceerde instellingen", "PE.Views.ShapeSettingsAdvanced.textTop": "Boven", + "PE.Views.ShapeSettingsAdvanced.textVertically": "Verticaal ", "PE.Views.ShapeSettingsAdvanced.textWeightArrows": "Gewichten & pijlen", "PE.Views.ShapeSettingsAdvanced.textWidth": "Breedte", "PE.Views.ShapeSettingsAdvanced.txtNone": "Geen", @@ -1147,12 +1524,14 @@ "PE.Views.SignatureSettings.txtSignedInvalid": "Een of meer digitale handtekeningen in deze presentatie zijn ongeldig of konden niet geverifieerd worden. Deze presentatie is beveiligd tegen aanpassingen.", "PE.Views.SlideSettings.strBackground": "Achtergrondkleur", "PE.Views.SlideSettings.strColor": "Kleur", + "PE.Views.SlideSettings.strDateTime": "Weergeef datum & tijd", "PE.Views.SlideSettings.strDelay": "Vertragen", "PE.Views.SlideSettings.strDuration": "Duur", "PE.Views.SlideSettings.strEffect": "Effect", "PE.Views.SlideSettings.strFill": "Achtergrond", "PE.Views.SlideSettings.strForeground": "Voorgrondkleur", "PE.Views.SlideSettings.strPattern": "Patroon", + "PE.Views.SlideSettings.strSlideNum": "Toon dia nummer", "PE.Views.SlideSettings.strStartOnClick": "Bij klik starten", "PE.Views.SlideSettings.textAdvanced": "Geavanceerde instellingen tonen", "PE.Views.SlideSettings.textApplyAll": "Toepassen op alle dia's", @@ -1169,6 +1548,7 @@ "PE.Views.SlideSettings.textEmptyPattern": "Geen patroon", "PE.Views.SlideSettings.textFade": "Vervagen", "PE.Views.SlideSettings.textFromFile": "Van bestand", + "PE.Views.SlideSettings.textFromStorage": "Van Opslag", "PE.Views.SlideSettings.textFromUrl": "Van URL", "PE.Views.SlideSettings.textGradient": "Kleurovergang", "PE.Views.SlideSettings.textGradientFill": "Vulling met kleurovergang", @@ -1186,6 +1566,7 @@ "PE.Views.SlideSettings.textReset": "Wijzigingen herstellen", "PE.Views.SlideSettings.textRight": "Rechts", "PE.Views.SlideSettings.textSec": "s", + "PE.Views.SlideSettings.textSelectImage": "selecteer afbeelding", "PE.Views.SlideSettings.textSelectTexture": "Selecteren", "PE.Views.SlideSettings.textSmoothly": "Vloeiend", "PE.Views.SlideSettings.textSplit": "Splitsen", @@ -1240,6 +1621,9 @@ "PE.Views.SlideSizeSettings.txtWidescreen2": "Breedbeeld (16:10)", "PE.Views.Statusbar.goToPageText": "Naar dia gaan", "PE.Views.Statusbar.pageIndexText": "Dia {0} van {1}", + "PE.Views.Statusbar.textShowBegin": "Vanaf begin weergeven", + "PE.Views.Statusbar.textShowCurrent": "Vanaf huidige dia tonen", + "PE.Views.Statusbar.textShowPresenterView": "Presentatieweergave tonen", "PE.Views.Statusbar.tipAccessRights": "Toegangsrechten documenten beheren", "PE.Views.Statusbar.tipFitPage": "Aanpassen aan dia", "PE.Views.Statusbar.tipFitWidth": "Aan breedte aanpassen", @@ -1294,6 +1678,14 @@ "PE.Views.TableSettings.tipRight": "Alleen buitenrand rechts instellen", "PE.Views.TableSettings.tipTop": "Alleen buitenrand boven instellen", "PE.Views.TableSettings.txtNoBorders": "Geen randen", + "PE.Views.TableSettings.txtTable_Accent": "Accent", + "PE.Views.TableSettings.txtTable_DarkStyle": "Donkere stijl", + "PE.Views.TableSettings.txtTable_LightStyle": "lichte stijl", + "PE.Views.TableSettings.txtTable_MediumStyle": "Gemiddelde stijl", + "PE.Views.TableSettings.txtTable_NoGrid": "Geen raster", + "PE.Views.TableSettings.txtTable_NoStyle": "Geen stijl", + "PE.Views.TableSettings.txtTable_TableGrid": "Tabel raster", + "PE.Views.TableSettings.txtTable_ThemedStyle": "Thema-stijl", "PE.Views.TableSettingsAdvanced.textAlt": "Alternatieve tekst", "PE.Views.TableSettingsAdvanced.textAltDescription": "Beschrijving", "PE.Views.TableSettingsAdvanced.textAltTip": "De alternatieve, op tekst gebaseerde weergave van de visuele objectinformatie. Deze wordt voorgelezen voor mensen met visuele of cognitieve handicaps om hen te helpen begrijpen welke informatie aanwezig is in de afbeelding, AutoVorm, grafiek of tabel.", @@ -1349,7 +1741,13 @@ "PE.Views.TextArtSettings.txtPapyrus": "Papyrus", "PE.Views.TextArtSettings.txtWood": "Hout", "PE.Views.Toolbar.capAddSlide": "Dia toevoegen", + "PE.Views.Toolbar.capBtnAddComment": "Opmerking toevoegen", "PE.Views.Toolbar.capBtnComment": "Opmerking", + "PE.Views.Toolbar.capBtnDateTime": "Datum & Tijd", + "PE.Views.Toolbar.capBtnInsHeader": "Voettekst", + "PE.Views.Toolbar.capBtnInsSymbol": "symbool", + "PE.Views.Toolbar.capBtnSlideNum": "Dianummer", + "PE.Views.Toolbar.capInsertAudio": "Audio", "PE.Views.Toolbar.capInsertChart": "Grafiek", "PE.Views.Toolbar.capInsertEquation": "Vergelijking", "PE.Views.Toolbar.capInsertHyperlink": "Hyperlink", @@ -1357,11 +1755,13 @@ "PE.Views.Toolbar.capInsertShape": "Vorm", "PE.Views.Toolbar.capInsertTable": "Tabel", "PE.Views.Toolbar.capInsertText": "Tekstvak", + "PE.Views.Toolbar.capInsertVideo": "Video", "PE.Views.Toolbar.capTabFile": "Bestand", "PE.Views.Toolbar.capTabHome": "Home", "PE.Views.Toolbar.capTabInsert": "Invoegen", "PE.Views.Toolbar.mniCustomTable": "Aangepaste tabel invoegen", "PE.Views.Toolbar.mniImageFromFile": "Afbeelding uit bestand", + "PE.Views.Toolbar.mniImageFromStorage": "Afbeelding van opslag", "PE.Views.Toolbar.mniImageFromUrl": "Afbeelding van URL", "PE.Views.Toolbar.mniSlideAdvanced": "Geavanceerde instellingen", "PE.Views.Toolbar.mniSlideStandard": "Standaard (4:3)", @@ -1379,8 +1779,8 @@ "PE.Views.Toolbar.textArrangeFront": "Naar voorgrond brengen", "PE.Views.Toolbar.textBold": "Vet", "PE.Views.Toolbar.textItalic": "Cursief", + "PE.Views.Toolbar.textListSettings": "Lijst instellingen", "PE.Views.Toolbar.textNewColor": "Aangepaste kleur", - "Common.UI.ColorButton.textNewColor": "Aangepaste kleur", "PE.Views.Toolbar.textShapeAlignBottom": "Onder uitlijnen", "PE.Views.Toolbar.textShapeAlignCenter": "Midden uitlijnen", "PE.Views.Toolbar.textShapeAlignLeft": "Links uitlijnen", @@ -1409,20 +1809,25 @@ "PE.Views.Toolbar.tipColorSchemas": "Kleurenschema wijzigen", "PE.Views.Toolbar.tipCopy": "Kopiëren", "PE.Views.Toolbar.tipCopyStyle": "Stijl kopiëren", + "PE.Views.Toolbar.tipDateTime": "Invoegen huidige datum en tijd", "PE.Views.Toolbar.tipDecPrLeft": "Inspringing verkleinen", + "PE.Views.Toolbar.tipEditHeader": "Voettekst bewerken", "PE.Views.Toolbar.tipFontColor": "Tekenkleur", "PE.Views.Toolbar.tipFontName": "Lettertype", "PE.Views.Toolbar.tipFontSize": "Tekengrootte", "PE.Views.Toolbar.tipHAligh": "Horizontale uitlijning", "PE.Views.Toolbar.tipIncPrLeft": "Inspringing vergroten", + "PE.Views.Toolbar.tipInsertAudio": "Voeg geluid toe", "PE.Views.Toolbar.tipInsertChart": "Grafiek invoegen", "PE.Views.Toolbar.tipInsertEquation": "Vergelijking invoegen", "PE.Views.Toolbar.tipInsertHyperlink": "Hyperlink toevoegen", "PE.Views.Toolbar.tipInsertImage": "Afbeelding invoegen", "PE.Views.Toolbar.tipInsertShape": "AutoVorm invoegen", + "PE.Views.Toolbar.tipInsertSymbol": "Symbool toevoegen", "PE.Views.Toolbar.tipInsertTable": "Tabel invoegen", "PE.Views.Toolbar.tipInsertText": "Tekstvak invoegen", "PE.Views.Toolbar.tipInsertTextArt": "Text Art Invoegen", + "PE.Views.Toolbar.tipInsertVideo": "Video toevoegen", "PE.Views.Toolbar.tipLineSpace": "Regelafstand", "PE.Views.Toolbar.tipMarkers": "Opsommingstekens", "PE.Views.Toolbar.tipNumbers": "Nummering", @@ -1434,6 +1839,7 @@ "PE.Views.Toolbar.tipSaveCoauth": "Sla uw wijzigingen op zodat andere gebruikers die kunnen zien.", "PE.Views.Toolbar.tipShapeAlign": "Vorm uitlijnen", "PE.Views.Toolbar.tipShapeArrange": "Vorm ordenen", + "PE.Views.Toolbar.tipSlideNum": "Voeg dia nummer toe", "PE.Views.Toolbar.tipSlideSize": "Diagrootte selecteren", "PE.Views.Toolbar.tipSlideTheme": "Diathema", "PE.Views.Toolbar.tipUndo": "Ongedaan maken", @@ -1442,6 +1848,7 @@ "PE.Views.Toolbar.txtDistribHor": "Horizontaal verdelen", "PE.Views.Toolbar.txtDistribVert": "Verticaal verdelen", "PE.Views.Toolbar.txtGroup": "Groeperen", + "PE.Views.Toolbar.txtObjectsAlign": "Geslecteerde objecten uitlijnen", "PE.Views.Toolbar.txtScheme1": "Kantoor", "PE.Views.Toolbar.txtScheme10": "Mediaan", "PE.Views.Toolbar.txtScheme11": "Metro", @@ -1463,5 +1870,6 @@ "PE.Views.Toolbar.txtScheme7": "Vermogen", "PE.Views.Toolbar.txtScheme8": "Stroom", "PE.Views.Toolbar.txtScheme9": "Gieterij", + "PE.Views.Toolbar.txtSlideAlign": "Uitlijnen op dia", "PE.Views.Toolbar.txtUngroup": "Groepering opheffen" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/pt.json b/apps/presentationeditor/main/locale/pt.json index 0267b5031..bc76873c8 100644 --- a/apps/presentationeditor/main/locale/pt.json +++ b/apps/presentationeditor/main/locale/pt.json @@ -272,8 +272,8 @@ "PE.Controllers.Main.waitText": "Aguarde...", "PE.Controllers.Main.warnBrowserIE9": "O aplicativo tem baixa capacidade no IE9. Usar IE10 ou superior", "PE.Controllers.Main.warnBrowserZoom": "A configuração de zoom atual de seu navegador não é completamente suportada. Redefina para o zoom padrão pressionando Ctrl+0.", - "PE.Controllers.Main.warnLicenseExp": "Sua licença expirou.
            Atualize sua licença e atualize a página.", "PE.Controllers.Main.warnLicenseExceeded": "Você atingiu o limite de conexões simultâneas para editores %1. Este documento será aberto apenas para visualização.
            Entre em contato com seu administrador para saber mais.", + "PE.Controllers.Main.warnLicenseExp": "Sua licença expirou.
            Atualize sua licença e atualize a página.", "PE.Controllers.Main.warnLicenseUsersExceeded": "Você atingiu o limite de usuários para editores %1. Entre em contato com seu administrador para saber mais.", "PE.Controllers.Main.warnNoLicense": "Você atingiu o limite de conexões simultâneas para editores %1. Este documento será aberto apenas para visualização.
            Entre em contato com a equipe de vendas da %1 para obter os termos de atualização pessoais.", "PE.Controllers.Main.warnNoLicenseUsers": "Você atingiu o limite de usuários para editores %1.
            Entre em contato com a equipe de vendas da %1 para obter os termos de atualização pessoais.", diff --git a/apps/presentationeditor/main/locale/ru.json b/apps/presentationeditor/main/locale/ru.json index e393ac962..a11443794 100644 --- a/apps/presentationeditor/main/locale/ru.json +++ b/apps/presentationeditor/main/locale/ru.json @@ -14,7 +14,7 @@ "Common.define.chartData.textPoint": "Точечная", "Common.define.chartData.textStock": "Биржевая", "Common.define.chartData.textSurface": "Поверхность", - "Common.Translation.warnFileLocked": "Документ используется другим приложением. Вы можете продолжить редактирование и сохранить его как копию.", + "Common.Translation.warnFileLocked": "Файл редактируется в другом приложении. Вы можете продолжить редактирование и сохранить его как копию.", "Common.UI.ColorButton.textNewColor": "Пользовательский цвет", "Common.UI.ComboBorderSize.txtNoBorders": "Без границ", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Без границ", @@ -631,8 +631,8 @@ "PE.Controllers.Main.waitText": "Пожалуйста, подождите...", "PE.Controllers.Main.warnBrowserIE9": "В IE9 приложение имеет низкую производительность. Используйте IE10 или более позднюю версию.", "PE.Controllers.Main.warnBrowserZoom": "Текущее значение масштаба страницы в браузере поддерживается не полностью. Вернитесь к масштабу по умолчанию, нажав Ctrl+0", - "PE.Controllers.Main.warnLicenseExp": "Истек срок действия лицензии.
            Обновите лицензию, а затем обновите страницу.", "PE.Controllers.Main.warnLicenseExceeded": "Вы достигли лимита на одновременные подключения к редакторам %1. Этот документ будет открыт только на просмотр.
            Свяжитесь с администратором, чтобы узнать больше.", + "PE.Controllers.Main.warnLicenseExp": "Истек срок действия лицензии.
            Обновите лицензию, а затем обновите страницу.", "PE.Controllers.Main.warnLicenseUsersExceeded": "Вы достигли лимита на количество пользователей редакторов %1.
            Свяжитесь с администратором, чтобы узнать больше.", "PE.Controllers.Main.warnNoLicense": "Вы достигли лимита на одновременные подключения к редакторам %1. Этот документ будет открыт на просмотр.
            Напишите в отдел продаж %1, чтобы обсудить индивидуальные условия лицензирования.", "PE.Controllers.Main.warnNoLicenseUsers": "Вы достигли лимита на одновременные подключения к редакторам %1.
            Напишите в отдел продаж %1, чтобы обсудить индивидуальные условия лицензирования.", diff --git a/apps/presentationeditor/main/locale/sk.json b/apps/presentationeditor/main/locale/sk.json index 8bcfc6695..ba3a3b32e 100644 --- a/apps/presentationeditor/main/locale/sk.json +++ b/apps/presentationeditor/main/locale/sk.json @@ -13,6 +13,7 @@ "Common.define.chartData.textPoint": "Bodový graf", "Common.define.chartData.textStock": "Akcie/burzový graf", "Common.define.chartData.textSurface": "Povrch", + "Common.UI.ColorButton.textNewColor": "Pridať novú vlastnú farbu", "Common.UI.ComboBorderSize.txtNoBorders": "Bez orámovania", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Bez orámovania", "Common.UI.ComboDataView.emptyComboText": "Žiadne štýly", @@ -55,6 +56,8 @@ "Common.Views.About.txtPoweredBy": "Poháňaný ", "Common.Views.About.txtTel": "tel.:", "Common.Views.About.txtVersion": "Verzia", + "Common.Views.AutoCorrectDialog.textBy": "Od:", + "Common.Views.AutoCorrectDialog.textTitle": "Automatická oprava", "Common.Views.Chat.textSend": "Poslať", "Common.Views.Comments.textAdd": "Pridať", "Common.Views.Comments.textAddComment": "Pridať komentár", @@ -92,12 +95,15 @@ "Common.Views.Header.textSaveChanged": "Modifikovaný", "Common.Views.Header.textSaveEnd": "Všetky zmeny boli uložené", "Common.Views.Header.textSaveExpander": "Všetky zmeny boli uložené", + "Common.Views.Header.textZoom": "Priblíženie", "Common.Views.Header.tipAccessRights": "Spravovať prístupové práva k dokumentom", "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.tipRedo": "Opakovať", "Common.Views.Header.tipSave": "Uložiť", "Common.Views.Header.tipUndo": "Krok späť", + "Common.Views.Header.tipViewSettings": "Zobraziť nastavenia", "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ť", @@ -112,6 +118,14 @@ "Common.Views.InsertTableDialog.txtTitle": "Veľkosť tabuľky", "Common.Views.InsertTableDialog.txtTitleSplit": "Rozdeliť bunku", "Common.Views.LanguageDialog.labelSelect": "Vybrať jazyk dokumentu", + "Common.Views.ListSettingsDialog.txtBullet": "Odrážka", + "Common.Views.ListSettingsDialog.txtColor": "Farba", + "Common.Views.ListSettingsDialog.txtNone": "žiadny", + "Common.Views.ListSettingsDialog.txtOfText": "% textu", + "Common.Views.ListSettingsDialog.txtSize": "Veľkosť", + "Common.Views.ListSettingsDialog.txtStart": "Začať na", + "Common.Views.ListSettingsDialog.txtSymbol": "Symbol", + "Common.Views.ListSettingsDialog.txtType": "Typ", "Common.Views.OpenDialog.closeButtonText": "Zatvoriť súbor", "Common.Views.OpenDialog.txtEncoding": "Kódovanie", "Common.Views.OpenDialog.txtIncorrectPwd": "Heslo je nesprávne.", @@ -120,6 +134,7 @@ "Common.Views.OpenDialog.txtTitleProtected": "Chránený súbor", "Common.Views.PasswordDialog.txtIncorrectPwd": "Heslá sa nezhodujú", "Common.Views.PasswordDialog.txtPassword": "Heslo", + "Common.Views.PasswordDialog.txtTitle": "Nastaviť heslo", "Common.Views.PluginDlg.textLoading": "Nahrávanie", "Common.Views.Plugins.groupCaption": "Pluginy", "Common.Views.Plugins.strPlugins": "Pluginy", @@ -131,13 +146,19 @@ "Common.Views.Protection.txtAddPwd": "Pridajte heslo", "Common.Views.Protection.txtChangePwd": "Zmeniť heslo", "Common.Views.Protection.txtDeletePwd": "Odstrániť heslo", + "Common.Views.Protection.txtEncrypt": "Šifrovať", "Common.Views.Protection.txtInvisibleSignature": "Pridajte digitálny podpis", "Common.Views.Protection.txtSignature": "Podpis", + "Common.Views.Protection.txtSignatureLine": "Pridať riadok na podpis", "Common.Views.RenameDialog.textName": "Názov súboru", "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.strFast": "Rýchly", "Common.Views.ReviewChanges.strStrict": "Prísny", "Common.Views.ReviewChanges.tipAcceptCurrent": "Akceptovať aktuálnu zmenu", + "Common.Views.ReviewChanges.tipRejectCurrent": "Odmietnuť aktuálne zmeny", + "Common.Views.ReviewChanges.tipReview": "Sledovať zmeny", "Common.Views.ReviewChanges.tipReviewView": "Vyberte režim, v ktorom chcete zobraziť zmeny", "Common.Views.ReviewChanges.txtAccept": "Akceptovať", "Common.Views.ReviewChanges.txtAcceptAll": "Akceptovať všetky zmeny", @@ -146,21 +167,36 @@ "Common.Views.ReviewChanges.txtChat": "Rozhovor", "Common.Views.ReviewChanges.txtClose": "Zatvoriť", "Common.Views.ReviewChanges.txtCoAuthMode": "Režim spoločnej úpravy", + "Common.Views.ReviewChanges.txtCommentRemove": "Odstrániť", "Common.Views.ReviewChanges.txtDocLang": "Jazyk", "Common.Views.ReviewChanges.txtFinal": "Všetky zmeny prijaté (ukážka)", + "Common.Views.ReviewChanges.txtFinalCap": "Posledný", "Common.Views.ReviewChanges.txtMarkup": "Všetky zmeny (upravované)", + "Common.Views.ReviewChanges.txtMarkupCap": "Vyznačenie", + "Common.Views.ReviewChanges.txtNext": "Nasledujúci", "Common.Views.ReviewChanges.txtOriginal": "Všetky zmeny boli zamietnuté (ukážka)", + "Common.Views.ReviewChanges.txtOriginalCap": "Originál", "Common.Views.ReviewChanges.txtPrev": "Predchádzajúce", "Common.Views.ReviewChanges.txtReject": "Odmietnuť", + "Common.Views.ReviewChanges.txtRejectAll": "Odmietnuť všetky zmeny", + "Common.Views.ReviewChanges.txtRejectChanges": "Odmietnuť zmeny", + "Common.Views.ReviewChanges.txtTurnon": "Sledovať zmeny", "Common.Views.ReviewChanges.txtView": "Režim zobrazenia", "Common.Views.ReviewPopover.textAdd": "Pridať", + "Common.Views.ReviewPopover.textAddReply": "Pridať odpoveď", "Common.Views.ReviewPopover.textCancel": "Zrušiť", "Common.Views.ReviewPopover.textClose": "Zatvoriť", "Common.Views.ReviewPopover.textEdit": "OK", + "Common.Views.ReviewPopover.textReply": "Odpovedať", + "Common.Views.ReviewPopover.textResolve": "Vyriešiť", + "Common.Views.SaveAsDlg.textLoading": "Načítavanie", + "Common.Views.SelectFileDlg.textLoading": "Načítavanie", "Common.Views.SignDialog.textBold": "Tučné", "Common.Views.SignDialog.textCertificate": "Certifikát", "Common.Views.SignDialog.textChange": "Zmeniť", + "Common.Views.SignDialog.textInputName": "Zadať meno signatára", "Common.Views.SignDialog.textItalic": "Kurzíva", + "Common.Views.SignDialog.textPurpose": "Účel podpisovania tohto dokumentu", "Common.Views.SignDialog.textSelect": "Vybrať", "Common.Views.SignDialog.textSelectImage": "Vybrať obrázok", "Common.Views.SignDialog.textTitle": "Podpísať dokument", @@ -168,11 +204,22 @@ "Common.Views.SignDialog.tipFontName": "Názov písma", "Common.Views.SignDialog.tipFontSize": "Veľkosť písma", "Common.Views.SignSettingsDialog.textAllowComment": "Povoliť signatárovi pridať komentár do podpisového dialógu", + "Common.Views.SignSettingsDialog.textInfo": "Informácie o signatárovi", "Common.Views.SignSettingsDialog.textInfoEmail": "E-mail", "Common.Views.SignSettingsDialog.textInfoName": "Názov", + "Common.Views.SignSettingsDialog.textInfoTitle": "Názov signatára", + "Common.Views.SignSettingsDialog.txtEmpty": "Toto pole sa vyžaduje", + "Common.Views.SymbolTableDialog.textFont": "Písmo", + "Common.Views.SymbolTableDialog.textQEmSpace": "Medzera 1/4 Em", + "Common.Views.SymbolTableDialog.textRange": "Rozsah", + "Common.Views.SymbolTableDialog.textSymbols": "Symboly", + "Common.Views.SymbolTableDialog.textTitle": "Symbol", "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.LeftMenu.textReplaceSkipped": "Nahradenie bolo uskutočnené. {0} výskytov bolo preskočených.", + "PE.Controllers.LeftMenu.textReplaceSuccess": "Vyhľadávanie bolo uskutočnené. Nahradené udalosti: {0}", + "PE.Controllers.LeftMenu.txtUntitled": "Neoznačený", "PE.Controllers.Main.applyChangesTextText": "Načítavanie dát...", "PE.Controllers.Main.applyChangesTitleText": "Načítavanie dát", "PE.Controllers.Main.convertationTimeoutText": "Prekročený čas konverzie.", @@ -189,6 +236,7 @@ "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.errorFileSizeExceed": "Veľkosť súboru prekračuje limity vášho servera.
            Kontaktujte prosím vášho správcu dokumentového servera o ďalšie podrobnosti.", "PE.Controllers.Main.errorForceSave": "Pri ukladaní súboru sa vyskytla chyba. Ak chcete súbor uložiť na pevný disk počítača, použite možnosť 'Prevziať ako' alebo to skúste znova neskôr.", "PE.Controllers.Main.errorKeyEncrypt": "Neznámy kľúč deskriptoru", "PE.Controllers.Main.errorKeyExpire": "Kľúč deskriptora vypršal", @@ -240,6 +288,8 @@ "PE.Controllers.Main.textClose": "Zatvoriť", "PE.Controllers.Main.textCloseTip": "Kliknutím zavrite tip", "PE.Controllers.Main.textContactUs": "Kontaktujte predajcu", + "PE.Controllers.Main.textCustomLoader": "Všimnite si, prosím, že podľa zmluvných podmienok licencie nemáte oprávnenie zmeniť loader.
            Kontaktujte prosím naše Predajné oddelenie, aby ste získali odhad ceny.", + "PE.Controllers.Main.textHasMacros": "Súbor obsahuje automatické makrá.
            Chcete spustiť makrá?", "PE.Controllers.Main.textLoadingDocument": "Načítavanie prezentácie", "PE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE obmedzenie pripojenia", "PE.Controllers.Main.textShape": "Tvar", @@ -271,6 +321,52 @@ "PE.Controllers.Main.txtPicture": "Obrázok", "PE.Controllers.Main.txtRectangles": "Obdĺžniky", "PE.Controllers.Main.txtSeries": "Rady", + "PE.Controllers.Main.txtShape_actionButtonBackPrevious": "Tlačítko Späť alebo Predchádzajúci", + "PE.Controllers.Main.txtShape_actionButtonBeginning": "Tlačítko Začiatok", + "PE.Controllers.Main.txtShape_actionButtonBlank": "Prázdne tlačítko", + "PE.Controllers.Main.txtShape_actionButtonDocument": "Tlačítko Dokument", + "PE.Controllers.Main.txtShape_actionButtonReturn": "Tlačítko Návrat", + "PE.Controllers.Main.txtShape_arc": "Oblúk", + "PE.Controllers.Main.txtShape_bentArrow": "Ohnutá šípka", + "PE.Controllers.Main.txtShape_bentUpArrow": "Šípka ohnutá hore", + "PE.Controllers.Main.txtShape_bevel": "Skosenie", + "PE.Controllers.Main.txtShape_cloud": "Cloud", + "PE.Controllers.Main.txtShape_corner": "Roh", + "PE.Controllers.Main.txtShape_cube": "Kocka", + "PE.Controllers.Main.txtShape_decagon": "Desaťuhoľník", + "PE.Controllers.Main.txtShape_diamond": "Diamant", + "PE.Controllers.Main.txtShape_ellipse": "Elipsa", + "PE.Controllers.Main.txtShape_frame": "Rámček", + "PE.Controllers.Main.txtShape_heart": "Srdce", + "PE.Controllers.Main.txtShape_irregularSeal1": "Výbuch 1", + "PE.Controllers.Main.txtShape_irregularSeal2": "Výbuch 2", + "PE.Controllers.Main.txtShape_leftArrow": "Ľavá šípka", + "PE.Controllers.Main.txtShape_line": "Čiara", + "PE.Controllers.Main.txtShape_lineWithArrow": "Šípka", + "PE.Controllers.Main.txtShape_mathMinus": "Mínus", + "PE.Controllers.Main.txtShape_mathMultiply": "Viacnásobný", + "PE.Controllers.Main.txtShape_mathNotEqual": "Nerovná sa", + "PE.Controllers.Main.txtShape_mathPlus": "Plus", + "PE.Controllers.Main.txtShape_moon": "Mesiac", + "PE.Controllers.Main.txtShape_noSmoking": "Symbol \"Nie\"", + "PE.Controllers.Main.txtShape_pie": "Koláčový graf", + "PE.Controllers.Main.txtShape_plaque": "Podpísať", + "PE.Controllers.Main.txtShape_plus": "Plus", + "PE.Controllers.Main.txtShape_rightArrow": "Pravá šípka", + "PE.Controllers.Main.txtShape_spline": "Krivka", + "PE.Controllers.Main.txtShape_star10": "10-cípa hviezda", + "PE.Controllers.Main.txtShape_star12": "12-cípa hviezda", + "PE.Controllers.Main.txtShape_star16": "16-cípa hviezda", + "PE.Controllers.Main.txtShape_star24": "24-cípa hviezda", + "PE.Controllers.Main.txtShape_star32": "32-cípa hviezda", + "PE.Controllers.Main.txtShape_star4": "4-cípa hviezda", + "PE.Controllers.Main.txtShape_star5": "5-cípa hviezda", + "PE.Controllers.Main.txtShape_star6": "6-cípa hviezda", + "PE.Controllers.Main.txtShape_star7": "7-cípa hviezda", + "PE.Controllers.Main.txtShape_star8": "8-cípa hviezda", + "PE.Controllers.Main.txtShape_sun": "Ne", + "PE.Controllers.Main.txtShape_textRect": "Textové pole", + "PE.Controllers.Main.txtShape_upArrow": "Šípka hore", "PE.Controllers.Main.txtSldLtTBlank": "Prázdny", "PE.Controllers.Main.txtSldLtTChart": "Graf", "PE.Controllers.Main.txtSldLtTChartAndTx": "Graf a text", @@ -312,8 +408,15 @@ "PE.Controllers.Main.txtSlideText": "Text snímku", "PE.Controllers.Main.txtSlideTitle": "Názov snímku", "PE.Controllers.Main.txtStarsRibbons": "Hviezdy a stuhy", + "PE.Controllers.Main.txtTheme_basic": "Základný", "PE.Controllers.Main.txtTheme_blank": "Prázdny", "PE.Controllers.Main.txtTheme_classic": "Classic", + "PE.Controllers.Main.txtTheme_corner": "Roh", + "PE.Controllers.Main.txtTheme_green": "Zelený", + "PE.Controllers.Main.txtTheme_lines": "Čiary", + "PE.Controllers.Main.txtTheme_office": "Kancelária", + "PE.Controllers.Main.txtTheme_official": "Oficiálny", + "PE.Controllers.Main.txtTheme_pixel": "Pixel", "PE.Controllers.Main.txtXAxis": "Os X", "PE.Controllers.Main.txtYAxis": "Os Y", "PE.Controllers.Main.unknownErrorText": "Neznáma chyba.", @@ -323,6 +426,7 @@ "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.waitText": "Prosím čakajte...", "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.", @@ -336,6 +440,7 @@ "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.textInsert": "Vložiť", "PE.Controllers.Toolbar.textIntegral": "Integrály", "PE.Controllers.Toolbar.textLargeOperator": "Veľké operátory", "PE.Controllers.Toolbar.textLimitAndLog": "Limity a logaritmy", @@ -676,6 +781,10 @@ "PE.Views.ChartSettingsAdvanced.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.ChartSettingsAdvanced.textAltTitle": "Názov", "PE.Views.ChartSettingsAdvanced.textTitle": "Graf - Pokročilé nastavenia", + "PE.Views.DateTimeDialog.textFormat": "Formáty", + "PE.Views.DateTimeDialog.textLang": "Jazyk", + "PE.Views.DateTimeDialog.textUpdate": "Aktualizovať automaticky", + "PE.Views.DateTimeDialog.txtTitle": "Dátum a čas", "PE.Views.DocumentHolder.aboveText": "Nad", "PE.Views.DocumentHolder.addCommentText": "Pridať komentár", "PE.Views.DocumentHolder.advancedImageText": "Pokročilé nastavenia obrázku", @@ -712,6 +821,7 @@ "PE.Views.DocumentHolder.leftText": "Vľavo", "PE.Views.DocumentHolder.loadSpellText": "Načítavanie variantov ...", "PE.Views.DocumentHolder.mergeCellsText": "Zlúčiť bunky", + "PE.Views.DocumentHolder.mniCustomTable": "Vložiť vlastnú tabuľku", "PE.Views.DocumentHolder.moreText": "Viac variantov...", "PE.Views.DocumentHolder.noSpellVariantsText": "Žiadne varianty", "PE.Views.DocumentHolder.originalSizeText": "Predvolená veľkosť", @@ -728,14 +838,23 @@ "PE.Views.DocumentHolder.textArrangeForward": "Posunúť vpred", "PE.Views.DocumentHolder.textArrangeFront": "Premiestniť do popredia", "PE.Views.DocumentHolder.textCopy": "Kopírovať", + "PE.Views.DocumentHolder.textCrop": "Orezať", + "PE.Views.DocumentHolder.textCropFill": "Vyplniť", + "PE.Views.DocumentHolder.textCropFit": "Prispôsobiť", "PE.Views.DocumentHolder.textCut": "Vystrihnúť", "PE.Views.DocumentHolder.textDistributeCols": "Rozdeliť stĺpce", "PE.Views.DocumentHolder.textDistributeRows": "Rozdeliť riadky", + "PE.Views.DocumentHolder.textFlipH": "Prevrátiť horizontálne", + "PE.Views.DocumentHolder.textFlipV": "Prevrátiť vertikálne", "PE.Views.DocumentHolder.textFromFile": "Zo súboru", + "PE.Views.DocumentHolder.textFromStorage": "Z úložiska", "PE.Views.DocumentHolder.textFromUrl": "Z URL adresy ", "PE.Views.DocumentHolder.textNextPage": "Nasledujúca snímka", "PE.Views.DocumentHolder.textPaste": "Vložiť", "PE.Views.DocumentHolder.textPrevPage": "Predchádzajúca snímka", + "PE.Views.DocumentHolder.textRotate": "Otočiť", + "PE.Views.DocumentHolder.textRotate270": "Otočiť o 90° doľava", + "PE.Views.DocumentHolder.textRotate90": "Otočiť o 90° doprava", "PE.Views.DocumentHolder.textShapeAlignBottom": "Zarovnať dole", "PE.Views.DocumentHolder.textShapeAlignCenter": "Centrovať", "PE.Views.DocumentHolder.textShapeAlignLeft": "Zarovnať doľava", @@ -745,6 +864,7 @@ "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ľ.", + "PE.Views.DocumentHolder.toDictionaryText": "Pridať do slovníka", "PE.Views.DocumentHolder.txtAddBottom": "Pridať spodné orámovanie", "PE.Views.DocumentHolder.txtAddFractionBar": "Pridať lištu zlomkov", "PE.Views.DocumentHolder.txtAddHor": "Pridať vodorovnú čiaru", @@ -801,6 +921,7 @@ "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.txtKeepTextOnly": "Ponechať iba text", "PE.Views.DocumentHolder.txtLimitChange": "Zmeniť polohu obmedzenia", "PE.Views.DocumentHolder.txtLimitOver": "Limita nad textom", "PE.Views.DocumentHolder.txtLimitUnder": "Limita pod textom", @@ -855,6 +976,7 @@ "PE.Views.FileMenu.btnHelpCaption": "Pomoc...", "PE.Views.FileMenu.btnInfoCaption": "Informácie o prezentácii...", "PE.Views.FileMenu.btnPrintCaption": "Tlačiť", + "PE.Views.FileMenu.btnProtectCaption": "Ochrániť", "PE.Views.FileMenu.btnRecentFilesCaption": "Otvoriť nedávne...", "PE.Views.FileMenu.btnRenameCaption": "Premenovať ..", "PE.Views.FileMenu.btnReturnCaption": "Späť na prezentáciu", @@ -868,16 +990,28 @@ "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", + "PE.Views.FileMenuPanels.DocumentInfo.okButtonText": "Použiť", + "PE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Pridať autora", + "PE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Pridať text", + "PE.Views.FileMenuPanels.DocumentInfo.txtAppName": "Aplikácia", "PE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Autor", "PE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Zmeniť prístupové práva", + "PE.Views.FileMenuPanels.DocumentInfo.txtComment": "Komentár", + "PE.Views.FileMenuPanels.DocumentInfo.txtCreated": "Vytvorené", + "PE.Views.FileMenuPanels.DocumentInfo.txtModifyBy": "Naposledy upravil(a) ", + "PE.Views.FileMenuPanels.DocumentInfo.txtModifyDate": "Naposledy upravené", + "PE.Views.FileMenuPanels.DocumentInfo.txtOwner": "Vlastník", "PE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Umiestnenie", "PE.Views.FileMenuPanels.DocumentInfo.txtRights": "Osoby s oprávneniami", + "PE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Predmet", "PE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Názov prezentácie", + "PE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Nahrané", "PE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Zmeniť prístupové práva", "PE.Views.FileMenuPanels.DocumentRights.txtRights": "Osoby s oprávneniami", "PE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Upozornenie", "PE.Views.FileMenuPanels.ProtectDoc.txtEdit": "Upraviť prezentáciu", "PE.Views.FileMenuPanels.ProtectDoc.txtEditWarning": "Úprava odstráni podpisy z prezentácie.
            Naozaj chcete pokračovať?", + "PE.Views.FileMenuPanels.ProtectDoc.txtView": "Zobraziť podpisy", "PE.Views.FileMenuPanels.Settings.okButtonText": "Použiť", "PE.Views.FileMenuPanels.Settings.strAlignGuides": "Zapnúť tipy zarovnávania", "PE.Views.FileMenuPanels.Settings.strAutoRecover": "Zapnúť automatickú obnovu", @@ -904,14 +1038,28 @@ "PE.Views.FileMenuPanels.Settings.textForceSave": "Uložiť na Server", "PE.Views.FileMenuPanels.Settings.textMinute": "Každú minútu", "PE.Views.FileMenuPanels.Settings.txtAll": "Zobraziť všetko", + "PE.Views.FileMenuPanels.Settings.txtAutoCorrect": "Možnosti automatickej opravy...", "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)", "PE.Views.FileMenuPanels.Settings.txtInput": "Alternatívny vstup", "PE.Views.FileMenuPanels.Settings.txtLast": "Zobraziť posledný", + "PE.Views.FileMenuPanels.Settings.txtMac": "ako macOS", + "PE.Views.FileMenuPanels.Settings.txtNative": "Pôvodný", "PE.Views.FileMenuPanels.Settings.txtPt": "Bod", "PE.Views.FileMenuPanels.Settings.txtSpellCheck": "Kontrola pravopisu", + "PE.Views.FileMenuPanels.Settings.txtStopMacros": "Zablokovať všetko", + "PE.Views.FileMenuPanels.Settings.txtWin": "ako Windows", + "PE.Views.HeaderFooterDialog.applyAllText": "Použiť na všetko", + "PE.Views.HeaderFooterDialog.applyText": "Použiť", + "PE.Views.HeaderFooterDialog.textDateTime": "Dátum a čas", + "PE.Views.HeaderFooterDialog.textFixed": "Fixný", + "PE.Views.HeaderFooterDialog.textFormat": "Formáty", + "PE.Views.HeaderFooterDialog.textLang": "Jazyk", + "PE.Views.HeaderFooterDialog.textPreview": "Náhľad", + "PE.Views.HeaderFooterDialog.textSlideNum": "Číslo snímky", + "PE.Views.HeaderFooterDialog.textUpdate": "Aktualizovať automaticky", "PE.Views.HyperlinkSettingsDialog.strDisplay": "Zobraziť", "PE.Views.HyperlinkSettingsDialog.strLinkTo": "Odkaz na", "PE.Views.HyperlinkSettingsDialog.textDefault": "Vybraný textový úryvok", @@ -920,6 +1068,7 @@ "PE.Views.HyperlinkSettingsDialog.textEmptyTooltip": "Tu zadajte popisku", "PE.Views.HyperlinkSettingsDialog.textExternalLink": "Externý odkaz", "PE.Views.HyperlinkSettingsDialog.textInternalLink": "Snímok v tejto prezentácii", + "PE.Views.HyperlinkSettingsDialog.textSlides": "Snímky", "PE.Views.HyperlinkSettingsDialog.textTipText": "Popis", "PE.Views.HyperlinkSettingsDialog.textTitle": "Nastavenie hypertextového odkazu", "PE.Views.HyperlinkSettingsDialog.txtEmpty": "Toto pole sa vyžaduje", @@ -930,26 +1079,43 @@ "PE.Views.HyperlinkSettingsDialog.txtPrev": "Predchádzajúca snímka", "PE.Views.HyperlinkSettingsDialog.txtSlide": "Snímka", "PE.Views.ImageSettings.textAdvanced": "Zobraziť pokročilé nastavenia", + "PE.Views.ImageSettings.textCrop": "Orezať", + "PE.Views.ImageSettings.textCropFill": "Vyplniť", + "PE.Views.ImageSettings.textCropFit": "Prispôsobiť", "PE.Views.ImageSettings.textEdit": "Upraviť", "PE.Views.ImageSettings.textEditObject": "Upraviť objekt", + "PE.Views.ImageSettings.textFitSlide": "Prispôsobiť snímke", + "PE.Views.ImageSettings.textFlip": "Prevrátiť", "PE.Views.ImageSettings.textFromFile": "Zo súboru", + "PE.Views.ImageSettings.textFromStorage": "Z úložiska", "PE.Views.ImageSettings.textFromUrl": "Z URL adresy ", "PE.Views.ImageSettings.textHeight": "Výška", + "PE.Views.ImageSettings.textHint270": "Otočiť o 90° doľava", + "PE.Views.ImageSettings.textHint90": "Otočiť o 90° doprava", + "PE.Views.ImageSettings.textHintFlipH": "Prevrátiť horizontálne", + "PE.Views.ImageSettings.textHintFlipV": "Prevrátiť vertikálne", "PE.Views.ImageSettings.textInsert": "Nahradiť obrázok", "PE.Views.ImageSettings.textOriginalSize": "Predvolená veľkosť", + "PE.Views.ImageSettings.textRotate90": "Otočiť o 90°", + "PE.Views.ImageSettings.textRotation": "Otočenie", "PE.Views.ImageSettings.textSize": "Veľkosť", "PE.Views.ImageSettings.textWidth": "Šírka", "PE.Views.ImageSettingsAdvanced.textAlt": "Alternatívny text", "PE.Views.ImageSettingsAdvanced.textAltDescription": "Popis", "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.textAngle": "Uhol", + "PE.Views.ImageSettingsAdvanced.textFlipped": "Prevrátený", "PE.Views.ImageSettingsAdvanced.textHeight": "Výška", + "PE.Views.ImageSettingsAdvanced.textHorizontally": "Vodorovne", "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", + "PE.Views.ImageSettingsAdvanced.textRotation": "Otočenie", "PE.Views.ImageSettingsAdvanced.textSize": "Veľkosť", "PE.Views.ImageSettingsAdvanced.textTitle": "Obrázok - Pokročilé nastavenia", + "PE.Views.ImageSettingsAdvanced.textVertically": "Zvisle", "PE.Views.ImageSettingsAdvanced.textWidth": "Šírka", "PE.Views.LeftMenu.tipAbout": "O aplikácii", "PE.Views.LeftMenu.tipChat": "Rozhovor", @@ -976,17 +1142,25 @@ "PE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Dvojité prečiarknutie", "PE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Vľavo", "PE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Vpravo", + "PE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter": "Za", + "PE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore": "Pred", + "PE.Views.ParagraphSettingsAdvanced.strIndentsSpecial": "Špeciálny", "PE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Písmo", "PE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "Odsadenie a umiestnenie", "PE.Views.ParagraphSettingsAdvanced.strSmallCaps": "Malé písmená", + "PE.Views.ParagraphSettingsAdvanced.strSpacing": "Medzery", "PE.Views.ParagraphSettingsAdvanced.strStrike": "Prečiarknutie", "PE.Views.ParagraphSettingsAdvanced.strSubscript": "Dolný index", "PE.Views.ParagraphSettingsAdvanced.strSuperscript": "Horný index", "PE.Views.ParagraphSettingsAdvanced.strTabs": "Tabulátor", "PE.Views.ParagraphSettingsAdvanced.textAlign": "Zarovnanie", + "PE.Views.ParagraphSettingsAdvanced.textAuto": "Viacnásobný", "PE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Medzery medzi písmenami", "PE.Views.ParagraphSettingsAdvanced.textDefault": "Predvolený tabulátor", "PE.Views.ParagraphSettingsAdvanced.textEffects": "Efekty", + "PE.Views.ParagraphSettingsAdvanced.textFirstLine": "Prvý riadok", + "PE.Views.ParagraphSettingsAdvanced.textJustified": "Podľa okrajov", + "PE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(žiadne)", "PE.Views.ParagraphSettingsAdvanced.textRemove": "Odstrániť", "PE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Odstrániť všetko", "PE.Views.ParagraphSettingsAdvanced.textSet": "Špecifikovať", @@ -995,6 +1169,7 @@ "PE.Views.ParagraphSettingsAdvanced.textTabPosition": "Pozícia tabulátora", "PE.Views.ParagraphSettingsAdvanced.textTabRight": "Vpravo", "PE.Views.ParagraphSettingsAdvanced.textTitle": "Odsek - Pokročilé nastavenia", + "PE.Views.ParagraphSettingsAdvanced.txtAutoText": "Automaticky", "PE.Views.RightMenu.txtChartSettings": "Nastavenia grafu", "PE.Views.RightMenu.txtImageSettings": "Nastavenie obrázka", "PE.Views.RightMenu.txtParagraphSettings": "Nastavenia textu", @@ -1017,15 +1192,23 @@ "PE.Views.ShapeSettings.textColor": "Vyplniť farbou", "PE.Views.ShapeSettings.textDirection": "Smer", "PE.Views.ShapeSettings.textEmptyPattern": "Bez vzoru", + "PE.Views.ShapeSettings.textFlip": "Prevrátiť", "PE.Views.ShapeSettings.textFromFile": "Zo súboru", + "PE.Views.ShapeSettings.textFromStorage": "Z úložiska", "PE.Views.ShapeSettings.textFromUrl": "Z URL adresy ", "PE.Views.ShapeSettings.textGradient": "Prechod", "PE.Views.ShapeSettings.textGradientFill": "Výplň prechodom", + "PE.Views.ShapeSettings.textHint270": "Otočiť o 90° doľava", + "PE.Views.ShapeSettings.textHint90": "Otočiť o 90° doprava", + "PE.Views.ShapeSettings.textHintFlipH": "Prevrátiť horizontálne", + "PE.Views.ShapeSettings.textHintFlipV": "Prevrátiť vertikálne", "PE.Views.ShapeSettings.textImageTexture": "Obrázok alebo textúra", "PE.Views.ShapeSettings.textLinear": "Lineárny/čiarový", "PE.Views.ShapeSettings.textNoFill": "Bez výplne", "PE.Views.ShapeSettings.textPatternFill": "Vzor", "PE.Views.ShapeSettings.textRadial": "Kruhový/hviezdicovitý", + "PE.Views.ShapeSettings.textRotate90": "Otočiť o 90°", + "PE.Views.ShapeSettings.textRotation": "Otočenie", "PE.Views.ShapeSettings.textSelectTexture": "Vybrať", "PE.Views.ShapeSettings.textStretch": "Roztiahnuť", "PE.Views.ShapeSettings.textStyle": "Štýl", @@ -1049,7 +1232,9 @@ "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. ", "PE.Views.ShapeSettingsAdvanced.textAltTitle": "Názov", + "PE.Views.ShapeSettingsAdvanced.textAngle": "Uhol", "PE.Views.ShapeSettingsAdvanced.textArrows": "Šípky", + "PE.Views.ShapeSettingsAdvanced.textAutofit": "Automatické prispôsobenie", "PE.Views.ShapeSettingsAdvanced.textBeginSize": "Veľkosť začiatku", "PE.Views.ShapeSettingsAdvanced.textBeginStyle": "Štýl začiatku", "PE.Views.ShapeSettingsAdvanced.textBevel": "Skosenie", @@ -1059,23 +1244,29 @@ "PE.Views.ShapeSettingsAdvanced.textEndSize": "Veľkosť konca", "PE.Views.ShapeSettingsAdvanced.textEndStyle": "Štýl konca", "PE.Views.ShapeSettingsAdvanced.textFlat": "Plochý", + "PE.Views.ShapeSettingsAdvanced.textFlipped": "Prevrátený", "PE.Views.ShapeSettingsAdvanced.textHeight": "Výška", + "PE.Views.ShapeSettingsAdvanced.textHorizontally": "Vodorovne", "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", "PE.Views.ShapeSettingsAdvanced.textMiter": "Sklon", "PE.Views.ShapeSettingsAdvanced.textRight": "Vpravo", + "PE.Views.ShapeSettingsAdvanced.textRotation": "Otočenie", "PE.Views.ShapeSettingsAdvanced.textRound": "Zaoblené", "PE.Views.ShapeSettingsAdvanced.textSize": "Veľkosť", "PE.Views.ShapeSettingsAdvanced.textSpacing": "Medzera medzi stĺpcami", "PE.Views.ShapeSettingsAdvanced.textSquare": "Štvorec", + "PE.Views.ShapeSettingsAdvanced.textTextBox": "Textové pole", "PE.Views.ShapeSettingsAdvanced.textTitle": "Tvar - Pokročilé nastavenia", "PE.Views.ShapeSettingsAdvanced.textTop": "Hore", + "PE.Views.ShapeSettingsAdvanced.textVertically": "Zvisle", "PE.Views.ShapeSettingsAdvanced.textWeightArrows": "Nastavenia tvaru", "PE.Views.ShapeSettingsAdvanced.textWidth": "Šírka", "PE.Views.ShapeSettingsAdvanced.txtNone": "Žiadny", "PE.Views.SignatureSettings.notcriticalErrorTitle": "Upozornenie", + "PE.Views.SignatureSettings.strSign": "Podpísať", "PE.Views.SignatureSettings.strSignature": "Podpis", "PE.Views.SignatureSettings.txtEditWarning": "Úprava odstráni podpisy z prezentácie.
            Naozaj chcete pokračovať?", "PE.Views.SlideSettings.strBackground": "Farba pozadia", @@ -1102,6 +1293,7 @@ "PE.Views.SlideSettings.textEmptyPattern": "Bez vzoru", "PE.Views.SlideSettings.textFade": "Vyblednúť", "PE.Views.SlideSettings.textFromFile": "Zo súboru", + "PE.Views.SlideSettings.textFromStorage": "Z úložiska", "PE.Views.SlideSettings.textFromUrl": "Z URL adresy ", "PE.Views.SlideSettings.textGradient": "Prechod", "PE.Views.SlideSettings.textGradientFill": "Výplň prechodom", @@ -1227,6 +1419,7 @@ "PE.Views.TableSettings.tipRight": "Nastaviť len pravé vonkajšie orámovanie", "PE.Views.TableSettings.tipTop": "Nastaviť len horné vonkajšie orámovanie", "PE.Views.TableSettings.txtNoBorders": "Bez orámovania", + "PE.Views.TableSettings.txtTable_Accent": "Akcent", "PE.Views.TableSettingsAdvanced.textAlt": "Alternatívny text", "PE.Views.TableSettingsAdvanced.textAltDescription": "Popis", "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. ", @@ -1282,7 +1475,13 @@ "PE.Views.TextArtSettings.txtPapyrus": "Papyrus", "PE.Views.TextArtSettings.txtWood": "Drevo", "PE.Views.Toolbar.capAddSlide": "Pridať snímku", + "PE.Views.Toolbar.capBtnAddComment": "Pridať komentár", "PE.Views.Toolbar.capBtnComment": "Komentár", + "PE.Views.Toolbar.capBtnDateTime": "Dátum a čas", + "PE.Views.Toolbar.capBtnInsHeader": "Päta stránky", + "PE.Views.Toolbar.capBtnInsSymbol": "Symbol", + "PE.Views.Toolbar.capBtnSlideNum": "Číslo snímky", + "PE.Views.Toolbar.capInsertAudio": "Audio", "PE.Views.Toolbar.capInsertChart": "Graf", "PE.Views.Toolbar.capInsertEquation": "Rovnica", "PE.Views.Toolbar.capInsertHyperlink": "Hypertextový odkaz", @@ -1290,6 +1489,7 @@ "PE.Views.Toolbar.capInsertShape": "Tvar", "PE.Views.Toolbar.capInsertTable": "Tabuľka", "PE.Views.Toolbar.capInsertText": "Textové pole", + "PE.Views.Toolbar.capInsertVideo": "Video", "PE.Views.Toolbar.capTabFile": "Súbor", "PE.Views.Toolbar.capTabHome": "Hlavná stránka", "PE.Views.Toolbar.capTabInsert": "Vložiť", @@ -1313,7 +1513,6 @@ "PE.Views.Toolbar.textBold": "Tučné", "PE.Views.Toolbar.textItalic": "Kurzíva", "PE.Views.Toolbar.textNewColor": "Vlastná farba", - "Common.UI.ColorButton.textNewColor": "Vlastná farba", "PE.Views.Toolbar.textShapeAlignBottom": "Zarovnať dole", "PE.Views.Toolbar.textShapeAlignCenter": "Centrovať", "PE.Views.Toolbar.textShapeAlignLeft": "Zarovnať doľava", @@ -1331,6 +1530,7 @@ "PE.Views.Toolbar.textTabFile": "Súbor", "PE.Views.Toolbar.textTabHome": "Hlavná stránka", "PE.Views.Toolbar.textTabInsert": "Vložiť", + "PE.Views.Toolbar.textTabProtect": "Ochrana", "PE.Views.Toolbar.textTitleError": "Chyba", "PE.Views.Toolbar.textUnderline": "Podčiarknuť", "PE.Views.Toolbar.tipAddSlide": "Pridať snímku", @@ -1352,6 +1552,7 @@ "PE.Views.Toolbar.tipInsertHyperlink": "Pridať odkaz", "PE.Views.Toolbar.tipInsertImage": "Vložiť obrázok", "PE.Views.Toolbar.tipInsertShape": "Vložiť automatický tvar", + "PE.Views.Toolbar.tipInsertSymbol": "Vložiť symbol", "PE.Views.Toolbar.tipInsertTable": "Vložiť tabuľku", "PE.Views.Toolbar.tipInsertText": "Vložiť text", "PE.Views.Toolbar.tipInsertTextArt": "Vložiť Text Art", @@ -1374,6 +1575,7 @@ "PE.Views.Toolbar.txtDistribHor": "Rozložiť horizontálne", "PE.Views.Toolbar.txtDistribVert": "Rozložiť vertikálne", "PE.Views.Toolbar.txtGroup": "Skupina", + "PE.Views.Toolbar.txtObjectsAlign": "Zarovnať označené objekty", "PE.Views.Toolbar.txtScheme1": "Kancelária", "PE.Views.Toolbar.txtScheme10": "Medián", "PE.Views.Toolbar.txtScheme11": "Metro", diff --git a/apps/presentationeditor/main/locale/sl.json b/apps/presentationeditor/main/locale/sl.json index 8a451ba8e..1ad02b325 100644 --- a/apps/presentationeditor/main/locale/sl.json +++ b/apps/presentationeditor/main/locale/sl.json @@ -91,6 +91,7 @@ "Common.Views.InsertTableDialog.txtRows": "Število vrstic", "Common.Views.InsertTableDialog.txtTitle": "Velikost tabele", "Common.Views.ListSettingsDialog.txtColor": "Barva", + "Common.Views.ListSettingsDialog.txtOfText": "% od besedila", "Common.Views.OpenDialog.closeButtonText": "Zapri datoteko", "Common.Views.OpenDialog.txtTitle": "Izberi %1 možnosti", "Common.Views.PasswordDialog.txtIncorrectPwd": "Potrditev gesla se ne ujema", @@ -111,6 +112,8 @@ "Common.Views.ReviewPopover.textAddReply": "Dodaj odgovor", "Common.Views.ReviewPopover.textCancel": "Prekliči", "Common.Views.ReviewPopover.textClose": "Zapri", + "Common.Views.ReviewPopover.textMention": "+omemba bo dodelila uporabniku dostop do datoteke in poslano bo e-poštno sporočilo", + "Common.Views.ReviewPopover.textMentionNotify": "+omemba bo obvestila uporabnika preko e-pošte", "Common.Views.SignDialog.textBold": "Krepko", "Common.Views.SignDialog.textCertificate": "Certifikat", "Common.Views.SignDialog.textChange": "Spremeni", @@ -121,6 +124,7 @@ "Common.Views.SymbolTableDialog.textCharacter": "Znak", "Common.Views.SymbolTableDialog.textCopyright": "Znak za Copyright ©", "Common.Views.SymbolTableDialog.textFont": "Pisava", + "Common.Views.SymbolTableDialog.textQEmSpace": "1/4 prostora", "PE.Controllers.LeftMenu.newDocumentTitle": "Neimenovana predstavitev", "PE.Controllers.LeftMenu.requestEditRightsText": "Zahtevanje urejevalnih pravic...", "PE.Controllers.LeftMenu.textNoTextFound": "Podatkov, katere iščete, ni bilo mogoče najti. Prosim nastavite svoje možnosti iskanja.", @@ -210,6 +214,7 @@ "PE.Controllers.Main.txtShape_star10": "10-kraka zvezda", "PE.Controllers.Main.txtShape_star12": "12-kraka zvezda", "PE.Controllers.Main.txtShape_star16": "16-kraka zvezda", + "PE.Controllers.Main.txtShape_star24": "24-kraka zvezda", "PE.Controllers.Main.txtSldLtTBlank": "Prazen", "PE.Controllers.Main.txtSldLtTChart": "Graf", "PE.Controllers.Main.txtSldLtTChartAndTx": "Graf in besedilo", diff --git a/apps/presentationeditor/main/locale/uk.json b/apps/presentationeditor/main/locale/uk.json index 59c88f200..b87ee671d 100644 --- a/apps/presentationeditor/main/locale/uk.json +++ b/apps/presentationeditor/main/locale/uk.json @@ -83,15 +83,19 @@ "Common.Views.ExternalDiagramEditor.textSave": "Зберегти і вийти", "Common.Views.ExternalDiagramEditor.textTitle": "редагування діаграми", "Common.Views.Header.labelCoUsersDescr": "В даний час документ редагується кількома користувачами.", + "Common.Views.Header.textAdvSettings": "Додаткові налаштування", "Common.Views.Header.textBack": "Перейти до документів", "Common.Views.Header.textSaveBegin": "Збереження ...", "Common.Views.Header.textSaveChanged": "Модифікований", "Common.Views.Header.textSaveEnd": "Усі зміни збережено", "Common.Views.Header.textSaveExpander": "Усі зміни збережено", + "Common.Views.Header.textZoom": "Масштаб", "Common.Views.Header.tipAccessRights": "Управління правами доступу до документів", "Common.Views.Header.tipDownload": "Завантажити файл", "Common.Views.Header.tipGoEdit": "Редагувати поточний файл", "Common.Views.Header.tipPrint": "Роздрукувати файл", + "Common.Views.Header.tipSave": "Зберегти", + "Common.Views.Header.tipUndo": "Скасувати", "Common.Views.Header.tipViewSettings": "Налаштування перегляду", "Common.Views.Header.tipViewUsers": "Переглядайте користувачів та керуйте правами доступу до документів", "Common.Views.Header.txtAccessRights": "Змінити права доступу", @@ -107,8 +111,14 @@ "Common.Views.InsertTableDialog.txtTitle": "Розмір таблиці", "Common.Views.InsertTableDialog.txtTitleSplit": "Розщеплені клітини", "Common.Views.LanguageDialog.labelSelect": "Виберіть мову документа", + "Common.Views.ListSettingsDialog.txtColor": "Колір", + "Common.Views.ListSettingsDialog.txtNone": "Ні", + "Common.Views.ListSettingsDialog.txtOfText": "% текста", + "Common.Views.ListSettingsDialog.txtType": "Тип", + "Common.Views.OpenDialog.closeButtonText": "Закрити файл", "Common.Views.OpenDialog.txtEncoding": "Кодування", "Common.Views.OpenDialog.txtPassword": "Пароль", + "Common.Views.OpenDialog.txtProtected": "Після введення пароля та відкриття файла поточний пароль до нього буде скинутий.", "Common.Views.OpenDialog.txtTitle": "Виберіть параметри% 1", "Common.Views.OpenDialog.txtTitleProtected": "Захищений файл", "Common.Views.PluginDlg.textLoading": "Завантаження", @@ -117,12 +127,27 @@ "Common.Views.Plugins.textLoading": "Завантаження", "Common.Views.Plugins.textStart": "Початок", "Common.Views.Plugins.textStop": "Зупинитись", + "Common.Views.Protection.txtAddPwd": "Додати пароль", + "Common.Views.Protection.txtInvisibleSignature": "Додати цифровий підпис", "Common.Views.RenameDialog.textName": "Ім'я файлу", "Common.Views.RenameDialog.txtInvalidName": "Ім'я файлу не може містити жодного з наступних символів:", + "Common.Views.ReviewChanges.txtAccept": "Прийняти", "Common.Views.ReviewChanges.txtFinalCap": "Фінальний", "Common.Views.ReviewChanges.txtMarkupCap": "Зміни", + "Common.Views.ReviewChanges.txtNext": "Далі", "Common.Views.ReviewChanges.txtOriginalCap": "Початковий", + "Common.Views.ReviewChanges.txtTurnon": "Відстежувати зміни", + "Common.Views.ReviewPopover.textAdd": "Додати", + "Common.Views.ReviewPopover.textClose": "Закрити", + "Common.Views.ReviewPopover.textEdit": "Ок", + "Common.Views.SaveAsDlg.textLoading": "Завантаження", + "Common.Views.SelectFileDlg.textLoading": "Завантаження", + "Common.Views.SelectFileDlg.textTitle": "Виберати джерело даних", + "Common.Views.SignDialog.textCertificate": "Сертифікат", + "Common.Views.SignDialog.textSelect": "Вибрати", + "Common.Views.SymbolTableDialog.textFont": "Шрифт", "PE.Controllers.LeftMenu.newDocumentTitle": "Презентація без назви", + "PE.Controllers.LeftMenu.notcriticalErrorTitle": "Увага", "PE.Controllers.LeftMenu.requestEditRightsText": "Запит на права редагування ...", "PE.Controllers.LeftMenu.textNoTextFound": "Не вдалося знайти дані, які ви шукали. Будь ласка, налаштуйте параметри пошуку.", "PE.Controllers.Main.applyChangesTextText": "Завантаження дати...", @@ -188,6 +213,7 @@ "PE.Controllers.Main.textAnonymous": "Aнонім", "PE.Controllers.Main.textBuyNow": "Відвідати сайт", "PE.Controllers.Main.textChangesSaved": "Усі зміни збережено", + "PE.Controllers.Main.textClose": "Закрити", "PE.Controllers.Main.textCloseTip": "Натисніть, щоб закрити підказку", "PE.Controllers.Main.textContactUs": "Зв'язатися з відділом продажів", "PE.Controllers.Main.textLoadingDocument": "Завантаження презентації", @@ -219,6 +245,10 @@ "PE.Controllers.Main.txtPicture": "Картинка", "PE.Controllers.Main.txtRectangles": "Прямокутники", "PE.Controllers.Main.txtSeries": "Серії", + "PE.Controllers.Main.txtShape_cloud": "Хмара", + "PE.Controllers.Main.txtShape_line": "Лінія", + "PE.Controllers.Main.txtShape_mathMinus": "Мінус", + "PE.Controllers.Main.txtShape_triangle": "Трикутник", "PE.Controllers.Main.txtSldLtTBlank": "Бланк", "PE.Controllers.Main.txtSldLtTChart": "Діаграма", "PE.Controllers.Main.txtSldLtTChartAndTx": "Графік та текст", @@ -260,6 +290,11 @@ "PE.Controllers.Main.txtSlideText": "Текст слайду", "PE.Controllers.Main.txtSlideTitle": "назва слайду", "PE.Controllers.Main.txtStarsRibbons": "Зірки та стрічки", + "PE.Controllers.Main.txtTheme_green": "Зелений", + "PE.Controllers.Main.txtTheme_lines": "Рядки", + "PE.Controllers.Main.txtTheme_office": "Офіс", + "PE.Controllers.Main.txtTheme_office_theme": "Тема офісу", + "PE.Controllers.Main.txtTheme_official": "Офіціальна", "PE.Controllers.Main.txtXAxis": "X Ось", "PE.Controllers.Main.txtYAxis": "Y ось", "PE.Controllers.Main.unknownErrorText": "Невідома помилка.", @@ -620,6 +655,8 @@ "PE.Views.ChartSettingsAdvanced.textAltTip": "Альтернативне текстове представлення інформації про візуальний об'єкт, яке може бути прочитано людям із порушеннями зору або когнітивними дисфункціями, щоб вони могли краще зрозуміти, яка інформація знаходиться в зображенні, автошопі, діаграмі або таблиці.", "PE.Views.ChartSettingsAdvanced.textAltTitle": "Назва", "PE.Views.ChartSettingsAdvanced.textTitle": "Діаграма - Розширені налаштування", + "PE.Views.DateTimeDialog.textFormat": "Формат", + "PE.Views.DateTimeDialog.txtTitle": "Дата та час", "PE.Views.DocumentHolder.aboveText": "Вище", "PE.Views.DocumentHolder.addCommentText": "Додати коментар", "PE.Views.DocumentHolder.advancedImageText": "Зображення розширені налаштування", @@ -685,6 +722,7 @@ "PE.Views.DocumentHolder.textSlideSettings": "Налаштування слайду", "PE.Views.DocumentHolder.textUndo": "Скасувати", "PE.Views.DocumentHolder.tipIsLocked": "Цей елемент в даний час редагує інший користувач.", + "PE.Views.DocumentHolder.toDictionaryText": "Додати в словник", "PE.Views.DocumentHolder.txtAddBottom": "Додати нижню межу", "PE.Views.DocumentHolder.txtAddFractionBar": "Додати фракційну панель", "PE.Views.DocumentHolder.txtAddHor": "Додати горизонтальну лінію", @@ -800,6 +838,7 @@ "PE.Views.FileMenu.btnRightsCaption": "Права доступу ...", "PE.Views.FileMenu.btnSaveAsCaption": "Зберегти як", "PE.Views.FileMenu.btnSaveCaption": "Зберегти", + "PE.Views.FileMenu.btnSaveCopyAsCaption": "Зберегти копію як...", "PE.Views.FileMenu.btnSettingsCaption": "Розширені налаштування...", "PE.Views.FileMenu.btnToEditCaption": "Редагувати презентацію", "PE.Views.FileMenuPanels.CreateNew.fromBlankText": "З бланку", @@ -807,6 +846,9 @@ "PE.Views.FileMenuPanels.CreateNew.newDescriptionText": "Створіть нову порожню презентацію, яку ви зможете стилювати та форматувати під час редагування. Або виберіть один з шаблонів, щоб розпочати розроблення презентації певного типу або мети, де деякі стилі вже були попередньо застосовані.", "PE.Views.FileMenuPanels.CreateNew.newDocumentText": "Нова презентація", "PE.Views.FileMenuPanels.CreateNew.noTemplatesText": "Немає шаблонів", + "PE.Views.FileMenuPanels.DocumentInfo.okButtonText": "Застосувати", + "PE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Додати автора", + "PE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Додати текст", "PE.Views.FileMenuPanels.DocumentInfo.txtAppName": "Додаток", "PE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Автор", "PE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Змінити права доступу", @@ -814,8 +856,10 @@ "PE.Views.FileMenuPanels.DocumentInfo.txtRights": "Особи, які мають права", "PE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Тема", "PE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Назва презентації", + "PE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Завантажено", "PE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Змінити права доступу", "PE.Views.FileMenuPanels.DocumentRights.txtRights": "Особи, які мають права", + "PE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Увага", "PE.Views.FileMenuPanels.Settings.okButtonText": "Застосувати", "PE.Views.FileMenuPanels.Settings.strAlignGuides": "Увімкніть посібники для вирівнювання", "PE.Views.FileMenuPanels.Settings.strAutoRecover": "Увімкніть автозапуск", @@ -848,8 +892,14 @@ "PE.Views.FileMenuPanels.Settings.txtInch": "Дюйм", "PE.Views.FileMenuPanels.Settings.txtInput": "Альтернативний ввід", "PE.Views.FileMenuPanels.Settings.txtLast": "Переглянути останнє", + "PE.Views.FileMenuPanels.Settings.txtMac": "як OS X", "PE.Views.FileMenuPanels.Settings.txtPt": "Визначити", "PE.Views.FileMenuPanels.Settings.txtSpellCheck": "Перевірка орфографії", + "PE.Views.FileMenuPanels.Settings.txtStopMacros": "Вимкнути все", + "PE.Views.FileMenuPanels.Settings.txtWin": "як Windows", + "PE.Views.HeaderFooterDialog.applyText": "Застосувати", + "PE.Views.HeaderFooterDialog.notcriticalErrorTitle": "Увага", + "PE.Views.HeaderFooterDialog.textDateTime": "Дата і час", "PE.Views.HyperlinkSettingsDialog.strDisplay": "Дісплей", "PE.Views.HyperlinkSettingsDialog.strLinkTo": "З'єднатися з", "PE.Views.HyperlinkSettingsDialog.textDefault": "Виберіть текстовий фрагмент", @@ -875,6 +925,7 @@ "PE.Views.ImageSettings.textHeight": "Висота", "PE.Views.ImageSettings.textInsert": "Замінити зображення", "PE.Views.ImageSettings.textOriginalSize": "За замовчуванням", + "PE.Views.ImageSettings.textRotate90": "Повернути на 90°", "PE.Views.ImageSettings.textRotation": "Поворот", "PE.Views.ImageSettings.textSize": "Розмір", "PE.Views.ImageSettings.textWidth": "Ширина", @@ -902,6 +953,7 @@ "PE.Views.LeftMenu.tipSupport": "Відгуки і підтримка", "PE.Views.LeftMenu.tipTitles": "Назви", "PE.Views.LeftMenu.txtDeveloper": "Режим розробника", + "PE.Views.LeftMenu.txtTrial": "ПРОБНИЙ РЕЖИМ", "PE.Views.ParagraphSettings.strLineHeight": "Лінія інтервалу", "PE.Views.ParagraphSettings.strParagraphSpacing": "Параметр інтервалу", "PE.Views.ParagraphSettings.strSpacingAfter": "після", @@ -967,6 +1019,7 @@ "PE.Views.ShapeSettings.textNoFill": "Немає заповнення", "PE.Views.ShapeSettings.textPatternFill": "Візерунок", "PE.Views.ShapeSettings.textRadial": "Радіальний", + "PE.Views.ShapeSettings.textRotate90": "Повернути на 90°", "PE.Views.ShapeSettings.textRotation": "Поворот", "PE.Views.ShapeSettings.textSelectTexture": "Обрати", "PE.Views.ShapeSettings.textStretch": "Розтягнути", @@ -993,6 +1046,7 @@ "PE.Views.ShapeSettingsAdvanced.textAltTitle": "Назва", "PE.Views.ShapeSettingsAdvanced.textAngle": "Нахил", "PE.Views.ShapeSettingsAdvanced.textArrows": "Стрілки", + "PE.Views.ShapeSettingsAdvanced.textAutofit": "Авто підбір", "PE.Views.ShapeSettingsAdvanced.textBeginSize": "Початковий розмір", "PE.Views.ShapeSettingsAdvanced.textBeginStyle": "Початок стилю", "PE.Views.ShapeSettingsAdvanced.textBevel": "Скіс", @@ -1020,6 +1074,7 @@ "PE.Views.ShapeSettingsAdvanced.textWeightArrows": "Ваги та стрілки", "PE.Views.ShapeSettingsAdvanced.textWidth": "Ширина", "PE.Views.ShapeSettingsAdvanced.txtNone": "немає", + "PE.Views.SignatureSettings.notcriticalErrorTitle": "Увага", "PE.Views.SlideSettings.strBackground": "Колір фону", "PE.Views.SlideSettings.strColor": "Колір", "PE.Views.SlideSettings.strDelay": "Затримка", @@ -1164,6 +1219,8 @@ "PE.Views.TableSettings.tipRight": "Встановити лише зовнішній правий кордон", "PE.Views.TableSettings.tipTop": "Встановити лише зовнішній верхній край", "PE.Views.TableSettings.txtNoBorders": "Немає кордонів", + "PE.Views.TableSettings.txtTable_Accent": "акцент", + "PE.Views.TableSettings.txtTable_NoGrid": "Немає Сітки", "PE.Views.TableSettingsAdvanced.textAlt": "Альтернативний текст", "PE.Views.TableSettingsAdvanced.textAltDescription": "Опис", "PE.Views.TableSettingsAdvanced.textAltTip": "Альтернативне текстове представлення інформації про візуальний об'єкт, яке може бути прочитано людям із порушеннями зору або когнітивними дисфункціями, щоб вони могли краще зрозуміти, яка інформація знаходиться в зображенні, автошопі, діаграмі або таблиці.", @@ -1219,7 +1276,9 @@ "PE.Views.TextArtSettings.txtPapyrus": "Папірус", "PE.Views.TextArtSettings.txtWood": "Дерево", "PE.Views.Toolbar.capAddSlide": "Додати слайд", + "PE.Views.Toolbar.capBtnAddComment": "Додати коментар", "PE.Views.Toolbar.capBtnComment": "Коментар", + "PE.Views.Toolbar.capBtnDateTime": "Дата та час", "PE.Views.Toolbar.capInsertChart": "Діаграма", "PE.Views.Toolbar.capInsertEquation": "Рівняння", "PE.Views.Toolbar.capInsertHyperlink": "Гіперсилка", @@ -1227,6 +1286,7 @@ "PE.Views.Toolbar.capInsertShape": "Форма", "PE.Views.Toolbar.capInsertTable": "Таблиця", "PE.Views.Toolbar.capInsertText": "Текстове вікно", + "PE.Views.Toolbar.capInsertVideo": "Відео", "PE.Views.Toolbar.capTabFile": "Файл", "PE.Views.Toolbar.capTabHome": "Головна", "PE.Views.Toolbar.capTabInsert": "Вставити", @@ -1250,7 +1310,6 @@ "PE.Views.Toolbar.textBold": "Жирний", "PE.Views.Toolbar.textItalic": "Курсив", "PE.Views.Toolbar.textNewColor": "Власний колір", - "Common.UI.ColorButton.textNewColor": "Власний колір", "PE.Views.Toolbar.textShapeAlignBottom": "Вирівняти знизу", "PE.Views.Toolbar.textShapeAlignCenter": "Вирівняти центр", "PE.Views.Toolbar.textShapeAlignLeft": "Вирівняти зліва", diff --git a/apps/presentationeditor/main/locale/zh.json b/apps/presentationeditor/main/locale/zh.json index 785238383..713aa4c5a 100644 --- a/apps/presentationeditor/main/locale/zh.json +++ b/apps/presentationeditor/main/locale/zh.json @@ -14,6 +14,8 @@ "Common.define.chartData.textPoint": "XY(散射)", "Common.define.chartData.textStock": "股票", "Common.define.chartData.textSurface": "平面", + "Common.Translation.warnFileLocked": "另一个应用正在编辑本文件。你仍然可以继续编辑此文件,你可以将你的编辑保存成另一个拷贝。", + "Common.UI.ColorButton.textNewColor": "添加新的自定义颜色", "Common.UI.ComboBorderSize.txtNoBorders": "没有边框", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "没有边框", "Common.UI.ComboDataView.emptyComboText": "没有风格", @@ -56,6 +58,10 @@ "Common.Views.About.txtPoweredBy": "技术支持", "Common.Views.About.txtTel": "电话:", "Common.Views.About.txtVersion": "版本", + "Common.Views.AutoCorrectDialog.textBy": "依据", + "Common.Views.AutoCorrectDialog.textMathCorrect": "数学自动修正", + "Common.Views.AutoCorrectDialog.textReplace": "替换:", + "Common.Views.AutoCorrectDialog.textTitle": "自动修正", "Common.Views.Chat.textSend": "发送", "Common.Views.Comments.textAdd": "添加", "Common.Views.Comments.textAddComment": "发表评论", @@ -117,11 +123,19 @@ "Common.Views.InsertTableDialog.txtTitle": "表格大小", "Common.Views.InsertTableDialog.txtTitleSplit": "拆分单元格", "Common.Views.LanguageDialog.labelSelect": "选择文档语言", + "Common.Views.ListSettingsDialog.textBulleted": "已添加项目点", + "Common.Views.ListSettingsDialog.textNumbering": "标号", + "Common.Views.ListSettingsDialog.tipChange": "修改项目点", + "Common.Views.ListSettingsDialog.txtBullet": "项目点", "Common.Views.ListSettingsDialog.txtColor": "颜色", + "Common.Views.ListSettingsDialog.txtNewBullet": "添加一个新的项目点", + "Common.Views.ListSettingsDialog.txtNone": "无", "Common.Views.ListSettingsDialog.txtOfText": "文本的%", "Common.Views.ListSettingsDialog.txtSize": "大小", "Common.Views.ListSettingsDialog.txtStart": "开始", + "Common.Views.ListSettingsDialog.txtSymbol": "符号", "Common.Views.ListSettingsDialog.txtTitle": "列表设置", + "Common.Views.ListSettingsDialog.txtType": "类型", "Common.Views.OpenDialog.closeButtonText": "关闭文件", "Common.Views.OpenDialog.txtEncoding": "编码", "Common.Views.OpenDialog.txtIncorrectPwd": "密码错误", @@ -236,11 +250,30 @@ "Common.Views.SignSettingsDialog.textShowDate": "在签名行中显示签名日期", "Common.Views.SignSettingsDialog.textTitle": "签名设置", "Common.Views.SignSettingsDialog.txtEmpty": "这是必填栏", + "Common.Views.SymbolTableDialog.textCharacter": "字符", "Common.Views.SymbolTableDialog.textCode": "Unicode十六进制值", + "Common.Views.SymbolTableDialog.textCopyright": "版权所有标识", + "Common.Views.SymbolTableDialog.textDCQuote": "后双引号", + "Common.Views.SymbolTableDialog.textDOQuote": "前双引号", + "Common.Views.SymbolTableDialog.textEllipsis": "横向省略号", + "Common.Views.SymbolTableDialog.textEmDash": "破折号", + "Common.Views.SymbolTableDialog.textEnDash": "半破折号", "Common.Views.SymbolTableDialog.textFont": "字体 ", + "Common.Views.SymbolTableDialog.textNBHyphen": "不换行连词符", + "Common.Views.SymbolTableDialog.textNBSpace": "不换行空格", + "Common.Views.SymbolTableDialog.textPilcrow": "段落标识", "Common.Views.SymbolTableDialog.textRange": "范围", "Common.Views.SymbolTableDialog.textRecent": "最近使用的符号", + "Common.Views.SymbolTableDialog.textRegistered": "注册商标标识", + "Common.Views.SymbolTableDialog.textSCQuote": "后单引号", + "Common.Views.SymbolTableDialog.textSection": "章节标识", + "Common.Views.SymbolTableDialog.textShortcut": "快捷键", + "Common.Views.SymbolTableDialog.textSHyphen": "软连词符", + "Common.Views.SymbolTableDialog.textSOQuote": "前单引号", + "Common.Views.SymbolTableDialog.textSpecial": "特殊字符", + "Common.Views.SymbolTableDialog.textSymbols": "符号", "Common.Views.SymbolTableDialog.textTitle": "符号", + "Common.Views.SymbolTableDialog.textTradeMark": "商标标识", "PE.Controllers.LeftMenu.newDocumentTitle": "未命名的演示", "PE.Controllers.LeftMenu.notcriticalErrorTitle": "警告", "PE.Controllers.LeftMenu.requestEditRightsText": "请求编辑权限..", @@ -323,9 +356,11 @@ "PE.Controllers.Main.textCloseTip": "点击关闭提示", "PE.Controllers.Main.textContactUs": "联系销售", "PE.Controllers.Main.textCustomLoader": "请注意,根据许可条款您无权更改加载程序。
            请联系我们的销售部门获取报价。", + "PE.Controllers.Main.textHasMacros": "这个文件带有自动宏。
            是否要运行宏?", "PE.Controllers.Main.textLoadingDocument": "载入演示", "PE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE开源版本", "PE.Controllers.Main.textPaidFeature": "付费功能", + "PE.Controllers.Main.textRemember": "记住我的选择", "PE.Controllers.Main.textShape": "形状", "PE.Controllers.Main.textStrict": "严格模式", "PE.Controllers.Main.textTryUndoRedo": "对于快速的协同编辑模式,取消/重做功能是禁用的。< br >单击“严格模式”按钮切换到严格co-editing模式编辑该文件没有其他用户干扰和发送您的更改只后你拯救他们。您可以使用编辑器高级设置在编辑模式之间切换。", @@ -1017,6 +1052,7 @@ "PE.Views.DocumentHolder.textFlipH": "水平翻转", "PE.Views.DocumentHolder.textFlipV": "垂直翻转", "PE.Views.DocumentHolder.textFromFile": "从文件导入", + "PE.Views.DocumentHolder.textFromStorage": "来自存储设备", "PE.Views.DocumentHolder.textFromUrl": "从URL", "PE.Views.DocumentHolder.textNextPage": "下一张幻灯片", "PE.Views.DocumentHolder.textPaste": "粘贴", @@ -1204,6 +1240,9 @@ "PE.Views.FileMenuPanels.Settings.strFontRender": "字体提示", "PE.Views.FileMenuPanels.Settings.strForcesave": "始终保存到服务器(否则在文档关闭时保存到服务器)", "PE.Views.FileMenuPanels.Settings.strInputMode": "该又是象形文字", + "PE.Views.FileMenuPanels.Settings.strMacrosSettings": "宏设置", + "PE.Views.FileMenuPanels.Settings.strPaste": "剪切、拷贝、黏贴", + "PE.Views.FileMenuPanels.Settings.strPasteButton": "在执行粘贴操作后显示“粘贴选项”按钮", "PE.Views.FileMenuPanels.Settings.strShowChanges": "实时协作变更", "PE.Views.FileMenuPanels.Settings.strSpellCheckMode": "打开拼写检查选项", "PE.Views.FileMenuPanels.Settings.strStrict": "严格", @@ -1220,6 +1259,7 @@ "PE.Views.FileMenuPanels.Settings.textForceSave": "保存到服务器", "PE.Views.FileMenuPanels.Settings.textMinute": "每一分钟", "PE.Views.FileMenuPanels.Settings.txtAll": "查看全部", + "PE.Views.FileMenuPanels.Settings.txtAutoCorrect": "自动修正选项...", "PE.Views.FileMenuPanels.Settings.txtCacheMode": "默认缓存模式", "PE.Views.FileMenuPanels.Settings.txtCm": "厘米", "PE.Views.FileMenuPanels.Settings.txtFitSlide": "适合幻灯片", @@ -1229,8 +1269,15 @@ "PE.Views.FileMenuPanels.Settings.txtLast": "最后查看", "PE.Views.FileMenuPanels.Settings.txtMac": "作为OS X", "PE.Views.FileMenuPanels.Settings.txtNative": "本地", + "PE.Views.FileMenuPanels.Settings.txtProofing": "审订", "PE.Views.FileMenuPanels.Settings.txtPt": "点", + "PE.Views.FileMenuPanels.Settings.txtRunMacros": "启动所有项目", + "PE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "启动所有不带通知的宏", "PE.Views.FileMenuPanels.Settings.txtSpellCheck": "拼写检查", + "PE.Views.FileMenuPanels.Settings.txtStopMacros": "解除所有项目", + "PE.Views.FileMenuPanels.Settings.txtStopMacrosDesc": "解除所有不带通知的宏", + "PE.Views.FileMenuPanels.Settings.txtWarnMacros": "显示通知", + "PE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "解除所有带通知的宏", "PE.Views.FileMenuPanels.Settings.txtWin": "作为Windows", "PE.Views.HeaderFooterDialog.applyAllText": "全部应用", "PE.Views.HeaderFooterDialog.applyText": "应用", @@ -1254,6 +1301,7 @@ "PE.Views.HyperlinkSettingsDialog.textEmptyTooltip": "在这里输入工具提示", "PE.Views.HyperlinkSettingsDialog.textExternalLink": "外部链接", "PE.Views.HyperlinkSettingsDialog.textInternalLink": "幻灯片在本演示文稿", + "PE.Views.HyperlinkSettingsDialog.textSlides": "幻灯片", "PE.Views.HyperlinkSettingsDialog.textTipText": "屏幕提示文字", "PE.Views.HyperlinkSettingsDialog.textTitle": "超链接设置", "PE.Views.HyperlinkSettingsDialog.txtEmpty": "这是必填栏", @@ -1272,6 +1320,7 @@ "PE.Views.ImageSettings.textFitSlide": "适合幻灯片", "PE.Views.ImageSettings.textFlip": "翻转", "PE.Views.ImageSettings.textFromFile": "从文件导入", + "PE.Views.ImageSettings.textFromStorage": "来自存储设备", "PE.Views.ImageSettings.textFromUrl": "从URL", "PE.Views.ImageSettings.textHeight": "高低", "PE.Views.ImageSettings.textHint270": "逆时针旋转90°", @@ -1346,6 +1395,7 @@ "PE.Views.ParagraphSettingsAdvanced.textEffects": "效果", "PE.Views.ParagraphSettingsAdvanced.textExact": "精确", "PE.Views.ParagraphSettingsAdvanced.textFirstLine": "第一行", + "PE.Views.ParagraphSettingsAdvanced.textHanging": "悬挂", "PE.Views.ParagraphSettingsAdvanced.textJustified": "正当", "PE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(无)", "PE.Views.ParagraphSettingsAdvanced.textRemove": "删除", @@ -1383,6 +1433,7 @@ "PE.Views.ShapeSettings.textEmptyPattern": "无图案", "PE.Views.ShapeSettings.textFlip": "翻转", "PE.Views.ShapeSettings.textFromFile": "从文件导入", + "PE.Views.ShapeSettings.textFromStorage": "来自存储设备", "PE.Views.ShapeSettings.textFromUrl": "从URL", "PE.Views.ShapeSettings.textGradient": "渐变", "PE.Views.ShapeSettings.textGradientFill": "渐变填充", @@ -1397,6 +1448,7 @@ "PE.Views.ShapeSettings.textRadial": "径向", "PE.Views.ShapeSettings.textRotate90": "旋转90°", "PE.Views.ShapeSettings.textRotation": "旋转", + "PE.Views.ShapeSettings.textSelectImage": "选取图片", "PE.Views.ShapeSettings.textSelectTexture": "请选择", "PE.Views.ShapeSettings.textStretch": "伸展", "PE.Views.ShapeSettings.textStyle": "类型", @@ -1422,6 +1474,7 @@ "PE.Views.ShapeSettingsAdvanced.textAltTitle": "标题", "PE.Views.ShapeSettingsAdvanced.textAngle": "角度", "PE.Views.ShapeSettingsAdvanced.textArrows": "箭头", + "PE.Views.ShapeSettingsAdvanced.textAutofit": "自动适应", "PE.Views.ShapeSettingsAdvanced.textBeginSize": "初始大小", "PE.Views.ShapeSettingsAdvanced.textBeginStyle": "初始风格", "PE.Views.ShapeSettingsAdvanced.textBevel": "斜角", @@ -1439,12 +1492,16 @@ "PE.Views.ShapeSettingsAdvanced.textLeft": "左", "PE.Views.ShapeSettingsAdvanced.textLineStyle": "线样式", "PE.Views.ShapeSettingsAdvanced.textMiter": "米特", + "PE.Views.ShapeSettingsAdvanced.textNofit": "不要使用自动适应", + "PE.Views.ShapeSettingsAdvanced.textResizeFit": "调整形状以适应文本", "PE.Views.ShapeSettingsAdvanced.textRight": "右", "PE.Views.ShapeSettingsAdvanced.textRotation": "旋转", "PE.Views.ShapeSettingsAdvanced.textRound": "圆", + "PE.Views.ShapeSettingsAdvanced.textShrink": "超出时压缩文本", "PE.Views.ShapeSettingsAdvanced.textSize": "大小", "PE.Views.ShapeSettingsAdvanced.textSpacing": "列之间的间距", "PE.Views.ShapeSettingsAdvanced.textSquare": "正方形", + "PE.Views.ShapeSettingsAdvanced.textTextBox": "文本框", "PE.Views.ShapeSettingsAdvanced.textTitle": "形状 - 高级设置", "PE.Views.ShapeSettingsAdvanced.textTop": "顶部", "PE.Views.ShapeSettingsAdvanced.textVertically": "垂直", @@ -1488,6 +1545,7 @@ "PE.Views.SlideSettings.textEmptyPattern": "无图案", "PE.Views.SlideSettings.textFade": "褪色", "PE.Views.SlideSettings.textFromFile": "从文件导入", + "PE.Views.SlideSettings.textFromStorage": "来自存储设备", "PE.Views.SlideSettings.textFromUrl": "从URL", "PE.Views.SlideSettings.textGradient": "渐变", "PE.Views.SlideSettings.textGradientFill": "渐变填充", @@ -1505,6 +1563,7 @@ "PE.Views.SlideSettings.textReset": "重置更改", "PE.Views.SlideSettings.textRight": "右", "PE.Views.SlideSettings.textSec": "s", + "PE.Views.SlideSettings.textSelectImage": "选取图片", "PE.Views.SlideSettings.textSelectTexture": "选择", "PE.Views.SlideSettings.textSmoothly": "顺利", "PE.Views.SlideSettings.textSplit": "分裂", @@ -1685,6 +1744,7 @@ "PE.Views.Toolbar.capBtnInsHeader": "页脚", "PE.Views.Toolbar.capBtnInsSymbol": "符号", "PE.Views.Toolbar.capBtnSlideNum": "幻灯片编号", + "PE.Views.Toolbar.capInsertAudio": "声音", "PE.Views.Toolbar.capInsertChart": "图表", "PE.Views.Toolbar.capInsertEquation": "方程", "PE.Views.Toolbar.capInsertHyperlink": "超链接", @@ -1692,6 +1752,7 @@ "PE.Views.Toolbar.capInsertShape": "形状", "PE.Views.Toolbar.capInsertTable": "表格", "PE.Views.Toolbar.capInsertText": "文本框", + "PE.Views.Toolbar.capInsertVideo": "视频", "PE.Views.Toolbar.capTabFile": "文件", "PE.Views.Toolbar.capTabHome": "主页", "PE.Views.Toolbar.capTabInsert": "插入", @@ -1717,7 +1778,6 @@ "PE.Views.Toolbar.textItalic": "斜体", "PE.Views.Toolbar.textListSettings": "列表设置", "PE.Views.Toolbar.textNewColor": "自定义颜色", - "Common.UI.ColorButton.textNewColor": "自定义颜色", "PE.Views.Toolbar.textShapeAlignBottom": "底部对齐", "PE.Views.Toolbar.textShapeAlignCenter": "居中对齐", "PE.Views.Toolbar.textShapeAlignLeft": "左对齐", @@ -1754,6 +1814,7 @@ "PE.Views.Toolbar.tipFontSize": "字体大小", "PE.Views.Toolbar.tipHAligh": "水平对齐", "PE.Views.Toolbar.tipIncPrLeft": "增加缩进", + "PE.Views.Toolbar.tipInsertAudio": "插入声音", "PE.Views.Toolbar.tipInsertChart": "插入图表", "PE.Views.Toolbar.tipInsertEquation": "插入方程", "PE.Views.Toolbar.tipInsertHyperlink": "添加超链接", @@ -1763,6 +1824,7 @@ "PE.Views.Toolbar.tipInsertTable": "插入表", "PE.Views.Toolbar.tipInsertText": "插入文字", "PE.Views.Toolbar.tipInsertTextArt": "插入文字艺术", + "PE.Views.Toolbar.tipInsertVideo": "插入视频", "PE.Views.Toolbar.tipLineSpace": "行间距", "PE.Views.Toolbar.tipMarkers": "着重号", "PE.Views.Toolbar.tipNumbers": "编号", diff --git a/apps/presentationeditor/main/resources/help/en/Contents.json b/apps/presentationeditor/main/resources/help/en/Contents.json index 99a13a215..6e3becda3 100644 --- a/apps/presentationeditor/main/resources/help/en/Contents.json +++ b/apps/presentationeditor/main/resources/help/en/Contents.json @@ -24,7 +24,8 @@ {"src": "UsageInstructions/FillObjectsSelectColor.htm", "name": "Fill objects and select colors"}, {"src": "UsageInstructions/ManipulateObjects.htm", "name": "Manipulate objects on a slide"}, {"src": "UsageInstructions/AlignArrangeObjects.htm", "name": "Align and arrange objects on a slide"}, - {"src": "UsageInstructions/InsertEquation.htm", "name": "Insert equations", "headername": "Math equations" }, + { "src": "UsageInstructions/InsertEquation.htm", "name": "Insert equations", "headername": "Math equations" }, + {"src": "UsageInstructions/MathAutoCorrect.htm", "name": "Use Math AutoCorrect" }, {"src": "HelpfulHints/CollaborativeEditing.htm", "name": "Collaborative presentation editing", "headername": "Presentation co-editing" }, {"src": "UsageInstructions/ViewPresentationInfo.htm", "name": "View presentation information", "headername": "Tools and settings"}, {"src": "UsageInstructions/SavePrintDownload.htm", "name": "Save/print/download your presentation" }, diff --git a/apps/presentationeditor/main/resources/help/en/HelpfulHints/AdvancedSettings.htm b/apps/presentationeditor/main/resources/help/en/HelpfulHints/AdvancedSettings.htm index 3bd6368d9..f22f00086 100644 --- a/apps/presentationeditor/main/resources/help/en/HelpfulHints/AdvancedSettings.htm +++ b/apps/presentationeditor/main/resources/help/en/HelpfulHints/AdvancedSettings.htm @@ -18,6 +18,7 @@

            The advanced settings are:

            • Spell Checking is used to turn on/off the spell checking option.
            • +
            • Proofing - used to automatically replace word or symbol typed in the Replace: box or chosen from the list by a new word or symbol displayed in the By: box.
            • 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 in the online version to turn on/off automatic saving of changes you make while editing.
            • @@ -51,6 +52,15 @@
          8. Unit of Measurement is used to specify what units are used on the rulers and in properties windows for measuring elements parameters such as width, height, spacing, margins etc. You can select the Centimeter, Point, or Inch option.
          9. +
          10. Cut, copy and paste - used to show the Paste Options button when content is pasted. Check the box to enable this feature.
          11. +
          12. + Macros Settings - used to set macros display with a notification. +
              +
            • Choose Disable all to disable all macros within the presentation;
            • +
            • Show notification to receive notifications about macros within the presentation;
            • +
            • Enable all to automatically run all macros within the presentation.
            • +
            +

        To save the changes you made, click the Apply button.

        diff --git a/apps/presentationeditor/main/resources/help/en/HelpfulHints/CollaborativeEditing.htm b/apps/presentationeditor/main/resources/help/en/HelpfulHints/CollaborativeEditing.htm index bfa0c0740..2dffb3b36 100644 --- a/apps/presentationeditor/main/resources/help/en/HelpfulHints/CollaborativeEditing.htm +++ b/apps/presentationeditor/main/resources/help/en/HelpfulHints/CollaborativeEditing.htm @@ -79,7 +79,7 @@
      8. delete the currently selected by clicking the Delete icon icon,
      9. close the currently selected 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.
      10. -

        Adding mentions

        +

        Adding mentions

        When entering comments, you can use the mentions feature that allows to attract somebody's attention to the comment and send a notification to the mentioned user via email and Talk.

        To add a mention enter the "+" or "@" sign anywhere in the comment text - a list of the portal users will open. To simplify the search process, you can start typing a name in the comment field - the user list will change as you type. Select the necessary person from the list. If the file has not yet been shared with the mentioned user, the Sharing Settings window will open. Read only access type is selected by default. Change it if necessary and click OK.

        The mentioned user will receive an email notification that he/she has been mentioned in a comment. If the file has been shared, the user will also receive a corresponding notification.

        @@ -89,8 +89,8 @@
      11. select the necessary option from the menu:
          -
        • Remove Current Comments - to remove the currently selected comment. If some replies have beed added to the comment, all its replies will be removed as well.
        • -
        • Remove My Comments - to remove comments you added without removing comments added by other users. If some replies have beed added to your comment, all its replies will be removed as well.
        • +
        • Remove Current Comments - to remove the currently selected comment. If some replies have been added to the comment, all its replies will be removed as well.
        • +
        • Remove My Comments - to remove comments you added without removing comments added by other users. If some replies have been added to your comment, all its replies will be removed as well.
        • Remove All Comments - to remove all the comments in the presentation that you and other users added.
      12. diff --git a/apps/presentationeditor/main/resources/help/en/HelpfulHints/KeyboardShortcuts.htm b/apps/presentationeditor/main/resources/help/en/HelpfulHints/KeyboardShortcuts.htm index 295df9768..0012b519e 100644 --- a/apps/presentationeditor/main/resources/help/en/HelpfulHints/KeyboardShortcuts.htm +++ b/apps/presentationeditor/main/resources/help/en/HelpfulHints/KeyboardShortcuts.htm @@ -101,6 +101,12 @@ ⇧ Shift+F10 ⇧ Shift+F10 Open the selected element contextual menu. + + + Reset the ‘Zoom’ parameter + Ctrl+0 + ^ Ctrl+0 or ⌘ Cmd+0 + Reset the ‘Zoom’ parameter of the current presentation to the default 'Fit to slide' value. Navigation diff --git a/apps/presentationeditor/main/resources/help/en/HelpfulHints/UsingChat.htm b/apps/presentationeditor/main/resources/help/en/HelpfulHints/UsingChat.htm new file mode 100644 index 000000000..628914db3 --- /dev/null +++ b/apps/presentationeditor/main/resources/help/en/HelpfulHints/UsingChat.htm @@ -0,0 +1,23 @@ + + + + Using the Chat Tool + + + + + +
        +

        Using the Chat Tool

        +

        ONLYOFFICE Presentation Editor offers you the possibility to chat with other users to share ideas concerning particular presentation parts.

        +

        To access the chat and leave a message for other users,

        +
          +
        1. click the Chat icon icon at the left sidebar,
        2. +
        3. enter your text into the corresponding field below,
        4. +
        5. press the Send button.
        6. +
        +

        All the messages left by users will be displayed on the panel on the left. If there are new messages you haven't read yet, the chat icon will look like this - Chat icon.

        +

        To close the panel with chat messages, click the Chat icon icon once again.

        +
        + + \ 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 58d0d4254..e3a71000a 100644 --- a/apps/presentationeditor/main/resources/help/en/UsageInstructions/AddHyperlinks.htm +++ b/apps/presentationeditor/main/resources/help/en/UsageInstructions/AddHyperlinks.htm @@ -26,7 +26,7 @@
      13. Use the External Link option and enter a URL in the format http://www.example.com in the Link to field below if you need to add a hyperlink leading to an external website.

        Hyperlink Settings window

      14. -
      15. Use the Slide In This Presentation option and select one of the options below if you need to add a hyperlink leading to a certain slide in the same presentation. You can check one of the following radiobuttons: Next Slide, Previous Slide, First Slide, Last Slide, Slide with the specified number. +
      16. Use the Slide In This Presentation option and select one of the options below if you need to add a hyperlink leading to a certain slide in the same presentation. The following options are available: Next Slide, Previous Slide, First Slide, Last Slide, Slide with the specified number.

        Hyperlink Settings window

      17. diff --git a/apps/presentationeditor/main/resources/help/en/UsageInstructions/CopyPasteUndoRedo.htm b/apps/presentationeditor/main/resources/help/en/UsageInstructions/CopyPasteUndoRedo.htm index 5b58f394f..102a50794 100644 --- a/apps/presentationeditor/main/resources/help/en/UsageInstructions/CopyPasteUndoRedo.htm +++ b/apps/presentationeditor/main/resources/help/en/UsageInstructions/CopyPasteUndoRedo.htm @@ -9,24 +9,24 @@ -
        -
        - -
        -

        Copy/paste data, undo/redo your actions

        +
        +
        + +
        +

        Copy/paste data, undo/redo your actions

        Use basic clipboard operations

        -

        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:

        +

        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.
        • Paste – find the place in your presentation where you need to paste the previously copied object and use the Paste option from the right-click menu or the Paste Paste icon icon at the top toolbar. The object will be inserted at the current cursor position. The object can be previously copied from the same presentation.
        • -
        +

        In the online version, the following key combinations are only used to copy or paste data from/into another presentation or some other program, in the desktop version, both the corresponding buttons/menu options and key combinations can be used for any copy/paste operations:

        -
          -
        • Ctrl+C key combination for copying;
        • -
        • Ctrl+V key combination for pasting;
        • -
        • Ctrl+X key combination for cutting.
        • -
        +
          +
        • Ctrl+C key combination for copying;
        • +
        • Ctrl+V key combination for pasting;
        • +
        • Ctrl+X key combination for cutting.
        • +

        Use the Paste Special feature

        Once the copied data is pasted, the Paste Special Paste Special button appears next to the inserted text passage/object. Click this button to select the necessary paste option.

        When pasting text passages, the following options are available:

        @@ -42,6 +42,7 @@
      18. Use destination theme - allows to apply the formatting specified by the theme of the current presentation. This option is used by default.
      19. Picture - allows to paste the object as an image so that it cannot be edited.
      20. +

        To enable / disable the automatic appearance of the Paste Special button after pasting, go to the File tab > Advanced Settings... and check / uncheck the Cut, copy and paste checkbox.

        Use the Undo/Redo operations

        To perform the undo/redo operations, use the corresponding icons in the left part of the editor header or keyboard shortcuts:

          @@ -54,7 +55,7 @@

          Note: when you co-edit a presentation in the Fast mode, the possibility to Redo the last undone operation is not available.

          - -
        + +
        \ No newline at end of file diff --git a/apps/presentationeditor/main/resources/help/en/UsageInstructions/CreateLists.htm b/apps/presentationeditor/main/resources/help/en/UsageInstructions/CreateLists.htm index b01ea7aea..3da038d8e 100644 --- a/apps/presentationeditor/main/resources/help/en/UsageInstructions/CreateLists.htm +++ b/apps/presentationeditor/main/resources/help/en/UsageInstructions/CreateLists.htm @@ -48,7 +48,7 @@
        • Size - allows to select the necessary bullet/number size depending on the current size of the text. It can take a value from 25% to 400%.
        • Color - allows to select the necessary bullet/number color. You can select one of the theme colors, or standard colors on the palette, or specify a custom color.
        • -
        • Bullet - allows to select the necessary character used for the bulleted list. When you click on the Bullet field, the Symbol window opens that allows to choose one of the available characters. To learn more on how to work with symbols, you can refer to this article.
        • +
        • Type - allows to select the necessary character used for the list. When you click on the field, a drop-down list opens that allows to choose one of the available options. For Bulleted lists, you can also add a new symbol. To learn more on how to work with symbols, you can refer to this article.
        • Start at - allows to select the nesessary sequence number a numbered list starts from.
        diff --git a/apps/presentationeditor/main/resources/help/en/UsageInstructions/FillObjectsSelectColor.htm b/apps/presentationeditor/main/resources/help/en/UsageInstructions/FillObjectsSelectColor.htm index 7851d7bdd..484040c4a 100644 --- a/apps/presentationeditor/main/resources/help/en/UsageInstructions/FillObjectsSelectColor.htm +++ b/apps/presentationeditor/main/resources/help/en/UsageInstructions/FillObjectsSelectColor.htm @@ -61,8 +61,9 @@
      21. Picture or Texture - select this option to use an image or a predefined texture as the shape/slide background.

        Picture or Texture Fill

          -
        • If you wish to use an image as a backgroung for the shape/slide, you can add an image From File selecting it on your computer HDD or From URL inserting the appropriate URL address in the opened window. -
        • +
        • + If you wish to use an image as a backgroung for the shape/slide, you can add an image From File by selecting it on your computer hard disc drive, From URL by inserting the appropriate URL address into the opened window, or From Storage by selecting the required image stored on your portal. +
        • If you wish to use a texture as a backgroung for the shape/slide, drop-down the From Texture menu and select the necessary texture preset.

          Currently, the following textures are available: Canvas, Carton, Dark Fabric, Grain, Granite, Grey Paper, Knit, Leather, Brown Paper, Papyrus, Wood.

        • diff --git a/apps/presentationeditor/main/resources/help/en/UsageInstructions/InsertAutoshapes.htm b/apps/presentationeditor/main/resources/help/en/UsageInstructions/InsertAutoshapes.htm index c3980d375..859e993e2 100644 --- a/apps/presentationeditor/main/resources/help/en/UsageInstructions/InsertAutoshapes.htm +++ b/apps/presentationeditor/main/resources/help/en/UsageInstructions/InsertAutoshapes.htm @@ -98,7 +98,7 @@
        • Arrows - this option group is available if a shape from the Lines shape group is selected. It allows to set the arrow Start and End Style and Size by selecting the appropriate option from the drop-down lists.

        Shape Properties - Text Padding tab

        -

        The Text Padding tab allows to change the autoshape Top, Bottom, Left and Right internal margins (i.e. the distance between the text within the shape and the autoshape borders).

        +

        The Text Box tab allows you to Not Autofit text at all, Shrink text on overflow, Resize shape to fit text or change the autoshape Top, Bottom, Left and Right internal margins (i.e. the distance between the text within the shape and the autoshape borders).

        Note: this tab is only available if text is added within the autoshape, otherwise the tab is disabled.

        Shape Properties - Columns tab

        The Columns tab allows to add columns of text within the autoshape specifying the necessary Number of columns (up to 16) and Spacing between columns. Once you click OK, the text that already exists or any other text you enter within the autoshape will appear in columns and will flow from one column to another.

        diff --git a/apps/presentationeditor/main/resources/help/en/UsageInstructions/InsertCharts.htm b/apps/presentationeditor/main/resources/help/en/UsageInstructions/InsertCharts.htm index 16e5e728a..879307b68 100644 --- a/apps/presentationeditor/main/resources/help/en/UsageInstructions/InsertCharts.htm +++ b/apps/presentationeditor/main/resources/help/en/UsageInstructions/InsertCharts.htm @@ -40,7 +40,11 @@

        The Type & Data tab allows you to select the chart type as well as the data you wish to use to create a chart.

        • Select a chart Type you wish to insert: Column, Line, Pie, Bar, Area, XY (Scatter), Stock.
        • -
        • Check the selected Data Range and modify it, if necessary, clicking the Select Data button and entering the desired data range in the following format: Sheet1!A1:B4.
        • +
        • + Check the selected Data Range and modify it, if necessary. To do that, click the Source data range icon icon. +

          Select Data Range window

          +

          In the Select Data Range window, enter the necessary data range in the following format: Sheet1!$A$1:$E$10. You can also select the necessary cell range in the sheet using the mouse. When ready, click OK.

          +
        • Choose the way to arrange the data. You can either select the Data series to be used on the X axis: in rows or in columns.

        Chart Settings window

        @@ -191,12 +195,16 @@ When you select a vertical or horizontal axis or gridlines, the stroke settings are only available at the Shape Settings tab: color, width and type. For more details on how to work with shape colors, fills and stroke, you can refer to this page.

        Note: the Show shadow option is also available at the Shape settings tab, but it is disabled for chart elements.

        +

        If you need to resize chart elements, left-click to select the needed element and drag one of 8 white squares Square icon located along the perimeter of the element.

        +

        Resize chart elements

        +

        To change the position of the element, left-click on it, make sure your cursor changed to Arrow, hold the left mouse button and drag the element to the needed position.

        +

        Move chart elements

        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. Drag the cursor without releasing the mouse button to change the 3D chart orientation.

        3D chart


        Adjust chart settings

        - Chart tab + 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 Change Chart Type section allows you to change the selected chart type and/or style using the corresponding drop-down menu.

        diff --git a/apps/presentationeditor/main/resources/help/en/UsageInstructions/InsertEquation.htm b/apps/presentationeditor/main/resources/help/en/UsageInstructions/InsertEquation.htm index 83bebdcaa..e289389f2 100644 --- a/apps/presentationeditor/main/resources/help/en/UsageInstructions/InsertEquation.htm +++ b/apps/presentationeditor/main/resources/help/en/UsageInstructions/InsertEquation.htm @@ -34,7 +34,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 Equation icon Equation menu at the Insert tab of 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 or typing them from the keyboard (see the Math AutoСorrect option description),
        • 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.

        diff --git a/apps/presentationeditor/main/resources/help/en/UsageInstructions/InsertImages.htm b/apps/presentationeditor/main/resources/help/en/UsageInstructions/InsertImages.htm index f73dc3457..bd3e47d68 100644 --- a/apps/presentationeditor/main/resources/help/en/UsageInstructions/InsertImages.htm +++ b/apps/presentationeditor/main/resources/help/en/UsageInstructions/InsertImages.htm @@ -51,7 +51,7 @@
      22. If you select the Fill option, the central part of the original image will be preserved and used to fill the selected cropping area, while other parts of the image will be removed.
      23. If you select the Fit option, the image will be resized so that it fits the cropping area height or width. No parts of the original image will be removed, but empty spaces may appear within the selected cropping area.
      24. -

        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. The Replace image option is also available in the right-click menu.

        +

        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, From Storage, or From URL. The Replace image option is also available in the right-click menu.

        Rotation is used to rotate the image by 90 degrees clockwise or counterclockwise as well as to flip the image horizontally or vertically. Click one of the buttons:

        • Rotate counterclockwise icon to rotate the image by 90 degrees counterclockwise
        • diff --git a/apps/presentationeditor/main/resources/help/en/UsageInstructions/InsertSymbols.htm b/apps/presentationeditor/main/resources/help/en/UsageInstructions/InsertSymbols.htm index c9ef36902..16873a702 100644 --- a/apps/presentationeditor/main/resources/help/en/UsageInstructions/InsertSymbols.htm +++ b/apps/presentationeditor/main/resources/help/en/UsageInstructions/InsertSymbols.htm @@ -14,12 +14,12 @@

          Insert symbols and characters

          -

          During working process you may need to insert a symbol which is not on your keyboard. To insert such symbols into your presentation, use the Symbol table iconInsert symbol option and follow these simple steps:

          +

          During working process you may need to insert a symbol which is not on your keyboard. To insert such symbols into your presentation, use the Symbol table icon Insert symbol option and follow these simple steps:

          • place the cursor at the location where a special symbol has to be inserted,
          • switch to the Insert tab of the top toolbar,
          • - click the Symbol table iconSymbol, + click the Symbol table icon Symbol,

            Insert symbol sidebar

          • The Symbol dialog box appears from which you can select the appropriate symbol,
          • @@ -27,6 +27,8 @@

            use the Range section to quickly find the nesessary symbol. All symbols are divided into specific groups, for example, select 'Currency Symbols' if you want to insert a currency character.

            If this character is not in the set, select a different font. Many of them also have characters other than the standard set.

            Or, enter the Unicode hex value of the symbol you want into the Unicode hex value field. This code can be found in the Character map.

            +

            You can also use the Special characters tab to choose a special character from the list.

            +

            Insert symbol sidebar

            Previously used symbols are also displayed in the Recently used symbols field,

          • click Insert. The selected character will be added to the presentation.
          • diff --git a/apps/presentationeditor/main/resources/help/en/UsageInstructions/InsertTables.htm b/apps/presentationeditor/main/resources/help/en/UsageInstructions/InsertTables.htm index 708f4b678..c9a186e2a 100644 --- a/apps/presentationeditor/main/resources/help/en/UsageInstructions/InsertTables.htm +++ b/apps/presentationeditor/main/resources/help/en/UsageInstructions/InsertTables.htm @@ -46,11 +46,11 @@

            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.
            • -
            • Total - emphasizes the bottommost row in the table with a special formatting.
            • +
            • Header - emphasizes the topmost row in the table with special formatting.
            • +
            • Total - emphasizes the bottommost row in the table with special formatting.
            • Banded - enables the background color alternation for odd and even rows.
            • -
            • First - emphasizes the leftmost column in the table with a special formatting.
            • -
            • Last - emphasizes the rightmost column in the table with a special formatting.
            • +
            • First - emphasizes the leftmost column in the table with special formatting.
            • +
            • Last - emphasizes the rightmost column in the table with special formatting.
            • Banded - enables the background color alternation for odd and even columns.

            The Select From Template section allows you to choose one of the predefined tables styles. Each template combines certain formatting parameters, such as a background color, border style, row/column banding etc. diff --git a/apps/presentationeditor/main/resources/help/en/UsageInstructions/MathAutoCorrect.htm b/apps/presentationeditor/main/resources/help/en/UsageInstructions/MathAutoCorrect.htm new file mode 100644 index 000000000..1824b60be --- /dev/null +++ b/apps/presentationeditor/main/resources/help/en/UsageInstructions/MathAutoCorrect.htm @@ -0,0 +1,2506 @@ + + + + Use Math AutoCorrect + + + + + + + +

            +
            + +
            +

            Use Math AutoCorrect

            +

            When working with equations, you can insert a lot of symbols, accents and mathematical operation signs typing them on the keyboard instead of choosing a template from the gallery.

            +

            In the equation editor, place the insertion point within the necessary placeholder, type a math autocorrect code, then press Spacebar. The entered code will be converted into the corresponding symbol, and the space will be eliminated.

            +

            Note: The codes are case sensitive.

            +

            The table below contains all the currently supported codes available in the Presentation Editor. The full list of the supported codes can also be found on the File tab in the Advanced Settings... -> Proofing section.

            +

            AutoCorrect window

            + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
            CodeSymbolCategory
            !!Double factorialSymbols
            ...Horizontal ellipsisDots
            ::Double colonOperators
            :=Colon equalOperators
            /<Not less thanRelational operators
            />Not greater thanRelational operators
            /=Not equalRelational operators
            \aboveSymbolAbove/Below scripts
            \acuteSymbolAccents
            \alephSymbolHebrew letters
            \alphaSymbolGreek letters
            \AlphaSymbolGreek letters
            \amalgSymbolBinary operators
            \angleSymbolGeometry notation
            \aointSymbolIntegrals
            \approxSymbolRelational operators
            \asmashSymbolArrows
            \astAsteriskBinary operators
            \asympSymbolRelational operators
            \atopSymbolOperators
            \barSymbolOver/Underbar
            \BarSymbolAccents
            \becauseSymbolRelational operators
            \beginSymbolDelimiters
            \belowSymbolAbove/Below scripts
            \betSymbolHebrew letters
            \betaSymbolGreek letters
            \BetaSymbolGreek letters
            \bethSymbolHebrew letters
            \bigcapSymbolLarge operators
            \bigcupSymbolLarge operators
            \bigodotSymbolLarge operators
            \bigoplusSymbolLarge operators
            \bigotimesSymbolLarge operators
            \bigsqcupSymbolLarge operators
            \biguplusSymbolLarge operators
            \bigveeSymbolLarge operators
            \bigwedgeSymbolLarge operators
            \binomialSymbolEquations
            \botSymbolLogic notation
            \bowtieSymbolRelational operators
            \boxSymbolSymbols
            \boxdotSymbolBinary operators
            \boxminusSymbolBinary operators
            \boxplusSymbolBinary operators
            \braSymbolDelimiters
            \breakSymbolSymbols
            \breveSymbolAccents
            \bulletSymbolBinary operators
            \capSymbolBinary operators
            \cbrtSymbolSquare roots and radicals
            \casesSymbolSymbols
            \cdotSymbolBinary operators
            \cdotsSymbolDots
            \checkSymbolAccents
            \chiSymbolGreek letters
            \ChiSymbolGreek letters
            \circSymbolBinary operators
            \closeSymbolDelimiters
            \clubsuitSymbolSymbols
            \cointSymbolIntegrals
            \congSymbolRelational operators
            \coprodSymbolMath operators
            \cupSymbolBinary operators
            \daletSymbolHebrew letters
            \dalethSymbolHebrew letters
            \dashvSymbolRelational operators
            \ddSymbolDouble-struck letters
            \DdSymbolDouble-struck letters
            \ddddotSymbolAccents
            \dddotSymbolAccents
            \ddotSymbolAccents
            \ddotsSymbolDots
            \defeqSymbolRelational operators
            \degcSymbolSymbols
            \degfSymbolSymbols
            \degreeSymbolSymbols
            \deltaSymbolGreek letters
            \DeltaSymbolGreek letters
            \DeltaeqSymbolOperators
            \diamondSymbolBinary operators
            \diamondsuitSymbolSymbols
            \divSymbolBinary operators
            \dotSymbolAccents
            \doteqSymbolRelational operators
            \dotsSymbolDots
            \doubleaSymbolDouble-struck letters
            \doubleASymbolDouble-struck letters
            \doublebSymbolDouble-struck letters
            \doubleBSymbolDouble-struck letters
            \doublecSymbolDouble-struck letters
            \doubleCSymbolDouble-struck letters
            \doubledSymbolDouble-struck letters
            \doubleDSymbolDouble-struck letters
            \doubleeSymbolDouble-struck letters
            \doubleESymbolDouble-struck letters
            \doublefSymbolDouble-struck letters
            \doubleFSymbolDouble-struck letters
            \doublegSymbolDouble-struck letters
            \doubleGSymbolDouble-struck letters
            \doublehSymbolDouble-struck letters
            \doubleHSymbolDouble-struck letters
            \doubleiSymbolDouble-struck letters
            \doubleISymbolDouble-struck letters
            \doublejSymbolDouble-struck letters
            \doubleJSymbolDouble-struck letters
            \doublekSymbolDouble-struck letters
            \doubleKSymbolDouble-struck letters
            \doublelSymbolDouble-struck letters
            \doubleLSymbolDouble-struck letters
            \doublemSymbolDouble-struck letters
            \doubleMSymbolDouble-struck letters
            \doublenSymbolDouble-struck letters
            \doubleNSymbolDouble-struck letters
            \doubleoSymbolDouble-struck letters
            \doubleOSymbolDouble-struck letters
            \doublepSymbolDouble-struck letters
            \doublePSymbolDouble-struck letters
            \doubleqSymbolDouble-struck letters
            \doubleQSymbolDouble-struck letters
            \doublerSymbolDouble-struck letters
            \doubleRSymbolDouble-struck letters
            \doublesSymbolDouble-struck letters
            \doubleSSymbolDouble-struck letters
            \doubletSymbolDouble-struck letters
            \doubleTSymbolDouble-struck letters
            \doubleuSymbolDouble-struck letters
            \doubleUSymbolDouble-struck letters
            \doublevSymbolDouble-struck letters
            \doubleVSymbolDouble-struck letters
            \doublewSymbolDouble-struck letters
            \doubleWSymbolDouble-struck letters
            \doublexSymbolDouble-struck letters
            \doubleXSymbolDouble-struck letters
            \doubleySymbolDouble-struck letters
            \doubleYSymbolDouble-struck letters
            \doublezSymbolDouble-struck letters
            \doubleZSymbolDouble-struck letters
            \downarrowSymbolArrows
            \DownarrowSymbolArrows
            \dsmashSymbolArrows
            \eeSymbolDouble-struck letters
            \ellSymbolSymbols
            \emptysetSymbolSet notations
            \emspSpace characters
            \endSymbolDelimiters
            \enspSpace characters
            \epsilonSymbolGreek letters
            \EpsilonSymbolGreek letters
            \eqarraySymbolSymbols
            \equivSymbolRelational operators
            \etaSymbolGreek letters
            \EtaSymbolGreek letters
            \existsSymbolLogic notations
            \forallSymbolLogic notations
            \frakturaSymbolFraktur letters
            \frakturASymbolFraktur letters
            \frakturbSymbolFraktur letters
            \frakturBSymbolFraktur letters
            \frakturcSymbolFraktur letters
            \frakturCSymbolFraktur letters
            \frakturdSymbolFraktur letters
            \frakturDSymbolFraktur letters
            \fraktureSymbolFraktur letters
            \frakturESymbolFraktur letters
            \frakturfSymbolFraktur letters
            \frakturFSymbolFraktur letters
            \frakturgSymbolFraktur letters
            \frakturGSymbolFraktur letters
            \frakturhSymbolFraktur letters
            \frakturHSymbolFraktur letters
            \frakturiSymbolFraktur letters
            \frakturISymbolFraktur letters
            \frakturkSymbolFraktur letters
            \frakturKSymbolFraktur letters
            \frakturlSymbolFraktur letters
            \frakturLSymbolFraktur letters
            \frakturmSymbolFraktur letters
            \frakturMSymbolFraktur letters
            \frakturnSymbolFraktur letters
            \frakturNSymbolFraktur letters
            \frakturoSymbolFraktur letters
            \frakturOSymbolFraktur letters
            \frakturpSymbolFraktur letters
            \frakturPSymbolFraktur letters
            \frakturqSymbolFraktur letters
            \frakturQSymbolFraktur letters
            \frakturrSymbolFraktur letters
            \frakturRSymbolFraktur letters
            \fraktursSymbolFraktur letters
            \frakturSSymbolFraktur letters
            \frakturtSymbolFraktur letters
            \frakturTSymbolFraktur letters
            \frakturuSymbolFraktur letters
            \frakturUSymbolFraktur letters
            \frakturvSymbolFraktur letters
            \frakturVSymbolFraktur letters
            \frakturwSymbolFraktur letters
            \frakturWSymbolFraktur letters
            \frakturxSymbolFraktur letters
            \frakturXSymbolFraktur letters
            \frakturySymbolFraktur letters
            \frakturYSymbolFraktur letters
            \frakturzSymbolFraktur letters
            \frakturZSymbolFraktur letters
            \frownSymbolRelational operators
            \funcapplyBinary operators
            \GSymbolGreek letters
            \gammaSymbolGreek letters
            \GammaSymbolGreek letters
            \geSymbolRelational operators
            \geqSymbolRelational operators
            \getsSymbolArrows
            \ggSymbolRelational operators
            \gimelSymbolHebrew letters
            \graveSymbolAccents
            \hairspSpace characters
            \hatSymbolAccents
            \hbarSymbolSymbols
            \heartsuitSymbolSymbols
            \hookleftarrowSymbolArrows
            \hookrightarrowSymbolArrows
            \hphantomSymbolArrows
            \hsmashSymbolArrows
            \hvecSymbolAccents
            \identitymatrixSymbolMatrices
            \iiSymbolDouble-struck letters
            \iiintSymbolIntegrals
            \iintSymbolIntegrals
            \iiiintSymbolIntegrals
            \ImSymbolSymbols
            \imathSymbolSymbols
            \inSymbolRelational operators
            \incSymbolSymbols
            \inftySymbolSymbols
            \intSymbolIntegrals
            \integralSymbolIntegrals
            \iotaSymbolGreek letters
            \IotaSymbolGreek letters
            \itimesMath operators
            \jSymbolSymbols
            \jjSymbolDouble-struck letters
            \jmathSymbolSymbols
            \kappaSymbolGreek letters
            \KappaSymbolGreek letters
            \ketSymbolDelimiters
            \lambdaSymbolGreek letters
            \LambdaSymbolGreek letters
            \langleSymbolDelimiters
            \lbbrackSymbolDelimiters
            \lbraceSymbolDelimiters
            \lbrackSymbolDelimiters
            \lceilSymbolDelimiters
            \ldivSymbolFraction slashes
            \ldivideSymbolFraction slashes
            \ldotsSymbolDots
            \leSymbolRelational operators
            \leftSymbolDelimiters
            \leftarrowSymbolArrows
            \LeftarrowSymbolArrows
            \leftharpoondownSymbolArrows
            \leftharpoonupSymbolArrows
            \leftrightarrowSymbolArrows
            \LeftrightarrowSymbolArrows
            \leqSymbolRelational operators
            \lfloorSymbolDelimiters
            \lhvecSymbolAccents
            \limitSymbolLimits
            \llSymbolRelational operators
            \lmoustSymbolDelimiters
            \LongleftarrowSymbolArrows
            \LongleftrightarrowSymbolArrows
            \LongrightarrowSymbolArrows
            \lrharSymbolArrows
            \lvecSymbolAccents
            \mapstoSymbolArrows
            \matrixSymbolMatrices
            \medspSpace characters
            \midSymbolRelational operators
            \middleSymbolSymbols
            \modelsSymbolRelational operators
            \mpSymbolBinary operators
            \muSymbolGreek letters
            \MuSymbolGreek letters
            \nablaSymbolSymbols
            \naryandSymbolOperators
            \nbspSpace characters
            \neSymbolRelational operators
            \nearrowSymbolArrows
            \neqSymbolRelational operators
            \niSymbolRelational operators
            \normSymbolDelimiters
            \notcontainSymbolRelational operators
            \notelementSymbolRelational operators
            \notinSymbolRelational operators
            \nuSymbolGreek letters
            \NuSymbolGreek letters
            \nwarrowSymbolArrows
            \oSymbolGreek letters
            \OSymbolGreek letters
            \odotSymbolBinary operators
            \ofSymbolOperators
            \oiiintSymbolIntegrals
            \oiintSymbolIntegrals
            \ointSymbolIntegrals
            \omegaSymbolGreek letters
            \OmegaSymbolGreek letters
            \ominusSymbolBinary operators
            \openSymbolDelimiters
            \oplusSymbolBinary operators
            \otimesSymbolBinary operators
            \overSymbolDelimiters
            \overbarSymbolAccents
            \overbraceSymbolAccents
            \overbracketSymbolAccents
            \overlineSymbolAccents
            \overparenSymbolAccents
            \overshellSymbolAccents
            \parallelSymbolGeometry notation
            \partialSymbolSymbols
            \pmatrixSymbolMatrices
            \perpSymbolGeometry notation
            \phantomSymbolSymbols
            \phiSymbolGreek letters
            \PhiSymbolGreek letters
            \piSymbolGreek letters
            \PiSymbolGreek letters
            \pmSymbolBinary operators
            \pppprimeSymbolPrimes
            \ppprimeSymbolPrimes
            \pprimeSymbolPrimes
            \precSymbolRelational operators
            \preceqSymbolRelational operators
            \primeSymbolPrimes
            \prodSymbolMath operators
            \proptoSymbolRelational operators
            \psiSymbolGreek letters
            \PsiSymbolGreek letters
            \qdrtSymbolSquare roots and radicals
            \quadraticSymbolSquare roots and radicals
            \rangleSymbolDelimiters
            \RangleSymbolDelimiters
            \ratioSymbolRelational operators
            \rbraceSymbolDelimiters
            \rbrackSymbolDelimiters
            \RbrackSymbolDelimiters
            \rceilSymbolDelimiters
            \rddotsSymbolDots
            \ReSymbolSymbols
            \rectSymbolSymbols
            \rfloorSymbolDelimiters
            \rhoSymbolGreek letters
            \RhoSymbolGreek letters
            \rhvecSymbolAccents
            \rightSymbolDelimiters
            \rightarrowSymbolArrows
            \RightarrowSymbolArrows
            \rightharpoondownSymbolArrows
            \rightharpoonupSymbolArrows
            \rmoustSymbolDelimiters
            \rootSymbolSymbols
            \scriptaSymbolScripts
            \scriptASymbolScripts
            \scriptbSymbolScripts
            \scriptBSymbolScripts
            \scriptcSymbolScripts
            \scriptCSymbolScripts
            \scriptdSymbolScripts
            \scriptDSymbolScripts
            \scripteSymbolScripts
            \scriptESymbolScripts
            \scriptfSymbolScripts
            \scriptFSymbolScripts
            \scriptgSymbolScripts
            \scriptGSymbolScripts
            \scripthSymbolScripts
            \scriptHSymbolScripts
            \scriptiSymbolScripts
            \scriptISymbolScripts
            \scriptkSymbolScripts
            \scriptKSymbolScripts
            \scriptlSymbolScripts
            \scriptLSymbolScripts
            \scriptmSymbolScripts
            \scriptMSymbolScripts
            \scriptnSymbolScripts
            \scriptNSymbolScripts
            \scriptoSymbolScripts
            \scriptOSymbolScripts
            \scriptpSymbolScripts
            \scriptPSymbolScripts
            \scriptqSymbolScripts
            \scriptQSymbolScripts
            \scriptrSymbolScripts
            \scriptRSymbolScripts
            \scriptsSymbolScripts
            \scriptSSymbolScripts
            \scripttSymbolScripts
            \scriptTSymbolScripts
            \scriptuSymbolScripts
            \scriptUSymbolScripts
            \scriptvSymbolScripts
            \scriptVSymbolScripts
            \scriptwSymbolScripts
            \scriptWSymbolScripts
            \scriptxSymbolScripts
            \scriptXSymbolScripts
            \scriptySymbolScripts
            \scriptYSymbolScripts
            \scriptzSymbolScripts
            \scriptZSymbolScripts
            \sdivSymbolFraction slashes
            \sdivideSymbolFraction slashes
            \searrowSymbolArrows
            \setminusSymbolBinary operators
            \sigmaSymbolGreek letters
            \SigmaSymbolGreek letters
            \simSymbolRelational operators
            \simeqSymbolRelational operators
            \smashSymbolArrows
            \smileSymbolRelational operators
            \spadesuitSymbolSymbols
            \sqcapSymbolBinary operators
            \sqcupSymbolBinary operators
            \sqrtSymbolSquare roots and radicals
            \sqsubseteqSymbolSet notation
            \sqsuperseteqSymbolSet notation
            \starSymbolBinary operators
            \subsetSymbolSet notation
            \subseteqSymbolSet notation
            \succSymbolRelational operators
            \succeqSymbolRelational operators
            \sumSymbolMath operators
            \supersetSymbolSet notation
            \superseteqSymbolSet notation
            \swarrowSymbolArrows
            \tauSymbolGreek letters
            \TauSymbolGreek letters
            \thereforeSymbolRelational operators
            \thetaSymbolGreek letters
            \ThetaSymbolGreek letters
            \thickspSpace characters
            \thinspSpace characters
            \tildeSymbolAccents
            \timesSymbolBinary operators
            \toSymbolArrows
            \topSymbolLogic notation
            \tvecSymbolArrows
            \ubarSymbolAccents
            \UbarSymbolAccents
            \underbarSymbolAccents
            \underbraceSymbolAccents
            \underbracketSymbolAccents
            \underlineSymbolAccents
            \underparenSymbolAccents
            \uparrowSymbolArrows
            \UparrowSymbolArrows
            \updownarrowSymbolArrows
            \UpdownarrowSymbolArrows
            \uplusSymbolBinary operators
            \upsilonSymbolGreek letters
            \UpsilonSymbolGreek letters
            \varepsilonSymbolGreek letters
            \varphiSymbolGreek letters
            \varpiSymbolGreek letters
            \varrhoSymbolGreek letters
            \varsigmaSymbolGreek letters
            \varthetaSymbolGreek letters
            \vbarSymbolDelimiters
            \vdashSymbolRelational operators
            \vdotsSymbolDots
            \vecSymbolAccents
            \veeSymbolBinary operators
            \vertSymbolDelimiters
            \VertSymbolDelimiters
            \VmatrixSymbolMatrices
            \vphantomSymbolArrows
            \vthickspSpace characters
            \wedgeSymbolBinary operators
            \wpSymbolSymbols
            \wrSymbolBinary operators
            \xiSymbolGreek letters
            \XiSymbolGreek letters
            \zetaSymbolGreek letters
            \ZetaSymbolGreek letters
            \zwnjSpace characters
            \zwspSpace characters
            ~=Is congruent toRelational operators
            -+Minus or plusBinary operators
            +-Plus or minusBinary operators
            <<SymbolRelational operators
            <=Less than or equal toRelational operators
            ->SymbolArrows
            >=Greater than or equal toRelational operators
            >>SymbolRelational operators
            +
            + + \ 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 8710fa26a..71df0b74c 100644 --- a/apps/presentationeditor/main/resources/help/en/UsageInstructions/SavePrintDownload.htm +++ b/apps/presentationeditor/main/resources/help/en/UsageInstructions/SavePrintDownload.htm @@ -55,7 +55,7 @@
          • use the Ctrl+P key combination, or
          • click the File tab of the top toolbar and select the Print option.
          -

          It's also possible to print the selected slides using the Print Selection option from the contextual menu.

          +

          It's also possible to print the selected slides using the Print Selection option from the contextual menu both in the Edit and View modes (Right Mouse Button Click on the selected slides and choose option Print selection).

          In the desktop version, the file will be printed directly.In the online version, 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. Some browsers (e.g. Chrome and Opera) support direct printing.

          diff --git a/apps/presentationeditor/main/resources/help/en/images/bulletedlistsettings.png b/apps/presentationeditor/main/resources/help/en/images/bulletedlistsettings.png index 28959fb0c..3d2edbb54 100644 Binary files a/apps/presentationeditor/main/resources/help/en/images/bulletedlistsettings.png and b/apps/presentationeditor/main/resources/help/en/images/bulletedlistsettings.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/changerange.png b/apps/presentationeditor/main/resources/help/en/images/changerange.png new file mode 100644 index 000000000..17df78932 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/changerange.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/chartsettings.png b/apps/presentationeditor/main/resources/help/en/images/chartsettings.png index e9629e276..6de6a6538 100644 Binary files a/apps/presentationeditor/main/resources/help/en/images/chartsettings.png and b/apps/presentationeditor/main/resources/help/en/images/chartsettings.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/fill_color.png b/apps/presentationeditor/main/resources/help/en/images/fill_color.png index c1f9b1159..4faa8c6c9 100644 Binary files a/apps/presentationeditor/main/resources/help/en/images/fill_color.png and b/apps/presentationeditor/main/resources/help/en/images/fill_color.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/fill_gradient.png b/apps/presentationeditor/main/resources/help/en/images/fill_gradient.png index 13314921f..02f37c522 100644 Binary files a/apps/presentationeditor/main/resources/help/en/images/fill_gradient.png and b/apps/presentationeditor/main/resources/help/en/images/fill_gradient.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/fill_pattern.png b/apps/presentationeditor/main/resources/help/en/images/fill_pattern.png index 88163314e..73099150f 100644 Binary files a/apps/presentationeditor/main/resources/help/en/images/fill_pattern.png and b/apps/presentationeditor/main/resources/help/en/images/fill_pattern.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/fill_picture.png b/apps/presentationeditor/main/resources/help/en/images/fill_picture.png index 08e4514c2..02b90df91 100644 Binary files a/apps/presentationeditor/main/resources/help/en/images/fill_picture.png and b/apps/presentationeditor/main/resources/help/en/images/fill_picture.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/hyperlinkwindow2.png b/apps/presentationeditor/main/resources/help/en/images/hyperlinkwindow2.png index 5ae547659..5c5fe26bc 100644 Binary files a/apps/presentationeditor/main/resources/help/en/images/hyperlinkwindow2.png and b/apps/presentationeditor/main/resources/help/en/images/hyperlinkwindow2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/imagesettingstab.png b/apps/presentationeditor/main/resources/help/en/images/imagesettingstab.png index c1a99e05f..305c653f8 100644 Binary files a/apps/presentationeditor/main/resources/help/en/images/imagesettingstab.png and b/apps/presentationeditor/main/resources/help/en/images/imagesettingstab.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/insert_symbol_window.png b/apps/presentationeditor/main/resources/help/en/images/insert_symbol_window.png index bca61c903..81058ed69 100644 Binary files a/apps/presentationeditor/main/resources/help/en/images/insert_symbol_window.png and b/apps/presentationeditor/main/resources/help/en/images/insert_symbol_window.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/insert_symbol_window2.png b/apps/presentationeditor/main/resources/help/en/images/insert_symbol_window2.png new file mode 100644 index 000000000..daf40846e Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/insert_symbol_window2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/moveelement.png b/apps/presentationeditor/main/resources/help/en/images/moveelement.png new file mode 100644 index 000000000..74ead64a8 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/moveelement.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/numberedlistsettings.png b/apps/presentationeditor/main/resources/help/en/images/numberedlistsettings.png new file mode 100644 index 000000000..0009284a1 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/numberedlistsettings.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/orderedlistsettings.png b/apps/presentationeditor/main/resources/help/en/images/orderedlistsettings.png index 6bdbbd507..142dbb6c1 100644 Binary files a/apps/presentationeditor/main/resources/help/en/images/orderedlistsettings.png and b/apps/presentationeditor/main/resources/help/en/images/orderedlistsettings.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/proofing.png b/apps/presentationeditor/main/resources/help/en/images/proofing.png new file mode 100644 index 000000000..1ddcd38fe Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/proofing.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/resizeelement.png b/apps/presentationeditor/main/resources/help/en/images/resizeelement.png new file mode 100644 index 000000000..206959166 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/resizeelement.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/right_image_shape.png b/apps/presentationeditor/main/resources/help/en/images/right_image_shape.png index 012d9e8ea..d660e9d44 100644 Binary files a/apps/presentationeditor/main/resources/help/en/images/right_image_shape.png and b/apps/presentationeditor/main/resources/help/en/images/right_image_shape.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/right_textart.png b/apps/presentationeditor/main/resources/help/en/images/right_textart.png index 3f5882950..dce7d06ed 100644 Binary files a/apps/presentationeditor/main/resources/help/en/images/right_textart.png and b/apps/presentationeditor/main/resources/help/en/images/right_textart.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/selectdata.png b/apps/presentationeditor/main/resources/help/en/images/selectdata.png new file mode 100644 index 000000000..d3f2465e7 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/selectdata.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/shape_properties.png b/apps/presentationeditor/main/resources/help/en/images/shape_properties.png index b41a22036..f5b27cb70 100644 Binary files a/apps/presentationeditor/main/resources/help/en/images/shape_properties.png and b/apps/presentationeditor/main/resources/help/en/images/shape_properties.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/shape_properties1.png b/apps/presentationeditor/main/resources/help/en/images/shape_properties1.png index 13850d551..f1cba6dee 100644 Binary files a/apps/presentationeditor/main/resources/help/en/images/shape_properties1.png and b/apps/presentationeditor/main/resources/help/en/images/shape_properties1.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/shape_properties2.png b/apps/presentationeditor/main/resources/help/en/images/shape_properties2.png index a261b8480..edd586500 100644 Binary files a/apps/presentationeditor/main/resources/help/en/images/shape_properties2.png and b/apps/presentationeditor/main/resources/help/en/images/shape_properties2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/shape_properties3.png b/apps/presentationeditor/main/resources/help/en/images/shape_properties3.png index 0baf0f404..8c9fb4cef 100644 Binary files a/apps/presentationeditor/main/resources/help/en/images/shape_properties3.png and b/apps/presentationeditor/main/resources/help/en/images/shape_properties3.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/shape_properties4.png b/apps/presentationeditor/main/resources/help/en/images/shape_properties4.png index 0e007185a..960bd6f31 100644 Binary files a/apps/presentationeditor/main/resources/help/en/images/shape_properties4.png and b/apps/presentationeditor/main/resources/help/en/images/shape_properties4.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/shape_properties5.png b/apps/presentationeditor/main/resources/help/en/images/shape_properties5.png index 297db66d9..7c0f0fafa 100644 Binary files a/apps/presentationeditor/main/resources/help/en/images/shape_properties5.png and b/apps/presentationeditor/main/resources/help/en/images/shape_properties5.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/shapesettingstab.png b/apps/presentationeditor/main/resources/help/en/images/shapesettingstab.png index 34e70bd72..ea51765bc 100644 Binary files a/apps/presentationeditor/main/resources/help/en/images/shapesettingstab.png and b/apps/presentationeditor/main/resources/help/en/images/shapesettingstab.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/slidesettingstab.png b/apps/presentationeditor/main/resources/help/en/images/slidesettingstab.png index e2c620cd7..95bcaf871 100644 Binary files a/apps/presentationeditor/main/resources/help/en/images/slidesettingstab.png and b/apps/presentationeditor/main/resources/help/en/images/slidesettingstab.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/above.png b/apps/presentationeditor/main/resources/help/en/images/symbols/above.png new file mode 100644 index 000000000..97f2005e7 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/above.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/acute.png b/apps/presentationeditor/main/resources/help/en/images/symbols/acute.png new file mode 100644 index 000000000..12d62abab Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/acute.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/aleph.png b/apps/presentationeditor/main/resources/help/en/images/symbols/aleph.png new file mode 100644 index 000000000..a7355dba4 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/aleph.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/alpha.png b/apps/presentationeditor/main/resources/help/en/images/symbols/alpha.png new file mode 100644 index 000000000..ca68e0fe0 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/alpha.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/alpha2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/alpha2.png new file mode 100644 index 000000000..ea3a6aac4 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/alpha2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/amalg.png b/apps/presentationeditor/main/resources/help/en/images/symbols/amalg.png new file mode 100644 index 000000000..b66c134d5 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/amalg.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/angle.png b/apps/presentationeditor/main/resources/help/en/images/symbols/angle.png new file mode 100644 index 000000000..de11fe22d Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/angle.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/aoint.png b/apps/presentationeditor/main/resources/help/en/images/symbols/aoint.png new file mode 100644 index 000000000..35a228fb4 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/aoint.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/approx.png b/apps/presentationeditor/main/resources/help/en/images/symbols/approx.png new file mode 100644 index 000000000..67b770f72 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/approx.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/arrow.png b/apps/presentationeditor/main/resources/help/en/images/symbols/arrow.png new file mode 100644 index 000000000..0df492f97 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/arrow.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/asmash.png b/apps/presentationeditor/main/resources/help/en/images/symbols/asmash.png new file mode 100644 index 000000000..df40f9f2c Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/asmash.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/ast.png b/apps/presentationeditor/main/resources/help/en/images/symbols/ast.png new file mode 100644 index 000000000..33be7687a Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/ast.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/asymp.png b/apps/presentationeditor/main/resources/help/en/images/symbols/asymp.png new file mode 100644 index 000000000..a7d21a268 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/asymp.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/atop.png b/apps/presentationeditor/main/resources/help/en/images/symbols/atop.png new file mode 100644 index 000000000..3d4395beb Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/atop.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/bar.png b/apps/presentationeditor/main/resources/help/en/images/symbols/bar.png new file mode 100644 index 000000000..774a06eb3 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/bar.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/bar2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/bar2.png new file mode 100644 index 000000000..5321fe5b6 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/bar2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/because.png b/apps/presentationeditor/main/resources/help/en/images/symbols/because.png new file mode 100644 index 000000000..3456d38c9 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/because.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/begin.png b/apps/presentationeditor/main/resources/help/en/images/symbols/begin.png new file mode 100644 index 000000000..7bd50e8ed Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/begin.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/below.png b/apps/presentationeditor/main/resources/help/en/images/symbols/below.png new file mode 100644 index 000000000..8acb835b0 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/below.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/bet.png b/apps/presentationeditor/main/resources/help/en/images/symbols/bet.png new file mode 100644 index 000000000..c219ee423 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/bet.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/beta.png b/apps/presentationeditor/main/resources/help/en/images/symbols/beta.png new file mode 100644 index 000000000..748f2b1be Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/beta.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/beta2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/beta2.png new file mode 100644 index 000000000..5c1ccb707 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/beta2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/beth.png b/apps/presentationeditor/main/resources/help/en/images/symbols/beth.png new file mode 100644 index 000000000..c219ee423 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/beth.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/bigcap.png b/apps/presentationeditor/main/resources/help/en/images/symbols/bigcap.png new file mode 100644 index 000000000..af7e48ad8 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/bigcap.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/bigcup.png b/apps/presentationeditor/main/resources/help/en/images/symbols/bigcup.png new file mode 100644 index 000000000..1e27fb3bb Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/bigcup.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/bigodot.png b/apps/presentationeditor/main/resources/help/en/images/symbols/bigodot.png new file mode 100644 index 000000000..0ebddf66c Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/bigodot.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/bigoplus.png b/apps/presentationeditor/main/resources/help/en/images/symbols/bigoplus.png new file mode 100644 index 000000000..f555afb0f Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/bigoplus.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/bigotimes.png b/apps/presentationeditor/main/resources/help/en/images/symbols/bigotimes.png new file mode 100644 index 000000000..43457dc4b Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/bigotimes.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/bigsqcup.png b/apps/presentationeditor/main/resources/help/en/images/symbols/bigsqcup.png new file mode 100644 index 000000000..614264a01 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/bigsqcup.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/biguplus.png b/apps/presentationeditor/main/resources/help/en/images/symbols/biguplus.png new file mode 100644 index 000000000..6ec39889f Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/biguplus.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/bigvee.png b/apps/presentationeditor/main/resources/help/en/images/symbols/bigvee.png new file mode 100644 index 000000000..57851a676 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/bigvee.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/bigwedge.png b/apps/presentationeditor/main/resources/help/en/images/symbols/bigwedge.png new file mode 100644 index 000000000..0c7cac1e1 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/bigwedge.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/binomial.png b/apps/presentationeditor/main/resources/help/en/images/symbols/binomial.png new file mode 100644 index 000000000..72bc36e68 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/binomial.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/bot.png b/apps/presentationeditor/main/resources/help/en/images/symbols/bot.png new file mode 100644 index 000000000..2ded03e82 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/bot.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/bowtie.png b/apps/presentationeditor/main/resources/help/en/images/symbols/bowtie.png new file mode 100644 index 000000000..2ddfa28c3 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/bowtie.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/box.png b/apps/presentationeditor/main/resources/help/en/images/symbols/box.png new file mode 100644 index 000000000..20d4a835b Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/box.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/boxdot.png b/apps/presentationeditor/main/resources/help/en/images/symbols/boxdot.png new file mode 100644 index 000000000..222e1c7c3 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/boxdot.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/boxminus.png b/apps/presentationeditor/main/resources/help/en/images/symbols/boxminus.png new file mode 100644 index 000000000..caf1ddddb Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/boxminus.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/boxplus.png b/apps/presentationeditor/main/resources/help/en/images/symbols/boxplus.png new file mode 100644 index 000000000..e1ee49522 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/boxplus.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/bra.png b/apps/presentationeditor/main/resources/help/en/images/symbols/bra.png new file mode 100644 index 000000000..a3c8b4c83 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/bra.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/break.png b/apps/presentationeditor/main/resources/help/en/images/symbols/break.png new file mode 100644 index 000000000..859fbf8b4 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/break.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/breve.png b/apps/presentationeditor/main/resources/help/en/images/symbols/breve.png new file mode 100644 index 000000000..b2392724b Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/breve.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/bullet.png b/apps/presentationeditor/main/resources/help/en/images/symbols/bullet.png new file mode 100644 index 000000000..05e268132 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/bullet.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/cap.png b/apps/presentationeditor/main/resources/help/en/images/symbols/cap.png new file mode 100644 index 000000000..76139f161 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/cap.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/cases.png b/apps/presentationeditor/main/resources/help/en/images/symbols/cases.png new file mode 100644 index 000000000..c5a1d5ffe Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/cases.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/cbrt.png b/apps/presentationeditor/main/resources/help/en/images/symbols/cbrt.png new file mode 100644 index 000000000..580d0d0d6 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/cbrt.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/cdot.png b/apps/presentationeditor/main/resources/help/en/images/symbols/cdot.png new file mode 100644 index 000000000..199773081 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/cdot.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/cdots.png b/apps/presentationeditor/main/resources/help/en/images/symbols/cdots.png new file mode 100644 index 000000000..6246a1f0d Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/cdots.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/check.png b/apps/presentationeditor/main/resources/help/en/images/symbols/check.png new file mode 100644 index 000000000..9d57528ec Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/check.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/chi.png b/apps/presentationeditor/main/resources/help/en/images/symbols/chi.png new file mode 100644 index 000000000..1ee801d17 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/chi.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/chi2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/chi2.png new file mode 100644 index 000000000..a27cce57e Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/chi2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/circ.png b/apps/presentationeditor/main/resources/help/en/images/symbols/circ.png new file mode 100644 index 000000000..9a6aa27c3 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/circ.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/close.png b/apps/presentationeditor/main/resources/help/en/images/symbols/close.png new file mode 100644 index 000000000..7438a6f0b Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/close.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/clubsuit.png b/apps/presentationeditor/main/resources/help/en/images/symbols/clubsuit.png new file mode 100644 index 000000000..0ecec4509 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/clubsuit.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/coint.png b/apps/presentationeditor/main/resources/help/en/images/symbols/coint.png new file mode 100644 index 000000000..f2f305a81 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/coint.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/colonequal.png b/apps/presentationeditor/main/resources/help/en/images/symbols/colonequal.png new file mode 100644 index 000000000..79fb3a795 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/colonequal.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/cong.png b/apps/presentationeditor/main/resources/help/en/images/symbols/cong.png new file mode 100644 index 000000000..7d48ef05a Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/cong.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/coprod.png b/apps/presentationeditor/main/resources/help/en/images/symbols/coprod.png new file mode 100644 index 000000000..d90054fb5 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/coprod.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/cup.png b/apps/presentationeditor/main/resources/help/en/images/symbols/cup.png new file mode 100644 index 000000000..7b3915395 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/cup.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/dalet.png b/apps/presentationeditor/main/resources/help/en/images/symbols/dalet.png new file mode 100644 index 000000000..0dea5332b Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/dalet.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/daleth.png b/apps/presentationeditor/main/resources/help/en/images/symbols/daleth.png new file mode 100644 index 000000000..0dea5332b Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/daleth.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/dashv.png b/apps/presentationeditor/main/resources/help/en/images/symbols/dashv.png new file mode 100644 index 000000000..0a07ecf03 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/dashv.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/dd.png b/apps/presentationeditor/main/resources/help/en/images/symbols/dd.png new file mode 100644 index 000000000..b96137d73 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/dd.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/dd2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/dd2.png new file mode 100644 index 000000000..51e50c6ec Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/dd2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/ddddot.png b/apps/presentationeditor/main/resources/help/en/images/symbols/ddddot.png new file mode 100644 index 000000000..e2512dd96 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/ddddot.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/dddot.png b/apps/presentationeditor/main/resources/help/en/images/symbols/dddot.png new file mode 100644 index 000000000..8c261bdec Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/dddot.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/ddot.png b/apps/presentationeditor/main/resources/help/en/images/symbols/ddot.png new file mode 100644 index 000000000..fc158338d Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/ddot.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/ddots.png b/apps/presentationeditor/main/resources/help/en/images/symbols/ddots.png new file mode 100644 index 000000000..1b15677a9 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/ddots.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/defeq.png b/apps/presentationeditor/main/resources/help/en/images/symbols/defeq.png new file mode 100644 index 000000000..e4728e579 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/defeq.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/degc.png b/apps/presentationeditor/main/resources/help/en/images/symbols/degc.png new file mode 100644 index 000000000..f8512ce6d Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/degc.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/degf.png b/apps/presentationeditor/main/resources/help/en/images/symbols/degf.png new file mode 100644 index 000000000..9d5b4f234 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/degf.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/degree.png b/apps/presentationeditor/main/resources/help/en/images/symbols/degree.png new file mode 100644 index 000000000..42881ff13 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/degree.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/delta.png b/apps/presentationeditor/main/resources/help/en/images/symbols/delta.png new file mode 100644 index 000000000..14d5d2386 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/delta.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/delta2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/delta2.png new file mode 100644 index 000000000..6541350c6 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/delta2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/deltaeq.png b/apps/presentationeditor/main/resources/help/en/images/symbols/deltaeq.png new file mode 100644 index 000000000..1dac99daf Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/deltaeq.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/diamond.png b/apps/presentationeditor/main/resources/help/en/images/symbols/diamond.png new file mode 100644 index 000000000..9e692a462 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/diamond.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/diamondsuit.png b/apps/presentationeditor/main/resources/help/en/images/symbols/diamondsuit.png new file mode 100644 index 000000000..bff5edf92 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/diamondsuit.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/div.png b/apps/presentationeditor/main/resources/help/en/images/symbols/div.png new file mode 100644 index 000000000..059758d9c Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/div.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/dot.png b/apps/presentationeditor/main/resources/help/en/images/symbols/dot.png new file mode 100644 index 000000000..c0d4f093f Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/dot.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/doteq.png b/apps/presentationeditor/main/resources/help/en/images/symbols/doteq.png new file mode 100644 index 000000000..ddef5eb4d Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/doteq.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/dots.png b/apps/presentationeditor/main/resources/help/en/images/symbols/dots.png new file mode 100644 index 000000000..abf33d47a Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/dots.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/doublea.png b/apps/presentationeditor/main/resources/help/en/images/symbols/doublea.png new file mode 100644 index 000000000..b9cb5ed78 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/doublea.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/doublea2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/doublea2.png new file mode 100644 index 000000000..eee509760 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/doublea2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/doubleb.png b/apps/presentationeditor/main/resources/help/en/images/symbols/doubleb.png new file mode 100644 index 000000000..3d98b1da6 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/doubleb.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/doubleb2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/doubleb2.png new file mode 100644 index 000000000..3cdc8d687 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/doubleb2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/doublec.png b/apps/presentationeditor/main/resources/help/en/images/symbols/doublec.png new file mode 100644 index 000000000..b4e564fdc Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/doublec.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/doublec2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/doublec2.png new file mode 100644 index 000000000..b3e5ccc8a Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/doublec2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/doublecolon.png b/apps/presentationeditor/main/resources/help/en/images/symbols/doublecolon.png new file mode 100644 index 000000000..56cfcafd4 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/doublecolon.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/doubled.png b/apps/presentationeditor/main/resources/help/en/images/symbols/doubled.png new file mode 100644 index 000000000..bca050ea8 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/doubled.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/doubled2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/doubled2.png new file mode 100644 index 000000000..6e222d501 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/doubled2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/doublee.png b/apps/presentationeditor/main/resources/help/en/images/symbols/doublee.png new file mode 100644 index 000000000..e03f999a8 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/doublee.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/doublee2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/doublee2.png new file mode 100644 index 000000000..6627ded4f Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/doublee2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/doublef.png b/apps/presentationeditor/main/resources/help/en/images/symbols/doublef.png new file mode 100644 index 000000000..c99ee88a5 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/doublef.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/doublef2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/doublef2.png new file mode 100644 index 000000000..f97effdec Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/doublef2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/doublefactorial.png b/apps/presentationeditor/main/resources/help/en/images/symbols/doublefactorial.png new file mode 100644 index 000000000..81a4360f2 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/doublefactorial.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/doubleg.png b/apps/presentationeditor/main/resources/help/en/images/symbols/doubleg.png new file mode 100644 index 000000000..97ff9ceed Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/doubleg.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/doubleg2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/doubleg2.png new file mode 100644 index 000000000..19f3727f8 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/doubleg2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/doubleh.png b/apps/presentationeditor/main/resources/help/en/images/symbols/doubleh.png new file mode 100644 index 000000000..9ca4f14ca Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/doubleh.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/doubleh2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/doubleh2.png new file mode 100644 index 000000000..ea40b9965 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/doubleh2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/doublei.png b/apps/presentationeditor/main/resources/help/en/images/symbols/doublei.png new file mode 100644 index 000000000..bb4d100de Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/doublei.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/doublei2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/doublei2.png new file mode 100644 index 000000000..313453e56 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/doublei2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/doublej.png b/apps/presentationeditor/main/resources/help/en/images/symbols/doublej.png new file mode 100644 index 000000000..43de921d9 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/doublej.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/doublej2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/doublej2.png new file mode 100644 index 000000000..55063df14 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/doublej2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/doublek.png b/apps/presentationeditor/main/resources/help/en/images/symbols/doublek.png new file mode 100644 index 000000000..6dc9ee87c Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/doublek.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/doublek2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/doublek2.png new file mode 100644 index 000000000..aee85567c Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/doublek2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/doublel.png b/apps/presentationeditor/main/resources/help/en/images/symbols/doublel.png new file mode 100644 index 000000000..4e4aad8c8 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/doublel.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/doublel2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/doublel2.png new file mode 100644 index 000000000..7382f3652 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/doublel2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/doublem.png b/apps/presentationeditor/main/resources/help/en/images/symbols/doublem.png new file mode 100644 index 000000000..8f6d8538d Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/doublem.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/doublem2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/doublem2.png new file mode 100644 index 000000000..100097a98 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/doublem2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/doublen.png b/apps/presentationeditor/main/resources/help/en/images/symbols/doublen.png new file mode 100644 index 000000000..2f1373128 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/doublen.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/doublen2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/doublen2.png new file mode 100644 index 000000000..5ef2738aa Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/doublen2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/doubleo.png b/apps/presentationeditor/main/resources/help/en/images/symbols/doubleo.png new file mode 100644 index 000000000..a13023552 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/doubleo.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/doubleo2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/doubleo2.png new file mode 100644 index 000000000..468459457 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/doubleo2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/doublep.png b/apps/presentationeditor/main/resources/help/en/images/symbols/doublep.png new file mode 100644 index 000000000..8db731325 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/doublep.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/doublep2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/doublep2.png new file mode 100644 index 000000000..18bfb16ad Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/doublep2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/doubleq.png b/apps/presentationeditor/main/resources/help/en/images/symbols/doubleq.png new file mode 100644 index 000000000..fc4b77c78 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/doubleq.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/doubleq2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/doubleq2.png new file mode 100644 index 000000000..25b230947 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/doubleq2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/doubler.png b/apps/presentationeditor/main/resources/help/en/images/symbols/doubler.png new file mode 100644 index 000000000..8f0e988a3 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/doubler.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/doubler2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/doubler2.png new file mode 100644 index 000000000..bb6e40f2a Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/doubler2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/doubles.png b/apps/presentationeditor/main/resources/help/en/images/symbols/doubles.png new file mode 100644 index 000000000..c05d7f9cd Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/doubles.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/doubles2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/doubles2.png new file mode 100644 index 000000000..d24cb2f27 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/doubles2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/doublet.png b/apps/presentationeditor/main/resources/help/en/images/symbols/doublet.png new file mode 100644 index 000000000..c27fe3875 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/doublet.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/doublet2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/doublet2.png new file mode 100644 index 000000000..32f2294a7 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/doublet2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/doubleu.png b/apps/presentationeditor/main/resources/help/en/images/symbols/doubleu.png new file mode 100644 index 000000000..a0f54d440 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/doubleu.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/doubleu2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/doubleu2.png new file mode 100644 index 000000000..3ce700d2f Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/doubleu2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/doublev.png b/apps/presentationeditor/main/resources/help/en/images/symbols/doublev.png new file mode 100644 index 000000000..a5b0cb2be Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/doublev.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/doublev2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/doublev2.png new file mode 100644 index 000000000..da1089327 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/doublev2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/doublew.png b/apps/presentationeditor/main/resources/help/en/images/symbols/doublew.png new file mode 100644 index 000000000..0400ddbed Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/doublew.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/doublew2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/doublew2.png new file mode 100644 index 000000000..a151c1777 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/doublew2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/doublex.png b/apps/presentationeditor/main/resources/help/en/images/symbols/doublex.png new file mode 100644 index 000000000..648ce4467 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/doublex.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/doublex2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/doublex2.png new file mode 100644 index 000000000..4c2a1de43 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/doublex2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/doubley.png b/apps/presentationeditor/main/resources/help/en/images/symbols/doubley.png new file mode 100644 index 000000000..6ed589d6d Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/doubley.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/doubley2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/doubley2.png new file mode 100644 index 000000000..6e2733f6d Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/doubley2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/doublez.png b/apps/presentationeditor/main/resources/help/en/images/symbols/doublez.png new file mode 100644 index 000000000..3d1061f6c Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/doublez.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/doublez2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/doublez2.png new file mode 100644 index 000000000..f12b3eebb Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/doublez2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/downarrow.png b/apps/presentationeditor/main/resources/help/en/images/symbols/downarrow.png new file mode 100644 index 000000000..71146333a Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/downarrow.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/downarrow2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/downarrow2.png new file mode 100644 index 000000000..7f20d8728 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/downarrow2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/dsmash.png b/apps/presentationeditor/main/resources/help/en/images/symbols/dsmash.png new file mode 100644 index 000000000..49e2e5855 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/dsmash.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/ee.png b/apps/presentationeditor/main/resources/help/en/images/symbols/ee.png new file mode 100644 index 000000000..d1c8f6b16 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/ee.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/ell.png b/apps/presentationeditor/main/resources/help/en/images/symbols/ell.png new file mode 100644 index 000000000..e28155e01 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/ell.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/emptyset.png b/apps/presentationeditor/main/resources/help/en/images/symbols/emptyset.png new file mode 100644 index 000000000..28b0f75d5 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/emptyset.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/end.png b/apps/presentationeditor/main/resources/help/en/images/symbols/end.png new file mode 100644 index 000000000..33d901831 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/end.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/epsilon.png b/apps/presentationeditor/main/resources/help/en/images/symbols/epsilon.png new file mode 100644 index 000000000..c7a53ad49 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/epsilon.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/epsilon2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/epsilon2.png new file mode 100644 index 000000000..dd54bb471 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/epsilon2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/eqarray.png b/apps/presentationeditor/main/resources/help/en/images/symbols/eqarray.png new file mode 100644 index 000000000..2dbb07eff Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/eqarray.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/equiv.png b/apps/presentationeditor/main/resources/help/en/images/symbols/equiv.png new file mode 100644 index 000000000..ac3c147eb Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/equiv.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/eta.png b/apps/presentationeditor/main/resources/help/en/images/symbols/eta.png new file mode 100644 index 000000000..bb6c37c23 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/eta.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/eta2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/eta2.png new file mode 100644 index 000000000..93a5f8f3e Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/eta2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/exists.png b/apps/presentationeditor/main/resources/help/en/images/symbols/exists.png new file mode 100644 index 000000000..f2e078f08 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/exists.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/forall.png b/apps/presentationeditor/main/resources/help/en/images/symbols/forall.png new file mode 100644 index 000000000..5c58ecb41 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/forall.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/fraktura.png b/apps/presentationeditor/main/resources/help/en/images/symbols/fraktura.png new file mode 100644 index 000000000..8570b166c Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/fraktura.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/fraktura2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/fraktura2.png new file mode 100644 index 000000000..b3db328e2 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/fraktura2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/frakturb.png b/apps/presentationeditor/main/resources/help/en/images/symbols/frakturb.png new file mode 100644 index 000000000..e682b9c49 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/frakturb.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/frakturb2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/frakturb2.png new file mode 100644 index 000000000..570b7daad Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/frakturb2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/frakturc.png b/apps/presentationeditor/main/resources/help/en/images/symbols/frakturc.png new file mode 100644 index 000000000..3296e1bf7 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/frakturc.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/frakturc2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/frakturc2.png new file mode 100644 index 000000000..9e1c9065f Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/frakturc2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/frakturd.png b/apps/presentationeditor/main/resources/help/en/images/symbols/frakturd.png new file mode 100644 index 000000000..0c29587e2 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/frakturd.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/frakturd2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/frakturd2.png new file mode 100644 index 000000000..f5afeeb59 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/frakturd2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/frakture.png b/apps/presentationeditor/main/resources/help/en/images/symbols/frakture.png new file mode 100644 index 000000000..a56e7c5a2 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/frakture.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/frakture2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/frakture2.png new file mode 100644 index 000000000..3c9236af6 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/frakture2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/frakturf.png b/apps/presentationeditor/main/resources/help/en/images/symbols/frakturf.png new file mode 100644 index 000000000..8a460b206 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/frakturf.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/frakturf2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/frakturf2.png new file mode 100644 index 000000000..f59cc1a49 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/frakturf2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/frakturg.png b/apps/presentationeditor/main/resources/help/en/images/symbols/frakturg.png new file mode 100644 index 000000000..f9c71a7f9 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/frakturg.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/frakturg2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/frakturg2.png new file mode 100644 index 000000000..1a96d7939 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/frakturg2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/frakturh.png b/apps/presentationeditor/main/resources/help/en/images/symbols/frakturh.png new file mode 100644 index 000000000..afff96507 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/frakturh.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/frakturh2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/frakturh2.png new file mode 100644 index 000000000..c77ddc227 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/frakturh2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/frakturi.png b/apps/presentationeditor/main/resources/help/en/images/symbols/frakturi.png new file mode 100644 index 000000000..b690840e0 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/frakturi.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/frakturi2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/frakturi2.png new file mode 100644 index 000000000..93494c9f1 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/frakturi2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/frakturk.png b/apps/presentationeditor/main/resources/help/en/images/symbols/frakturk.png new file mode 100644 index 000000000..f6ec69273 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/frakturk.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/frakturk2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/frakturk2.png new file mode 100644 index 000000000..88b5d5dd8 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/frakturk2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/frakturl.png b/apps/presentationeditor/main/resources/help/en/images/symbols/frakturl.png new file mode 100644 index 000000000..4719aa67a Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/frakturl.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/frakturl2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/frakturl2.png new file mode 100644 index 000000000..73365c050 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/frakturl2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/frakturm.png b/apps/presentationeditor/main/resources/help/en/images/symbols/frakturm.png new file mode 100644 index 000000000..a8d412077 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/frakturm.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/frakturm2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/frakturm2.png new file mode 100644 index 000000000..6823b765f Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/frakturm2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/frakturn.png b/apps/presentationeditor/main/resources/help/en/images/symbols/frakturn.png new file mode 100644 index 000000000..7562b1587 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/frakturn.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/frakturn2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/frakturn2.png new file mode 100644 index 000000000..5817d5af7 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/frakturn2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/frakturo.png b/apps/presentationeditor/main/resources/help/en/images/symbols/frakturo.png new file mode 100644 index 000000000..ed9ee60d6 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/frakturo.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/frakturo2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/frakturo2.png new file mode 100644 index 000000000..6becfb0d4 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/frakturo2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/frakturp.png b/apps/presentationeditor/main/resources/help/en/images/symbols/frakturp.png new file mode 100644 index 000000000..d9c2ef5ed Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/frakturp.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/frakturp2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/frakturp2.png new file mode 100644 index 000000000..1fbe142a9 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/frakturp2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/frakturq.png b/apps/presentationeditor/main/resources/help/en/images/symbols/frakturq.png new file mode 100644 index 000000000..aac2cafe2 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/frakturq.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/frakturq2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/frakturq2.png new file mode 100644 index 000000000..7026dc172 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/frakturq2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/frakturr.png b/apps/presentationeditor/main/resources/help/en/images/symbols/frakturr.png new file mode 100644 index 000000000..c14dc2aee Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/frakturr.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/frakturr2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/frakturr2.png new file mode 100644 index 000000000..ad6eb3a2a Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/frakturr2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/frakturs.png b/apps/presentationeditor/main/resources/help/en/images/symbols/frakturs.png new file mode 100644 index 000000000..b68a51481 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/frakturs.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/frakturs2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/frakturs2.png new file mode 100644 index 000000000..be9bce9ed Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/frakturs2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/frakturt.png b/apps/presentationeditor/main/resources/help/en/images/symbols/frakturt.png new file mode 100644 index 000000000..8a274312f Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/frakturt.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/frakturt2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/frakturt2.png new file mode 100644 index 000000000..ff4ffbad5 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/frakturt2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/frakturu.png b/apps/presentationeditor/main/resources/help/en/images/symbols/frakturu.png new file mode 100644 index 000000000..e3835c5e6 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/frakturu.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/frakturu2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/frakturu2.png new file mode 100644 index 000000000..b7c2dfce0 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/frakturu2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/frakturv.png b/apps/presentationeditor/main/resources/help/en/images/symbols/frakturv.png new file mode 100644 index 000000000..3ae44b0d8 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/frakturv.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/frakturv2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/frakturv2.png new file mode 100644 index 000000000..06951ec52 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/frakturv2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/frakturw.png b/apps/presentationeditor/main/resources/help/en/images/symbols/frakturw.png new file mode 100644 index 000000000..20e492dd2 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/frakturw.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/frakturw2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/frakturw2.png new file mode 100644 index 000000000..c08b19614 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/frakturw2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/frakturx.png b/apps/presentationeditor/main/resources/help/en/images/symbols/frakturx.png new file mode 100644 index 000000000..7af677f4d Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/frakturx.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/frakturx2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/frakturx2.png new file mode 100644 index 000000000..9dd4eefc0 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/frakturx2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/fraktury.png b/apps/presentationeditor/main/resources/help/en/images/symbols/fraktury.png new file mode 100644 index 000000000..ea98c092d Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/fraktury.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/fraktury2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/fraktury2.png new file mode 100644 index 000000000..4cf8f1fb3 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/fraktury2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/frakturz.png b/apps/presentationeditor/main/resources/help/en/images/symbols/frakturz.png new file mode 100644 index 000000000..b44487f74 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/frakturz.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/frakturz2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/frakturz2.png new file mode 100644 index 000000000..afd922249 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/frakturz2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/frown.png b/apps/presentationeditor/main/resources/help/en/images/symbols/frown.png new file mode 100644 index 000000000..2fcd6e3a2 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/frown.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/g.png b/apps/presentationeditor/main/resources/help/en/images/symbols/g.png new file mode 100644 index 000000000..3aa30aaa0 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/g.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/gamma.png b/apps/presentationeditor/main/resources/help/en/images/symbols/gamma.png new file mode 100644 index 000000000..9f088aa79 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/gamma.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/gamma2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/gamma2.png new file mode 100644 index 000000000..3aa30aaa0 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/gamma2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/ge.png b/apps/presentationeditor/main/resources/help/en/images/symbols/ge.png new file mode 100644 index 000000000..fe22252f5 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/ge.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/geq.png b/apps/presentationeditor/main/resources/help/en/images/symbols/geq.png new file mode 100644 index 000000000..fe22252f5 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/geq.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/gets.png b/apps/presentationeditor/main/resources/help/en/images/symbols/gets.png new file mode 100644 index 000000000..6ab7c9df5 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/gets.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/gg.png b/apps/presentationeditor/main/resources/help/en/images/symbols/gg.png new file mode 100644 index 000000000..c2b964579 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/gg.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/gimel.png b/apps/presentationeditor/main/resources/help/en/images/symbols/gimel.png new file mode 100644 index 000000000..4e6cccb60 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/gimel.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/grave.png b/apps/presentationeditor/main/resources/help/en/images/symbols/grave.png new file mode 100644 index 000000000..fcda94a6c Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/grave.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/greaterthanorequalto.png b/apps/presentationeditor/main/resources/help/en/images/symbols/greaterthanorequalto.png new file mode 100644 index 000000000..fe22252f5 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/greaterthanorequalto.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/hat.png b/apps/presentationeditor/main/resources/help/en/images/symbols/hat.png new file mode 100644 index 000000000..e3be83a4c Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/hat.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/hbar.png b/apps/presentationeditor/main/resources/help/en/images/symbols/hbar.png new file mode 100644 index 000000000..e6025b5d7 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/hbar.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/heartsuit.png b/apps/presentationeditor/main/resources/help/en/images/symbols/heartsuit.png new file mode 100644 index 000000000..8b26f4fe3 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/heartsuit.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/hookleftarrow.png b/apps/presentationeditor/main/resources/help/en/images/symbols/hookleftarrow.png new file mode 100644 index 000000000..14f255fb0 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/hookleftarrow.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/hookrightarrow.png b/apps/presentationeditor/main/resources/help/en/images/symbols/hookrightarrow.png new file mode 100644 index 000000000..b22e5b07a Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/hookrightarrow.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/horizontalellipsis.png b/apps/presentationeditor/main/resources/help/en/images/symbols/horizontalellipsis.png new file mode 100644 index 000000000..bc8f0fa47 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/horizontalellipsis.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/hphantom.png b/apps/presentationeditor/main/resources/help/en/images/symbols/hphantom.png new file mode 100644 index 000000000..fb072eee0 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/hphantom.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/hsmash.png b/apps/presentationeditor/main/resources/help/en/images/symbols/hsmash.png new file mode 100644 index 000000000..ce90638d4 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/hsmash.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/hvec.png b/apps/presentationeditor/main/resources/help/en/images/symbols/hvec.png new file mode 100644 index 000000000..38fddae5b Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/hvec.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/identitymatrix.png b/apps/presentationeditor/main/resources/help/en/images/symbols/identitymatrix.png new file mode 100644 index 000000000..3531cd2fc Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/identitymatrix.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/ii.png b/apps/presentationeditor/main/resources/help/en/images/symbols/ii.png new file mode 100644 index 000000000..e064923e7 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/ii.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/iiiint.png b/apps/presentationeditor/main/resources/help/en/images/symbols/iiiint.png new file mode 100644 index 000000000..b7b9990d1 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/iiiint.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/iiint.png b/apps/presentationeditor/main/resources/help/en/images/symbols/iiint.png new file mode 100644 index 000000000..f56aff057 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/iiint.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/iint.png b/apps/presentationeditor/main/resources/help/en/images/symbols/iint.png new file mode 100644 index 000000000..e73f05c2d Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/iint.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/im.png b/apps/presentationeditor/main/resources/help/en/images/symbols/im.png new file mode 100644 index 000000000..1470295b3 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/im.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/imath.png b/apps/presentationeditor/main/resources/help/en/images/symbols/imath.png new file mode 100644 index 000000000..e6493cfef Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/imath.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/in.png b/apps/presentationeditor/main/resources/help/en/images/symbols/in.png new file mode 100644 index 000000000..ca1f84e4d Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/in.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/inc.png b/apps/presentationeditor/main/resources/help/en/images/symbols/inc.png new file mode 100644 index 000000000..3ac8c1bcd Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/inc.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/infty.png b/apps/presentationeditor/main/resources/help/en/images/symbols/infty.png new file mode 100644 index 000000000..1fa3570fa Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/infty.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/int.png b/apps/presentationeditor/main/resources/help/en/images/symbols/int.png new file mode 100644 index 000000000..0f296cc46 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/int.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/integral.png b/apps/presentationeditor/main/resources/help/en/images/symbols/integral.png new file mode 100644 index 000000000..65e56f23b Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/integral.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/iota.png b/apps/presentationeditor/main/resources/help/en/images/symbols/iota.png new file mode 100644 index 000000000..0aefb684e Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/iota.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/iota2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/iota2.png new file mode 100644 index 000000000..b4341851a Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/iota2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/j.png b/apps/presentationeditor/main/resources/help/en/images/symbols/j.png new file mode 100644 index 000000000..004b30b69 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/j.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/jj.png b/apps/presentationeditor/main/resources/help/en/images/symbols/jj.png new file mode 100644 index 000000000..5a1e11920 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/jj.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/jmath.png b/apps/presentationeditor/main/resources/help/en/images/symbols/jmath.png new file mode 100644 index 000000000..9409b6d2e Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/jmath.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/kappa.png b/apps/presentationeditor/main/resources/help/en/images/symbols/kappa.png new file mode 100644 index 000000000..788d84c11 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/kappa.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/kappa2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/kappa2.png new file mode 100644 index 000000000..fae000a00 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/kappa2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/ket.png b/apps/presentationeditor/main/resources/help/en/images/symbols/ket.png new file mode 100644 index 000000000..913b1b3fe Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/ket.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/lambda.png b/apps/presentationeditor/main/resources/help/en/images/symbols/lambda.png new file mode 100644 index 000000000..f98af8017 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/lambda.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/lambda2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/lambda2.png new file mode 100644 index 000000000..3016c6ece Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/lambda2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/langle.png b/apps/presentationeditor/main/resources/help/en/images/symbols/langle.png new file mode 100644 index 000000000..73ccafba9 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/langle.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/lbbrack.png b/apps/presentationeditor/main/resources/help/en/images/symbols/lbbrack.png new file mode 100644 index 000000000..9dbb14049 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/lbbrack.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/lbrace.png b/apps/presentationeditor/main/resources/help/en/images/symbols/lbrace.png new file mode 100644 index 000000000..004d22d05 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/lbrace.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/lbrack.png b/apps/presentationeditor/main/resources/help/en/images/symbols/lbrack.png new file mode 100644 index 000000000..0cf789daa Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/lbrack.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/lceil.png b/apps/presentationeditor/main/resources/help/en/images/symbols/lceil.png new file mode 100644 index 000000000..48d4f69b1 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/lceil.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/ldiv.png b/apps/presentationeditor/main/resources/help/en/images/symbols/ldiv.png new file mode 100644 index 000000000..ba17e3ae6 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/ldiv.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/ldivide.png b/apps/presentationeditor/main/resources/help/en/images/symbols/ldivide.png new file mode 100644 index 000000000..e1071483b Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/ldivide.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/ldots.png b/apps/presentationeditor/main/resources/help/en/images/symbols/ldots.png new file mode 100644 index 000000000..abf33d47a Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/ldots.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/le.png b/apps/presentationeditor/main/resources/help/en/images/symbols/le.png new file mode 100644 index 000000000..d839ba35d Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/le.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/left.png b/apps/presentationeditor/main/resources/help/en/images/symbols/left.png new file mode 100644 index 000000000..9f27f6310 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/left.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/leftarrow.png b/apps/presentationeditor/main/resources/help/en/images/symbols/leftarrow.png new file mode 100644 index 000000000..bafaf636c Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/leftarrow.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/leftarrow2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/leftarrow2.png new file mode 100644 index 000000000..60f405f7e Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/leftarrow2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/leftharpoondown.png b/apps/presentationeditor/main/resources/help/en/images/symbols/leftharpoondown.png new file mode 100644 index 000000000..d15921dc9 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/leftharpoondown.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/leftharpoonup.png b/apps/presentationeditor/main/resources/help/en/images/symbols/leftharpoonup.png new file mode 100644 index 000000000..d02cea5c4 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/leftharpoonup.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/leftrightarrow.png b/apps/presentationeditor/main/resources/help/en/images/symbols/leftrightarrow.png new file mode 100644 index 000000000..2c0305093 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/leftrightarrow.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/leftrightarrow2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/leftrightarrow2.png new file mode 100644 index 000000000..923152c61 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/leftrightarrow2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/leq.png b/apps/presentationeditor/main/resources/help/en/images/symbols/leq.png new file mode 100644 index 000000000..d839ba35d Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/leq.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/lessthanorequalto.png b/apps/presentationeditor/main/resources/help/en/images/symbols/lessthanorequalto.png new file mode 100644 index 000000000..d839ba35d Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/lessthanorequalto.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/lfloor.png b/apps/presentationeditor/main/resources/help/en/images/symbols/lfloor.png new file mode 100644 index 000000000..fc34c4345 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/lfloor.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/lhvec.png b/apps/presentationeditor/main/resources/help/en/images/symbols/lhvec.png new file mode 100644 index 000000000..10407df0f Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/lhvec.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/limit.png b/apps/presentationeditor/main/resources/help/en/images/symbols/limit.png new file mode 100644 index 000000000..f5669a329 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/limit.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/ll.png b/apps/presentationeditor/main/resources/help/en/images/symbols/ll.png new file mode 100644 index 000000000..6e31ee790 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/ll.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/lmoust.png b/apps/presentationeditor/main/resources/help/en/images/symbols/lmoust.png new file mode 100644 index 000000000..3547706a8 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/lmoust.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/longleftarrow.png b/apps/presentationeditor/main/resources/help/en/images/symbols/longleftarrow.png new file mode 100644 index 000000000..c9647da6b Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/longleftarrow.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/longleftrightarrow.png b/apps/presentationeditor/main/resources/help/en/images/symbols/longleftrightarrow.png new file mode 100644 index 000000000..8e0e50d6d Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/longleftrightarrow.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/longrightarrow.png b/apps/presentationeditor/main/resources/help/en/images/symbols/longrightarrow.png new file mode 100644 index 000000000..5bed54fe7 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/longrightarrow.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/lrhar.png b/apps/presentationeditor/main/resources/help/en/images/symbols/lrhar.png new file mode 100644 index 000000000..9a54ae201 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/lrhar.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/lvec.png b/apps/presentationeditor/main/resources/help/en/images/symbols/lvec.png new file mode 100644 index 000000000..b6ab35fac Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/lvec.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/mapsto.png b/apps/presentationeditor/main/resources/help/en/images/symbols/mapsto.png new file mode 100644 index 000000000..11e8e411a Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/mapsto.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/matrix.png b/apps/presentationeditor/main/resources/help/en/images/symbols/matrix.png new file mode 100644 index 000000000..36dd9f3ef Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/matrix.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/mid.png b/apps/presentationeditor/main/resources/help/en/images/symbols/mid.png new file mode 100644 index 000000000..21fca0ac1 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/mid.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/middle.png b/apps/presentationeditor/main/resources/help/en/images/symbols/middle.png new file mode 100644 index 000000000..e47884724 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/middle.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/models.png b/apps/presentationeditor/main/resources/help/en/images/symbols/models.png new file mode 100644 index 000000000..a87cdc82e Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/models.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/mp.png b/apps/presentationeditor/main/resources/help/en/images/symbols/mp.png new file mode 100644 index 000000000..2f295f402 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/mp.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/mu.png b/apps/presentationeditor/main/resources/help/en/images/symbols/mu.png new file mode 100644 index 000000000..6a4698faf Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/mu.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/mu2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/mu2.png new file mode 100644 index 000000000..96d5b82b7 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/mu2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/nabla.png b/apps/presentationeditor/main/resources/help/en/images/symbols/nabla.png new file mode 100644 index 000000000..9c4283a5a Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/nabla.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/naryand.png b/apps/presentationeditor/main/resources/help/en/images/symbols/naryand.png new file mode 100644 index 000000000..c43d7a980 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/naryand.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/ne.png b/apps/presentationeditor/main/resources/help/en/images/symbols/ne.png new file mode 100644 index 000000000..e55862cde Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/ne.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/nearrow.png b/apps/presentationeditor/main/resources/help/en/images/symbols/nearrow.png new file mode 100644 index 000000000..5e95d358a Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/nearrow.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/neq.png b/apps/presentationeditor/main/resources/help/en/images/symbols/neq.png new file mode 100644 index 000000000..e55862cde Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/neq.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/ni.png b/apps/presentationeditor/main/resources/help/en/images/symbols/ni.png new file mode 100644 index 000000000..b09ce8864 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/ni.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/norm.png b/apps/presentationeditor/main/resources/help/en/images/symbols/norm.png new file mode 100644 index 000000000..915abac55 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/norm.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/notcontain.png b/apps/presentationeditor/main/resources/help/en/images/symbols/notcontain.png new file mode 100644 index 000000000..2b6ac81ce Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/notcontain.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/notelement.png b/apps/presentationeditor/main/resources/help/en/images/symbols/notelement.png new file mode 100644 index 000000000..7c5d182db Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/notelement.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/notequal.png b/apps/presentationeditor/main/resources/help/en/images/symbols/notequal.png new file mode 100644 index 000000000..e55862cde Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/notequal.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/notgreaterthan.png b/apps/presentationeditor/main/resources/help/en/images/symbols/notgreaterthan.png new file mode 100644 index 000000000..2a8af203d Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/notgreaterthan.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/notin.png b/apps/presentationeditor/main/resources/help/en/images/symbols/notin.png new file mode 100644 index 000000000..7f2abe531 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/notin.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/notlessthan.png b/apps/presentationeditor/main/resources/help/en/images/symbols/notlessthan.png new file mode 100644 index 000000000..2e9fc8ef2 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/notlessthan.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/nu.png b/apps/presentationeditor/main/resources/help/en/images/symbols/nu.png new file mode 100644 index 000000000..b32087c3d Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/nu.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/nu2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/nu2.png new file mode 100644 index 000000000..6e0f14582 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/nu2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/nwarrow.png b/apps/presentationeditor/main/resources/help/en/images/symbols/nwarrow.png new file mode 100644 index 000000000..35ad2ee95 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/nwarrow.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/o.png b/apps/presentationeditor/main/resources/help/en/images/symbols/o.png new file mode 100644 index 000000000..1cbbaaf6f Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/o.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/o2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/o2.png new file mode 100644 index 000000000..86a488451 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/o2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/odot.png b/apps/presentationeditor/main/resources/help/en/images/symbols/odot.png new file mode 100644 index 000000000..afbd0f8b9 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/odot.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/of.png b/apps/presentationeditor/main/resources/help/en/images/symbols/of.png new file mode 100644 index 000000000..d8a2567c7 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/of.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/oiiint.png b/apps/presentationeditor/main/resources/help/en/images/symbols/oiiint.png new file mode 100644 index 000000000..c66dc2947 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/oiiint.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/oiint.png b/apps/presentationeditor/main/resources/help/en/images/symbols/oiint.png new file mode 100644 index 000000000..5587f29d5 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/oiint.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/oint.png b/apps/presentationeditor/main/resources/help/en/images/symbols/oint.png new file mode 100644 index 000000000..30b5bbab3 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/oint.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/omega.png b/apps/presentationeditor/main/resources/help/en/images/symbols/omega.png new file mode 100644 index 000000000..a3224bcc5 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/omega.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/omega2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/omega2.png new file mode 100644 index 000000000..6689087de Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/omega2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/ominus.png b/apps/presentationeditor/main/resources/help/en/images/symbols/ominus.png new file mode 100644 index 000000000..5a07e9ce7 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/ominus.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/open.png b/apps/presentationeditor/main/resources/help/en/images/symbols/open.png new file mode 100644 index 000000000..2874320d3 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/open.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/oplus.png b/apps/presentationeditor/main/resources/help/en/images/symbols/oplus.png new file mode 100644 index 000000000..6ab9c8d22 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/oplus.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/otimes.png b/apps/presentationeditor/main/resources/help/en/images/symbols/otimes.png new file mode 100644 index 000000000..6a2de09e2 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/otimes.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/over.png b/apps/presentationeditor/main/resources/help/en/images/symbols/over.png new file mode 100644 index 000000000..de78bfdde Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/over.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/overbar.png b/apps/presentationeditor/main/resources/help/en/images/symbols/overbar.png new file mode 100644 index 000000000..5b3896815 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/overbar.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/overbrace.png b/apps/presentationeditor/main/resources/help/en/images/symbols/overbrace.png new file mode 100644 index 000000000..71c7d4729 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/overbrace.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/overbracket.png b/apps/presentationeditor/main/resources/help/en/images/symbols/overbracket.png new file mode 100644 index 000000000..cbd4f3598 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/overbracket.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/overline.png b/apps/presentationeditor/main/resources/help/en/images/symbols/overline.png new file mode 100644 index 000000000..5b3896815 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/overline.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/overparen.png b/apps/presentationeditor/main/resources/help/en/images/symbols/overparen.png new file mode 100644 index 000000000..645d88650 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/overparen.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/overshell.png b/apps/presentationeditor/main/resources/help/en/images/symbols/overshell.png new file mode 100644 index 000000000..907e993d3 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/overshell.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/parallel.png b/apps/presentationeditor/main/resources/help/en/images/symbols/parallel.png new file mode 100644 index 000000000..3b42a5958 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/parallel.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/partial.png b/apps/presentationeditor/main/resources/help/en/images/symbols/partial.png new file mode 100644 index 000000000..bb198b44d Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/partial.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/perp.png b/apps/presentationeditor/main/resources/help/en/images/symbols/perp.png new file mode 100644 index 000000000..ecc490ff4 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/perp.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/phantom.png b/apps/presentationeditor/main/resources/help/en/images/symbols/phantom.png new file mode 100644 index 000000000..f3a11e75a Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/phantom.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/phi.png b/apps/presentationeditor/main/resources/help/en/images/symbols/phi.png new file mode 100644 index 000000000..a42a2bdea Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/phi.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/phi2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/phi2.png new file mode 100644 index 000000000..d9f811dab Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/phi2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/pi.png b/apps/presentationeditor/main/resources/help/en/images/symbols/pi.png new file mode 100644 index 000000000..d6c5da9c4 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/pi.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/pi2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/pi2.png new file mode 100644 index 000000000..11486a83b Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/pi2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/pm.png b/apps/presentationeditor/main/resources/help/en/images/symbols/pm.png new file mode 100644 index 000000000..13cccaad2 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/pm.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/pmatrix.png b/apps/presentationeditor/main/resources/help/en/images/symbols/pmatrix.png new file mode 100644 index 000000000..37b0ed5ac Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/pmatrix.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/pppprime.png b/apps/presentationeditor/main/resources/help/en/images/symbols/pppprime.png new file mode 100644 index 000000000..4aec7dd87 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/pppprime.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/ppprime.png b/apps/presentationeditor/main/resources/help/en/images/symbols/ppprime.png new file mode 100644 index 000000000..460f07d5d Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/ppprime.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/pprime.png b/apps/presentationeditor/main/resources/help/en/images/symbols/pprime.png new file mode 100644 index 000000000..8c60382c1 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/pprime.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/prec.png b/apps/presentationeditor/main/resources/help/en/images/symbols/prec.png new file mode 100644 index 000000000..fc174cb73 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/prec.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/preceq.png b/apps/presentationeditor/main/resources/help/en/images/symbols/preceq.png new file mode 100644 index 000000000..185576937 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/preceq.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/prime.png b/apps/presentationeditor/main/resources/help/en/images/symbols/prime.png new file mode 100644 index 000000000..2144d9f2a Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/prime.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/prod.png b/apps/presentationeditor/main/resources/help/en/images/symbols/prod.png new file mode 100644 index 000000000..9fbe6e266 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/prod.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/propto.png b/apps/presentationeditor/main/resources/help/en/images/symbols/propto.png new file mode 100644 index 000000000..11a52f90b Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/propto.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/psi.png b/apps/presentationeditor/main/resources/help/en/images/symbols/psi.png new file mode 100644 index 000000000..b09ce71e3 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/psi.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/psi2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/psi2.png new file mode 100644 index 000000000..71faedd0b Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/psi2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/qdrt.png b/apps/presentationeditor/main/resources/help/en/images/symbols/qdrt.png new file mode 100644 index 000000000..f2b8a5518 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/qdrt.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/quadratic.png b/apps/presentationeditor/main/resources/help/en/images/symbols/quadratic.png new file mode 100644 index 000000000..26116211c Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/quadratic.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/rangle.png b/apps/presentationeditor/main/resources/help/en/images/symbols/rangle.png new file mode 100644 index 000000000..913b1b3fe Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/rangle.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/rangle2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/rangle2.png new file mode 100644 index 000000000..5fd0b87a0 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/rangle2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/ratio.png b/apps/presentationeditor/main/resources/help/en/images/symbols/ratio.png new file mode 100644 index 000000000..d480fe90c Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/ratio.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/rbrace.png b/apps/presentationeditor/main/resources/help/en/images/symbols/rbrace.png new file mode 100644 index 000000000..31decded8 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/rbrace.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/rbrack.png b/apps/presentationeditor/main/resources/help/en/images/symbols/rbrack.png new file mode 100644 index 000000000..772a722da Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/rbrack.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/rbrack2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/rbrack2.png new file mode 100644 index 000000000..5aa46c098 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/rbrack2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/rceil.png b/apps/presentationeditor/main/resources/help/en/images/symbols/rceil.png new file mode 100644 index 000000000..c96575404 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/rceil.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/rddots.png b/apps/presentationeditor/main/resources/help/en/images/symbols/rddots.png new file mode 100644 index 000000000..17f60c0bc Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/rddots.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/re.png b/apps/presentationeditor/main/resources/help/en/images/symbols/re.png new file mode 100644 index 000000000..36ffb2a8e Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/re.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/rect.png b/apps/presentationeditor/main/resources/help/en/images/symbols/rect.png new file mode 100644 index 000000000..b7942dbe1 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/rect.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/rfloor.png b/apps/presentationeditor/main/resources/help/en/images/symbols/rfloor.png new file mode 100644 index 000000000..0303da681 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/rfloor.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/rho.png b/apps/presentationeditor/main/resources/help/en/images/symbols/rho.png new file mode 100644 index 000000000..c6020c1f1 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/rho.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/rho2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/rho2.png new file mode 100644 index 000000000..7242001a4 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/rho2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/rhvec.png b/apps/presentationeditor/main/resources/help/en/images/symbols/rhvec.png new file mode 100644 index 000000000..38fddae5b Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/rhvec.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/right.png b/apps/presentationeditor/main/resources/help/en/images/symbols/right.png new file mode 100644 index 000000000..cc933121f Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/right.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/rightarrow.png b/apps/presentationeditor/main/resources/help/en/images/symbols/rightarrow.png new file mode 100644 index 000000000..0df492f97 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/rightarrow.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/rightarrow2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/rightarrow2.png new file mode 100644 index 000000000..62d8b7b90 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/rightarrow2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/rightharpoondown.png b/apps/presentationeditor/main/resources/help/en/images/symbols/rightharpoondown.png new file mode 100644 index 000000000..c25b921a2 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/rightharpoondown.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/rightharpoonup.png b/apps/presentationeditor/main/resources/help/en/images/symbols/rightharpoonup.png new file mode 100644 index 000000000..a33c56ea0 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/rightharpoonup.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/rmoust.png b/apps/presentationeditor/main/resources/help/en/images/symbols/rmoust.png new file mode 100644 index 000000000..e85cdefb9 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/rmoust.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/root.png b/apps/presentationeditor/main/resources/help/en/images/symbols/root.png new file mode 100644 index 000000000..8bdcb3d60 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/root.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/scripta.png b/apps/presentationeditor/main/resources/help/en/images/symbols/scripta.png new file mode 100644 index 000000000..b4305bc75 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/scripta.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/scripta2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/scripta2.png new file mode 100644 index 000000000..4df4c10ea Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/scripta2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/scriptb.png b/apps/presentationeditor/main/resources/help/en/images/symbols/scriptb.png new file mode 100644 index 000000000..16801f863 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/scriptb.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/scriptb2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/scriptb2.png new file mode 100644 index 000000000..3f395bf2e Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/scriptb2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/scriptc.png b/apps/presentationeditor/main/resources/help/en/images/symbols/scriptc.png new file mode 100644 index 000000000..292f64223 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/scriptc.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/scriptc2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/scriptc2.png new file mode 100644 index 000000000..f7d64e076 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/scriptc2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/scriptd.png b/apps/presentationeditor/main/resources/help/en/images/symbols/scriptd.png new file mode 100644 index 000000000..4a52adbda Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/scriptd.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/scriptd2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/scriptd2.png new file mode 100644 index 000000000..db75ffaee Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/scriptd2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/scripte.png b/apps/presentationeditor/main/resources/help/en/images/symbols/scripte.png new file mode 100644 index 000000000..e9cea6589 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/scripte.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/scripte2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/scripte2.png new file mode 100644 index 000000000..908b98abf Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/scripte2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/scriptf.png b/apps/presentationeditor/main/resources/help/en/images/symbols/scriptf.png new file mode 100644 index 000000000..16b2839e3 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/scriptf.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/scriptf2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/scriptf2.png new file mode 100644 index 000000000..0fc78029f Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/scriptf2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/scriptg.png b/apps/presentationeditor/main/resources/help/en/images/symbols/scriptg.png new file mode 100644 index 000000000..7e2b4e5c7 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/scriptg.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/scriptg2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/scriptg2.png new file mode 100644 index 000000000..83ecfa7c3 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/scriptg2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/scripth.png b/apps/presentationeditor/main/resources/help/en/images/symbols/scripth.png new file mode 100644 index 000000000..ce9052e49 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/scripth.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/scripth2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/scripth2.png new file mode 100644 index 000000000..b669be42d Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/scripth2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/scripti.png b/apps/presentationeditor/main/resources/help/en/images/symbols/scripti.png new file mode 100644 index 000000000..8650af640 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/scripti.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/scripti2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/scripti2.png new file mode 100644 index 000000000..35253e28d Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/scripti2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/scriptj.png b/apps/presentationeditor/main/resources/help/en/images/symbols/scriptj.png new file mode 100644 index 000000000..23a0b18d7 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/scriptj.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/scriptj2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/scriptj2.png new file mode 100644 index 000000000..964ca2f83 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/scriptj2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/scriptk.png b/apps/presentationeditor/main/resources/help/en/images/symbols/scriptk.png new file mode 100644 index 000000000..605b16e12 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/scriptk.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/scriptk2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/scriptk2.png new file mode 100644 index 000000000..c34227b6a Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/scriptk2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/scriptl.png b/apps/presentationeditor/main/resources/help/en/images/symbols/scriptl.png new file mode 100644 index 000000000..e28155e01 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/scriptl.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/scriptl2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/scriptl2.png new file mode 100644 index 000000000..20327fde5 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/scriptl2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/scriptm.png b/apps/presentationeditor/main/resources/help/en/images/symbols/scriptm.png new file mode 100644 index 000000000..5cdd4bc43 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/scriptm.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/scriptm2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/scriptm2.png new file mode 100644 index 000000000..b257e5e69 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/scriptm2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/scriptn.png b/apps/presentationeditor/main/resources/help/en/images/symbols/scriptn.png new file mode 100644 index 000000000..22b214f97 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/scriptn.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/scriptn2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/scriptn2.png new file mode 100644 index 000000000..3cd942d5b Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/scriptn2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/scripto.png b/apps/presentationeditor/main/resources/help/en/images/symbols/scripto.png new file mode 100644 index 000000000..64efc9545 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/scripto.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/scripto2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/scripto2.png new file mode 100644 index 000000000..8f8bdc904 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/scripto2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/scriptp.png b/apps/presentationeditor/main/resources/help/en/images/symbols/scriptp.png new file mode 100644 index 000000000..ec9874130 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/scriptp.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/scriptp2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/scriptp2.png new file mode 100644 index 000000000..2df092612 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/scriptp2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/scriptq.png b/apps/presentationeditor/main/resources/help/en/images/symbols/scriptq.png new file mode 100644 index 000000000..f9c07bbff Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/scriptq.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/scriptq2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/scriptq2.png new file mode 100644 index 000000000..1eb2e1182 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/scriptq2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/scriptr.png b/apps/presentationeditor/main/resources/help/en/images/symbols/scriptr.png new file mode 100644 index 000000000..49b85ae2d Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/scriptr.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/scriptr2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/scriptr2.png new file mode 100644 index 000000000..46dea0796 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/scriptr2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/scripts.png b/apps/presentationeditor/main/resources/help/en/images/symbols/scripts.png new file mode 100644 index 000000000..74caee45b Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/scripts.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/scripts2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/scripts2.png new file mode 100644 index 000000000..0acf23f10 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/scripts2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/scriptt.png b/apps/presentationeditor/main/resources/help/en/images/symbols/scriptt.png new file mode 100644 index 000000000..cb6ace16a Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/scriptt.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/scriptt2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/scriptt2.png new file mode 100644 index 000000000..9407b3372 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/scriptt2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/scriptu.png b/apps/presentationeditor/main/resources/help/en/images/symbols/scriptu.png new file mode 100644 index 000000000..cffb832bc Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/scriptu.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/scriptu2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/scriptu2.png new file mode 100644 index 000000000..5f85cd60c Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/scriptu2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/scriptv.png b/apps/presentationeditor/main/resources/help/en/images/symbols/scriptv.png new file mode 100644 index 000000000..d6e628a61 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/scriptv.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/scriptv2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/scriptv2.png new file mode 100644 index 000000000..346dd8c56 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/scriptv2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/scriptw.png b/apps/presentationeditor/main/resources/help/en/images/symbols/scriptw.png new file mode 100644 index 000000000..9e5d381db Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/scriptw.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/scriptw2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/scriptw2.png new file mode 100644 index 000000000..953ee2de5 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/scriptw2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/scriptx.png b/apps/presentationeditor/main/resources/help/en/images/symbols/scriptx.png new file mode 100644 index 000000000..db732c630 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/scriptx.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/scriptx2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/scriptx2.png new file mode 100644 index 000000000..166c889a3 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/scriptx2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/scripty.png b/apps/presentationeditor/main/resources/help/en/images/symbols/scripty.png new file mode 100644 index 000000000..7784bb149 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/scripty.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/scripty2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/scripty2.png new file mode 100644 index 000000000..f3003ade0 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/scripty2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/scriptz.png b/apps/presentationeditor/main/resources/help/en/images/symbols/scriptz.png new file mode 100644 index 000000000..e8d5a0cde Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/scriptz.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/scriptz2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/scriptz2.png new file mode 100644 index 000000000..8197fe515 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/scriptz2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/sdiv.png b/apps/presentationeditor/main/resources/help/en/images/symbols/sdiv.png new file mode 100644 index 000000000..0109428ac Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/sdiv.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/sdivide.png b/apps/presentationeditor/main/resources/help/en/images/symbols/sdivide.png new file mode 100644 index 000000000..0109428ac Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/sdivide.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/searrow.png b/apps/presentationeditor/main/resources/help/en/images/symbols/searrow.png new file mode 100644 index 000000000..8a7f64b14 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/searrow.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/setminus.png b/apps/presentationeditor/main/resources/help/en/images/symbols/setminus.png new file mode 100644 index 000000000..fa6c2cfee Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/setminus.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/sigma.png b/apps/presentationeditor/main/resources/help/en/images/symbols/sigma.png new file mode 100644 index 000000000..2cb2bb178 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/sigma.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/sigma2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/sigma2.png new file mode 100644 index 000000000..20e9f5ee7 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/sigma2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/sim.png b/apps/presentationeditor/main/resources/help/en/images/symbols/sim.png new file mode 100644 index 000000000..6a056eda0 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/sim.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/simeq.png b/apps/presentationeditor/main/resources/help/en/images/symbols/simeq.png new file mode 100644 index 000000000..eade7ebc9 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/simeq.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/smash.png b/apps/presentationeditor/main/resources/help/en/images/symbols/smash.png new file mode 100644 index 000000000..90896057d Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/smash.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/smile.png b/apps/presentationeditor/main/resources/help/en/images/symbols/smile.png new file mode 100644 index 000000000..83b716c6c Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/smile.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/spadesuit.png b/apps/presentationeditor/main/resources/help/en/images/symbols/spadesuit.png new file mode 100644 index 000000000..3bdec8945 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/spadesuit.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/sqcap.png b/apps/presentationeditor/main/resources/help/en/images/symbols/sqcap.png new file mode 100644 index 000000000..4cf43990e Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/sqcap.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/sqcup.png b/apps/presentationeditor/main/resources/help/en/images/symbols/sqcup.png new file mode 100644 index 000000000..426d02fdc Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/sqcup.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/sqrt.png b/apps/presentationeditor/main/resources/help/en/images/symbols/sqrt.png new file mode 100644 index 000000000..0acfaa8ed Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/sqrt.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/sqsubseteq.png b/apps/presentationeditor/main/resources/help/en/images/symbols/sqsubseteq.png new file mode 100644 index 000000000..14365cc02 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/sqsubseteq.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/sqsuperseteq.png b/apps/presentationeditor/main/resources/help/en/images/symbols/sqsuperseteq.png new file mode 100644 index 000000000..6db6d42fb Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/sqsuperseteq.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/star.png b/apps/presentationeditor/main/resources/help/en/images/symbols/star.png new file mode 100644 index 000000000..1f15f019f Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/star.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/subset.png b/apps/presentationeditor/main/resources/help/en/images/symbols/subset.png new file mode 100644 index 000000000..f23368a90 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/subset.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/subseteq.png b/apps/presentationeditor/main/resources/help/en/images/symbols/subseteq.png new file mode 100644 index 000000000..d867e2df0 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/subseteq.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/succ.png b/apps/presentationeditor/main/resources/help/en/images/symbols/succ.png new file mode 100644 index 000000000..6b7c0526b Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/succ.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/succeq.png b/apps/presentationeditor/main/resources/help/en/images/symbols/succeq.png new file mode 100644 index 000000000..22eff46c6 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/succeq.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/sum.png b/apps/presentationeditor/main/resources/help/en/images/symbols/sum.png new file mode 100644 index 000000000..44106f72f Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/sum.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/superset.png b/apps/presentationeditor/main/resources/help/en/images/symbols/superset.png new file mode 100644 index 000000000..67f46e1ad Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/superset.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/superseteq.png b/apps/presentationeditor/main/resources/help/en/images/symbols/superseteq.png new file mode 100644 index 000000000..89521782c Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/superseteq.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/swarrow.png b/apps/presentationeditor/main/resources/help/en/images/symbols/swarrow.png new file mode 100644 index 000000000..66df3fa2a Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/swarrow.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/tau.png b/apps/presentationeditor/main/resources/help/en/images/symbols/tau.png new file mode 100644 index 000000000..abd5bf872 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/tau.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/tau2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/tau2.png new file mode 100644 index 000000000..f15d8e443 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/tau2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/therefore.png b/apps/presentationeditor/main/resources/help/en/images/symbols/therefore.png new file mode 100644 index 000000000..d3f02aba3 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/therefore.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/theta.png b/apps/presentationeditor/main/resources/help/en/images/symbols/theta.png new file mode 100644 index 000000000..d2d89e82b Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/theta.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/theta2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/theta2.png new file mode 100644 index 000000000..13f05f84f Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/theta2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/tilde.png b/apps/presentationeditor/main/resources/help/en/images/symbols/tilde.png new file mode 100644 index 000000000..1b08ef3a8 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/tilde.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/times.png b/apps/presentationeditor/main/resources/help/en/images/symbols/times.png new file mode 100644 index 000000000..da3afaf8b Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/times.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/to.png b/apps/presentationeditor/main/resources/help/en/images/symbols/to.png new file mode 100644 index 000000000..0df492f97 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/to.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/top.png b/apps/presentationeditor/main/resources/help/en/images/symbols/top.png new file mode 100644 index 000000000..afbe5b832 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/top.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/tvec.png b/apps/presentationeditor/main/resources/help/en/images/symbols/tvec.png new file mode 100644 index 000000000..ee71f7105 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/tvec.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/ubar.png b/apps/presentationeditor/main/resources/help/en/images/symbols/ubar.png new file mode 100644 index 000000000..e27b66816 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/ubar.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/ubar2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/ubar2.png new file mode 100644 index 000000000..63c20216a Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/ubar2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/underbar.png b/apps/presentationeditor/main/resources/help/en/images/symbols/underbar.png new file mode 100644 index 000000000..938c658e5 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/underbar.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/underbrace.png b/apps/presentationeditor/main/resources/help/en/images/symbols/underbrace.png new file mode 100644 index 000000000..f2c080b58 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/underbrace.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/underbracket.png b/apps/presentationeditor/main/resources/help/en/images/symbols/underbracket.png new file mode 100644 index 000000000..a78aa1cdc Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/underbracket.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/underline.png b/apps/presentationeditor/main/resources/help/en/images/symbols/underline.png new file mode 100644 index 000000000..b55100731 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/underline.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/underparen.png b/apps/presentationeditor/main/resources/help/en/images/symbols/underparen.png new file mode 100644 index 000000000..ccaac1590 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/underparen.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/uparrow.png b/apps/presentationeditor/main/resources/help/en/images/symbols/uparrow.png new file mode 100644 index 000000000..eccaa488d Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/uparrow.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/uparrow2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/uparrow2.png new file mode 100644 index 000000000..3cff2b9de Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/uparrow2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/updownarrow.png b/apps/presentationeditor/main/resources/help/en/images/symbols/updownarrow.png new file mode 100644 index 000000000..65ea76252 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/updownarrow.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/updownarrow2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/updownarrow2.png new file mode 100644 index 000000000..c10bc8fef Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/updownarrow2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/uplus.png b/apps/presentationeditor/main/resources/help/en/images/symbols/uplus.png new file mode 100644 index 000000000..39109a95b Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/uplus.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/upsilon.png b/apps/presentationeditor/main/resources/help/en/images/symbols/upsilon.png new file mode 100644 index 000000000..e69b7226c Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/upsilon.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/upsilon2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/upsilon2.png new file mode 100644 index 000000000..2012f0408 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/upsilon2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/varepsilon.png b/apps/presentationeditor/main/resources/help/en/images/symbols/varepsilon.png new file mode 100644 index 000000000..1788b80e9 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/varepsilon.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/varphi.png b/apps/presentationeditor/main/resources/help/en/images/symbols/varphi.png new file mode 100644 index 000000000..ebcb44f39 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/varphi.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/varpi.png b/apps/presentationeditor/main/resources/help/en/images/symbols/varpi.png new file mode 100644 index 000000000..82e5e48bd Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/varpi.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/varrho.png b/apps/presentationeditor/main/resources/help/en/images/symbols/varrho.png new file mode 100644 index 000000000..d719b4e0c Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/varrho.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/varsigma.png b/apps/presentationeditor/main/resources/help/en/images/symbols/varsigma.png new file mode 100644 index 000000000..b154dede3 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/varsigma.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/vartheta.png b/apps/presentationeditor/main/resources/help/en/images/symbols/vartheta.png new file mode 100644 index 000000000..5e49bc074 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/vartheta.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/vbar.png b/apps/presentationeditor/main/resources/help/en/images/symbols/vbar.png new file mode 100644 index 000000000..197c22ee5 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/vbar.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/vdash.png b/apps/presentationeditor/main/resources/help/en/images/symbols/vdash.png new file mode 100644 index 000000000..2387c2d76 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/vdash.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/vdots.png b/apps/presentationeditor/main/resources/help/en/images/symbols/vdots.png new file mode 100644 index 000000000..1220d68b5 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/vdots.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/vec.png b/apps/presentationeditor/main/resources/help/en/images/symbols/vec.png new file mode 100644 index 000000000..0a50d9fe6 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/vec.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/vee.png b/apps/presentationeditor/main/resources/help/en/images/symbols/vee.png new file mode 100644 index 000000000..be2573ef8 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/vee.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/vert.png b/apps/presentationeditor/main/resources/help/en/images/symbols/vert.png new file mode 100644 index 000000000..adc50b15c Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/vert.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/vert2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/vert2.png new file mode 100644 index 000000000..915abac55 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/vert2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/vmatrix.png b/apps/presentationeditor/main/resources/help/en/images/symbols/vmatrix.png new file mode 100644 index 000000000..e8dba6fd2 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/vmatrix.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/vphantom.png b/apps/presentationeditor/main/resources/help/en/images/symbols/vphantom.png new file mode 100644 index 000000000..fd8194604 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/vphantom.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/wedge.png b/apps/presentationeditor/main/resources/help/en/images/symbols/wedge.png new file mode 100644 index 000000000..34e02a584 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/wedge.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/wp.png b/apps/presentationeditor/main/resources/help/en/images/symbols/wp.png new file mode 100644 index 000000000..00c630d38 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/wp.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/wr.png b/apps/presentationeditor/main/resources/help/en/images/symbols/wr.png new file mode 100644 index 000000000..bceef6f19 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/wr.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/xi.png b/apps/presentationeditor/main/resources/help/en/images/symbols/xi.png new file mode 100644 index 000000000..f83b1dfd2 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/xi.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/xi2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/xi2.png new file mode 100644 index 000000000..4c59fd3e2 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/xi2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/zeta.png b/apps/presentationeditor/main/resources/help/en/images/symbols/zeta.png new file mode 100644 index 000000000..aaf47b628 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/zeta.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/symbols/zeta2.png b/apps/presentationeditor/main/resources/help/en/images/symbols/zeta2.png new file mode 100644 index 000000000..fb04db0ab Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/symbols/zeta2.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/tablesettingstab.png b/apps/presentationeditor/main/resources/help/en/images/tablesettingstab.png index b622c0b99..bf98356e6 100644 Binary files a/apps/presentationeditor/main/resources/help/en/images/tablesettingstab.png and b/apps/presentationeditor/main/resources/help/en/images/tablesettingstab.png differ diff --git a/apps/presentationeditor/main/resources/help/en/search/indexes.js b/apps/presentationeditor/main/resources/help/en/search/indexes.js index db65cda6e..a5d4dcc52 100644 --- a/apps/presentationeditor/main/resources/help/en/search/indexes.js +++ b/apps/presentationeditor/main/resources/help/en/search/indexes.js @@ -8,17 +8,17 @@ var indexes = { "id": "HelpfulHints/AdvancedSettings.htm", "title": "Advanced Settings of Presentation Editor", - "body": "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 click the View settings icon on the right side of the editor header and select the Advanced settings option. 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 in the online version to turn on/off automatic saving of changes you make while editing. Autorecover - is used in the desktop version to turn on/off the option that allows to automatically recover documents in case of the unexpected program closing. Co-editing Mode is used to select the display of the changes made during the co-editing: By default the Fast mode is selected, the users who take part in the document co-editing will see the changes in real time once they are made by other users. If you prefer not to see other user changes (so that they do not disturb you, or for some other reason), select the Strict mode and all the changes will be shown only after you click the Save icon notifying you that there are changes from other users. Default Zoom Value is used to set the default zoom value selecting it in the list of available options from 50% to 200%. You can also choose the Fit to Slide or Fit to Width option. Font Hinting is used to select the type a font is displayed in Presentation Editor: Choose As Windows if you like the way fonts are usually displayed on Windows, i.e. using Windows font hinting. Choose As OS X if you like the way fonts are usually displayed on a Mac, i.e. without any font hinting at all. Choose Native if you want your text to be displayed with the hinting embedded into font files. Default cache mode - used to select the cache mode for the font characters. It’s not recommended to switch it without any reason. It can be helpful in some cases only, for example, when an issue in the Google Chrome browser with the enabled hardware acceleration occurs. Presentation Editor has two cache modes: In the first cache mode, each letter is cached as a separate picture. In the second cache mode, a picture of a certain size is selected where letters are placed dynamically and a mechanism of allocating/removing memory in this picture is also implemented. If there is not enough memory, a second picture is created, etc. The Default cache mode setting applies two above mentioned cache modes separately for different browsers: When the Default cache mode setting is enabled, Internet Explorer (v. 9, 10, 11) uses the second cache mode, other browsers use the first cache mode. When the Default cache mode setting is disabled, Internet Explorer (v. 9, 10, 11) uses the first cache mode, other browsers use the second cache mode. Unit of Measurement is used to specify what units are used on the rulers and in properties windows for measuring elements parameters such as width, height, spacing, margins etc. You can select the Centimeter, Point, or Inch option. To save the changes you made, click the Apply button." + "body": "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 click the View settings icon on the right side of the editor header and select the Advanced settings option. The advanced settings are: Spell Checking is used to turn on/off the spell checking option. Proofing - used to automatically replace word or symbol typed in the Replace: box or chosen from the list by a new word or symbol displayed in the By: box. 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 in the online version to turn on/off automatic saving of changes you make while editing. Autorecover - is used in the desktop version to turn on/off the option that allows to automatically recover documents in case of the unexpected program closing. Co-editing Mode is used to select the display of the changes made during the co-editing: By default the Fast mode is selected, the users who take part in the document co-editing will see the changes in real time once they are made by other users. If you prefer not to see other user changes (so that they do not disturb you, or for some other reason), select the Strict mode and all the changes will be shown only after you click the Save icon notifying you that there are changes from other users. Default Zoom Value is used to set the default zoom value selecting it in the list of available options from 50% to 200%. You can also choose the Fit to Slide or Fit to Width option. Font Hinting is used to select the type a font is displayed in Presentation Editor: Choose As Windows if you like the way fonts are usually displayed on Windows, i.e. using Windows font hinting. Choose As OS X if you like the way fonts are usually displayed on a Mac, i.e. without any font hinting at all. Choose Native if you want your text to be displayed with the hinting embedded into font files. Default cache mode - used to select the cache mode for the font characters. It’s not recommended to switch it without any reason. It can be helpful in some cases only, for example, when an issue in the Google Chrome browser with the enabled hardware acceleration occurs. Presentation Editor has two cache modes: In the first cache mode, each letter is cached as a separate picture. In the second cache mode, a picture of a certain size is selected where letters are placed dynamically and a mechanism of allocating/removing memory in this picture is also implemented. If there is not enough memory, a second picture is created, etc. The Default cache mode setting applies two above mentioned cache modes separately for different browsers: When the Default cache mode setting is enabled, Internet Explorer (v. 9, 10, 11) uses the second cache mode, other browsers use the first cache mode. When the Default cache mode setting is disabled, Internet Explorer (v. 9, 10, 11) uses the first cache mode, other browsers use the second cache mode. Unit of Measurement is used to specify what units are used on the rulers and in properties windows for measuring elements parameters such as width, height, spacing, margins etc. You can select the Centimeter, Point, or Inch option. Cut, copy and paste - used to show the Paste Options button when content is pasted. Check the box to enable this feature. Macros Settings - used to set macros display with a notification. Choose Disable all to disable all macros within the presentation; Show notification to receive notifications about macros within the presentation; Enable all to automatically run all macros within the presentation. To save the changes you made, click the Apply button." }, { "id": "HelpfulHints/CollaborativeEditing.htm", "title": "Collaborative Presentation Editing", - "body": "Presentation Editor offers you the possibility to work at a presentation collaboratively with other users. This feature includes: simultaneous multi-user access to the edited presentation visual indication of objects that are being edited by other users real-time changes display or synchronization of changes with one button click chat to share ideas concerning particular presentation parts comments containing the description of a task or problem that should be solved (it's also possible to work with comments in the offline mode, without connecting to the online version) Connecting to the online version In the desktop editor, open the Connect to cloud option of the left-side menu in the main program window. Connect to your cloud office specifying your account login and password. 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 real time. Strict is selected to hide other user changes until you click the Save icon to save your own changes and accept the changes made by others. The mode can be selected in the Advanced Settings. It's also possible to choose the necessary mode using the Co-editing Mode icon at the Collaboration tab of the top toolbar: Note: when you co-edit a presentation in the Fast mode, the possibility to Redo the last undone operation is not available. 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 on the right side of the editor header - . 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 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 comment the presentation, 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 . It's also possible to set access rights using the Sharing icon at the Collaboration tab of the top toolbar. As soon as one of the users saves his/her changes by clicking the 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 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. 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. To access the chat and leave a message for other users, click the icon at the left sidebar, or switch to the Collaboration tab of the top toolbar and click the Chat button, enter your text into the corresponding field below, press the Send button. All the messages left by users will be displayed on the panel on the left. If there are new messages you haven't read yet, the chat icon will look like this - . To close the panel with chat messages, click the icon at the left sidebar or the Chat button at the top toolbar once again. Comments It's possible to work with comments in the offline mode, without connecting to the online version. To leave a comment to a certain object (text box, shape etc.): select an object where you think there is an error or problem, switch to the Insert or Collaboration tab of the top toolbar and click the Comment button, or right-click the selected object and select the Add Сomment option from the menu, enter the needed text, click the Add Comment/Add button. The object you commented will be marked with the icon. To view the comment, just click on this icon. To add a comment to a certain slide, select the slide and use the Comment button at the Insert or Collaboration tab of the top toolbar. The added comment will be displayed in the upper left corner of the slide. To create a presentation-level comment which is not related to a certain object or slide, click the icon at the left sidebar to open the Comments panel and use the Add Comment to Document link. The presentation-level comments can be viewed at the Comments panel. Comments related to objects and slides are also available here. 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, type in your reply text in the entry field and press the Reply button. If you are using the Strict co-editing mode, new comments added by other users will become visible only after you click the icon in the left upper corner of the top toolbar. You can manage the added comments using the icons in the comment balloon or at the Comments panel on the left: edit the currently selected by clicking the icon, delete the currently selected by clicking the icon, close the currently selected discussion by clicking the 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 icon. Adding mentions When entering comments, you can use the mentions feature that allows to attract somebody's attention to the comment and send a notification to the mentioned user via email and Talk. To add a mention enter the \"+\" or \"@\" sign anywhere in the comment text - a list of the portal users will open. To simplify the search process, you can start typing a name in the comment field - the user list will change as you type. Select the necessary person from the list. If the file has not yet been shared with the mentioned user, the Sharing Settings window will open. Read only access type is selected by default. Change it if necessary and click OK. The mentioned user will receive an email notification that he/she has been mentioned in a comment. If the file has been shared, the user will also receive a corresponding notification. To remove comments, click the Remove button at the Collaboration tab of the top toolbar, select the necessary option from the menu: Remove Current Comments - to remove the currently selected comment. If some replies have beed added to the comment, all its replies will be removed as well. Remove My Comments - to remove comments you added without removing comments added by other users. If some replies have beed added to your comment, all its replies will be removed as well. Remove All Comments - to remove all the comments in the presentation that you and other users added. To close the panel with comments, click the icon at the left sidebar once again." + "body": "Presentation Editor offers you the possibility to work at a presentation collaboratively with other users. This feature includes: simultaneous multi-user access to the edited presentation visual indication of objects that are being edited by other users real-time changes display or synchronization of changes with one button click chat to share ideas concerning particular presentation parts comments containing the description of a task or problem that should be solved (it's also possible to work with comments in the offline mode, without connecting to the online version) Connecting to the online version In the desktop editor, open the Connect to cloud option of the left-side menu in the main program window. Connect to your cloud office specifying your account login and password. 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 real time. Strict is selected to hide other user changes until you click the Save icon to save your own changes and accept the changes made by others. The mode can be selected in the Advanced Settings. It's also possible to choose the necessary mode using the Co-editing Mode icon at the Collaboration tab of the top toolbar: Note: when you co-edit a presentation in the Fast mode, the possibility to Redo the last undone operation is not available. 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 on the right side of the editor header - . 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 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 comment the presentation, 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 . It's also possible to set access rights using the Sharing icon at the Collaboration tab of the top toolbar. As soon as one of the users saves his/her changes by clicking the 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 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. 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. To access the chat and leave a message for other users, click the icon at the left sidebar, or switch to the Collaboration tab of the top toolbar and click the Chat button, enter your text into the corresponding field below, press the Send button. All the messages left by users will be displayed on the panel on the left. If there are new messages you haven't read yet, the chat icon will look like this - . To close the panel with chat messages, click the icon at the left sidebar or the Chat button at the top toolbar once again. Comments It's possible to work with comments in the offline mode, without connecting to the online version. To leave a comment to a certain object (text box, shape etc.): select an object where you think there is an error or problem, switch to the Insert or Collaboration tab of the top toolbar and click the Comment button, or right-click the selected object and select the Add Сomment option from the menu, enter the needed text, click the Add Comment/Add button. The object you commented will be marked with the icon. To view the comment, just click on this icon. To add a comment to a certain slide, select the slide and use the Comment button at the Insert or Collaboration tab of the top toolbar. The added comment will be displayed in the upper left corner of the slide. To create a presentation-level comment which is not related to a certain object or slide, click the icon at the left sidebar to open the Comments panel and use the Add Comment to Document link. The presentation-level comments can be viewed at the Comments panel. Comments related to objects and slides are also available here. 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, type in your reply text in the entry field and press the Reply button. If you are using the Strict co-editing mode, new comments added by other users will become visible only after you click the icon in the left upper corner of the top toolbar. You can manage the added comments using the icons in the comment balloon or at the Comments panel on the left: edit the currently selected by clicking the icon, delete the currently selected by clicking the icon, close the currently selected discussion by clicking the 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 icon. Adding mentions When entering comments, you can use the mentions feature that allows to attract somebody's attention to the comment and send a notification to the mentioned user via email and Talk. To add a mention enter the \"+\" or \"@\" sign anywhere in the comment text - a list of the portal users will open. To simplify the search process, you can start typing a name in the comment field - the user list will change as you type. Select the necessary person from the list. If the file has not yet been shared with the mentioned user, the Sharing Settings window will open. Read only access type is selected by default. Change it if necessary and click OK. The mentioned user will receive an email notification that he/she has been mentioned in a comment. If the file has been shared, the user will also receive a corresponding notification. To remove comments, click the Remove button at the Collaboration tab of the top toolbar, select the necessary option from the menu: Remove Current Comments - to remove the currently selected comment. If some replies have been added to the comment, all its replies will be removed as well. Remove My Comments - to remove comments you added without removing comments added by other users. If some replies have been added to your comment, all its replies will be removed as well. Remove All Comments - to remove all the comments in the presentation that you and other users added. To close the panel with comments, click the icon at the left sidebar once again." }, { "id": "HelpfulHints/KeyboardShortcuts.htm", "title": "Keyboard Shortcuts", - "body": "Windows/LinuxMac OS Working with Presentation Open 'File' panel Alt+F ⌥ Option+F Open the File panel to save, download, print the current presentation, view its info, create a new presentation or open an existing one, access Presentation Editor help or advanced settings. Open 'Search' dialog box Ctrl+F ^ Ctrl+F, ⌘ Cmd+F Open the Search dialog box to start searching for a character/word/phrase in the currently edited presentation. Open 'Comments' panel Ctrl+⇧ Shift+H ^ Ctrl+⇧ Shift+H, ⌘ Cmd+⇧ Shift+H Open the Comments panel to add your own comment or reply to other users' comments. Open comment field Alt+H ⌥ Option+H Open a data entry field where you can add the text of your comment. Open 'Chat' panel Alt+Q ⌥ Option+Q Open the Chat panel and send a message. Save presentation Ctrl+S ^ Ctrl+S, ⌘ Cmd+S Save all the changes to the presentation currently edited with Presentation Editor. The active file will be saved with its current file name, location, and file format. Print presentation Ctrl+P ^ Ctrl+P, ⌘ Cmd+P Print the presentation with one of the available printers or save it to a file. Download As... Ctrl+⇧ Shift+S ^ Ctrl+⇧ Shift+S, ⌘ Cmd+⇧ Shift+S Open the Download as... panel to save the currently edited presentation to the computer hard disk drive in one of the supported formats: PPTX, PDF, ODP, POTX, PDF/A, OTP. Full screen F11 Switch to the full screen view to fit Presentation Editor into your screen. Help menu F1 F1 Open Presentation Editor Help menu. Open existing file (Desktop Editors) Ctrl+O On the Open local file tab in Desktop Editors, opens the standard dialog box that allows to select an existing file. Close file (Desktop Editors) Ctrl+W, Ctrl+F4 ^ Ctrl+W, ⌘ Cmd+W Close the current presentation window in Desktop Editors. Element contextual menu ⇧ Shift+F10 ⇧ Shift+F10 Open the selected element contextual menu. Navigation The first slide Home Home, Fn+← Go to the first slide of the currently edited presentation. The last slide End End, Fn+→ Go to the last slide of the currently edited presentation. Next slide Page Down Page Down, Fn+↓ Go to the next slide of the currently edited presentation. Previous slide Page Up Page Up, Fn+↑ Go to the previous slide of the currently edited presentation. Zoom In Ctrl++ ^ Ctrl+=, ⌘ Cmd+= Zoom in the currently edited presentation. Zoom Out Ctrl+- ^ Ctrl+-, ⌘ Cmd+- Zoom out the currently edited presentation. Performing Actions on Slides New slide Ctrl+M ^ Ctrl+M Create a new slide and add it after the selected one in the list. Duplicate slide Ctrl+D ⌘ Cmd+D Duplicate the selected slide in the list. Move slide up Ctrl+↑ ⌘ Cmd+↑ Move the selected slide above the previous one in the list. Move slide down Ctrl+↓ ⌘ Cmd+↓ Move the selected slide below the following one in the list. Move slide to beginning Ctrl+⇧ Shift+↑ ⌘ Cmd+⇧ Shift+↑ Move the selected slide to the very first position in the list. Move slide to end Ctrl+⇧ Shift+↓ ⌘ Cmd+⇧ Shift+↓ Move the selected slide to the very last position in the list. Performing Actions on Objects Create a copy Ctrl + drag, Ctrl+D ^ Ctrl + drag, ^ Ctrl+D, ⌘ Cmd+D Hold down the Ctrl key when dragging the selected object or press Ctrl+D (⌘ Cmd+D for Mac) to create its copy. Group Ctrl+G ⌘ Cmd+G Group the selected objects. Ungroup Ctrl+⇧ Shift+G ⌘ Cmd+⇧ Shift+G Ungroup the selected group of objects. Select the next object ↹ Tab ↹ Tab Select the next object after the currently selected one. Select the previous object ⇧ Shift+↹ Tab ⇧ Shift+↹ Tab Select the previous object before the currently selected one. Draw straight line or arrow ⇧ Shift + drag (when drawing lines/arrows) ⇧ Shift + drag (when drawing lines/arrows) Draw a straight vertical/horizontal/45-degree line or arrow. Modifying Objects Constrain movement ⇧ Shift + drag ⇧ Shift + drag Constrain the movement of the selected object horizontally or vertically. Set 15-degree-rotation ⇧ Shift + drag (when rotating) ⇧ Shift + drag (when rotating) Constrain the rotation angle to 15 degree increments. Maintain proportions ⇧ Shift + drag (when resizing) ⇧ Shift + drag (when resizing) Maintain the proportions of the selected object when resizing. Movement pixel by pixel Ctrl+← → ↑ ↓ ⌘ Cmd+← → ↑ ↓ Hold down the Ctrl (⌘ Cmd for Mac) key and use the keybord arrows to move the selected object by one pixel at a time. Working with Tables Move to the next cell in a row ↹ Tab ↹ Tab Go to the next cell in a table row. Move to the previous cell in a row ⇧ Shift+↹ Tab ⇧ Shift+↹ Tab Go to the previous cell in a table row. Move to the next row ↓ ↓ Go to the next row in a table. Move to the previous row ↑ ↑ Go to the previous row in a table. Start new paragraph ↵ Enter ↵ Return Start a new paragraph within a cell. Add new row ↹ Tab in the lower right table cell. ↹ Tab in the lower right table cell. Add a new row at the bottom of the table. Previewing Presentation Start preview from the beginning Ctrl+F5 ^ Ctrl+F5 Start a presentation from the beginning. Navigate forward ↵ Enter, Page Down, →, ↓, ␣ Spacebar ↵ Return, Page Down, →, ↓, ␣ Spacebar Display the next transition effect or advance to the next slide. Navigate backward Page Up, ←, ↑ Page Up, ←, ↑ Display the previous transition effect or return to the previous slide. Close preview Esc Esc End a presentation. Undo and Redo Undo Ctrl+Z ^ Ctrl+Z, ⌘ Cmd+Z Reverse the latest performed action. Redo Ctrl+Y ^ Ctrl+Y, ⌘ Cmd+Y Repeat the latest undone action. Cut, Copy, and Paste Cut Ctrl+X, ⇧ Shift+Delete ⌘ Cmd+X Cut the selected object and send it to the computer clipboard memory. The cut object can be later inserted to another place in the same presentation. Copy Ctrl+C, Ctrl+Insert ⌘ Cmd+C Send the selected object to the computer clipboard memory. The copied object can be later inserted to another place in the same presentation. Paste Ctrl+V, ⇧ Shift+Insert ⌘ Cmd+V Insert the previously copied object from the computer clipboard memory to the current cursor position. The object can be previously copied from the same presentation. Insert hyperlink Ctrl+K ^ Ctrl+K, ⌘ Cmd+K Insert a hyperlink which can be used to go to a web address or to a certain slide in the presentation. Copy style Ctrl+⇧ Shift+C ^ Ctrl+⇧ Shift+C, ⌘ Cmd+⇧ Shift+C Copy the formatting from the selected fragment of the currently edited text. The copied formatting can be later applied to another text fragment in the same presentation. Apply style Ctrl+⇧ Shift+V ^ Ctrl+⇧ Shift+V, ⌘ Cmd+⇧ Shift+V Apply the previously copied formatting to the text in the currently edited text box. Selecting with the Mouse Add to the selected fragment ⇧ Shift ⇧ Shift Start the selection, hold down the ⇧ Shift key and click where you need to end the selection. Selecting using the Keyboard Select all Ctrl+A ^ Ctrl+A, ⌘ Cmd+A Select all the slides (in the slides list) or all the objects within the slide (in the slide editing area) or all the text (within the text box) - depending on where the mouse cursor is located. Select text fragment ⇧ Shift+→ ← ⇧ Shift+→ ← Select the text character by character. Select text from cursor to beginning of line ⇧ Shift+Home Select a text fragment from the cursor to the beginning of the current line. Select text from cursor to end of line ⇧ Shift+End Select a text fragment from the cursor to the end of the current line. Select one character to the right ⇧ Shift+→ ⇧ Shift+→ Select one character to the right of the cursor position. Select one character to the left ⇧ Shift+← ⇧ Shift+← Select one character to the left of the cursor position. Select to the end of a word Ctrl+⇧ Shift+→ Select a text fragment from the cursor to the end of a word. Select to the beginning of a word Ctrl+⇧ Shift+← Select a text fragment from the cursor to the beginning of a word. Select one line up ⇧ Shift+↑ ⇧ Shift+↑ Select one line up (with the cursor at the beginning of a line). Select one line down ⇧ Shift+↓ ⇧ Shift+↓ Select one line down (with the cursor at the beginning of a line). Text Styling Bold Ctrl+B ^ Ctrl+B, ⌘ Cmd+B Make the font of the selected text fragment bold giving it more weight. Italic Ctrl+I ^ Ctrl+I, ⌘ Cmd+I Make the font of the selected text fragment italicized giving it some right side tilt. Underline Ctrl+U ^ Ctrl+U, ⌘ Cmd+U Make the selected text fragment underlined with the line going under the letters. Strikeout Ctrl+5 ^ Ctrl+5, ⌘ Cmd+5 Make the selected text fragment struck out with the line going through the letters. Subscript Ctrl+⇧ Shift+> ⌘ Cmd+⇧ Shift+> 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+⇧ Shift+< ⌘ Cmd+⇧ Shift+< Make the selected text fragment smaller and place it to the upper part of the text line, e.g. as in fractions. Bulleted list Ctrl+⇧ Shift+L ^ Ctrl+⇧ Shift+L, ⌘ Cmd+⇧ Shift+L Create an unordered bulleted list from the selected text fragment or start a new one. Remove formatting Ctrl+␣ Spacebar Remove formatting from the selected text fragment. Increase font Ctrl+] ^ Ctrl+], ⌘ Cmd+] Increase the size of the font for the selected text fragment 1 point. Decrease font Ctrl+[ ^ Ctrl+[, ⌘ Cmd+[ Decrease the size of the font for the selected text fragment 1 point. Align center Ctrl+E Center the text between the left and the right edges. Align justified Ctrl+J Justify the text in the paragraph adding additional space between words so that the left and the right text edges were aligned with the paragraph margins. Align right Ctrl+R Align right with the text lined up by the right side of the text box, the left side remains unaligned. Align left Ctrl+L Align left with the text lined up by the left side of the text box, the right side remains unaligned. Increase left indent Ctrl+M ^ Ctrl+M Increase the paragraph left indent by one tabulation position. Decrease left indent Ctrl+⇧ Shift+M ^ Ctrl+⇧ Shift+M Decrease the paragraph left indent by one tabulation position. Delete one character to the left ← Backspace ← Backspace Delete one character to the left of the cursor. Delete one character to the right Delete Fn+Delete Delete one character to the right of the cursor. Moving around in text Move one character to the left ← ← Move the cursor one character to the left. Move one character to the right → → Move the cursor one character to the right. Move one line up ↑ ↑ Move the cursor one line up. Move one line down ↓ ↓ Move the cursor one line down. Move to the beginning of a word or one word to the left Ctrl+← ⌘ Cmd+← Move the cursor to the beginning of a word or one word to the left. Move one word to the right Ctrl+→ ⌘ Cmd+→ Move the cursor one word to the right. Move to next placeholder Ctrl+↵ Enter ^ Ctrl+↵ Return, ⌘ Cmd+↵ Return Move to the next title or body text placeholder. If it is the last placeholder on a slide, this will insert a new slide with the same slide layout as the original slide Jump to the beginning of the line Home Home Put the cursor to the beginning of the currently edited line. Jump to the end of the line End End Put the cursor to the end of the currently edited line. Jump to the beginning of the text box Ctrl+Home Put the cursor to the beginning of the currently edited text box. Jump to the end of the text box Ctrl+End Put the cursor to the end of the currently edited text box." + "body": "Windows/LinuxMac OS Working with Presentation Open 'File' panel Alt+F ⌥ Option+F Open the File panel to save, download, print the current presentation, view its info, create a new presentation or open an existing one, access Presentation Editor help or advanced settings. Open 'Search' dialog box Ctrl+F ^ Ctrl+F, ⌘ Cmd+F Open the Search dialog box to start searching for a character/word/phrase in the currently edited presentation. Open 'Comments' panel Ctrl+⇧ Shift+H ^ Ctrl+⇧ Shift+H, ⌘ Cmd+⇧ Shift+H Open the Comments panel to add your own comment or reply to other users' comments. Open comment field Alt+H ⌥ Option+H Open a data entry field where you can add the text of your comment. Open 'Chat' panel Alt+Q ⌥ Option+Q Open the Chat panel and send a message. Save presentation Ctrl+S ^ Ctrl+S, ⌘ Cmd+S Save all the changes to the presentation currently edited with Presentation Editor. The active file will be saved with its current file name, location, and file format. Print presentation Ctrl+P ^ Ctrl+P, ⌘ Cmd+P Print the presentation with one of the available printers or save it to a file. Download As... Ctrl+⇧ Shift+S ^ Ctrl+⇧ Shift+S, ⌘ Cmd+⇧ Shift+S Open the Download as... panel to save the currently edited presentation to the computer hard disk drive in one of the supported formats: PPTX, PDF, ODP, POTX, PDF/A, OTP. Full screen F11 Switch to the full screen view to fit Presentation Editor into your screen. Help menu F1 F1 Open Presentation Editor Help menu. Open existing file (Desktop Editors) Ctrl+O On the Open local file tab in Desktop Editors, opens the standard dialog box that allows to select an existing file. Close file (Desktop Editors) Ctrl+W, Ctrl+F4 ^ Ctrl+W, ⌘ Cmd+W Close the current presentation window in Desktop Editors. Element contextual menu ⇧ Shift+F10 ⇧ Shift+F10 Open the selected element contextual menu. Reset the ‘Zoom’ parameter Ctrl+0 ^ Ctrl+0 or ⌘ Cmd+0 Reset the ‘Zoom’ parameter of the current presentation to the default 'Fit to slide' value. Navigation The first slide Home Home, Fn+← Go to the first slide of the currently edited presentation. The last slide End End, Fn+→ Go to the last slide of the currently edited presentation. Next slide Page Down Page Down, Fn+↓ Go to the next slide of the currently edited presentation. Previous slide Page Up Page Up, Fn+↑ Go to the previous slide of the currently edited presentation. Zoom In Ctrl++ ^ Ctrl+=, ⌘ Cmd+= Zoom in the currently edited presentation. Zoom Out Ctrl+- ^ Ctrl+-, ⌘ Cmd+- Zoom out the currently edited presentation. Performing Actions on Slides New slide Ctrl+M ^ Ctrl+M Create a new slide and add it after the selected one in the list. Duplicate slide Ctrl+D ⌘ Cmd+D Duplicate the selected slide in the list. Move slide up Ctrl+↑ ⌘ Cmd+↑ Move the selected slide above the previous one in the list. Move slide down Ctrl+↓ ⌘ Cmd+↓ Move the selected slide below the following one in the list. Move slide to beginning Ctrl+⇧ Shift+↑ ⌘ Cmd+⇧ Shift+↑ Move the selected slide to the very first position in the list. Move slide to end Ctrl+⇧ Shift+↓ ⌘ Cmd+⇧ Shift+↓ Move the selected slide to the very last position in the list. Performing Actions on Objects Create a copy Ctrl + drag, Ctrl+D ^ Ctrl + drag, ^ Ctrl+D, ⌘ Cmd+D Hold down the Ctrl key when dragging the selected object or press Ctrl+D (⌘ Cmd+D for Mac) to create its copy. Group Ctrl+G ⌘ Cmd+G Group the selected objects. Ungroup Ctrl+⇧ Shift+G ⌘ Cmd+⇧ Shift+G Ungroup the selected group of objects. Select the next object ↹ Tab ↹ Tab Select the next object after the currently selected one. Select the previous object ⇧ Shift+↹ Tab ⇧ Shift+↹ Tab Select the previous object before the currently selected one. Draw straight line or arrow ⇧ Shift + drag (when drawing lines/arrows) ⇧ Shift + drag (when drawing lines/arrows) Draw a straight vertical/horizontal/45-degree line or arrow. Modifying Objects Constrain movement ⇧ Shift + drag ⇧ Shift + drag Constrain the movement of the selected object horizontally or vertically. Set 15-degree-rotation ⇧ Shift + drag (when rotating) ⇧ Shift + drag (when rotating) Constrain the rotation angle to 15 degree increments. Maintain proportions ⇧ Shift + drag (when resizing) ⇧ Shift + drag (when resizing) Maintain the proportions of the selected object when resizing. Movement pixel by pixel Ctrl+← → ↑ ↓ ⌘ Cmd+← → ↑ ↓ Hold down the Ctrl (⌘ Cmd for Mac) key and use the keybord arrows to move the selected object by one pixel at a time. Working with Tables Move to the next cell in a row ↹ Tab ↹ Tab Go to the next cell in a table row. Move to the previous cell in a row ⇧ Shift+↹ Tab ⇧ Shift+↹ Tab Go to the previous cell in a table row. Move to the next row ↓ ↓ Go to the next row in a table. Move to the previous row ↑ ↑ Go to the previous row in a table. Start new paragraph ↵ Enter ↵ Return Start a new paragraph within a cell. Add new row ↹ Tab in the lower right table cell. ↹ Tab in the lower right table cell. Add a new row at the bottom of the table. Previewing Presentation Start preview from the beginning Ctrl+F5 ^ Ctrl+F5 Start a presentation from the beginning. Navigate forward ↵ Enter, Page Down, →, ↓, ␣ Spacebar ↵ Return, Page Down, →, ↓, ␣ Spacebar Display the next transition effect or advance to the next slide. Navigate backward Page Up, ←, ↑ Page Up, ←, ↑ Display the previous transition effect or return to the previous slide. Close preview Esc Esc End a presentation. Undo and Redo Undo Ctrl+Z ^ Ctrl+Z, ⌘ Cmd+Z Reverse the latest performed action. Redo Ctrl+Y ^ Ctrl+Y, ⌘ Cmd+Y Repeat the latest undone action. Cut, Copy, and Paste Cut Ctrl+X, ⇧ Shift+Delete ⌘ Cmd+X Cut the selected object and send it to the computer clipboard memory. The cut object can be later inserted to another place in the same presentation. Copy Ctrl+C, Ctrl+Insert ⌘ Cmd+C Send the selected object to the computer clipboard memory. The copied object can be later inserted to another place in the same presentation. Paste Ctrl+V, ⇧ Shift+Insert ⌘ Cmd+V Insert the previously copied object from the computer clipboard memory to the current cursor position. The object can be previously copied from the same presentation. Insert hyperlink Ctrl+K ^ Ctrl+K, ⌘ Cmd+K Insert a hyperlink which can be used to go to a web address or to a certain slide in the presentation. Copy style Ctrl+⇧ Shift+C ^ Ctrl+⇧ Shift+C, ⌘ Cmd+⇧ Shift+C Copy the formatting from the selected fragment of the currently edited text. The copied formatting can be later applied to another text fragment in the same presentation. Apply style Ctrl+⇧ Shift+V ^ Ctrl+⇧ Shift+V, ⌘ Cmd+⇧ Shift+V Apply the previously copied formatting to the text in the currently edited text box. Selecting with the Mouse Add to the selected fragment ⇧ Shift ⇧ Shift Start the selection, hold down the ⇧ Shift key and click where you need to end the selection. Selecting using the Keyboard Select all Ctrl+A ^ Ctrl+A, ⌘ Cmd+A Select all the slides (in the slides list) or all the objects within the slide (in the slide editing area) or all the text (within the text box) - depending on where the mouse cursor is located. Select text fragment ⇧ Shift+→ ← ⇧ Shift+→ ← Select the text character by character. Select text from cursor to beginning of line ⇧ Shift+Home Select a text fragment from the cursor to the beginning of the current line. Select text from cursor to end of line ⇧ Shift+End Select a text fragment from the cursor to the end of the current line. Select one character to the right ⇧ Shift+→ ⇧ Shift+→ Select one character to the right of the cursor position. Select one character to the left ⇧ Shift+← ⇧ Shift+← Select one character to the left of the cursor position. Select to the end of a word Ctrl+⇧ Shift+→ Select a text fragment from the cursor to the end of a word. Select to the beginning of a word Ctrl+⇧ Shift+← Select a text fragment from the cursor to the beginning of a word. Select one line up ⇧ Shift+↑ ⇧ Shift+↑ Select one line up (with the cursor at the beginning of a line). Select one line down ⇧ Shift+↓ ⇧ Shift+↓ Select one line down (with the cursor at the beginning of a line). Text Styling Bold Ctrl+B ^ Ctrl+B, ⌘ Cmd+B Make the font of the selected text fragment bold giving it more weight. Italic Ctrl+I ^ Ctrl+I, ⌘ Cmd+I Make the font of the selected text fragment italicized giving it some right side tilt. Underline Ctrl+U ^ Ctrl+U, ⌘ Cmd+U Make the selected text fragment underlined with the line going under the letters. Strikeout Ctrl+5 ^ Ctrl+5, ⌘ Cmd+5 Make the selected text fragment struck out with the line going through the letters. Subscript Ctrl+⇧ Shift+> ⌘ Cmd+⇧ Shift+> 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+⇧ Shift+< ⌘ Cmd+⇧ Shift+< Make the selected text fragment smaller and place it to the upper part of the text line, e.g. as in fractions. Bulleted list Ctrl+⇧ Shift+L ^ Ctrl+⇧ Shift+L, ⌘ Cmd+⇧ Shift+L Create an unordered bulleted list from the selected text fragment or start a new one. Remove formatting Ctrl+␣ Spacebar Remove formatting from the selected text fragment. Increase font Ctrl+] ^ Ctrl+], ⌘ Cmd+] Increase the size of the font for the selected text fragment 1 point. Decrease font Ctrl+[ ^ Ctrl+[, ⌘ Cmd+[ Decrease the size of the font for the selected text fragment 1 point. Align center Ctrl+E Center the text between the left and the right edges. Align justified Ctrl+J Justify the text in the paragraph adding additional space between words so that the left and the right text edges were aligned with the paragraph margins. Align right Ctrl+R Align right with the text lined up by the right side of the text box, the left side remains unaligned. Align left Ctrl+L Align left with the text lined up by the left side of the text box, the right side remains unaligned. Increase left indent Ctrl+M ^ Ctrl+M Increase the paragraph left indent by one tabulation position. Decrease left indent Ctrl+⇧ Shift+M ^ Ctrl+⇧ Shift+M Decrease the paragraph left indent by one tabulation position. Delete one character to the left ← Backspace ← Backspace Delete one character to the left of the cursor. Delete one character to the right Delete Fn+Delete Delete one character to the right of the cursor. Moving around in text Move one character to the left ← ← Move the cursor one character to the left. Move one character to the right → → Move the cursor one character to the right. Move one line up ↑ ↑ Move the cursor one line up. Move one line down ↓ ↓ Move the cursor one line down. Move to the beginning of a word or one word to the left Ctrl+← ⌘ Cmd+← Move the cursor to the beginning of a word or one word to the left. Move one word to the right Ctrl+→ ⌘ Cmd+→ Move the cursor one word to the right. Move to next placeholder Ctrl+↵ Enter ^ Ctrl+↵ Return, ⌘ Cmd+↵ Return Move to the next title or body text placeholder. If it is the last placeholder on a slide, this will insert a new slide with the same slide layout as the original slide Jump to the beginning of the line Home Home Put the cursor to the beginning of the currently edited line. Jump to the end of the line End End Put the cursor to the end of the currently edited line. Jump to the beginning of the text box Ctrl+Home Put the cursor to the beginning of the currently edited text box. Jump to the end of the text box Ctrl+End Put the cursor to the end of the currently edited text box." }, { "id": "HelpfulHints/Navigation.htm", @@ -40,6 +40,11 @@ var indexes = "title": "Supported Formats of Electronic Presentations", "body": "Supported Formats of Electronic Presentation Presentation is a set of slides that may include different type of content such as images, media files, text, effects etc. Presentation Editor handles the following presentation formats: Formats Description View Edit Download PPT File format used by Microsoft PowerPoint + + PPTX Office Open XML Presentation Zipped, XML-based file format developed by Microsoft for representing spreadsheets, charts, presentations, and word processing documents + + + POTX PowerPoint Open XML Document Template Zipped, XML-based file format developed by Microsoft for presentation templates. A POTX template contains formatting settings, styles etc. and can be used to create multiple presentations with the same formatting + + + ODP OpenDocument Presentation File format that represents presentation document created by Impress application, which is a part of OpenOffice based office suites + + + OTP OpenDocument Presentation Template OpenDocument file format for presentation templates. An OTP template contains formatting settings, styles etc. and can be used to create multiple presentations with the same formatting + + + PDF Portable Document Format File format used to represent documents in a manner independent of application software, hardware, and operating systems + PDF/A Portable Document Format / A An ISO-standardized version of the Portable Document Format (PDF) specialized for use in the archiving and long-term preservation of electronic documents. +" }, + { + "id": "HelpfulHints/UsingChat.htm", + "title": "Using the Chat Tool", + "body": "ONLYOFFICE Presentation Editor offers you the possibility to chat with other users to share ideas concerning particular presentation parts. To access the chat and leave a message for other users, click the icon at the left sidebar, enter your text into the corresponding field below, press the Send button. All the messages left by users will be displayed on the panel on the left. If there are new messages you haven't read yet, the chat icon will look like this - . To close the panel with chat messages, click the icon once again." + }, { "id": "ProgramInterface/CollaborationTab.htm", "title": "Collaboration tab", @@ -73,7 +78,7 @@ var indexes = { "id": "UsageInstructions/AddHyperlinks.htm", "title": "Add hyperlinks", - "body": "To add a hyperlink, place the cursor to a position within the text box where a hyperlink will be added, switch to the Insert tab of the top toolbar, click the Hyperlink icon at the top toolbar, after that the Hyperlink Settings will appear where you can specify the hyperlink parameters: Select a link type you wish to insert: Use the External Link option and enter a URL in the format http://www.example.com in the Link to field below if you need to add a hyperlink leading to an external website. Use the Slide In This Presentation option and select one of the options below if you need to add a hyperlink leading to a certain slide in the same presentation. You can check one of the following radiobuttons: Next Slide, Previous Slide, First Slide, Last Slide, Slide with the specified number. Display - enter a text that will get clickable and lead to the web address/slide specified in the upper field. ScreenTip text - enter a text that will become visible in a small pop-up window that provides a brief note or label pertaining to the hyperlink being pointed to. Click the OK button. To add a hyperlink, you can also use the Ctrl+K key combination or 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. Note: it's also possible to select a character, word or word combination with the mouse or using the keyboard and then open the Hyperlink Settings window as described above. In this case, the Display field will be 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. To edit or delete the added hyperlink, click it with the right mouse button, select the Hyperlink option in the right-click menu and then the action you want to perform - Edit Hyperlink or Remove Hyperlink." + "body": "To add a hyperlink, place the cursor to a position within the text box where a hyperlink will be added, switch to the Insert tab of the top toolbar, click the Hyperlink icon at the top toolbar, after that the Hyperlink Settings will appear where you can specify the hyperlink parameters: Select a link type you wish to insert: Use the External Link option and enter a URL in the format http://www.example.com in the Link to field below if you need to add a hyperlink leading to an external website. Use the Slide In This Presentation option and select one of the options below if you need to add a hyperlink leading to a certain slide in the same presentation. The following options are available: Next Slide, Previous Slide, First Slide, Last Slide, Slide with the specified number. Display - enter a text that will get clickable and lead to the web address/slide specified in the upper field. ScreenTip text - enter a text that will become visible in a small pop-up window that provides a brief note or label pertaining to the hyperlink being pointed to. Click the OK button. To add a hyperlink, you can also use the Ctrl+K key combination or 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. Note: it's also possible to select a character, word or word combination with the mouse or using the keyboard and then open the Hyperlink Settings window as described above. In this case, the Display field will be 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. To edit or delete the added hyperlink, click it with the right mouse button, select the Hyperlink option in the right-click menu and then the action you want to perform - Edit Hyperlink or Remove Hyperlink." }, { "id": "UsageInstructions/AlignArrangeObjects.htm", @@ -93,32 +98,32 @@ var indexes = { "id": "UsageInstructions/CopyPasteUndoRedo.htm", "title": "Copy/paste data, undo/redo your actions", - "body": "Use basic clipboard operations 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 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. Paste – find the place in your presentation where you need to paste the previously copied object and use the Paste option from the right-click menu or the Paste icon at the top toolbar. The object will be inserted at the current cursor position. The object can be previously copied from the same presentation. In the online version, the following key combinations are only used to copy or paste data from/into another presentation or some other program, in the desktop version, both the corresponding buttons/menu options and key combinations can be used for any copy/paste operations: Ctrl+C key combination for copying; Ctrl+V key combination for pasting; Ctrl+X key combination for cutting. Use the Paste Special feature Once the copied data is pasted, the Paste Special button appears next to the inserted text passage/object. Click this button to select the necessary paste option. When pasting text passages, the following options are available: Use destination theme - allows to apply the formatting specified by the theme of the current presentation. This option is used by default. Keep source formatting - allows to keep the source formatting of the copied text. Picture - allows to paste the text as an image so that it cannot be edited. Keep text only - allows to paste the text without its original formatting. When pasting objects (autoshapes, charts, tables) the following options are available: Use destination theme - allows to apply the formatting specified by the theme of the current presentation. This option is used by default. Picture - allows to paste the object as an image so that it cannot be edited. Use the Undo/Redo operations To perform the undo/redo operations, use the corresponding icons in the left part of the editor header or keyboard shortcuts: Undo – use the Undo icon to undo the last operation you performed. Redo – use the Redo icon to redo the last undone operation. You can also use the Ctrl+Z key combination for undoing or Ctrl+Y for redoing. Note: when you co-edit a presentation in the Fast mode, the possibility to Redo the last undone operation is not available." + "body": "Use basic clipboard operations 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 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. Paste – find the place in your presentation where you need to paste the previously copied object and use the Paste option from the right-click menu or the Paste icon at the top toolbar. The object will be inserted at the current cursor position. The object can be previously copied from the same presentation. In the online version, the following key combinations are only used to copy or paste data from/into another presentation or some other program, in the desktop version, both the corresponding buttons/menu options and key combinations can be used for any copy/paste operations: Ctrl+C key combination for copying; Ctrl+V key combination for pasting; Ctrl+X key combination for cutting. Use the Paste Special feature Once the copied data is pasted, the Paste Special button appears next to the inserted text passage/object. Click this button to select the necessary paste option. When pasting text passages, the following options are available: Use destination theme - allows to apply the formatting specified by the theme of the current presentation. This option is used by default. Keep source formatting - allows to keep the source formatting of the copied text. Picture - allows to paste the text as an image so that it cannot be edited. Keep text only - allows to paste the text without its original formatting. When pasting objects (autoshapes, charts, tables) the following options are available: Use destination theme - allows to apply the formatting specified by the theme of the current presentation. This option is used by default. Picture - allows to paste the object as an image so that it cannot be edited. To enable / disable the automatic appearance of the Paste Special button after pasting, go to the File tab > Advanced Settings... and check / uncheck the Cut, copy and paste checkbox.

          Use the Undo/Redo operations To perform the undo/redo operations, use the corresponding icons in the left part of the editor header or keyboard shortcuts: Undo – use the Undo icon to undo the last operation you performed. Redo – use the Redo icon to redo the last undone operation. You can also use the Ctrl+Z key combination for undoing or Ctrl+Y for redoing. Note: when you co-edit a presentation in the Fast mode, the possibility to Redo the last undone operation is not available." }, { "id": "UsageInstructions/CreateLists.htm", "title": "Create lists", - "body": "To create a list in your document, place the cursor to the position where a list will be started (this can be a new line or the already entered text), switch to the Home tab of the top toolbar, select the list type you would like to start: Unordered list with markers is created using the Bullets icon situated at the top toolbar Ordered list with digits or letters is created using the Numbering icon situated at the top toolbar Note: click the downward arrow next to the Bullets or Numbering icon to select how the list is going to look like. 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 Decrease indent , and Increase indent 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 Insert and format your text section. Change the list settings To change the bulleted or numbered list settings, such as a bullet type, size and color: click an existing list item or select the text you want to format as a list, click the Bullets or Numbering icon at the Home tab of the top toolbar, select the List Settings option, the List Settings window will open. The bulleted list settings window looks like this: The numbered list settings window looks like this: For the bulleted list, you can choose a character used as a bullet, while for the numbered list you can choose what number the list Starts at. The Size and Color options are the same both for the bulleted and numbered lists. Size - allows to select the necessary bullet/number size depending on the current size of the text. It can take a value from 25% to 400%. Color - allows to select the necessary bullet/number color. You can select one of the theme colors, or standard colors on the palette, or specify a custom color. Bullet - allows to select the necessary character used for the bulleted list. When you click on the Bullet field, the Symbol window opens that allows to choose one of the available characters. To learn more on how to work with symbols, you can refer to this article. Start at - allows to select the nesessary sequence number a numbered list starts from. click OK to apply the changes and close the settings window." + "body": "To create a list in your document, place the cursor to the position where a list will be started (this can be a new line or the already entered text), switch to the Home tab of the top toolbar, select the list type you would like to start: Unordered list with markers is created using the Bullets icon situated at the top toolbar Ordered list with digits or letters is created using the Numbering icon situated at the top toolbar Note: click the downward arrow next to the Bullets or Numbering icon to select how the list is going to look like. 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 Decrease indent , and Increase indent 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 Insert and format your text section. Change the list settings To change the bulleted or numbered list settings, such as a bullet type, size and color: click an existing list item or select the text you want to format as a list, click the Bullets or Numbering icon at the Home tab of the top toolbar, select the List Settings option, the List Settings window will open. The bulleted list settings window looks like this: The numbered list settings window looks like this: For the bulleted list, you can choose a character used as a bullet, while for the numbered list you can choose what number the list Starts at. The Size and Color options are the same both for the bulleted and numbered lists. Size - allows to select the necessary bullet/number size depending on the current size of the text. It can take a value from 25% to 400%. Color - allows to select the necessary bullet/number color. You can select one of the theme colors, or standard colors on the palette, or specify a custom color. Type - allows to select the necessary character used for the list. When you click on the field, a drop-down list opens that allows to choose one of the available options. For Bulleted lists, you can also add a new symbol. To learn more on how to work with symbols, you can refer to this article. Start at - allows to select the nesessary sequence number a numbered list starts from. click OK to apply the changes and close the settings window." }, { "id": "UsageInstructions/FillObjectsSelectColor.htm", "title": "Fill objects and select colors", - "body": "You can apply different fills for the slide, autoshape and Text Art font background. Select an object To change the slide background fill, select the necessary slides in the slide list. The Slide settings tab will be activated at the the right sidebar. To change the autoshape fill, left-click the necessary autoshape. The 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 tab will be activated at the the right sidebar. Set the necessary fill type Adjust the selected fill properties (see the detailed description below for each fill type) Note: for the autoshapes and Text Art font, regardless of the selected fill type, you can also set an Opacity level dragging the slider or entering the percent value manually. The default value is 100%. It corresponds to the full opacity. The 0% value corresponds to the full transparency. The following fill types are available: Color Fill - select this option to specify the solid color you want to fill the inner space of the selected shape/slide with. Click on the colored box below and select the necessary color from the available color sets or specify any color you like: Theme Colors - the colors that correspond to the selected theme/color scheme of the presentation. Once you apply a different theme or color scheme, the Theme Colors set will change. Standard Colors - the default colors set. Custom Color - click on this caption if there is no needed color in the available palettes. Select the necessary colors range moving the vertical color slider and set the specific color dragging the color picker within the large square color field. Once you select a color with the color picker, the appropriate RGB and sRGB color values will be displayed in the fields on the right. You can also specify a color on the base of the RGB color model entering the necessary numeric values into the R, G, B (Red, Green, Blue) fields or enter the sRGB hexadecimal code into the field marked with the # sign. The selected color appears in the New preview box. If the object was previously filled with any custom color, this color is displayed in the Current box so you can compare the original and modified colors. When the color is specified, click the Add button: The custom color will be applied to your object and added to the Custom color palette of the menu. Note: just the same color types you can use when selecting the color of the autoshape stroke, adjusting the font color, or changing the table background or border color. Gradient Fill - select this option to fill the slide/shape with two colors which smoothly change from one to another. Style - choose one of the available options: Linear (colors change in a straight line i.e. along a horizontal/vertical axis or diagonally at a 45 degree angle) or Radial (colors change in a circular path from the center to the edges). Direction - choose a template from the menu. If the Linear gradient is selected, the following directions are available : top-left to bottom-right, top to bottom, top-right to bottom-left, right to left, bottom-right to top-left, bottom to top, bottom-left to top-right, left to right. If the Radial gradient is selected, only one template is available. Gradient - click on the left slider under the gradient bar to activate the color box which corresponds to the first color. Click on the color box on the right to choose the first color in the palette. Drag the slider to set the gradient stop i.e. the point where one color changes into another. Use the right slider under the gradient bar to specify the second color and set the gradient stop. Picture or Texture - select this option to use an image or a predefined texture as the shape/slide background. If you wish to use an image as a backgroung for the shape/slide, you can add an image From File selecting it on your computer HDD or From URL inserting the appropriate URL address in the opened window. If you wish to use a texture as a backgroung for the shape/slide, drop-down the From Texture menu and select the necessary texture preset. Currently, the following textures are available: Canvas, Carton, Dark Fabric, Grain, Granite, Grey Paper, Knit, Leather, Brown Paper, Papyrus, Wood. In case the selected Picture has less or more dimensions than the autoshape or slide has, you can choose the Stretch or Tile setting from the drop-down list. The Stretch option allows to adjust the image size to fit the slide or autoshape size so that it could fill the space completely. The Tile option allows to display only a part of the bigger image keeping its original dimensions, or repeat the smaller image keeping its original dimensions over the slide or autoshape surface so that it could fill the space completely. Note: any selected Texture preset fills the space completely, but you can apply the Stretch effect if necessary. Pattern - select this option to fill the slide/shape with a two-colored design composed of regularly repeated elements. Pattern - select one of the predefined designs from the menu. Foreground color - click this color box to change the color of the pattern elements. Background color - click this color box to change the color of the pattern background. No Fill - select this option if you don't want to use any fill." + "body": "You can apply different fills for the slide, autoshape and Text Art font background. Select an object To change the slide background fill, select the necessary slides in the slide list. The Slide settings tab will be activated at the the right sidebar. To change the autoshape fill, left-click the necessary autoshape. The 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 tab will be activated at the the right sidebar. Set the necessary fill type Adjust the selected fill properties (see the detailed description below for each fill type) Note: for the autoshapes and Text Art font, regardless of the selected fill type, you can also set an Opacity level dragging the slider or entering the percent value manually. The default value is 100%. It corresponds to the full opacity. The 0% value corresponds to the full transparency. The following fill types are available: Color Fill - select this option to specify the solid color you want to fill the inner space of the selected shape/slide with. Click on the colored box below and select the necessary color from the available color sets or specify any color you like: Theme Colors - the colors that correspond to the selected theme/color scheme of the presentation. Once you apply a different theme or color scheme, the Theme Colors set will change. Standard Colors - the default colors set. Custom Color - click on this caption if there is no needed color in the available palettes. Select the necessary colors range moving the vertical color slider and set the specific color dragging the color picker within the large square color field. Once you select a color with the color picker, the appropriate RGB and sRGB color values will be displayed in the fields on the right. You can also specify a color on the base of the RGB color model entering the necessary numeric values into the R, G, B (Red, Green, Blue) fields or enter the sRGB hexadecimal code into the field marked with the # sign. The selected color appears in the New preview box. If the object was previously filled with any custom color, this color is displayed in the Current box so you can compare the original and modified colors. When the color is specified, click the Add button: The custom color will be applied to your object and added to the Custom color palette of the menu. Note: just the same color types you can use when selecting the color of the autoshape stroke, adjusting the font color, or changing the table background or border color. Gradient Fill - select this option to fill the slide/shape with two colors which smoothly change from one to another. Style - choose one of the available options: Linear (colors change in a straight line i.e. along a horizontal/vertical axis or diagonally at a 45 degree angle) or Radial (colors change in a circular path from the center to the edges). Direction - choose a template from the menu. If the Linear gradient is selected, the following directions are available : top-left to bottom-right, top to bottom, top-right to bottom-left, right to left, bottom-right to top-left, bottom to top, bottom-left to top-right, left to right. If the Radial gradient is selected, only one template is available. Gradient - click on the left slider under the gradient bar to activate the color box which corresponds to the first color. Click on the color box on the right to choose the first color in the palette. Drag the slider to set the gradient stop i.e. the point where one color changes into another. Use the right slider under the gradient bar to specify the second color and set the gradient stop. Picture or Texture - select this option to use an image or a predefined texture as the shape/slide background. If you wish to use an image as a backgroung for the shape/slide, you can add an image From File by selecting it on your computer hard disc drive, From URL by inserting the appropriate URL address into the opened window, or From Storage by selecting the required image stored on your portal. If you wish to use a texture as a backgroung for the shape/slide, drop-down the From Texture menu and select the necessary texture preset. Currently, the following textures are available: Canvas, Carton, Dark Fabric, Grain, Granite, Grey Paper, Knit, Leather, Brown Paper, Papyrus, Wood. In case the selected Picture has less or more dimensions than the autoshape or slide has, you can choose the Stretch or Tile setting from the drop-down list. The Stretch option allows to adjust the image size to fit the slide or autoshape size so that it could fill the space completely. The Tile option allows to display only a part of the bigger image keeping its original dimensions, or repeat the smaller image keeping its original dimensions over the slide or autoshape surface so that it could fill the space completely. Note: any selected Texture preset fills the space completely, but you can apply the Stretch effect if necessary. Pattern - select this option to fill the slide/shape with a two-colored design composed of regularly repeated elements. Pattern - select one of the predefined designs from the menu. Foreground color - click this color box to change the color of the pattern elements. Background color - click this color box to change the color of the pattern background. No Fill - select this option if you don't want to use any fill." }, { "id": "UsageInstructions/InsertAutoshapes.htm", "title": "Insert and format autoshapes", - "body": "Insert an autoshape To add an autoshape on a slide, in the slide list on the left, select the slide you want to add the autoshape to, click the Shape icon at the Home or Insert tab of the top toolbar, select one of the available autoshape groups: Basic Shapes, Figured Arrows, Math, Charts, Stars & Ribbons, Callouts, Buttons, Rectangles, Lines, click on the necessary autoshape within the selected group, in the slide editing area, place the mouse cursor where you want the shape to be put, Note: you can click and drag to stretch the shape. once the autoshape is added you can change its size, position and properties. Note: to add a caption within the autoshape make sure the shape is selected on the slide and start typing your text. The text you add in this way becomes a part of the autoshape (when you move or rotate the shape, the text moves or rotates with it). It's also possible to add an autoshape to a slide layout. To learn more, please refer to this article. 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 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: Color Fill - to specify the solid color you want to apply to the selected shape. Gradient Fill - to fill the shape with two colors which smoothly change from one to another. Picture or Texture - to use an image or a predefined texture as the shape background. Pattern - to fill the shape with a two-colored design composed of regularly repeated elements. No Fill - select this option if you don't want to use any fill. For more detailed information on these options please refer to the Fill objects and select colors section. Stroke - use this section to change the autoshape stroke width, color or type. To change the stroke width, select one of the available options from the Size drop-down list. The available options are: 0.5 pt, 1 pt, 1.5 pt, 2.25 pt, 3 pt, 4.5 pt, 6 pt. Or select the No Line option if you don't want to use any stroke. To change the stroke color, click on the colored box below and select the necessary color. You can use the selected theme color, a standard color or choose a custom color. To change the stroke type, select the necessary option from the corresponding dropdown list (a solid line is applied by default, you can change it to one of the available dashed lines). Rotation is used to rotate the shape by 90 degrees clockwise or counterclockwise as well as to flip the shape horizontally or vertically. Click one of the buttons: to rotate the shape by 90 degrees counterclockwise to rotate the shape by 90 degrees clockwise to flip the shape horizontally (left to right) to flip the shape vertically (upside down) Change Autoshape - use this section to replace the current autoshape with another one selected from the dropdown list. Show shadow - check this option to display shape with shadow. 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: The Size tab allows to change the autoshape Width and/or Height. If the Constant proportions button is clicked (in this case it looks like this ), the width and height will be changed together preserving the original autoshape aspect ratio. The Rotation tab contains the following parameters: Angle - use this option to rotate the shape by an exactly specified angle. Enter the necessary value measured in degrees into the field or adjust it using the arrows on the right. Flipped - check the Horizontally box to flip the shape horizontally (left to right) or check the Vertically box to flip the shape vertically (upside down). The Weights & Arrows tab contains the following parameters: Line Style - this option group allows to specify the following parameters: Cap Type - this option allows to set the style for the end of the line, therefore it can be applied only to the shapes with the open outline, such as lines, polylines etc.: Flat - the end points will be flat. Round - the end points will be rounded. Square - the end points will be square. Join Type - this option allows to set the style for the intersection of two lines, for example, it can affect a polyline or the corners of the triangle or rectangle outline: Round - the corner will be rounded. Bevel - the corner will be cut off angularly. Miter - the corner will be pointed. It goes well to shapes with sharp angles. Note: the effect will be more noticeable if you use a large outline width. Arrows - this option group is available if a shape from the Lines shape group is selected. It allows to set the arrow Start and End Style and Size by selecting the appropriate option from the drop-down lists. The Text Padding tab allows to change the autoshape Top, Bottom, Left and Right internal margins (i.e. the distance between the text within the shape and the autoshape borders). Note: this tab is only available if text is added within the autoshape, otherwise the tab is disabled. The Columns tab allows to add columns of text within the autoshape specifying the necessary Number of columns (up to 16) and Spacing between columns. Once you click OK, the text that already exists or any other text you enter within the autoshape will appear in columns and will flow from one column to another. 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 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, click the Shape icon at the Home or Insert tab of the top toolbar, select the Lines group from the menu, click the necessary shape within the selected group (excepting the last three shapes which are not connectors, namely Curve, Scribble and Freeform), hover the mouse cursor over the first autoshape and click one of the connection points that appear on the shape outline, drag the mouse cursor towards the second autoshape and click the necessary connection point on its outline. If you move the joined autoshapes, the connector remains attached to the shapes and moves together with them. You can also detach the connector from the shapes and then attach it to any other connection points." + "body": "Insert an autoshape To add an autoshape on a slide, in the slide list on the left, select the slide you want to add the autoshape to, click the Shape icon at the Home or Insert tab of the top toolbar, select one of the available autoshape groups: Basic Shapes, Figured Arrows, Math, Charts, Stars & Ribbons, Callouts, Buttons, Rectangles, Lines, click on the necessary autoshape within the selected group, in the slide editing area, place the mouse cursor where you want the shape to be put, Note: you can click and drag to stretch the shape. once the autoshape is added you can change its size, position and properties. Note: to add a caption within the autoshape make sure the shape is selected on the slide and start typing your text. The text you add in this way becomes a part of the autoshape (when you move or rotate the shape, the text moves or rotates with it). It's also possible to add an autoshape to a slide layout. To learn more, please refer to this article. 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 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: Color Fill - to specify the solid color you want to apply to the selected shape. Gradient Fill - to fill the shape with two colors which smoothly change from one to another. Picture or Texture - to use an image or a predefined texture as the shape background. Pattern - to fill the shape with a two-colored design composed of regularly repeated elements. No Fill - select this option if you don't want to use any fill. For more detailed information on these options please refer to the Fill objects and select colors section. Stroke - use this section to change the autoshape stroke width, color or type. To change the stroke width, select one of the available options from the Size drop-down list. The available options are: 0.5 pt, 1 pt, 1.5 pt, 2.25 pt, 3 pt, 4.5 pt, 6 pt. Or select the No Line option if you don't want to use any stroke. To change the stroke color, click on the colored box below and select the necessary color. You can use the selected theme color, a standard color or choose a custom color. To change the stroke type, select the necessary option from the corresponding dropdown list (a solid line is applied by default, you can change it to one of the available dashed lines). Rotation is used to rotate the shape by 90 degrees clockwise or counterclockwise as well as to flip the shape horizontally or vertically. Click one of the buttons: to rotate the shape by 90 degrees counterclockwise to rotate the shape by 90 degrees clockwise to flip the shape horizontally (left to right) to flip the shape vertically (upside down) Change Autoshape - use this section to replace the current autoshape with another one selected from the dropdown list. Show shadow - check this option to display shape with shadow. 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: The Size tab allows to change the autoshape Width and/or Height. If the Constant proportions button is clicked (in this case it looks like this ), the width and height will be changed together preserving the original autoshape aspect ratio. The Rotation tab contains the following parameters: Angle - use this option to rotate the shape by an exactly specified angle. Enter the necessary value measured in degrees into the field or adjust it using the arrows on the right. Flipped - check the Horizontally box to flip the shape horizontally (left to right) or check the Vertically box to flip the shape vertically (upside down). The Weights & Arrows tab contains the following parameters: Line Style - this option group allows to specify the following parameters: Cap Type - this option allows to set the style for the end of the line, therefore it can be applied only to the shapes with the open outline, such as lines, polylines etc.: Flat - the end points will be flat. Round - the end points will be rounded. Square - the end points will be square. Join Type - this option allows to set the style for the intersection of two lines, for example, it can affect a polyline or the corners of the triangle or rectangle outline: Round - the corner will be rounded. Bevel - the corner will be cut off angularly. Miter - the corner will be pointed. It goes well to shapes with sharp angles. Note: the effect will be more noticeable if you use a large outline width. Arrows - this option group is available if a shape from the Lines shape group is selected. It allows to set the arrow Start and End Style and Size by selecting the appropriate option from the drop-down lists. The Text Box tab allows you to Not Autofit text at all, Shrink text on overflow, Resize shape to fit text or change the autoshape Top, Bottom, Left and Right internal margins (i.e. the distance between the text within the shape and the autoshape borders). Note: this tab is only available if text is added within the autoshape, otherwise the tab is disabled. The Columns tab allows to add columns of text within the autoshape specifying the necessary Number of columns (up to 16) and Spacing between columns. Once you click OK, the text that already exists or any other text you enter within the autoshape will appear in columns and will flow from one column to another. 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 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, click the Shape icon at the Home or Insert tab of the top toolbar, select the Lines group from the menu, click the necessary shape within the selected group (excepting the last three shapes which are not connectors, namely Curve, Scribble and Freeform), hover the mouse cursor over the first autoshape and click one of the connection points that appear on the shape outline, drag the mouse cursor towards the second autoshape and click the necessary connection point on its outline. If you move the joined autoshapes, the connector remains attached to the shapes and moves together with them. You can also detach the connector from the shapes and then attach it to any other connection points." }, { "id": "UsageInstructions/InsertCharts.htm", "title": "Insert and edit charts", - "body": "Insert a chart To insert a chart into your presentation, put the cursor at the place where you want to add a chart, switch to the Insert tab of the top toolbar, click the Chart icon at the top toolbar, 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. after that the Chart Editor window will appear where you can enter the necessary data into the cells using the following controls: and for copying and pasting the copied data and for undoing and redoing actions for inserting a function and for decreasing and increasing decimal places for changing the number format, i.e. the way the numbers you enter appear in cells change the chart settings clicking the Edit Chart button situated in the Chart Editor window. The Chart - Advanced Settings window will open. The Type & Data tab allows you to select the chart type as well as the data you wish to use to create a chart. Select a chart Type you wish to insert: Column, Line, Pie, Bar, Area, XY (Scatter), Stock. Check the selected Data Range and modify it, if necessary, clicking the Select Data button and entering the desired data range in the following format: Sheet1!A1:B4. Choose the way to arrange the data. You can either select the Data series to be used on the X axis: in rows or in columns. The Layout tab allows you to change the layout of chart elements. Specify the Chart Title position in regard to your chart selecting the necessary option from the drop-down list: None to not display a chart title, Overlay to overlay and center a title on the plot area, No Overlay to display the title above the plot area. Specify the Legend position in regard to your chart selecting the necessary option from the drop-down list: None to not display a legend, Bottom to display the legend and align it to the bottom of the plot area, Top to display the legend and align it to the top of the plot area, Right to display the legend and align it to the right of the plot area, Left to display the legend and align it to the left of the plot area, Left Overlay to overlay and center the legend to the left on the plot area, Right Overlay to overlay and center the legend to the right on the plot area. Specify the Data Labels (i.e. text labels that represent exact values of data points) parameters: specify the Data Labels position relative to the data points selecting the necessary option from the drop-down list. The available options vary depending on the selected chart type. For Column/Bar charts, you can choose the following options: None, Center, Inner Bottom, Inner Top, Outer Top. For Line/XY (Scatter)/Stock charts, you can choose the following options: None, Center, Left, Right, Top, Bottom. For Pie charts, you can choose the following options: None, Center, Fit to Width, Inner Top, Outer Top. For Area charts as well as for 3D Column, Line and Bar charts, you can choose the following options: None, Center. select the data you wish to include into your labels checking the corresponding boxes: Series Name, Category Name, Value, enter a character (comma, semicolon etc.) you wish to use for separating several labels into the Data Labels Separator entry field. Lines - is used to choose a line style for Line/XY (Scatter) charts. You can choose one of the following options: Straight to use straight lines between data points, Smooth to use smooth curves between data points, or None to not display lines. Markers - is used to specify whether the markers should be displayed (if the box is checked) or not (if the box is unchecked) for Line/XY (Scatter) charts. Note: the Lines and Markers options are available for Line charts and XY (Scatter) charts only. The Axis Settings section allows to specify if you wish to display Horizontal/Vertical Axis or not selecting the Show or Hide option from the drop-down list. You can also specify Horizontal/Vertical Axis Title parameters: Specify if you wish to display the Horizontal Axis Title or not selecting the necessary option from the drop-down list: None to not display a horizontal axis title, No Overlay to display the title below the horizontal axis. Specify the Vertical Axis Title orientation selecting the necessary option from the drop-down list: None to not display a vertical axis title, Rotated to display the title from bottom to top to the left of the vertical axis, Horizontal to display the title horizontally to the left of the vertical axis. The Gridlines section allows to specify which of the Horizontal/Vertical Gridlines you wish to display selecting the necessary option from the drop-down list: Major, Minor, or Major and Minor. You can hide the gridlines at all using the None option. Note: the Axis Settings and Gridlines sections will be disabled for Pie charts since charts of this type have no axes and gridlines. Note: the Vertical/Horizontal Axis tabs will be disabled for Pie charts since charts of this type have no axes. The Vertical Axis tab allows you to change the parameters of the vertical axis also referred to as the values axis or y-axis which displays numeric values. Note that the vertical axis will be the category axis which displays text labels for the Bar charts, therefore in this case the Vertical Axis tab options will correspond to the ones described in the next section. For the XY (Scatter) charts, both axes are value axes. The Axis Options section allows to set the following parameters: Minimum Value - is used to specify a lowest value displayed at the vertical axis start. The Auto option is selected by default, in this case the minimum value is calculated automatically depending on the selected data range. You can select the Fixed option from the drop-down list and specify a different value in the entry field on the right. Maximum Value - is used to specify a highest value displayed at the vertical axis end. The Auto option is selected by default, in this case the maximum value is calculated automatically depending on the selected data range. You can select the Fixed option from the drop-down list and specify a different value in the entry field on the right. Axis Crosses - is used to specify a point on the vertical axis where the horizontal axis should cross it. The Auto option is selected by default, in this case the axes intersection point value is calculated automatically depending on the selected data range. You can select the Value option from the drop-down list and specify a different value in the entry field on the right, or set the axes intersection point at the Minimum/Maximum Value on the vertical axis. Display Units - is used to determine a representation of the numeric values along the vertical axis. This option can be useful if you're working with great numbers and wish the values on the axis to be displayed in more compact and readable way (e.g. you can represent 50 000 as 50 by using the Thousands display units). Select desired units from the drop-down list: Hundreds, Thousands, 10 000, 100 000, Millions, 10 000 000, 100 000 000, Billions, Trillions, or choose the None option to return to the default units. Values in reverse order - is used to display values in an opposite direction. When the box is unchecked, the lowest value is at the bottom and the highest value is at the top of the axis. When the box is checked, the values are ordered from top to bottom. The Tick Options section allows to adjust the appearance of tick marks on the vertical scale. Major tick marks are the larger scale divisions which can have labels displaying numeric values. Minor tick marks are the scale subdivisions which are placed between the major tick marks and have no labels. Tick marks also define where gridlines can be displayed, if the corresponding option is set at the Layout tab. The Major/Minor Type drop-down lists contain the following placement options: None to not display major/minor tick marks, Cross to display major/minor tick marks on both sides of the axis, In to display major/minor tick marks inside the axis, Out to display major/minor tick marks outside the axis. The Label Options section allows to adjust the appearance of major tick mark labels which display values. To specify a Label Position in regard to the vertical axis, select the necessary option from the drop-down list: None to not display tick mark labels, Low to display tick mark labels to the left of the plot area, High to display tick mark labels to the right of the plot area, Next to axis to display tick mark labels next to the axis. The Horizontal Axis tab allows you to change the parameters of the horizontal axis also referred to as the categories axis or x-axis which displays text labels. Note that the horizontal axis will be the value axis which displays numeric values for the Bar charts, therefore in this case the Horizontal Axis tab options will correspond to the ones described in the previous section. For the XY (Scatter) charts, both axes are value axes. The Axis Options section allows to set the following parameters: Axis Crosses - is used to specify a point on the horizontal axis where the vertical axis should cross it. The Auto option is selected by default, in this case the axes intersection point value is calculated automatically depending on the selected data range. You can select the Value option from the drop-down list and specify a different value in the entry field on the right, or set the axes intersection point at the Minimum/Maximum Value (that corresponds to the first and last category) on the horizontal axis. Axis Position - is used to specify where the axis text labels should be placed: On Tick Marks or Between Tick Marks. Values in reverse order - is used to display categories in an opposite direction. When the box is unchecked, categories are displayed from left to right. When the box is checked, the categories are ordered from right to left. The Tick Options section allows to adjust the appearance of tick marks on the horizontal scale. Major tick marks are the larger divisions which can have labels displaying category values. Minor tick marks are the smaller divisions which are placed between the major tick marks and have no labels. Tick marks also define where gridlines can be displayed, if the corresponding option is set at the Layout tab. You can adjust the following tick mark parameters: Major/Minor Type - is used to specify the following placement options: None to not display major/minor tick marks, Cross to display major/minor tick marks on both sides of the axis, In to display major/minor tick marks inside the axis, Out to display major/minor tick marks outside the axis. Interval between Marks - is used to specify how many categories should be displayed between two adjacent tick marks. The Label Options section allows to adjust the appearance of labels which display categories. Label Position - is used to specify where the labels should be placed in regard to the horizontal axis. Select the necessary option from the drop-down list: None to not display category labels, Low to display category labels at the bottom of the plot area, High to display category labels at the top of the plot area, Next to axis to display category labels next to the axis. Axis Label Distance - is used to specify how closely the labels should be placed to the axis. You can specify the necessary value in the entry field. The more the value you set, the more the distance between the axis and labels is. Interval between Labels - is used to specify how often the labels should be displayed. The Auto option is selected by default, in this case labels are displayed for every category. You can select the Manual option from the drop-down list and specify the necessary value in the entry field on the right. For example, enter 2 to display labels for every other category etc. 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 chart. once the chart is added you can also change its size and position. You can specify the chart position on the slide dragging it vertically or horizontally. You can also add a chart into a text placeholder pressing the Chart icon within it and selecting the necessary chart type: It's also possible to add a chart to a slide layout. To learn more, please refer to this article. 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 at the Home tab of the top toolbar to change the font type, style, size, or color. When the chart is selected, the Shape settings 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. Using the Shape Settings tab at the right panel you can not only adjust the chart area itself, but also change the chart elements, such as plot area, data series, chart title, legend etc and apply different fill types to them. Select the chart element clicking it with the left mouse button and choose the preferred fill type: solid color, gradient, texture or picture, pattern. Specify the fill parameters and set the Opacity level if necessary. When you select a vertical or horizontal axis or gridlines, the stroke settings are only available at the Shape Settings tab: color, width and type. For more details on how to work with shape colors, fills and stroke, you can refer to this page. Note: the Show shadow option is also available at the Shape settings tab, but it is disabled for chart elements. 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. Drag the cursor without releasing the mouse button to change the 3D chart orientation. Adjust chart settings 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 icon on the right. The Size section allows you to change the chart width and/or height. If the Constant proportions button is clicked (in this case it looks like this ), 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. The Show advanced settings option at the right sidebar allows to open the Chart - Advanced Settings window where you can set the alternative text: 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." + "body": "Insert a chart To insert a chart into your presentation, put the cursor at the place where you want to add a chart, switch to the Insert tab of the top toolbar, click the Chart icon at the top toolbar, 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. after that the Chart Editor window will appear where you can enter the necessary data into the cells using the following controls: and for copying and pasting the copied data and for undoing and redoing actions for inserting a function and for decreasing and increasing decimal places for changing the number format, i.e. the way the numbers you enter appear in cells change the chart settings clicking the Edit Chart button situated in the Chart Editor window. The Chart - Advanced Settings window will open. The Type & Data tab allows you to select the chart type as well as the data you wish to use to create a chart. Select a chart Type you wish to insert: Column, Line, Pie, Bar, Area, XY (Scatter), Stock. Check the selected Data Range and modify it, if necessary. To do that, click the icon. In the Select Data Range window, enter the necessary data range in the following format: Sheet1!$A$1:$E$10. You can also select the necessary cell range in the sheet using the mouse. When ready, click OK. Choose the way to arrange the data. You can either select the Data series to be used on the X axis: in rows or in columns. The Layout tab allows you to change the layout of chart elements. Specify the Chart Title position in regard to your chart selecting the necessary option from the drop-down list: None to not display a chart title, Overlay to overlay and center a title on the plot area, No Overlay to display the title above the plot area. Specify the Legend position in regard to your chart selecting the necessary option from the drop-down list: None to not display a legend, Bottom to display the legend and align it to the bottom of the plot area, Top to display the legend and align it to the top of the plot area, Right to display the legend and align it to the right of the plot area, Left to display the legend and align it to the left of the plot area, Left Overlay to overlay and center the legend to the left on the plot area, Right Overlay to overlay and center the legend to the right on the plot area. Specify the Data Labels (i.e. text labels that represent exact values of data points) parameters: specify the Data Labels position relative to the data points selecting the necessary option from the drop-down list. The available options vary depending on the selected chart type. For Column/Bar charts, you can choose the following options: None, Center, Inner Bottom, Inner Top, Outer Top. For Line/XY (Scatter)/Stock charts, you can choose the following options: None, Center, Left, Right, Top, Bottom. For Pie charts, you can choose the following options: None, Center, Fit to Width, Inner Top, Outer Top. For Area charts as well as for 3D Column, Line and Bar charts, you can choose the following options: None, Center. select the data you wish to include into your labels checking the corresponding boxes: Series Name, Category Name, Value, enter a character (comma, semicolon etc.) you wish to use for separating several labels into the Data Labels Separator entry field. Lines - is used to choose a line style for Line/XY (Scatter) charts. You can choose one of the following options: Straight to use straight lines between data points, Smooth to use smooth curves between data points, or None to not display lines. Markers - is used to specify whether the markers should be displayed (if the box is checked) or not (if the box is unchecked) for Line/XY (Scatter) charts. Note: the Lines and Markers options are available for Line charts and XY (Scatter) charts only. The Axis Settings section allows to specify if you wish to display Horizontal/Vertical Axis or not selecting the Show or Hide option from the drop-down list. You can also specify Horizontal/Vertical Axis Title parameters: Specify if you wish to display the Horizontal Axis Title or not selecting the necessary option from the drop-down list: None to not display a horizontal axis title, No Overlay to display the title below the horizontal axis. Specify the Vertical Axis Title orientation selecting the necessary option from the drop-down list: None to not display a vertical axis title, Rotated to display the title from bottom to top to the left of the vertical axis, Horizontal to display the title horizontally to the left of the vertical axis. The Gridlines section allows to specify which of the Horizontal/Vertical Gridlines you wish to display selecting the necessary option from the drop-down list: Major, Minor, or Major and Minor. You can hide the gridlines at all using the None option. Note: the Axis Settings and Gridlines sections will be disabled for Pie charts since charts of this type have no axes and gridlines. Note: the Vertical/Horizontal Axis tabs will be disabled for Pie charts since charts of this type have no axes. The Vertical Axis tab allows you to change the parameters of the vertical axis also referred to as the values axis or y-axis which displays numeric values. Note that the vertical axis will be the category axis which displays text labels for the Bar charts, therefore in this case the Vertical Axis tab options will correspond to the ones described in the next section. For the XY (Scatter) charts, both axes are value axes. The Axis Options section allows to set the following parameters: Minimum Value - is used to specify a lowest value displayed at the vertical axis start. The Auto option is selected by default, in this case the minimum value is calculated automatically depending on the selected data range. You can select the Fixed option from the drop-down list and specify a different value in the entry field on the right. Maximum Value - is used to specify a highest value displayed at the vertical axis end. The Auto option is selected by default, in this case the maximum value is calculated automatically depending on the selected data range. You can select the Fixed option from the drop-down list and specify a different value in the entry field on the right. Axis Crosses - is used to specify a point on the vertical axis where the horizontal axis should cross it. The Auto option is selected by default, in this case the axes intersection point value is calculated automatically depending on the selected data range. You can select the Value option from the drop-down list and specify a different value in the entry field on the right, or set the axes intersection point at the Minimum/Maximum Value on the vertical axis. Display Units - is used to determine a representation of the numeric values along the vertical axis. This option can be useful if you're working with great numbers and wish the values on the axis to be displayed in more compact and readable way (e.g. you can represent 50 000 as 50 by using the Thousands display units). Select desired units from the drop-down list: Hundreds, Thousands, 10 000, 100 000, Millions, 10 000 000, 100 000 000, Billions, Trillions, or choose the None option to return to the default units. Values in reverse order - is used to display values in an opposite direction. When the box is unchecked, the lowest value is at the bottom and the highest value is at the top of the axis. When the box is checked, the values are ordered from top to bottom. The Tick Options section allows to adjust the appearance of tick marks on the vertical scale. Major tick marks are the larger scale divisions which can have labels displaying numeric values. Minor tick marks are the scale subdivisions which are placed between the major tick marks and have no labels. Tick marks also define where gridlines can be displayed, if the corresponding option is set at the Layout tab. The Major/Minor Type drop-down lists contain the following placement options: None to not display major/minor tick marks, Cross to display major/minor tick marks on both sides of the axis, In to display major/minor tick marks inside the axis, Out to display major/minor tick marks outside the axis. The Label Options section allows to adjust the appearance of major tick mark labels which display values. To specify a Label Position in regard to the vertical axis, select the necessary option from the drop-down list: None to not display tick mark labels, Low to display tick mark labels to the left of the plot area, High to display tick mark labels to the right of the plot area, Next to axis to display tick mark labels next to the axis. The Horizontal Axis tab allows you to change the parameters of the horizontal axis also referred to as the categories axis or x-axis which displays text labels. Note that the horizontal axis will be the value axis which displays numeric values for the Bar charts, therefore in this case the Horizontal Axis tab options will correspond to the ones described in the previous section. For the XY (Scatter) charts, both axes are value axes. The Axis Options section allows to set the following parameters: Axis Crosses - is used to specify a point on the horizontal axis where the vertical axis should cross it. The Auto option is selected by default, in this case the axes intersection point value is calculated automatically depending on the selected data range. You can select the Value option from the drop-down list and specify a different value in the entry field on the right, or set the axes intersection point at the Minimum/Maximum Value (that corresponds to the first and last category) on the horizontal axis. Axis Position - is used to specify where the axis text labels should be placed: On Tick Marks or Between Tick Marks. Values in reverse order - is used to display categories in an opposite direction. When the box is unchecked, categories are displayed from left to right. When the box is checked, the categories are ordered from right to left. The Tick Options section allows to adjust the appearance of tick marks on the horizontal scale. Major tick marks are the larger divisions which can have labels displaying category values. Minor tick marks are the smaller divisions which are placed between the major tick marks and have no labels. Tick marks also define where gridlines can be displayed, if the corresponding option is set at the Layout tab. You can adjust the following tick mark parameters: Major/Minor Type - is used to specify the following placement options: None to not display major/minor tick marks, Cross to display major/minor tick marks on both sides of the axis, In to display major/minor tick marks inside the axis, Out to display major/minor tick marks outside the axis. Interval between Marks - is used to specify how many categories should be displayed between two adjacent tick marks. The Label Options section allows to adjust the appearance of labels which display categories. Label Position - is used to specify where the labels should be placed in regard to the horizontal axis. Select the necessary option from the drop-down list: None to not display category labels, Low to display category labels at the bottom of the plot area, High to display category labels at the top of the plot area, Next to axis to display category labels next to the axis. Axis Label Distance - is used to specify how closely the labels should be placed to the axis. You can specify the necessary value in the entry field. The more the value you set, the more the distance between the axis and labels is. Interval between Labels - is used to specify how often the labels should be displayed. The Auto option is selected by default, in this case labels are displayed for every category. You can select the Manual option from the drop-down list and specify the necessary value in the entry field on the right. For example, enter 2 to display labels for every other category etc. 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 chart. once the chart is added you can also change its size and position. You can specify the chart position on the slide dragging it vertically or horizontally. You can also add a chart into a text placeholder pressing the Chart icon within it and selecting the necessary chart type: It's also possible to add a chart to a slide layout. To learn more, please refer to this article. 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 at the Home tab of the top toolbar to change the font type, style, size, or color. When the chart is selected, the Shape settings 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. Using the Shape Settings tab at the right panel you can not only adjust the chart area itself, but also change the chart elements, such as plot area, data series, chart title, legend etc and apply different fill types to them. Select the chart element clicking it with the left mouse button and choose the preferred fill type: solid color, gradient, texture or picture, pattern. Specify the fill parameters and set the Opacity level if necessary. When you select a vertical or horizontal axis or gridlines, the stroke settings are only available at the Shape Settings tab: color, width and type. For more details on how to work with shape colors, fills and stroke, you can refer to this page. Note: the Show shadow option is also available at the Shape settings tab, but it is disabled for chart elements. If you need to resize chart elements, left-click to select the needed element and drag one of 8 white squares located along the perimeter of the element. To change the position of the element, left-click on it, make sure your cursor changed to , hold the left mouse button and drag the element to the needed position. 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. Drag the cursor without releasing the mouse button to change the 3D chart orientation. Adjust chart settings 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 icon on the right. The Size section allows you to change the chart width and/or height. If the Constant proportions button is clicked (in this case it looks like this ), 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. The Show advanced settings option at the right sidebar allows to open the Chart - Advanced Settings window where you can set the alternative text: 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." }, { "id": "UsageInstructions/InsertEquation.htm", "title": "Insert equations", - "body": "Presentation Editor allows you to build equations using the built-in templates, edit them, insert special characters (including mathematical operators, Greek letters, accents etc.). Add a new equation To insert an equation from the gallery, switch to the Insert tab of the top toolbar, click the arrow next to the Equation icon at the top toolbar, 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, click the certain symbol/equation in the corresponding set of templates. The selected symbol/equation box will be inserted in the center of the current slide. If you do not see the equation box border, click anywhere within the equation - the border will be displayed as a dashed line. The equation box can be freely moved, resized or rotated on the slide. To do that click on the equation box border (it will be displayed as a solid line) and use corresponding handles. 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 . You need to fill in all the placeholders specifying the necessary values. Enter values The insertion point specifies where the next character you enter will appear. To position the insertion point precisely, click within a placeholder and use the keyboard arrows to move the insertion point by one character left/right. 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 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. To add some new equation elements you can also use the right-click menu options: To add a new argument that goes before or after the existing one within Brackets, you can right-click on the existing argument and select the Insert argument before/after option from the menu. To add a new equation within Cases with several conditions from the Brackets group, you can right-click on an empty placeholder or entered equation within it and select the Insert equation before/after option from the menu. To add a new row or a column in a Matrix, you can right-click on a placeholder within it, select the Insert option from the menu, then select Row Above/Below or Column Left/Right. Note: currently, equations cannot be entered using the linear format, i.e. \\sqrt(4&x^3). 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 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. 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). To change the Scripts position relating to text, you can right-click on the equation that includes scripts and select the Scripts before/after text option from the menu. To change the argument size for Scripts, Radicals, Integrals, Large Operators, Limits and Logarithms, Operators as well as for overbraces/underbraces and templates with grouping characters from the Accents group, you can right-click on the argument you want to change and select the Increase/Decrease argument size option from the menu. To specify whether an empty degree placeholder should be displayed or not for a Radical, you can right-click on the radical and select the Hide/Show degree option from the menu. To specify whether an empty limit placeholder should be displayed or not for an Integral or Large Operator, you can right-click on the equation and select the Hide/Show top/bottom limit option from the menu. To change the limits position relating to the integral or operator sign for Integrals or Large Operators, you can right-click on the equation and select the Change limits location option from the menu. The limits can be displayed to the right of the operator sign (as subscripts and superscripts) or directly above and below the operator sign. To change the limits position relating to text for Limits and Logarithms and templates with grouping characters from the Accents group, you can right-click on the equation and select the Limit over/under text option from the menu. To choose which of the Brackets should be displayed, you can right-click on the expression within them and select the Hide/Show opening/closing bracket option from the menu. To control the Brackets size, you can right-click on the expression within them. The Stretch brackets option is selected by default so that the brackets can grow according to the expression within them, but you can deselect this option to prevent brackets from stretching. When this option is activated, you can also use the Match brackets to argument height option. To change the character position relating to text for overbraces/underbraces or overbars/underbars from the Accents group, you can right-click on the template and select the Char/Bar over/under text option from the menu. To choose which borders should be displayed for a Boxed formula from the Accents group, you can right-click on the equation and select the Border properties option from the menu, then select Hide/Show top/bottom/left/right border or Add/Hide horizontal/vertical/diagonal line. To specify whether empty placeholders should be displayed or not for a Matrix, you can right-click on it and select the Hide/Show placeholder option from the menu. To align some equation elements you can use the right-click menu options: To align equations within Cases with several conditions from the Brackets group, you can right-click on an equation, select the Alignment option from the menu, then select the alignment type: Top, Center, or Bottom. To align a Matrix vertically, you can right-click on the matrix, select the Matrix Alignment option from the menu, then select the alignment type: Top, Center, or Bottom. To align elements within a Matrix column horizontally, you can right-click on a placeholder within the column, select the Column Alignment option from the menu, then select the alignment type: Left, Center, or Right. Delete equation elements To delete a part of the equation, select the part you want to delete by dragging the mouse or holding down the Shift key and using the arrow buttons, then press the Delete key on the keyboard. A slot can only be deleted together with the template it belongs to. To delete the entire equation, click on the equation box border (it will be displayed as a solid line) and and press the Delete key on the keyboard. To delete some equation elements you can also use the right-click menu options: To delete a Radical, you can right-click on it and select the Delete radical option from the menu. To delete a Subscript and/or Superscript, you can right-click on the expression that contains them and select the Remove subscript/superscript option from the menu. If the expression contains scripts that go before text, the Remove scripts option is available. To delete Brackets, you can right-click on the expression within them and select the Delete enclosing characters or Delete enclosing characters and separators option from the menu. If the expression within Brackets inclides more than one argument, you can right-click on the argument you want to delete and select the Delete argument option from the menu. If Brackets enclose more than one equation (i.e. Cases with several conditions), you can right-click on the equation you want to delete and select the Delete equation option from the menu. To delete a Limit, you can right-click on it and select the Remove limit option from the menu. To delete an Accent, you can right-click on it and select the Remove accent character, Delete char or Remove bar option from the menu (the available options differ depending on the selected accent). To delete a row or a column of a Matrix, you can right-click on the placeholder within the row/column you need to delete, select the Delete option from the menu, then select Delete Row/Column." + "body": "Presentation Editor allows you to build equations using the built-in templates, edit them, insert special characters (including mathematical operators, Greek letters, accents etc.). Add a new equation To insert an equation from the gallery, switch to the Insert tab of the top toolbar, click the arrow next to the Equation icon at the top toolbar, 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, click the certain symbol/equation in the corresponding set of templates. The selected symbol/equation box will be inserted in the center of the current slide. If you do not see the equation box border, click anywhere within the equation - the border will be displayed as a dashed line. The equation box can be freely moved, resized or rotated on the slide. To do that click on the equation box border (it will be displayed as a solid line) and use corresponding handles. 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 . You need to fill in all the placeholders specifying the necessary values. Enter values The insertion point specifies where the next character you enter will appear. To position the insertion point precisely, click within a placeholder and use the keyboard arrows to move the insertion point by one character left/right. 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 Equation menu at the Insert tab of the top toolbar or typing them from the keyboard (see the Math AutoСorrect option description), 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. To add some new equation elements you can also use the right-click menu options: To add a new argument that goes before or after the existing one within Brackets, you can right-click on the existing argument and select the Insert argument before/after option from the menu. To add a new equation within Cases with several conditions from the Brackets group, you can right-click on an empty placeholder or entered equation within it and select the Insert equation before/after option from the menu. To add a new row or a column in a Matrix, you can right-click on a placeholder within it, select the Insert option from the menu, then select Row Above/Below or Column Left/Right. Note: currently, equations cannot be entered using the linear format, i.e. \\sqrt(4&x^3). 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 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. 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). To change the Scripts position relating to text, you can right-click on the equation that includes scripts and select the Scripts before/after text option from the menu. To change the argument size for Scripts, Radicals, Integrals, Large Operators, Limits and Logarithms, Operators as well as for overbraces/underbraces and templates with grouping characters from the Accents group, you can right-click on the argument you want to change and select the Increase/Decrease argument size option from the menu. To specify whether an empty degree placeholder should be displayed or not for a Radical, you can right-click on the radical and select the Hide/Show degree option from the menu. To specify whether an empty limit placeholder should be displayed or not for an Integral or Large Operator, you can right-click on the equation and select the Hide/Show top/bottom limit option from the menu. To change the limits position relating to the integral or operator sign for Integrals or Large Operators, you can right-click on the equation and select the Change limits location option from the menu. The limits can be displayed to the right of the operator sign (as subscripts and superscripts) or directly above and below the operator sign. To change the limits position relating to text for Limits and Logarithms and templates with grouping characters from the Accents group, you can right-click on the equation and select the Limit over/under text option from the menu. To choose which of the Brackets should be displayed, you can right-click on the expression within them and select the Hide/Show opening/closing bracket option from the menu. To control the Brackets size, you can right-click on the expression within them. The Stretch brackets option is selected by default so that the brackets can grow according to the expression within them, but you can deselect this option to prevent brackets from stretching. When this option is activated, you can also use the Match brackets to argument height option. To change the character position relating to text for overbraces/underbraces or overbars/underbars from the Accents group, you can right-click on the template and select the Char/Bar over/under text option from the menu. To choose which borders should be displayed for a Boxed formula from the Accents group, you can right-click on the equation and select the Border properties option from the menu, then select Hide/Show top/bottom/left/right border or Add/Hide horizontal/vertical/diagonal line. To specify whether empty placeholders should be displayed or not for a Matrix, you can right-click on it and select the Hide/Show placeholder option from the menu. To align some equation elements you can use the right-click menu options: To align equations within Cases with several conditions from the Brackets group, you can right-click on an equation, select the Alignment option from the menu, then select the alignment type: Top, Center, or Bottom. To align a Matrix vertically, you can right-click on the matrix, select the Matrix Alignment option from the menu, then select the alignment type: Top, Center, or Bottom. To align elements within a Matrix column horizontally, you can right-click on a placeholder within the column, select the Column Alignment option from the menu, then select the alignment type: Left, Center, or Right. Delete equation elements To delete a part of the equation, select the part you want to delete by dragging the mouse or holding down the Shift key and using the arrow buttons, then press the Delete key on the keyboard. A slot can only be deleted together with the template it belongs to. To delete the entire equation, click on the equation box border (it will be displayed as a solid line) and and press the Delete key on the keyboard. To delete some equation elements you can also use the right-click menu options: To delete a Radical, you can right-click on it and select the Delete radical option from the menu. To delete a Subscript and/or Superscript, you can right-click on the expression that contains them and select the Remove subscript/superscript option from the menu. If the expression contains scripts that go before text, the Remove scripts option is available. To delete Brackets, you can right-click on the expression within them and select the Delete enclosing characters or Delete enclosing characters and separators option from the menu. If the expression within Brackets inclides more than one argument, you can right-click on the argument you want to delete and select the Delete argument option from the menu. If Brackets enclose more than one equation (i.e. Cases with several conditions), you can right-click on the equation you want to delete and select the Delete equation option from the menu. To delete a Limit, you can right-click on it and select the Remove limit option from the menu. To delete an Accent, you can right-click on it and select the Remove accent character, Delete char or Remove bar option from the menu (the available options differ depending on the selected accent). To delete a row or a column of a Matrix, you can right-click on the placeholder within the row/column you need to delete, select the Delete option from the menu, then select Delete Row/Column." }, { "id": "UsageInstructions/InsertHeadersFooters.htm", @@ -128,17 +133,17 @@ var indexes = { "id": "UsageInstructions/InsertImages.htm", "title": "Insert and adjust images", - "body": "Insert an image In Presentation Editor, you can insert images in the most popular formats into your presentation. The following image formats are supported: BMP, GIF, JPEG, JPG, PNG. To add an image on a slide, in the slide list on the left, select the slide you want to add the image to, click the Image icon at the Home or Insert tab of the top toolbar, select one of the following options to load the image: the Image from File option will open the standard dialog window for file selection. Browse your computer hard disk drive for the necessary file and click the Open button the Image from URL option will open the window where you can enter the necessary image web address and click the OK button the Image from Storage option will open the Select data source window. Select an image stored on your portal and click the OK button once the image is added you can change its size and position. You can also add an image into a text placeholder pressing the Image from file in it and selecting the necessary image stored on your PC, or use the Image from URL button and specify the image URL address: It's also possible to add an image to a slide layout. To learn more, please refer to this article. Adjust image settings The right sidebar is activated when you left-click an image and choose the Image settings icon on the right. It contains the following sections: Size - is used to view the current image Width and Height or restore the image Actual Size if necessary. The Crop button is used to crop the image. Click the Crop button to activate cropping handles which appear on the image corners and in the center of each its side. Manually drag the handles to set the cropping area. You can move the mouse cursor over the cropping area border so that it turns into the icon and drag the area. To crop a single side, drag the handle located in the center of this side. To simultaneously crop two adjacent sides, drag one of the corner handles. To equally crop two opposite sides of the image, hold down the Ctrl key when dragging the handle in the center of one of these sides. To equally crop all sides of the image, hold down the Ctrl key when dragging any of the corner handles. When the cropping area is specified, click the Crop button once again, or press the Esc key, or click anywhere outside of the cropping area to apply the changes. After the cropping area is selected, it's also possible to use the Fill and Fit options available from the Crop drop-down menu. Click the Crop button once again and select the option you need: If you select the Fill option, the central part of the original image will be preserved and used to fill the selected cropping area, while other parts of the image will be removed. If you select the Fit option, the image will be resized so that it fits the cropping area height or width. No parts of the original image will be removed, but empty spaces may appear within the selected cropping area. 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. The Replace image option is also available in the right-click menu. Rotation is used to rotate the image by 90 degrees clockwise or counterclockwise as well as to flip the image horizontally or vertically. Click one of the buttons: to rotate the image by 90 degrees counterclockwise to rotate the image by 90 degrees clockwise to flip the image horizontally (left to right) to flip the image vertically (upside down) When the image is selected, the Shape settings icon is also available on the right. You can click this icon to open the Shape settings tab at the right sidebar and adjust the shape Stroke type, size and color as well as change the shape type selecting another shape from the Change Autoshape menu. The shape of the image will change correspondingly. At the Shape Settings tab, you can also use the Show shadow option to add a shadow to the image. To change the advanced settings of the image, right-click the image and select the Image Advanced Settings option from the contextual menu or left-click the image and press the Show advanced settings link at the right sidebar. The image properties window will be opened: 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 button is clicked (in this case it looks like this ), the width and height will be changed together preserving the original image aspect ratio. To restore the actual size of the added image, click the Actual 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). The Rotation tab contains the following parameters: Angle - use this option to rotate the image by an exactly specified angle. Enter the necessary value measured in degrees into the field or adjust it using the arrows on the right. Flipped - check the Horizontally box to flip the image horizontally (left to right) or check the Vertically box to flip the image vertically (upside down). 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 image. To delete the inserted image, left-click it and press the Delete key on the keyboard. To learn how to align an image on the slide or arrange several images, refer to the Align and arrange objects on a slide section." + "body": "Insert an image In Presentation Editor, you can insert images in the most popular formats into your presentation. The following image formats are supported: BMP, GIF, JPEG, JPG, PNG. To add an image on a slide, in the slide list on the left, select the slide you want to add the image to, click the Image icon at the Home or Insert tab of the top toolbar, select one of the following options to load the image: the Image from File option will open the standard dialog window for file selection. Browse your computer hard disk drive for the necessary file and click the Open button the Image from URL option will open the window where you can enter the necessary image web address and click the OK button the Image from Storage option will open the Select data source window. Select an image stored on your portal and click the OK button once the image is added you can change its size and position. You can also add an image into a text placeholder pressing the Image from file in it and selecting the necessary image stored on your PC, or use the Image from URL button and specify the image URL address: It's also possible to add an image to a slide layout. To learn more, please refer to this article. Adjust image settings The right sidebar is activated when you left-click an image and choose the Image settings icon on the right. It contains the following sections: Size - is used to view the current image Width and Height or restore the image Actual Size if necessary. The Crop button is used to crop the image. Click the Crop button to activate cropping handles which appear on the image corners and in the center of each its side. Manually drag the handles to set the cropping area. You can move the mouse cursor over the cropping area border so that it turns into the icon and drag the area. To crop a single side, drag the handle located in the center of this side. To simultaneously crop two adjacent sides, drag one of the corner handles. To equally crop two opposite sides of the image, hold down the Ctrl key when dragging the handle in the center of one of these sides. To equally crop all sides of the image, hold down the Ctrl key when dragging any of the corner handles. When the cropping area is specified, click the Crop button once again, or press the Esc key, or click anywhere outside of the cropping area to apply the changes. After the cropping area is selected, it's also possible to use the Fill and Fit options available from the Crop drop-down menu. Click the Crop button once again and select the option you need: If you select the Fill option, the central part of the original image will be preserved and used to fill the selected cropping area, while other parts of the image will be removed. If you select the Fit option, the image will be resized so that it fits the cropping area height or width. No parts of the original image will be removed, but empty spaces may appear within the selected cropping area. 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, From Storage, or From URL. The Replace image option is also available in the right-click menu. Rotation is used to rotate the image by 90 degrees clockwise or counterclockwise as well as to flip the image horizontally or vertically. Click one of the buttons: to rotate the image by 90 degrees counterclockwise to rotate the image by 90 degrees clockwise to flip the image horizontally (left to right) to flip the image vertically (upside down) When the image is selected, the Shape settings icon is also available on the right. You can click this icon to open the Shape settings tab at the right sidebar and adjust the shape Stroke type, size and color as well as change the shape type selecting another shape from the Change Autoshape menu. The shape of the image will change correspondingly. At the Shape Settings tab, you can also use the Show shadow option to add a shadow to the image. To change the advanced settings of the image, right-click the image and select the Image Advanced Settings option from the contextual menu or left-click the image and press the Show advanced settings link at the right sidebar. The image properties window will be opened: 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 button is clicked (in this case it looks like this ), the width and height will be changed together preserving the original image aspect ratio. To restore the actual size of the added image, click the Actual 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). The Rotation tab contains the following parameters: Angle - use this option to rotate the image by an exactly specified angle. Enter the necessary value measured in degrees into the field or adjust it using the arrows on the right. Flipped - check the Horizontally box to flip the image horizontally (left to right) or check the Vertically box to flip the image vertically (upside down). 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 image. To delete the inserted image, left-click it and press the Delete key on the keyboard. To learn how to align an image on the slide or arrange several images, refer to the Align and arrange objects on a slide section." }, { "id": "UsageInstructions/InsertSymbols.htm", "title": "Insert symbols and characters", - "body": "During working process you may need to insert a symbol which is not on your keyboard. To insert such symbols into your presentation, use the Insert symbol option and follow these simple steps: place the cursor at the location where a special symbol has to be inserted, switch to the Insert tab of the top toolbar, click the Symbol, The Symbol dialog box appears from which you can select the appropriate symbol, use the Range section to quickly find the nesessary symbol. All symbols are divided into specific groups, for example, select 'Currency Symbols' if you want to insert a currency character. If this character is not in the set, select a different font. Many of them also have characters other than the standard set. Or, enter the Unicode hex value of the symbol you want into the Unicode hex value field. This code can be found in the Character map. Previously used symbols are also displayed in the Recently used symbols field, click Insert. The selected character will be added to the presentation. Insert ASCII symbols ASCII table is also used to add characters. To do this, hold down ALT key and use the numeric keypad to enter the character code. Note: be sure to use the numeric keypad, not the numbers on the main keyboard. To enable the numeric keypad, press the Num Lock key. For example, to add a paragraph character (§), press and hold down ALT while typing 789, and then release ALT key. Insert symbols using Unicode table Additional charachters and symbols might also be found via Windows symbol table. To open this table, do one of the following: in the Search field write 'Character table' and open it, simultaneously presss Win + R, and then in the following window type charmap.exe and click OK. In the opened Character Map, select one of the Character sets, Groups and Fonts. Next, click on the nesessary characters, copy them to clipboard and paste in the right place of the presentation." + "body": "During working process you may need to insert a symbol which is not on your keyboard. To insert such symbols into your presentation, use the Insert symbol option and follow these simple steps: place the cursor at the location where a special symbol has to be inserted, switch to the Insert tab of the top toolbar, click the Symbol, The Symbol dialog box appears from which you can select the appropriate symbol, use the Range section to quickly find the nesessary symbol. All symbols are divided into specific groups, for example, select 'Currency Symbols' if you want to insert a currency character. If this character is not in the set, select a different font. Many of them also have characters other than the standard set. Or, enter the Unicode hex value of the symbol you want into the Unicode hex value field. This code can be found in the Character map. You can also use the Special characters tab to choose a special character from the list. Previously used symbols are also displayed in the Recently used symbols field, click Insert. The selected character will be added to the presentation. Insert ASCII symbols ASCII table is also used to add characters. To do this, hold down ALT key and use the numeric keypad to enter the character code. Note: be sure to use the numeric keypad, not the numbers on the main keyboard. To enable the numeric keypad, press the Num Lock key. For example, to add a paragraph character (§), press and hold down ALT while typing 789, and then release ALT key. Insert symbols using Unicode table Additional charachters and symbols might also be found via Windows symbol table. To open this table, do one of the following: in the Search field write 'Character table' and open it, simultaneously presss Win + R, and then in the following window type charmap.exe and click OK. In the opened Character Map, select one of the Character sets, Groups and Fonts. Next, click on the nesessary characters, copy them to clipboard and paste in the right place of the presentation." }, { "id": "UsageInstructions/InsertTables.htm", "title": "Insert and format tables", - "body": "Insert a table To insert a table onto a slide, select the slide where a table will be added, switch to the Insert tab of the top toolbar, click the Table icon at the top toolbar, select the option to create a table: either a table with predefined number of cells (10 by 8 cells maximum) If you want to quickly add a table, just select the number of rows (8 maximum) and columns (10 maximum). or a custom table In case you need more than 10 by 8 cell table, select the Insert Custom Table option that will open the window where you can enter the necessary number of rows and columns respectively, then click the OK button. once the table is added you can change its properties and position. You can also add a table into a text placeholder pressing the Table icon within it and selecting the necessary number of cells or using the Insert Custom Table option: To resize a table, drag the handles situated on its edges until the table reaches the necessary size. You can also manually change the width of a certain column or the height of a row. Move the mouse cursor over the right border of the column so that the cursor turns into the bidirectional arrow and drag the border to the left or right to set the necessary width. To change the height of a single row manually, move the mouse cursor over the bottom border of the row until the cursor turns into the bidirectional arrow and drag it up or down. You can specify the table position on the slide dragging it vertically or horizontally. Note: to move around in a table you can use keyboard shortcuts. It's also possible to add a table to a slide layout. To learn more, please refer to this article. Adjust table settings 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 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. Total - emphasizes the bottommost row in the table with a special formatting. Banded - enables the background color alternation for odd and even rows. First - emphasizes the leftmost column in the table with a special formatting. Last - emphasizes the rightmost column in the table with a special formatting. Banded - enables the background color alternation for odd and even columns. The Select From Template section allows you to choose one of the predefined tables styles. Each template combines certain formatting parameters, such as a background color, border style, row/column banding etc. Depending on the options checked in the Rows and/or Columns sections above, the templates set will be displayed differently. For example, if you've checked the Header option in the Rows section and the Banded option in the Columns section, the displayed templates list will include only templates with the header row and banded columns enabled: The Borders Style section allows you to change the applied formatting that corresponds to the selected template. You can select the entire table or a certain cells range you want to change the formatting for and set all the parameters manually. Border parameters - set the border width using the list (or choose the No borders option), select its Color in the available palettes and determine the way it will be displayed in the cells clicking on the icons: Background color - select the color for the background within the selected cells. The Rows & Columns section allows you to perform the following operations: Select a row, column, cell (depending on the cursor position), or the entire table. Insert a new row above or below the selected one as well as a new column to the left or to the right of the selected one. Delete a row, column (depending on the cursor position or the selection), or the entire table. Merge Cells - to merge previously selected cells into a single one. Split Cell... - to split any previously selected cell into a certain number of rows and columns. This option opens the following window: Enter the Number of Columns and Number of Rows that the selected cell should be split into and press OK. Note: the options of the Rows & Columns section are also accessible from the right-click menu. The Cell Size section is used to adjust the width and height of the currently selected cell. In this section, you can also Distribute rows so that all the selected cells have equal height or Distribute columns so that all the selected cells have equal width. The Distribute rows/columns options are also accessible from the right-click menu. Adjust table advanced settings To change the advanced table settings, click the table with the right mouse button and select the Table Advanced Settings option from the right-click menu or click the Show advanced settings link at the right sidebar. The table properties window will be opened: The Margins tab allows to set the space between the text within the cells and the cell border: enter necessary Cell Margins values manually, or check the Use default margins box to apply the predefined values (if necessary, they can also be adjusted). 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 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." + "body": "Insert a table To insert a table onto a slide, select the slide where a table will be added, switch to the Insert tab of the top toolbar, click the Table icon at the top toolbar, select the option to create a table: either a table with predefined number of cells (10 by 8 cells maximum) If you want to quickly add a table, just select the number of rows (8 maximum) and columns (10 maximum). or a custom table In case you need more than 10 by 8 cell table, select the Insert Custom Table option that will open the window where you can enter the necessary number of rows and columns respectively, then click the OK button. once the table is added you can change its properties and position. You can also add a table into a text placeholder pressing the Table icon within it and selecting the necessary number of cells or using the Insert Custom Table option: To resize a table, drag the handles situated on its edges until the table reaches the necessary size. You can also manually change the width of a certain column or the height of a row. Move the mouse cursor over the right border of the column so that the cursor turns into the bidirectional arrow and drag the border to the left or right to set the necessary width. To change the height of a single row manually, move the mouse cursor over the bottom border of the row until the cursor turns into the bidirectional arrow and drag it up or down. You can specify the table position on the slide dragging it vertically or horizontally. Note: to move around in a table you can use keyboard shortcuts. It's also possible to add a table to a slide layout. To learn more, please refer to this article. Adjust table settings 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 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 special formatting. Total - emphasizes the bottommost row in the table with special formatting. Banded - enables the background color alternation for odd and even rows. First - emphasizes the leftmost column in the table with special formatting. Last - emphasizes the rightmost column in the table with special formatting. Banded - enables the background color alternation for odd and even columns. The Select From Template section allows you to choose one of the predefined tables styles. Each template combines certain formatting parameters, such as a background color, border style, row/column banding etc. Depending on the options checked in the Rows and/or Columns sections above, the templates set will be displayed differently. For example, if you've checked the Header option in the Rows section and the Banded option in the Columns section, the displayed templates list will include only templates with the header row and banded columns enabled: The Borders Style section allows you to change the applied formatting that corresponds to the selected template. You can select the entire table or a certain cells range you want to change the formatting for and set all the parameters manually. Border parameters - set the border width using the list (or choose the No borders option), select its Color in the available palettes and determine the way it will be displayed in the cells clicking on the icons: Background color - select the color for the background within the selected cells. The Rows & Columns section allows you to perform the following operations: Select a row, column, cell (depending on the cursor position), or the entire table. Insert a new row above or below the selected one as well as a new column to the left or to the right of the selected one. Delete a row, column (depending on the cursor position or the selection), or the entire table. Merge Cells - to merge previously selected cells into a single one. Split Cell... - to split any previously selected cell into a certain number of rows and columns. This option opens the following window: Enter the Number of Columns and Number of Rows that the selected cell should be split into and press OK. Note: the options of the Rows & Columns section are also accessible from the right-click menu. The Cell Size section is used to adjust the width and height of the currently selected cell. In this section, you can also Distribute rows so that all the selected cells have equal height or Distribute columns so that all the selected cells have equal width. The Distribute rows/columns options are also accessible from the right-click menu. Adjust table advanced settings To change the advanced table settings, click the table with the right mouse button and select the Table Advanced Settings option from the right-click menu or click the Show advanced settings link at the right sidebar. The table properties window will be opened: The Margins tab allows to set the space between the text within the cells and the cell border: enter necessary Cell Margins values manually, or check the Use default margins box to apply the predefined values (if necessary, they can also be adjusted). 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 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." }, { "id": "UsageInstructions/InsertText.htm", @@ -155,6 +160,11 @@ var indexes = "title": "Manipulate objects on a slide", "body": "You can resize, move, rotate different objects on a slide manually using the special handles. You can also specify the dimensions and position of some objects exactly using the right sidebar or Advanced Settings window. Note: the list of keyboard shortcuts that can be used when working with objects is available here. Resize objects To change the autoshape/image/chart/table/text box size, drag small squares 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. To specify the precise width and height of a chart, select it on a slide and use the Size section of the right sidebar that will be activated. To specify the precise dimensions of an image or autoshape, right-click the necessary object on the slide and select the Image/Shape Advanced Settings option from the menu. Specify necessary values on the Size tab of the Advanced Settings window and press OK. Reshape autoshapes When modifying some shapes, for example Figured arrows or Callouts, the yellow diamond-shaped icon is also available. It allows to adjust some aspects of the shape, for example, the length of the head of an arrow. Move objects To alter the autoshape/image/chart/table/text box position, use the icon that appears after hovering your mouse cursor over the object. Drag the object to the necessary position without releasing the mouse button. To move the object by the one-pixel increments, hold down the Ctrl key and use the keybord arrows. To move the object strictly horizontally/vertically and prevent it from moving in a perpendicular direction, hold down the Shift key when dragging. To specify the precise position of an image, right-click it on a slide and select the Image Advanced Settings option from the menu. Specify necessary values in the Position section of the Advanced Settings window and press OK. Rotate objects To manually rotate an autoshape/image/text box, hover the mouse cursor over the rotation handle and drag it clockwise or counterclockwise. To constrain the rotation angle to 15 degree increments, hold down the Shift key while rotating. To rotate the object by 90 degrees counterclockwise/clockwise or flip the object horizontally/vertically you can use the Rotation section of the right sidebar that will be activated once you select the necessary object. To open it, click the Shape settings or the Image settings icon to the right. Click one of the buttons: to rotate the object by 90 degrees counterclockwise to rotate the object by 90 degrees clockwise to flip the object horizontally (left to right) to flip the object vertically (upside down) It's also possible to right-click the object, choose the Rotate option from the contextual menu and then use one of the available rotation options. To rotate the object by an exactly specified angle, click the Show advanced settings link at the right sidebar and use the Rotation tab of the Advanced Settings window. Specify the necessary value measured in degrees in the Angle field and click OK." }, + { + "id": "UsageInstructions/MathAutoCorrect.htm", + "title": "Use Math AutoCorrect", + "body": "When working with equations, you can insert a lot of symbols, accents and mathematical operation signs typing them on the keyboard instead of choosing a template from the gallery. In the equation editor, place the insertion point within the necessary placeholder, type a math autocorrect code, then press Spacebar. The entered code will be converted into the corresponding symbol, and the space will be eliminated. Note: The codes are case sensitive. The table below contains all the currently supported codes available in the Presentation Editor. The full list of the supported codes can also be found on the File tab in the Advanced Settings... -> Proofing section. Code Symbol Category !! Symbols ... Dots :: Operators := Operators /< Relational operators /> Relational operators /= Relational operators \\above Above/Below scripts \\acute Accents \\aleph Hebrew letters \\alpha Greek letters \\Alpha Greek letters \\amalg Binary operators \\angle Geometry notation \\aoint Integrals \\approx Relational operators \\asmash Arrows \\ast Binary operators \\asymp Relational operators \\atop Operators \\bar Over/Underbar \\Bar Accents \\because Relational operators \\begin Delimiters \\below Above/Below scripts \\bet Hebrew letters \\beta Greek letters \\Beta Greek letters \\beth Hebrew letters \\bigcap Large operators \\bigcup Large operators \\bigodot Large operators \\bigoplus Large operators \\bigotimes Large operators \\bigsqcup Large operators \\biguplus Large operators \\bigvee Large operators \\bigwedge Large operators \\binomial Equations \\bot Logic notation \\bowtie Relational operators \\box Symbols \\boxdot Binary operators \\boxminus Binary operators \\boxplus Binary operators \\bra Delimiters \\break Symbols \\breve Accents \\bullet Binary operators \\cap Binary operators \\cbrt Square roots and radicals \\cases Symbols \\cdot Binary operators \\cdots Dots \\check Accents \\chi Greek letters \\Chi Greek letters \\circ Binary operators \\close Delimiters \\clubsuit Symbols \\coint Integrals \\cong Relational operators \\coprod Math operators \\cup Binary operators \\dalet Hebrew letters \\daleth Hebrew letters \\dashv Relational operators \\dd Double-struck letters \\Dd Double-struck letters \\ddddot Accents \\dddot Accents \\ddot Accents \\ddots Dots \\defeq Relational operators \\degc Symbols \\degf Symbols \\degree Symbols \\delta Greek letters \\Delta Greek letters \\Deltaeq Operators \\diamond Binary operators \\diamondsuit Symbols \\div Binary operators \\dot Accents \\doteq Relational operators \\dots Dots \\doublea Double-struck letters \\doubleA Double-struck letters \\doubleb Double-struck letters \\doubleB Double-struck letters \\doublec Double-struck letters \\doubleC Double-struck letters \\doubled Double-struck letters \\doubleD Double-struck letters \\doublee Double-struck letters \\doubleE Double-struck letters \\doublef Double-struck letters \\doubleF Double-struck letters \\doubleg Double-struck letters \\doubleG Double-struck letters \\doubleh Double-struck letters \\doubleH Double-struck letters \\doublei Double-struck letters \\doubleI Double-struck letters \\doublej Double-struck letters \\doubleJ Double-struck letters \\doublek Double-struck letters \\doubleK Double-struck letters \\doublel Double-struck letters \\doubleL Double-struck letters \\doublem Double-struck letters \\doubleM Double-struck letters \\doublen Double-struck letters \\doubleN Double-struck letters \\doubleo Double-struck letters \\doubleO Double-struck letters \\doublep Double-struck letters \\doubleP Double-struck letters \\doubleq Double-struck letters \\doubleQ Double-struck letters \\doubler Double-struck letters \\doubleR Double-struck letters \\doubles Double-struck letters \\doubleS Double-struck letters \\doublet Double-struck letters \\doubleT Double-struck letters \\doubleu Double-struck letters \\doubleU Double-struck letters \\doublev Double-struck letters \\doubleV Double-struck letters \\doublew Double-struck letters \\doubleW Double-struck letters \\doublex Double-struck letters \\doubleX Double-struck letters \\doubley Double-struck letters \\doubleY Double-struck letters \\doublez Double-struck letters \\doubleZ Double-struck letters \\downarrow Arrows \\Downarrow Arrows \\dsmash Arrows \\ee Double-struck letters \\ell Symbols \\emptyset Set notations \\emsp Space characters \\end Delimiters \\ensp Space characters \\epsilon Greek letters \\Epsilon Greek letters \\eqarray Symbols \\equiv Relational operators \\eta Greek letters \\Eta Greek letters \\exists Logic notations \\forall Logic notations \\fraktura Fraktur letters \\frakturA Fraktur letters \\frakturb Fraktur letters \\frakturB Fraktur letters \\frakturc Fraktur letters \\frakturC Fraktur letters \\frakturd Fraktur letters \\frakturD Fraktur letters \\frakture Fraktur letters \\frakturE Fraktur letters \\frakturf Fraktur letters \\frakturF Fraktur letters \\frakturg Fraktur letters \\frakturG Fraktur letters \\frakturh Fraktur letters \\frakturH Fraktur letters \\frakturi Fraktur letters \\frakturI Fraktur letters \\frakturk Fraktur letters \\frakturK Fraktur letters \\frakturl Fraktur letters \\frakturL Fraktur letters \\frakturm Fraktur letters \\frakturM Fraktur letters \\frakturn Fraktur letters \\frakturN Fraktur letters \\frakturo Fraktur letters \\frakturO Fraktur letters \\frakturp Fraktur letters \\frakturP Fraktur letters \\frakturq Fraktur letters \\frakturQ Fraktur letters \\frakturr Fraktur letters \\frakturR Fraktur letters \\frakturs Fraktur letters \\frakturS Fraktur letters \\frakturt Fraktur letters \\frakturT Fraktur letters \\frakturu Fraktur letters \\frakturU Fraktur letters \\frakturv Fraktur letters \\frakturV Fraktur letters \\frakturw Fraktur letters \\frakturW Fraktur letters \\frakturx Fraktur letters \\frakturX Fraktur letters \\fraktury Fraktur letters \\frakturY Fraktur letters \\frakturz Fraktur letters \\frakturZ Fraktur letters \\frown Relational operators \\funcapply Binary operators \\G Greek letters \\gamma Greek letters \\Gamma Greek letters \\ge Relational operators \\geq Relational operators \\gets Arrows \\gg Relational operators \\gimel Hebrew letters \\grave Accents \\hairsp Space characters \\hat Accents \\hbar Symbols \\heartsuit Symbols \\hookleftarrow Arrows \\hookrightarrow Arrows \\hphantom Arrows \\hsmash Arrows \\hvec Accents \\identitymatrix Matrices \\ii Double-struck letters \\iiint Integrals \\iint Integrals \\iiiint Integrals \\Im Symbols \\imath Symbols \\in Relational operators \\inc Symbols \\infty Symbols \\int Integrals \\integral Integrals \\iota Greek letters \\Iota Greek letters \\itimes Math operators \\j Symbols \\jj Double-struck letters \\jmath Symbols \\kappa Greek letters \\Kappa Greek letters \\ket Delimiters \\lambda Greek letters \\Lambda Greek letters \\langle Delimiters \\lbbrack Delimiters \\lbrace Delimiters \\lbrack Delimiters \\lceil Delimiters \\ldiv Fraction slashes \\ldivide Fraction slashes \\ldots Dots \\le Relational operators \\left Delimiters \\leftarrow Arrows \\Leftarrow Arrows \\leftharpoondown Arrows \\leftharpoonup Arrows \\leftrightarrow Arrows \\Leftrightarrow Arrows \\leq Relational operators \\lfloor Delimiters \\lhvec Accents \\limit Limits \\ll Relational operators \\lmoust Delimiters \\Longleftarrow Arrows \\Longleftrightarrow Arrows \\Longrightarrow Arrows \\lrhar Arrows \\lvec Accents \\mapsto Arrows \\matrix Matrices \\medsp Space characters \\mid Relational operators \\middle Symbols \\models Relational operators \\mp Binary operators \\mu Greek letters \\Mu Greek letters \\nabla Symbols \\naryand Operators \\nbsp Space characters \\ne Relational operators \\nearrow Arrows \\neq Relational operators \\ni Relational operators \\norm Delimiters \\notcontain Relational operators \\notelement Relational operators \\notin Relational operators \\nu Greek letters \\Nu Greek letters \\nwarrow Arrows \\o Greek letters \\O Greek letters \\odot Binary operators \\of Operators \\oiiint Integrals \\oiint Integrals \\oint Integrals \\omega Greek letters \\Omega Greek letters \\ominus Binary operators \\open Delimiters \\oplus Binary operators \\otimes Binary operators \\over Delimiters \\overbar Accents \\overbrace Accents \\overbracket Accents \\overline Accents \\overparen Accents \\overshell Accents \\parallel Geometry notation \\partial Symbols \\pmatrix Matrices \\perp Geometry notation \\phantom Symbols \\phi Greek letters \\Phi Greek letters \\pi Greek letters \\Pi Greek letters \\pm Binary operators \\pppprime Primes \\ppprime Primes \\pprime Primes \\prec Relational operators \\preceq Relational operators \\prime Primes \\prod Math operators \\propto Relational operators \\psi Greek letters \\Psi Greek letters \\qdrt Square roots and radicals \\quadratic Square roots and radicals \\rangle Delimiters \\Rangle Delimiters \\ratio Relational operators \\rbrace Delimiters \\rbrack Delimiters \\Rbrack Delimiters \\rceil Delimiters \\rddots Dots \\Re Symbols \\rect Symbols \\rfloor Delimiters \\rho Greek letters \\Rho Greek letters \\rhvec Accents \\right Delimiters \\rightarrow Arrows \\Rightarrow Arrows \\rightharpoondown Arrows \\rightharpoonup Arrows \\rmoust Delimiters \\root Symbols \\scripta Scripts \\scriptA Scripts \\scriptb Scripts \\scriptB Scripts \\scriptc Scripts \\scriptC Scripts \\scriptd Scripts \\scriptD Scripts \\scripte Scripts \\scriptE Scripts \\scriptf Scripts \\scriptF Scripts \\scriptg Scripts \\scriptG Scripts \\scripth Scripts \\scriptH Scripts \\scripti Scripts \\scriptI Scripts \\scriptk Scripts \\scriptK Scripts \\scriptl Scripts \\scriptL Scripts \\scriptm Scripts \\scriptM Scripts \\scriptn Scripts \\scriptN Scripts \\scripto Scripts \\scriptO Scripts \\scriptp Scripts \\scriptP Scripts \\scriptq Scripts \\scriptQ Scripts \\scriptr Scripts \\scriptR Scripts \\scripts Scripts \\scriptS Scripts \\scriptt Scripts \\scriptT Scripts \\scriptu Scripts \\scriptU Scripts \\scriptv Scripts \\scriptV Scripts \\scriptw Scripts \\scriptW Scripts \\scriptx Scripts \\scriptX Scripts \\scripty Scripts \\scriptY Scripts \\scriptz Scripts \\scriptZ Scripts \\sdiv Fraction slashes \\sdivide Fraction slashes \\searrow Arrows \\setminus Binary operators \\sigma Greek letters \\Sigma Greek letters \\sim Relational operators \\simeq Relational operators \\smash Arrows \\smile Relational operators \\spadesuit Symbols \\sqcap Binary operators \\sqcup Binary operators \\sqrt Square roots and radicals \\sqsubseteq Set notation \\sqsuperseteq Set notation \\star Binary operators \\subset Set notation \\subseteq Set notation \\succ Relational operators \\succeq Relational operators \\sum Math operators \\superset Set notation \\superseteq Set notation \\swarrow Arrows \\tau Greek letters \\Tau Greek letters \\therefore Relational operators \\theta Greek letters \\Theta Greek letters \\thicksp Space characters \\thinsp Space characters \\tilde Accents \\times Binary operators \\to Arrows \\top Logic notation \\tvec Arrows \\ubar Accents \\Ubar Accents \\underbar Accents \\underbrace Accents \\underbracket Accents \\underline Accents \\underparen Accents \\uparrow Arrows \\Uparrow Arrows \\updownarrow Arrows \\Updownarrow Arrows \\uplus Binary operators \\upsilon Greek letters \\Upsilon Greek letters \\varepsilon Greek letters \\varphi Greek letters \\varpi Greek letters \\varrho Greek letters \\varsigma Greek letters \\vartheta Greek letters \\vbar Delimiters \\vdash Relational operators \\vdots Dots \\vec Accents \\vee Binary operators \\vert Delimiters \\Vert Delimiters \\Vmatrix Matrices \\vphantom Arrows \\vthicksp Space characters \\wedge Binary operators \\wp Symbols \\wr Binary operators \\xi Greek letters \\Xi Greek letters \\zeta Greek letters \\Zeta Greek letters \\zwnj Space characters \\zwsp Space characters ~= Relational operators -+ Binary operators +- Binary operators << Relational operators <= Relational operators -> Arrows >= Relational operators >> Relational operators" + }, { "id": "UsageInstructions/OpenCreateNew.htm", "title": "Create a new presentation or open an existing one", @@ -168,7 +178,7 @@ var indexes = { "id": "UsageInstructions/SavePrintDownload.htm", "title": "Save/print/download your presentation", - "body": "Saving By default, online Рresentation Editor automatically saves your file each 2 seconds when you work on it preventing your data loss in case of the unexpected program closing. If you co-edit the file in the Fast mode, the timer requests for updates 25 times a second and saves the changes if they have been made. When the file is being co-edited in the Strict mode, changes are automatically saved at 10-minute intervals. If you need, you can easily select the preferred co-editing mode or disable the Autosave feature on the Advanced Settings page. To save your presentation manually in the current format and location, press the Save icon in the left part of the editor header, or use the Ctrl+S key combination, or click the File tab of the top toolbar and select the Save option. Note: in the desktop version, to prevent data loss in case of the unexpected program closing you can turn on the Autorecover option at the Advanced Settings page. In the desktop version, you can save the presentation with another name, in a new location or format, click the File tab of the top toolbar, select the Save as... option, choose one of the available formats depending on your needs: PPTX, ODP, PDF, PDFA. You can also choose the Рresentation template (POTX or OTP) option. Downloading In the online version, you can download the resulting presentation onto your computer hard disk drive, click the File tab of the top toolbar, select the Download as... option, choose one of the available formats depending on your needs: PPTX, PDF, ODP, POTX, PDF/A, OTP. Saving a copy In the online version, you can save a copy of the file on your portal, click the File tab of the top toolbar, select the Save Copy as... option, choose one of the available formats depending on your needs: PPTX, PDF, ODP, POTX, PDF/A, OTP, select a location of the file on the portal and press Save. Printing To print out the current presentation, click the Print icon in the left part of the editor header, or use the Ctrl+P key combination, or click the File tab of the top toolbar and select the Print option. It's also possible to print the selected slides using the Print Selection option from the contextual menu. In the desktop version, the file will be printed directly. In the online version, 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. Some browsers (e.g. Chrome and Opera) support direct printing." + "body": "Saving By default, online Рresentation Editor automatically saves your file each 2 seconds when you work on it preventing your data loss in case of the unexpected program closing. If you co-edit the file in the Fast mode, the timer requests for updates 25 times a second and saves the changes if they have been made. When the file is being co-edited in the Strict mode, changes are automatically saved at 10-minute intervals. If you need, you can easily select the preferred co-editing mode or disable the Autosave feature on the Advanced Settings page. To save your presentation manually in the current format and location, press the Save icon in the left part of the editor header, or use the Ctrl+S key combination, or click the File tab of the top toolbar and select the Save option. Note: in the desktop version, to prevent data loss in case of the unexpected program closing you can turn on the Autorecover option at the Advanced Settings page. In the desktop version, you can save the presentation with another name, in a new location or format, click the File tab of the top toolbar, select the Save as... option, choose one of the available formats depending on your needs: PPTX, ODP, PDF, PDFA. You can also choose the Рresentation template (POTX or OTP) option. Downloading In the online version, you can download the resulting presentation onto your computer hard disk drive, click the File tab of the top toolbar, select the Download as... option, choose one of the available formats depending on your needs: PPTX, PDF, ODP, POTX, PDF/A, OTP. Saving a copy In the online version, you can save a copy of the file on your portal, click the File tab of the top toolbar, select the Save Copy as... option, choose one of the available formats depending on your needs: PPTX, PDF, ODP, POTX, PDF/A, OTP, select a location of the file on the portal and press Save. Printing To print out the current presentation, click the Print icon in the left part of the editor header, or use the Ctrl+P key combination, or click the File tab of the top toolbar and select the Print option. It's also possible to print the selected slides using the Print Selection option from the contextual menu both in the Edit and View modes (Right Mouse Button Click on the selected slides and choose option Print selection). In the desktop version, the file will be printed directly. In the online version, 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. Some browsers (e.g. Chrome and Opera) support direct printing." }, { "id": "UsageInstructions/SetSlideParameters.htm", diff --git a/apps/presentationeditor/mobile/locale/cs.json b/apps/presentationeditor/mobile/locale/cs.json index 4a2396059..94badd304 100644 --- a/apps/presentationeditor/mobile/locale/cs.json +++ b/apps/presentationeditor/mobile/locale/cs.json @@ -1,11 +1,17 @@ { + "Common.Controllers.Collaboration.textAddReply": "Přidat odpověď", + "Common.Controllers.Collaboration.textCancel": "Zrušit", + "Common.Controllers.Collaboration.textDeleteComment": "Smazat komentář", + "Common.Controllers.Collaboration.textDeleteReply": "Smazat odpověď", "Common.Controllers.Collaboration.textEditUser": "Uživatelé, kteří soubor právě upravují:", "Common.UI.ThemeColorPalette.textCustomColors": "Uživatelsky určené barvy", "Common.UI.ThemeColorPalette.textStandartColors": "Standardní barvy", "Common.UI.ThemeColorPalette.textThemeColors": "Barvy tématu", "Common.Utils.Metric.txtCm": "cm", "Common.Utils.Metric.txtPt": "pt", + "Common.Views.Collaboration.textAddReply": "Přidat odpověď", "Common.Views.Collaboration.textBack": "Zpět", + "Common.Views.Collaboration.textCancel": "Zrušit", "Common.Views.Collaboration.textCollaboration": "Spolupráce", "Common.Views.Collaboration.textEditUsers": "Uživatelé", "Common.Views.Collaboration.textNoComments": "Tato prezentace neobsahuje komenáře", @@ -26,11 +32,15 @@ "PE.Controllers.AddLink.textPrev": "Předchozí snímek", "PE.Controllers.AddLink.textSlide": "Snímek", "PE.Controllers.AddLink.txtNotUrl": "Toto pole by mělo obsahovat adresu URL ve formátu 'http://www.example.com'", + "PE.Controllers.AddOther.textCancel": "Zrušit", + "PE.Controllers.AddOther.textContinue": "Pokračovat", + "PE.Controllers.AddOther.textDelete": "Smazat", "PE.Controllers.AddTable.textCancel": "Zrušit", "PE.Controllers.AddTable.textColumns": "Sloupce", "PE.Controllers.AddTable.textRows": "Řádky", "PE.Controllers.AddTable.textTableSize": "Velikost tabulky", "PE.Controllers.DocumentHolder.errorCopyCutPaste": "Akce kopírovat, vyjmout a vložit použitím kontextové nabídky budou prováděny pouze v rámci právě otevřeného souboru.", + "PE.Controllers.DocumentHolder.menuAddComment": "Přidat komentář", "PE.Controllers.DocumentHolder.menuAddLink": "Přidat odkaz", "PE.Controllers.DocumentHolder.menuCopy": "Kopírovat", "PE.Controllers.DocumentHolder.menuCut": "Vyjmout", @@ -258,6 +268,9 @@ "PE.Views.AddLink.textNumber": "Číslo snímku", "PE.Views.AddLink.textPrev": "Předchozí snímek", "PE.Views.AddLink.textTip": "Nápověda", + "PE.Views.AddOther.textAddComment": "Přidat komentář", + "PE.Views.AddOther.textBack": "Zpět", + "PE.Views.AddOther.textComment": "Komentář", "PE.Views.EditChart.textAddCustomColor": "Přidat uživatelsky určenou barvu", "PE.Views.EditChart.textAlign": "Zarovnat", "PE.Views.EditChart.textAlignBottom": "Zarovnat dolů", diff --git a/apps/presentationeditor/mobile/locale/de.json b/apps/presentationeditor/mobile/locale/de.json index 125388022..be51b1b76 100644 --- a/apps/presentationeditor/mobile/locale/de.json +++ b/apps/presentationeditor/mobile/locale/de.json @@ -114,6 +114,7 @@ "PE.Controllers.Main.errorFileSizeExceed": "Die Dateigröße überschreitet die für Ihren Server festgelegte Einschränkung.
          Weitere Informationen können Sie von Ihrem Document Server-Administrator erhalten.", "PE.Controllers.Main.errorKeyEncrypt": "Unbekannter Schlüsseldeskriptor", "PE.Controllers.Main.errorKeyExpire": "Der Schlüsseldeskriptor ist abgelaufen", + "PE.Controllers.Main.errorOpensource": "Sie können in der kostenlosen Community-Version nur Dokumente zu betrachten öffnen. Eine kommerzielle Lizenz ist für die Nutzung der mobilen Web-Editoren erforderlich.", "PE.Controllers.Main.errorProcessSaveResult": "Fehler beim Speichern von Daten.", "PE.Controllers.Main.errorServerVersion": "Editor-Version wurde aktualisiert. Die Seite wird neu geladen, um die Änderungen zu übernehmen.", "PE.Controllers.Main.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.", @@ -164,8 +165,8 @@ "PE.Controllers.Main.textDone": "Fertig", "PE.Controllers.Main.textHasMacros": "Diese Datei beinhaltet Makros.
          Möchten Sie Makros ausführen?", "PE.Controllers.Main.textLoadingDocument": "Präsentation wird geladen ", - "PE.Controllers.Main.textNoLicenseTitle": "Lizenzlimit erreicht", "PE.Controllers.Main.textNo": "Nein", + "PE.Controllers.Main.textNoLicenseTitle": "Lizenzlimit erreicht", "PE.Controllers.Main.textOK": "OK", "PE.Controllers.Main.textPaidFeature": "Kostenpflichtige Funktion", "PE.Controllers.Main.textPassword": "Kennwort", @@ -250,8 +251,8 @@ "PE.Controllers.Main.uploadImageTextText": "Bild wird hochgeladen...", "PE.Controllers.Main.uploadImageTitleText": "Bild wird hochgeladen", "PE.Controllers.Main.waitText": "Bitte warten...", - "PE.Controllers.Main.warnLicenseExp": "Ihre Lizenz ist abgelaufen.
          Bitte aktualisieren Sie Ihre Lizenz und laden Sie die Seite neu.", "PE.Controllers.Main.warnLicenseExceeded": "Sie haben das Limit für gleichzeitige Verbindungen in %1-Editoren erreicht. Dieses Dokument wird nur zum Anzeigen geöffnet.
          Bitte wenden Sie sich an Ihren Administrator, um weitere Informationen zu erhalten.", + "PE.Controllers.Main.warnLicenseExp": "Ihre Lizenz ist abgelaufen.
          Bitte aktualisieren Sie Ihre Lizenz und laden Sie die Seite neu.", "PE.Controllers.Main.warnLicenseUsersExceeded": "Sie haben das Benutzerlimit für %1-Editoren erreicht. Bitte wenden Sie sich an Ihren Administrator, um weitere Informationen zu erhalten.", "PE.Controllers.Main.warnNoLicense": "Sie haben das Limit für gleichzeitige Verbindungen in %1-Editoren erreicht. Dieses Dokument wird nur zum Anzeigen geöffnet.
          Bitte kontaktieren Sie unser Verkaufsteam, um persönliche Upgrade-Bedingungen zu erhalten.", "PE.Controllers.Main.warnNoLicenseUsers": "Sie haben das Benutzerlimit für %1-Editoren erreicht. Bitte kontaktieren Sie unser Verkaufsteam, um persönliche Upgrade-Bedingungen zu erhalten.", diff --git a/apps/presentationeditor/mobile/locale/en.json b/apps/presentationeditor/mobile/locale/en.json index 24a2a395f..f239c7d81 100644 --- a/apps/presentationeditor/mobile/locale/en.json +++ b/apps/presentationeditor/mobile/locale/en.json @@ -114,6 +114,7 @@ "PE.Controllers.Main.errorFileSizeExceed": "The file size exceeds the limitation set for your server.
          Please contact your Document Server administrator for details.", "PE.Controllers.Main.errorKeyEncrypt": "Unknown key descriptor", "PE.Controllers.Main.errorKeyExpire": "Key descriptor expired", + "PE.Controllers.Main.errorOpensource": "Using the free Community version you can open documents for viewing only. To access mobile web editors, a commercial license is required.", "PE.Controllers.Main.errorProcessSaveResult": "Saving is failed.", "PE.Controllers.Main.errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", "PE.Controllers.Main.errorSessionAbsolute": "The document editing session has expired. Please reload the page.", @@ -122,7 +123,6 @@ "PE.Controllers.Main.errorStockChart": "Incorrect row order. To build a stock chart place the data on the sheet in the following order:
          opening price, max price, min price, closing price.", "PE.Controllers.Main.errorUpdateVersion": "The file version has been changed. The page will be reloaded.", "PE.Controllers.Main.errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
          Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.", - "PE.Controllers.Main.errorOpensource": "Using the free Community version you can open documents for viewing only. To access mobile web editors, a commercial license is required.", "PE.Controllers.Main.errorUserDrop": "The file cannot be accessed right now.", "PE.Controllers.Main.errorUsersExceed": "The number of users was exceeded", "PE.Controllers.Main.errorViewerDisconnect": "Connection is lost. You can still view the document,
          but will not be able to download it until the connection is restored and page is reloaded.", @@ -168,8 +168,8 @@ "PE.Controllers.Main.textDone": "Done", "PE.Controllers.Main.textHasMacros": "The file contains automatic macros.
          Do you want to run macros?", "PE.Controllers.Main.textLoadingDocument": "Loading presentation", - "PE.Controllers.Main.textNoLicenseTitle": "License limit reached", "PE.Controllers.Main.textNo": "No", + "PE.Controllers.Main.textNoLicenseTitle": "License limit reached", "PE.Controllers.Main.textOK": "OK", "PE.Controllers.Main.textPaidFeature": "Paid feature", "PE.Controllers.Main.textPassword": "Password", @@ -254,11 +254,11 @@ "PE.Controllers.Main.uploadImageTextText": "Uploading image...", "PE.Controllers.Main.uploadImageTitleText": "Uploading Image", "PE.Controllers.Main.waitText": "Please, wait...", + "PE.Controllers.Main.warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only.
          Contact your administrator to learn more.", "PE.Controllers.Main.warnLicenseExp": "Your license has expired.
          Please update your license and refresh the page.", + "PE.Controllers.Main.warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", "PE.Controllers.Main.warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only.
          Contact %1 sales team for personal upgrade terms.", "PE.Controllers.Main.warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", - "PE.Controllers.Main.warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only.
          Contact your administrator to learn more.", - "PE.Controllers.Main.warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", "PE.Controllers.Main.warnProcessRightsChange": "You have been denied the right to edit the file.", "PE.Controllers.Search.textNoTextFound": "Text not Found", "PE.Controllers.Search.textReplaceAll": "Replace All", diff --git a/apps/presentationeditor/mobile/locale/es.json b/apps/presentationeditor/mobile/locale/es.json index 773bf94c1..3c32cabf0 100644 --- a/apps/presentationeditor/mobile/locale/es.json +++ b/apps/presentationeditor/mobile/locale/es.json @@ -1,17 +1,34 @@ { + "Common.Controllers.Collaboration.textAddReply": "Responder", + "Common.Controllers.Collaboration.textCancel": "Cancelar", + "Common.Controllers.Collaboration.textDeleteComment": "Eliminar comentario", + "Common.Controllers.Collaboration.textDeleteReply": "Eliminar respuesta", + "Common.Controllers.Collaboration.textDone": "Listo", + "Common.Controllers.Collaboration.textEdit": "Editar", "Common.Controllers.Collaboration.textEditUser": "El documento está siendo editado por usuarios:", + "Common.Controllers.Collaboration.textMessageDeleteComment": "¿Realmente quiere eliminar este comentario?", + "Common.Controllers.Collaboration.textMessageDeleteReply": "¿Realmente quiere eliminar esta respuesta?", + "Common.Controllers.Collaboration.textReopen": "Volver a abrir", + "Common.Controllers.Collaboration.textResolve": "Resolver", + "Common.Controllers.Collaboration.textYes": "Sí", "Common.UI.ThemeColorPalette.textCustomColors": "Colores personalizados", "Common.UI.ThemeColorPalette.textStandartColors": "Colores estándar", "Common.UI.ThemeColorPalette.textThemeColors": "Colores de tema", "Common.Utils.Metric.txtCm": "cm", "Common.Utils.Metric.txtPt": "pt", + "Common.Views.Collaboration.textAddReply": "Añadir respuesta", "Common.Views.Collaboration.textBack": "Atrás", + "Common.Views.Collaboration.textCancel": "Cancelar", "Common.Views.Collaboration.textCollaboration": "Colaboración", + "Common.Views.Collaboration.textDone": "Listo", + "Common.Views.Collaboration.textEditReply": "Editar respuesta", "Common.Views.Collaboration.textEditUsers": "Usuarios", + "Common.Views.Collaboration.textEditСomment": "Editar comentario", "Common.Views.Collaboration.textNoComments": "Esta presentación no contiene comentarios", "Common.Views.Collaboration.textСomments": "Comentarios", "PE.Controllers.AddContainer.textImage": "Imagen", "PE.Controllers.AddContainer.textLink": "Enlace", + "PE.Controllers.AddContainer.textOther": "Otro", "PE.Controllers.AddContainer.textShape": "Forma", "PE.Controllers.AddContainer.textSlide": "Diapositiva", "PE.Controllers.AddContainer.textTable": "Tabla", @@ -26,11 +43,16 @@ "PE.Controllers.AddLink.textPrev": "Diapositiva anterior", "PE.Controllers.AddLink.textSlide": "Diapositiva", "PE.Controllers.AddLink.txtNotUrl": "Este campo debe ser una dirección URL en el formato 'http://www.example.com'", + "PE.Controllers.AddOther.textCancel": "Cancelar", + "PE.Controllers.AddOther.textContinue": "Continuar", + "PE.Controllers.AddOther.textDelete": "Eliminar", + "PE.Controllers.AddOther.textDeleteDraft": "¿Realmente quiere eliminar el borrador?", "PE.Controllers.AddTable.textCancel": "Cancelar", "PE.Controllers.AddTable.textColumns": "Columnas", "PE.Controllers.AddTable.textRows": "Filas", "PE.Controllers.AddTable.textTableSize": "Tamaño de tabla", "PE.Controllers.DocumentHolder.errorCopyCutPaste": "Las acciones de copiar, cortar y pegar utilizando el menú contextual se realizarán sólo dentro del archivo actual.", + "PE.Controllers.DocumentHolder.menuAddComment": "Agregar comentario", "PE.Controllers.DocumentHolder.menuAddLink": "Añadir enlace ", "PE.Controllers.DocumentHolder.menuCopy": "Copiar ", "PE.Controllers.DocumentHolder.menuCut": "Cortar", @@ -39,6 +61,7 @@ "PE.Controllers.DocumentHolder.menuMore": "Más", "PE.Controllers.DocumentHolder.menuOpenLink": "Abrir enlace", "PE.Controllers.DocumentHolder.menuPaste": "Pegar", + "PE.Controllers.DocumentHolder.menuViewComment": "Ver comentario", "PE.Controllers.DocumentHolder.sheetCancel": "Cancelar", "PE.Controllers.DocumentHolder.textCopyCutPasteActions": "Acciones de Copiar, Cortar y Pegar", "PE.Controllers.DocumentHolder.textDoNotShowAgain": "No mostrar otra vez", @@ -91,6 +114,7 @@ "PE.Controllers.Main.errorFileSizeExceed": "El tamaño del archivo excede la limitación establecida para su servidor. Póngase en contacto con el administrador del Servidor de documentos para obtener más información.", "PE.Controllers.Main.errorKeyEncrypt": "Descriptor de clave desconocido", "PE.Controllers.Main.errorKeyExpire": "Descriptor de clave ha expirado", + "PE.Controllers.Main.errorOpensource": "Usando la gratuita versión Community, puede abrir los documentos sólo para verlos. Para acceder a los editores web móviles se requiere una licencia comercial.", "PE.Controllers.Main.errorProcessSaveResult": "Fallo en guardar", "PE.Controllers.Main.errorServerVersion": "La versión del editor ha sido actualizada. La página será recargada para aplicar los cambios.", "PE.Controllers.Main.errorStockChart": "Orden de las filas incorrecto. Para crear un gráfico de cotizaciones introduzca los datos en la hoja de la forma siguiente:
          precio de apertura, precio máximo, precio mínimo, precio de cierre.", @@ -139,15 +163,19 @@ "PE.Controllers.Main.textContactUs": "Equipo de ventas", "PE.Controllers.Main.textCustomLoader": "Note, por favor, que según los términos de la licencia Usted no tiene derecho a cambiar el cargador.
          Por favor, póngase en contacto con nuestro Departamento de Ventas para obtener una cotización.", "PE.Controllers.Main.textDone": "Listo", + "PE.Controllers.Main.textHasMacros": "El archivo contiene macros automáticas.
          ¿Quiere ejecutar macros?", "PE.Controllers.Main.textLoadingDocument": "Cargando presentación", - "PE.Controllers.Main.textNoLicenseTitle": "%1 limitación de conexiones", + "PE.Controllers.Main.textNo": "No", + "PE.Controllers.Main.textNoLicenseTitle": "Se ha alcanzado el límite de licencias", "PE.Controllers.Main.textOK": "OK", "PE.Controllers.Main.textPaidFeature": "Función de pago", "PE.Controllers.Main.textPassword": "Contraseña", "PE.Controllers.Main.textPreloader": "Cargando...", + "PE.Controllers.Main.textRemember": "Recordar mi elección", "PE.Controllers.Main.textShape": "Forma", "PE.Controllers.Main.textTryUndoRedo": "Las funciones Deshacer/Rehacer son desactivados en el modo de co-edición Rápido.", "PE.Controllers.Main.textUsername": "Nombre de usuario", + "PE.Controllers.Main.textYes": "Sí", "PE.Controllers.Main.titleLicenseExp": "Licencia ha expirado", "PE.Controllers.Main.titleServerVersion": "Editor ha sido actualizado", "PE.Controllers.Main.txtArt": "Introduzca su texto aquí", @@ -258,6 +286,24 @@ "PE.Views.AddLink.textNumber": "Número de diapositiva", "PE.Views.AddLink.textPrev": "Diapositiva anterior", "PE.Views.AddLink.textTip": "Consejo de pantalla", + "PE.Views.AddOther.textAddComment": "Añadir comentario", + "PE.Views.AddOther.textBack": "Atrás", + "PE.Views.AddOther.textComment": "Comentario", + "PE.Views.AddOther.textDisplay": "Mostrar", + "PE.Views.AddOther.textDone": "Listo", + "PE.Views.AddOther.textExternalLink": "Enlace externo", + "PE.Views.AddOther.textFirst": "Primera diapositiva", + "PE.Views.AddOther.textInsert": "Insertar", + "PE.Views.AddOther.textInternalLink": "Diapositiva en esta presentación", + "PE.Views.AddOther.textLast": "Última diapositiva", + "PE.Views.AddOther.textLink": "Enlace", + "PE.Views.AddOther.textLinkSlide": "Enlace a", + "PE.Views.AddOther.textLinkType": "Típo de enlace", + "PE.Views.AddOther.textNext": "Diapositiva siguiente", + "PE.Views.AddOther.textNumber": "Número de diapositiva", + "PE.Views.AddOther.textPrev": "Diapositiva anterior", + "PE.Views.AddOther.textTable": "Tabla", + "PE.Views.AddOther.textTip": "Sugerencia de Pantalla", "PE.Views.EditChart.textAddCustomColor": "Añadir un Color Personalizado", "PE.Views.EditChart.textAlign": "Alineación", "PE.Views.EditChart.textAlignBottom": "Alinear en la parte inferior", @@ -475,11 +521,16 @@ "PE.Views.Settings.textColorSchemes": "Esquemas de color", "PE.Views.Settings.textCreated": "Creado", "PE.Views.Settings.textCreateDate": "Fecha de creación", + "PE.Views.Settings.textDisableAll": "Deshabilitar todo", + "PE.Views.Settings.textDisableAllMacrosWithNotification": "Desactivar todas las macros con", + "PE.Views.Settings.textDisableAllMacrosWithoutNotification": "Desactivar Todo", "PE.Views.Settings.textDone": "Listo", "PE.Views.Settings.textDownload": "Descargar", "PE.Views.Settings.textDownloadAs": "Descargar como...", "PE.Views.Settings.textEditPresent": "Editar presentación", "PE.Views.Settings.textEmail": "email", + "PE.Views.Settings.textEnableAll": "Habilitar todo", + "PE.Views.Settings.textEnableAllMacrosWithoutNotification": "Habilitar todas las macros sin notificación ", "PE.Views.Settings.textFind": "Buscar", "PE.Views.Settings.textFindAndReplace": "Encontrar y reemplazar", "PE.Views.Settings.textHelp": "Ayuda", @@ -488,6 +539,7 @@ "PE.Views.Settings.textLastModifiedBy": "Última modificación por", "PE.Views.Settings.textLoading": "Cargando...", "PE.Views.Settings.textLocation": "Ubicación", + "PE.Views.Settings.textMacrosSettings": "Ajustes de macros", "PE.Views.Settings.textOwner": "Propietario", "PE.Views.Settings.textPoint": "Punto", "PE.Views.Settings.textPoweredBy": "Desarrollado por", @@ -497,6 +549,7 @@ "PE.Views.Settings.textPresentTitle": "Título de presentación", "PE.Views.Settings.textPrint": "Imprimir", "PE.Views.Settings.textSettings": "Ajustes", + "PE.Views.Settings.textShowNotification": "Mostrar notificación", "PE.Views.Settings.textSlideSize": "Tamaño de diapositiva", "PE.Views.Settings.textSpellcheck": "Сorrección ortográfica", "PE.Views.Settings.textSubject": "Asunto", diff --git a/apps/presentationeditor/mobile/locale/fr.json b/apps/presentationeditor/mobile/locale/fr.json index 6191d848c..d5785d3ba 100644 --- a/apps/presentationeditor/mobile/locale/fr.json +++ b/apps/presentationeditor/mobile/locale/fr.json @@ -1,165 +1,193 @@ { - "Common.Controllers.Collaboration.textEditUser": "Le document est en cours de modification par utilisateurs :", + "Common.Controllers.Collaboration.textAddReply": "Ajouter une réponse", + "Common.Controllers.Collaboration.textCancel": "Annuler", + "Common.Controllers.Collaboration.textDeleteComment": "Supprimer commentaire", + "Common.Controllers.Collaboration.textDeleteReply": "Supprimer réponse", + "Common.Controllers.Collaboration.textDone": "Terminé", + "Common.Controllers.Collaboration.textEdit": "Modifier", + "Common.Controllers.Collaboration.textEditUser": "Utilisateurs en train d'éditer le fichier :", + "Common.Controllers.Collaboration.textMessageDeleteComment": "Voulez-vous vraiment supprimer ce commentaire ?", + "Common.Controllers.Collaboration.textMessageDeleteReply": "Voulez-vous vraiment supprimer cette réponse ?", + "Common.Controllers.Collaboration.textReopen": "Rouvrir", + "Common.Controllers.Collaboration.textResolve": "Résoudre", + "Common.Controllers.Collaboration.textYes": "Oui", "Common.UI.ThemeColorPalette.textCustomColors": "Couleurs personnalisées", "Common.UI.ThemeColorPalette.textStandartColors": "Couleurs standard", - "Common.UI.ThemeColorPalette.textThemeColors": "Couleurs de thème", + "Common.UI.ThemeColorPalette.textThemeColors": "Couleurs thème", "Common.Utils.Metric.txtCm": "cm", "Common.Utils.Metric.txtPt": "pt", - "Common.Views.Collaboration.textBack": "Retour", + "Common.Views.Collaboration.textAddReply": "Ajouter une réponse", + "Common.Views.Collaboration.textBack": "Retour en arrière", + "Common.Views.Collaboration.textCancel": "Annuler", "Common.Views.Collaboration.textCollaboration": "Collaboration", + "Common.Views.Collaboration.textDone": "Terminé", + "Common.Views.Collaboration.textEditReply": "Modifier la réponse", "Common.Views.Collaboration.textEditUsers": "Utilisateurs", - "Common.Views.Collaboration.textNoComments": "Cette présentation n'a pas de commentaires", + "Common.Views.Collaboration.textEditСomment": "Modifier le commentaire", + "Common.Views.Collaboration.textNoComments": "Cette présentation ne contient aucun commentaire", "Common.Views.Collaboration.textСomments": "Commentaires", "PE.Controllers.AddContainer.textImage": "Image", "PE.Controllers.AddContainer.textLink": "Lien", + "PE.Controllers.AddContainer.textOther": "Autre", "PE.Controllers.AddContainer.textShape": "Forme", "PE.Controllers.AddContainer.textSlide": "Diapositive", "PE.Controllers.AddContainer.textTable": "Tableau", "PE.Controllers.AddImage.textEmptyImgUrl": "Spécifiez l'URL de l'image", - "PE.Controllers.AddImage.txtNotUrl": "Ce champ doit être une URL au format 'http://www.example.com'", + "PE.Controllers.AddImage.txtNotUrl": "Ce champ doit être une URL au format 'http://www.exemple.com'", "PE.Controllers.AddLink.textDefault": "Texte sélectionné", "PE.Controllers.AddLink.textExternalLink": "Lien externe", "PE.Controllers.AddLink.textFirst": "Première diapositive", - "PE.Controllers.AddLink.textInternalLink": "Diapositive dans cette présentation", + "PE.Controllers.AddLink.textInternalLink": "Emplacement dans cette présentation", "PE.Controllers.AddLink.textLast": "Dernière diapositive", "PE.Controllers.AddLink.textNext": "Diapositive suivante", "PE.Controllers.AddLink.textPrev": "Diapositive précédente", "PE.Controllers.AddLink.textSlide": "Diapositive", - "PE.Controllers.AddLink.txtNotUrl": "Ce champ doit être une URL au format 'http://www.example.com'", + "PE.Controllers.AddLink.txtNotUrl": "Ce champ doit être une URL au format 'http://www.exemple.com'", + "PE.Controllers.AddOther.textCancel": "Annuler", + "PE.Controllers.AddOther.textContinue": "Continuer", + "PE.Controllers.AddOther.textDelete": "Supprimer", + "PE.Controllers.AddOther.textDeleteDraft": "Voulez-vous vraiment supprimer le brouillon ?", "PE.Controllers.AddTable.textCancel": "Annuler", "PE.Controllers.AddTable.textColumns": "Colonnes", "PE.Controllers.AddTable.textRows": "Lignes", - "PE.Controllers.AddTable.textTableSize": "Taille du tableau", - "PE.Controllers.DocumentHolder.errorCopyCutPaste": "Les actions de Copier, Couper et Coller du menu contextuel seront appliquées seulement au fichier actuel.", - "PE.Controllers.DocumentHolder.menuAddLink": "Ajouter le lien", + "PE.Controllers.AddTable.textTableSize": "Taille tableau", + "PE.Controllers.DocumentHolder.errorCopyCutPaste": "Actions de copie, de coupe et de collage du menu contextuel seront appliquées seulement dans le fichier actuel.", + "PE.Controllers.DocumentHolder.menuAddComment": "Ajouter un commentaire", + "PE.Controllers.DocumentHolder.menuAddLink": "Ajouter lien", "PE.Controllers.DocumentHolder.menuCopy": "Copier", "PE.Controllers.DocumentHolder.menuCut": "Couper", "PE.Controllers.DocumentHolder.menuDelete": "Supprimer", - "PE.Controllers.DocumentHolder.menuEdit": "Modifier", - "PE.Controllers.DocumentHolder.menuMore": "Plus", - "PE.Controllers.DocumentHolder.menuOpenLink": "Ouvrir le lien", + "PE.Controllers.DocumentHolder.menuEdit": "Editer", + "PE.Controllers.DocumentHolder.menuMore": "Davantage", + "PE.Controllers.DocumentHolder.menuOpenLink": "Ouvrir lien", "PE.Controllers.DocumentHolder.menuPaste": "Coller", + "PE.Controllers.DocumentHolder.menuViewComment": "Voir le commentaire", "PE.Controllers.DocumentHolder.sheetCancel": "Annuler", - "PE.Controllers.DocumentHolder.textCopyCutPasteActions": "Fonctions de Copier, Couper et Coller", + "PE.Controllers.DocumentHolder.textCopyCutPasteActions": "Actions copier, couper et coller", "PE.Controllers.DocumentHolder.textDoNotShowAgain": "Ne plus afficher", - "PE.Controllers.DocumentPreview.txtFinalMessage": "La fin de l'aperçu de la diapositive. Cliquez pour quitter.", - "PE.Controllers.EditContainer.textChart": "Graphique", + "PE.Controllers.DocumentPreview.txtFinalMessage": "Fin de l'aperçu de la diapositive. Cliquez pour quitter.", + "PE.Controllers.EditContainer.textChart": "Diagramme", "PE.Controllers.EditContainer.textHyperlink": "Lien hypertexte", "PE.Controllers.EditContainer.textImage": "Image", - "PE.Controllers.EditContainer.textSettings": "Paramètres", + "PE.Controllers.EditContainer.textSettings": "Réglages", "PE.Controllers.EditContainer.textShape": "Forme", "PE.Controllers.EditContainer.textSlide": "Diapositive", "PE.Controllers.EditContainer.textTable": "Tableau", "PE.Controllers.EditContainer.textText": "Texte", "PE.Controllers.EditImage.textEmptyImgUrl": "Spécifiez l'URL de l'image", - "PE.Controllers.EditImage.txtNotUrl": "Ce champ doit être une URL au format 'http://www.example.com'", + "PE.Controllers.EditImage.txtNotUrl": "Ce champ doit être une URL au format 'http://www.exemple.com'", "PE.Controllers.EditLink.textDefault": "Texte sélectionné", "PE.Controllers.EditLink.textExternalLink": "Lien externe", "PE.Controllers.EditLink.textFirst": "Première diapositive", - "PE.Controllers.EditLink.textInternalLink": "Diapositive dans cette présentation", + "PE.Controllers.EditLink.textInternalLink": "Emplacement dans cette présentation", "PE.Controllers.EditLink.textLast": "Dernière diapositive", "PE.Controllers.EditLink.textNext": "Diapositive suivante", "PE.Controllers.EditLink.textPrev": "Diapositive précédente", "PE.Controllers.EditLink.textSlide": "Diapositive", - "PE.Controllers.EditLink.txtNotUrl": "Ce champ doit être une URL au format 'http://www.example.com'", + "PE.Controllers.EditLink.txtNotUrl": "Ce champ doit être une URL au format 'http://www.exemple.com'", "PE.Controllers.EditSlide.textSec": "sec", "PE.Controllers.EditText.textAuto": "Auto", "PE.Controllers.EditText.textFonts": "Polices", "PE.Controllers.EditText.textPt": "pt", - "PE.Controllers.Main.advDRMEnterPassword": "Entrez votre mot de passe:", + "PE.Controllers.Main.advDRMEnterPassword": "Entrez votre mot de passe :", "PE.Controllers.Main.advDRMOptions": "Fichier protégé", - "PE.Controllers.Main.advDRMPassword": " Mot de passe", - "PE.Controllers.Main.applyChangesTextText": "Chargement des données en cours...", + "PE.Controllers.Main.advDRMPassword": "Mot de passe", + "PE.Controllers.Main.applyChangesTextText": "Chargement données en cours...", "PE.Controllers.Main.applyChangesTitleText": "Chargement des données", - "PE.Controllers.Main.closeButtonText": " Fermer le fichier", - "PE.Controllers.Main.convertationTimeoutText": "Délai de conversion expiré.", + "PE.Controllers.Main.closeButtonText": "Fermer fichier", + "PE.Controllers.Main.convertationTimeoutText": "Délai d'attente de la conversion dépassé ", "PE.Controllers.Main.criticalErrorExtText": "Appuyez sur OK pour revenir à la liste des documents.", "PE.Controllers.Main.criticalErrorTitle": "Erreur", - "PE.Controllers.Main.downloadErrorText": "Échec du téléchargement.", - "PE.Controllers.Main.downloadTextText": "Téléchargement de la présentation...", - "PE.Controllers.Main.downloadTitleText": "Téléchargement de la présentation", + "PE.Controllers.Main.downloadErrorText": "Téléchargement echoué.", + "PE.Controllers.Main.downloadTextText": "Téléchargement présentation...", + "PE.Controllers.Main.downloadTitleText": "Téléchargement présentation", "PE.Controllers.Main.errorAccessDeny": "Vous tentez d'exéсuter une action pour laquelle vous ne disposez pas de droits.
          Veuillez contacter l'administrateur de Document Server.", - "PE.Controllers.Main.errorBadImageUrl": "L'URL de l'image est incorrecte", - "PE.Controllers.Main.errorCoAuthoringDisconnect": "La connexion au serveur perdue. Désolé, vous ne pouvez plus modifier le document.", - "PE.Controllers.Main.errorConnectToServer": "Impossible d'enregistrer le document. Veuillez vérifier vos paramètres de connexion ou contactez l'administrateur.
          Lorsque vous cliquez sur le bouton 'OK', vous serez invité à télécharger le document.", - "PE.Controllers.Main.errorDatabaseConnection": "Erreur externe.
          Erreur de connexion à la base de données.Contactez le support.", - "PE.Controllers.Main.errorDataEncrypted": "Les modifications chiffrées ont été reçues, elle ne peuvent pas être déchiffrées.", + "PE.Controllers.Main.errorBadImageUrl": "URL image incorrecte", + "PE.Controllers.Main.errorCoAuthoringDisconnect": "Connexion au serveur perdue. Vous ne pouvez plus éditer le document.", + "PE.Controllers.Main.errorConnectToServer": "Enregistrement document échoué. Veuillez vérifier les paramètres de connexion ou contactez l'administrateur.
          Lorsque vous cliquez sur le bouton « OK », vous serez invité à télécharger le document.", + "PE.Controllers.Main.errorDatabaseConnection": "Erreur externe.
          Erreur connexion base de données. Contactez l'assistance technique.", + "PE.Controllers.Main.errorDataEncrypted": "Modifications encodées reçues, mais ne peuvent pas être déchiffrées.", "PE.Controllers.Main.errorDataRange": "Plage de données incorrecte.", - "PE.Controllers.Main.errorDefaultMessage": "Code d'erreur: %1", - "PE.Controllers.Main.errorEditingDownloadas": "Une erreure s'est produite lors du travail sur le document.
          Utilisez l'option \"Télécharger\" pour enregistrer la copie de sauvegarde sur le disque dur de votre ordinateur.", - "PE.Controllers.Main.errorFilePassProtect": "Le fichier est protégé par le mot de passe et ne peut pas être ouvert.", - "PE.Controllers.Main.errorFileSizeExceed": "La taille du fichier dépasse les limites établies sur votre serveur.
          Veuillez contacter votre administrateur de Document Server pour obtenir plus d'information. ", - "PE.Controllers.Main.errorKeyEncrypt": "Descripteur de clés inconnu", - "PE.Controllers.Main.errorKeyExpire": "Descripteur clé a expiré", - "PE.Controllers.Main.errorProcessSaveResult": "Échec de l‘enregistrement.", - "PE.Controllers.Main.errorServerVersion": "La version de l'éditeur a été mise à jour. La page sera rechargée pour appliquer les modifications.", - "PE.Controllers.Main.errorStockChart": "L'ordre des lignes est incorrect. Pour créer un graphique boursier, organisez vos données sur la feuille de calcul dans l'ordre suivant:
          cours à l'ouverture, cours maximal, cours minimal, cours à la clôture.", - "PE.Controllers.Main.errorUpdateVersion": "La version du fichier a été changée. La page sera rechargée.", - "PE.Controllers.Main.errorUpdateVersionOnDisconnect": "La connexion internet a été rétablie, la version du fichier est modifiée.
          Avant de continuer, téléchargez le fichier ou copiez le contenu pour vous assurer que tous les changements ont été enregistrés, et rechargez la page.", + "PE.Controllers.Main.errorDefaultMessage": "Code d'erreur : %1", + "PE.Controllers.Main.errorEditingDownloadas": "Une erreure s'est produite lors du travail sur le document.
          Utilisez l'option « Télécharger » pour enregistrer une copie de sauvegarde sur le disque dur de votre système.", + "PE.Controllers.Main.errorFilePassProtect": "Le fichier est protégé par un mot de passe et ne peut pas être ouvert.", + "PE.Controllers.Main.errorFileSizeExceed": "Taille de fichier dépasse la limite pour votre serveur.
          Veuillez contacter votre administrateur de Document Server pour plus de renseignements. ", + "PE.Controllers.Main.errorKeyEncrypt": "Descripteur de clé inconnu", + "PE.Controllers.Main.errorKeyExpire": "Descripteur clé expiré", + "PE.Controllers.Main.errorOpensource": "L'utilisation la version gratuite \"Community version\" permet uniquement la visualisation des documents. Pour avoir accès à l'édition sur mobile, une version commerciale est nécessaire.", + "PE.Controllers.Main.errorProcessSaveResult": "Enregistrement échoué.", + "PE.Controllers.Main.errorServerVersion": "Version éditeur mise à jour. La page sera rafraichie pour appliquer les modifications.", + "PE.Controllers.Main.errorStockChart": "Ordre lignes incorrect. Pour créer un diagramme boursier, positionnez les données sur la feuille de calcul dans l'ordre suivant :
          cours à l'ouverture, cours maximal, cours minimal, cours à la clôture.", + "PE.Controllers.Main.errorUpdateVersion": "Version fichier changée. La page sera rafraichie.", + "PE.Controllers.Main.errorUpdateVersionOnDisconnect": "Connexion internet rétablie, et la version du fichier modifiée.
          Avant de continuer, téléchargez le fichier ou copiez le contenu pour vous assurer que tous les changements ont été enregistrés, puis rafraichissez la page.", "PE.Controllers.Main.errorUserDrop": "Impossible d'accéder au fichier.", - "PE.Controllers.Main.errorUsersExceed": "Le nombre des utilisateurs a été dépassé", - "PE.Controllers.Main.errorViewerDisconnect": "La connexion a été perdue. Vous pouvez toujours afficher le document,
          mais vous ne pourrez pas le téléсharger tant que la connexion n'est pas restaurée.", - "PE.Controllers.Main.leavePageText": "Vous avez des modifications non enregistrées dans ce document. Cliquez sur 'Rester sur cette Page' pour la sauvegarde automatique du document. Cliquez sur 'Quitter cette Page' pour ignorer toutes les modifications non enregistrées.", - "PE.Controllers.Main.loadFontsTextText": "Chargement des données en cours...", + "PE.Controllers.Main.errorUsersExceed": "Le nombre d'utilisateurs a été dépassé", + "PE.Controllers.Main.errorViewerDisconnect": "Connexion perdue. Le document peut être affiché tout de même,
          mais ne pourra pas être téléсhargé sans que la connexion soit restaurée et la page rafraichie.", + "PE.Controllers.Main.leavePageText": "Vous avez des modifications non enregistrées dans ce document. Soic cliquez sur « Rester sur cette page » et attendez la sauvegarde automatique du document, soit cliquez sur « Quitter cette page » pour abandonner toutes les modifications non enregistrées.", + "PE.Controllers.Main.loadFontsTextText": "Chargement données en cours...", "PE.Controllers.Main.loadFontsTitleText": "Chargement des données", - "PE.Controllers.Main.loadFontTextText": "Chargement des données en cours...", + "PE.Controllers.Main.loadFontTextText": "Chargement données en cours...", "PE.Controllers.Main.loadFontTitleText": "Chargement des données", - "PE.Controllers.Main.loadImagesTextText": "Chargement des images...", - "PE.Controllers.Main.loadImagesTitleText": "Chargement des images", - "PE.Controllers.Main.loadImageTextText": "Chargement d'une image...", - "PE.Controllers.Main.loadImageTitleText": "Chargement d'une image", - "PE.Controllers.Main.loadingDocumentTextText": "Chargement de la présentation...", - "PE.Controllers.Main.loadingDocumentTitleText": "Chargement de la présentation", - "PE.Controllers.Main.loadThemeTextText": "Chargement du thème en cours...", - "PE.Controllers.Main.loadThemeTitleText": "Chargement du thème", + "PE.Controllers.Main.loadImagesTextText": "Chargement images en cours...", + "PE.Controllers.Main.loadImagesTitleText": "Chargement images", + "PE.Controllers.Main.loadImageTextText": "Chargement image en cours...", + "PE.Controllers.Main.loadImageTitleText": "Chargement image", + "PE.Controllers.Main.loadingDocumentTextText": "Chargement présentation en cours...", + "PE.Controllers.Main.loadingDocumentTitleText": "Chargement présentation", + "PE.Controllers.Main.loadThemeTextText": "Chargement thème en cours...", + "PE.Controllers.Main.loadThemeTitleText": "Chargement thème", "PE.Controllers.Main.notcriticalErrorTitle": "Avertissement", "PE.Controllers.Main.openErrorText": "Une erreur s’est produite lors de l’ouverture du fichier", - "PE.Controllers.Main.openTextText": "Ouverture du document...", - "PE.Controllers.Main.openTitleText": "Ouverture du document", - "PE.Controllers.Main.printTextText": "Impression du document...", - "PE.Controllers.Main.printTitleText": "Impression du document", - "PE.Controllers.Main.reloadButtonText": "Recharger la page", - "PE.Controllers.Main.requestEditFailedMessageText": "Quelqu'un est en train de modifier ce document. Veuillez réessayer plus tard.", + "PE.Controllers.Main.openTextText": "Ouverture document...", + "PE.Controllers.Main.openTitleText": "Ouverture document", + "PE.Controllers.Main.printTextText": "Impression du document en cours...", + "PE.Controllers.Main.printTitleText": "Impression document", + "PE.Controllers.Main.reloadButtonText": "Recharger page", + "PE.Controllers.Main.requestEditFailedMessageText": "Quelqu'un d'autre est en train d'éditer ce document. Veuillez réessayer plus tard.", "PE.Controllers.Main.requestEditFailedTitleText": "Accès refusé", - "PE.Controllers.Main.saveErrorText": "Une erreur s'est produite lors de l'enregistrement du fichier", + "PE.Controllers.Main.saveErrorText": "Une erreur s'est produite lors de l'enregistrement du fichier.", "PE.Controllers.Main.savePreparingText": "Préparation à l'enregistrement ", - "PE.Controllers.Main.savePreparingTitle": "Préparation à l'enregistrement est en cours. Veuillez patienter...", - "PE.Controllers.Main.saveTextText": "Enregistrement du document...", - "PE.Controllers.Main.saveTitleText": "Enregistrement du document", - "PE.Controllers.Main.scriptLoadError": "La connexion est trop lente, certains éléments ne peuvent pas être chargés. Veuillez recharger la page.", + "PE.Controllers.Main.savePreparingTitle": "Préparation à l'enregistrement en cours. Veuillez patienter...", + "PE.Controllers.Main.saveTextText": "Enregistrement document en cours...", + "PE.Controllers.Main.saveTitleText": "Enregistrement document", + "PE.Controllers.Main.scriptLoadError": "Connexion trop lente. Certains éléments n'ont pas pu être chargés. Veuillez rafraichir la page.", "PE.Controllers.Main.splitDividerErrorText": "Le nombre de lignes doit être un diviseur de %1", "PE.Controllers.Main.splitMaxColsErrorText": "Le nombre de colonnes doit être moins que %1", "PE.Controllers.Main.splitMaxRowsErrorText": "Le nombre de lignes doit être moins que %1", "PE.Controllers.Main.textAnonymous": "Anonyme", - "PE.Controllers.Main.textBack": "Retour", - "PE.Controllers.Main.textBuyNow": "Visiter le site web", + "PE.Controllers.Main.textBack": "Retour en arrière", + "PE.Controllers.Main.textBuyNow": "Visiter site web", "PE.Controllers.Main.textCancel": "Annuler", "PE.Controllers.Main.textClose": "Fermer", - "PE.Controllers.Main.textCloseTip": "Appuyez sur le conseil pour le fermer", - "PE.Controllers.Main.textContactUs": "L'équipe de ventes", - "PE.Controllers.Main.textCustomLoader": "Veuillez noter que conformément aux clauses du contrat de licence vous n'êtes pas autorisé à changer le chargeur.
          Veuillez contacter notre Service des Ventes pour obtenir le devis.", - "PE.Controllers.Main.textDone": "Terminé", - "PE.Controllers.Main.textLoadingDocument": "Chargement de la présentation", + "PE.Controllers.Main.textCloseTip": "Appuyez sur l'info-bulle pour le fermer", + "PE.Controllers.Main.textContactUs": "Contacter l'équipe de ventes", + "PE.Controllers.Main.textCustomLoader": "Veuillez noter que, conformément aux clauses du contrat de licence, vous n'êtes pas autorisé à changer le chargeur.
          Veuillez contacter notre service des ventes pour demander un devis.", + "PE.Controllers.Main.textDone": "Effectué", + "PE.Controllers.Main.textHasMacros": "Le fichier contient des macros automatiques.
          Voulez-vous exécuter les macros ?", + "PE.Controllers.Main.textLoadingDocument": "Chargement présentation", + "PE.Controllers.Main.textNo": "Non", "PE.Controllers.Main.textNoLicenseTitle": "La limite de la licence est atteinte", "PE.Controllers.Main.textOK": "OK", - "PE.Controllers.Main.textPaidFeature": "Fonction payée", + "PE.Controllers.Main.textPaidFeature": "Fonctionnalité payable", "PE.Controllers.Main.textPassword": "Mot de passe", "PE.Controllers.Main.textPreloader": "Chargement en cours...", + "PE.Controllers.Main.textRemember": "Se souvenir de mon choix", "PE.Controllers.Main.textShape": "Forme", "PE.Controllers.Main.textTryUndoRedo": "Les fonctions Annuler/Rétablir sont désactivées pour le mode de co-édition rapide.", "PE.Controllers.Main.textUsername": "Nom d'utilisateur", + "PE.Controllers.Main.textYes": "Oui", "PE.Controllers.Main.titleLicenseExp": "Licence expirée", - "PE.Controllers.Main.titleServerVersion": "L'éditeur est mis à jour", - "PE.Controllers.Main.txtArt": "Entrez votre texte", + "PE.Controllers.Main.titleServerVersion": "Editeur mis à jour", + "PE.Controllers.Main.txtArt": "Votre texte ici", "PE.Controllers.Main.txtBasicShapes": "Formes de base", "PE.Controllers.Main.txtButtons": "Boutons", "PE.Controllers.Main.txtCallouts": "Légendes", - "PE.Controllers.Main.txtCharts": "Graphiques", - "PE.Controllers.Main.txtClipArt": "Clip Art", + "PE.Controllers.Main.txtCharts": "Diagrammes", + "PE.Controllers.Main.txtClipArt": "Clipart", "PE.Controllers.Main.txtDateTime": "Date et heure", "PE.Controllers.Main.txtDiagram": "SmartArt", - "PE.Controllers.Main.txtDiagramTitle": "Titre du graphique", - "PE.Controllers.Main.txtEditingMode": "Définition du mode d'édition...", + "PE.Controllers.Main.txtDiagramTitle": "Titre du diagramme", + "PE.Controllers.Main.txtEditingMode": "Réglage mode d'édition...", "PE.Controllers.Main.txtFiguredArrows": "Flèches figurées", "PE.Controllers.Main.txtFooter": "Pied de page", "PE.Controllers.Main.txtHeader": "En-tête", @@ -169,16 +197,16 @@ "PE.Controllers.Main.txtMedia": "Média", "PE.Controllers.Main.txtNeedSynchronize": "Il y a des mises à jour", "PE.Controllers.Main.txtPicture": "Image", - "PE.Controllers.Main.txtProtected": "Une fois le mot de passe est saisi et le ficher ouvert, le mot de passe actuel sera réinitialisé", + "PE.Controllers.Main.txtProtected": "Une fois le mot de passe a été saisi et le ficher ouvert, le mot de passe actuel sera réinitialisé", "PE.Controllers.Main.txtRectangles": "Rectangles", "PE.Controllers.Main.txtSeries": "Série", "PE.Controllers.Main.txtSldLtTBlank": "Vide", - "PE.Controllers.Main.txtSldLtTChart": "Graphique", - "PE.Controllers.Main.txtSldLtTChartAndTx": "Graphique et texte", - "PE.Controllers.Main.txtSldLtTClipArtAndTx": "Clip Art et texte", - "PE.Controllers.Main.txtSldLtTClipArtAndVertTx": "Clip Art et texte vertical", + "PE.Controllers.Main.txtSldLtTChart": "Diagramme", + "PE.Controllers.Main.txtSldLtTChartAndTx": "Diagramme et texte", + "PE.Controllers.Main.txtSldLtTClipArtAndTx": "Clipart et texte", + "PE.Controllers.Main.txtSldLtTClipArtAndVertTx": "Clipart et texte vertical", "PE.Controllers.Main.txtSldLtTCust": "Personnalisé", - "PE.Controllers.Main.txtSldLtTDgm": "Diagramme", + "PE.Controllers.Main.txtSldLtTDgm": "Schéma", "PE.Controllers.Main.txtSldLtTFourObj": "Quatre objets", "PE.Controllers.Main.txtSldLtTMediaAndTx": "Média et texte", "PE.Controllers.Main.txtSldLtTObj": "Titre et objet", @@ -188,10 +216,10 @@ "PE.Controllers.Main.txtSldLtTObjOverTx": "Objet sur texte", "PE.Controllers.Main.txtSldLtTObjTx": "Titre, objet et légende", "PE.Controllers.Main.txtSldLtTPicTx": "Image et légende", - "PE.Controllers.Main.txtSldLtTSecHead": "En-tête de section", + "PE.Controllers.Main.txtSldLtTSecHead": "En-tête section", "PE.Controllers.Main.txtSldLtTTbl": "Tableau", - "PE.Controllers.Main.txtSldLtTTitle": "Diapositive de titre", - "PE.Controllers.Main.txtSldLtTTitleOnly": "Titre seul", + "PE.Controllers.Main.txtSldLtTTitle": "Titre", + "PE.Controllers.Main.txtSldLtTTitleOnly": "Titre seulement", "PE.Controllers.Main.txtSldLtTTwoColTx": "Texte de deux colonnes", "PE.Controllers.Main.txtSldLtTTwoObj": "Deux objets", "PE.Controllers.Main.txtSldLtTTwoObjAndObj": "Deux objets et objet", @@ -199,66 +227,84 @@ "PE.Controllers.Main.txtSldLtTTwoObjOverTx": "Deux objets sur texte", "PE.Controllers.Main.txtSldLtTTwoTxTwoObj": "Deux textes et deux objets", "PE.Controllers.Main.txtSldLtTTx": "Texte", - "PE.Controllers.Main.txtSldLtTTxAndChart": "Texte et graphique", - "PE.Controllers.Main.txtSldLtTTxAndClipArt": "Texte et Clip Art", + "PE.Controllers.Main.txtSldLtTTxAndChart": "Texte et diagramme", + "PE.Controllers.Main.txtSldLtTTxAndClipArt": "Texte et Clipart", "PE.Controllers.Main.txtSldLtTTxAndMedia": "Texte et média", "PE.Controllers.Main.txtSldLtTTxAndObj": "Texte et objet", "PE.Controllers.Main.txtSldLtTTxAndTwoObj": "Texte et deux objets", "PE.Controllers.Main.txtSldLtTTxOverObj": "Texte sur objet", "PE.Controllers.Main.txtSldLtTVertTitleAndTx": "Titre vertical et texte", - "PE.Controllers.Main.txtSldLtTVertTitleAndTxOverChart": "Titre vertical et texte sur graphique", + "PE.Controllers.Main.txtSldLtTVertTitleAndTxOverChart": "Titre vertical et texte sur diagramme", "PE.Controllers.Main.txtSldLtTVertTx": "Texte vertical", "PE.Controllers.Main.txtSlideNumber": "Numéro de diapositive", - "PE.Controllers.Main.txtSlideSubtitle": "Sous-titre de diapositive", - "PE.Controllers.Main.txtSlideText": "Texte de la diapositive", - "PE.Controllers.Main.txtSlideTitle": "Titre de la diapositive", + "PE.Controllers.Main.txtSlideSubtitle": "Sous-titre diapositive", + "PE.Controllers.Main.txtSlideText": "Texte diapositive", + "PE.Controllers.Main.txtSlideTitle": "Titre diapositive", "PE.Controllers.Main.txtStarsRibbons": "Étoiles et rubans", "PE.Controllers.Main.txtXAxis": "Axe X", "PE.Controllers.Main.txtYAxis": "Axe Y", "PE.Controllers.Main.unknownErrorText": "Erreur inconnue.", - "PE.Controllers.Main.unsupportedBrowserErrorText": "Votre navigateur n'est pas pris en charge.", + "PE.Controllers.Main.unsupportedBrowserErrorText": "Votre navigateur n'est pas compatible.", "PE.Controllers.Main.uploadImageExtMessage": "Format d'image inconnu.", - "PE.Controllers.Main.uploadImageFileCountMessage": "Aucune image chargée.", - "PE.Controllers.Main.uploadImageSizeMessage": "La taille de l'image a dépassé la limite maximale.", - "PE.Controllers.Main.uploadImageTextText": "Chargement d'une image en cours...", - "PE.Controllers.Main.uploadImageTitleText": "Chargement d'une image", + "PE.Controllers.Main.uploadImageFileCountMessage": "Aucune image téléchargée.", + "PE.Controllers.Main.uploadImageSizeMessage": "Taille image a dépassé la limite maximale.", + "PE.Controllers.Main.uploadImageTextText": "Téléchargement image en cours...", + "PE.Controllers.Main.uploadImageTitleText": "Téléchargement image", "PE.Controllers.Main.waitText": "Veuillez patienter...", - "PE.Controllers.Main.warnLicenseExp": "Votre licence a expiré.
          Veuillez mettre à jour votre licence et actualisez la page.", - "PE.Controllers.Main.warnLicenseExceeded": "Vous avez dépassé le nombre maximal de connexions simultanées aux éditeurs %1. Ce document sera ouvert à la lecture seulement.
          Contactez votre administrateur pour en savoir davantage.", - "PE.Controllers.Main.warnLicenseUsersExceeded": "Vous avez dépassé le nombre maximal d’utilisateurs des éditeurs %1. Contactez votre administrateur pour en savoir davantage.", - "PE.Controllers.Main.warnNoLicense": "Vous avez dépassé le nombre maximal de connexions simultanées aux éditeurs %1. Ce document sera ouvert à la lecture seulement.
          Contactez l’équipe des ventes %1 pour mettre à jour les termes de la licence.", - "PE.Controllers.Main.warnNoLicenseUsers": "Vous avez dépassé le nombre maximal d’utilisateurs des éditeurs %1. Contactez l’équipe des ventes %1 pour mettre à jour les termes de la licence.", + "PE.Controllers.Main.warnLicenseExceeded": "Vous avez dépassé le nombre maximal de connexions simultanées aux éditeurs %1. Ce document sera ouvert en lecture seule.
          Contactez votre administrateur pour en savoir davantage.", + "PE.Controllers.Main.warnLicenseExp": "Votre licence est expirée.
          Veuillez mettre à jour votre licence et rafraichissez la page.", + "PE.Controllers.Main.warnLicenseUsersExceeded": "Vous avez atteint le nombre maximal d’utilisateurs d'éditeurs %1. Contactez votre administrateur pour en savoir davantage.", + "PE.Controllers.Main.warnNoLicense": "Vous avez dépassé le nombre maximal de connexions simultanées aux éditeurs %1. Ce document sera ouvert en lecture seule.
          Veuillez contacter le service des ventes %1 pour une mise à niveau.", + "PE.Controllers.Main.warnNoLicenseUsers": "Vous avez atteint le nombre maximal d’utilisateurs d'éditeurs %1. Contactez le service des ventes %1 pour une mise à niveau.", "PE.Controllers.Main.warnProcessRightsChange": "Le droit d'édition du fichier vous a été refusé.", - "PE.Controllers.Search.textNoTextFound": "Le texte est introuvable", + "PE.Controllers.Search.textNoTextFound": "Texte non trouvé", "PE.Controllers.Search.textReplaceAll": "Remplacer tout", - "PE.Controllers.Settings.notcriticalErrorTitle": "Attention", + "PE.Controllers.Settings.notcriticalErrorTitle": "Avertissement", "PE.Controllers.Settings.txtLoading": "Chargement en cours...", - "PE.Controllers.Toolbar.dlgLeaveMsgText": "Vous avez des modifications non enregistrées dans ce document. Cliquez sur 'Rester sur cette Page' pour la sauvegarde automatique du document. Cliquez sur 'Quitter cette Page' pour ignorer toutes les modifications non enregistrées.", + "PE.Controllers.Toolbar.dlgLeaveMsgText": "Vous avez des modifications non enregistrées dans ce document. Soic cliquez sur « Rester sur cette page » et attendez la sauvegarde automatique du document, soit cliquez sur « Quitter cette page » pour abandonner toutes les modifications non enregistrées.", "PE.Controllers.Toolbar.dlgLeaveTitleText": "Vous quittez l'application", "PE.Controllers.Toolbar.leaveButtonText": "Quitter cette page", "PE.Controllers.Toolbar.stayButtonText": "Rester sur cette page", "PE.Views.AddImage.textAddress": "Adresse", - "PE.Views.AddImage.textBack": "Retour", - "PE.Views.AddImage.textFromLibrary": "Image de la bibliothèque", - "PE.Views.AddImage.textFromURL": "Image à partir d'une URL", - "PE.Views.AddImage.textImageURL": "URL d'une image", - "PE.Views.AddImage.textInsertImage": "Insérer une image", - "PE.Views.AddImage.textLinkSettings": "Paramètres de lien", - "PE.Views.AddLink.textBack": "Retour", - "PE.Views.AddLink.textDisplay": "Afficher", + "PE.Views.AddImage.textBack": "Retour en arrière", + "PE.Views.AddImage.textFromLibrary": "Image depuis bibliothèque", + "PE.Views.AddImage.textFromURL": "Image depuis URL", + "PE.Views.AddImage.textImageURL": "URL image", + "PE.Views.AddImage.textInsertImage": "Insérer image", + "PE.Views.AddImage.textLinkSettings": "Réglages lien", + "PE.Views.AddLink.textBack": "Retour en arrière", + "PE.Views.AddLink.textDisplay": "Affichage", "PE.Views.AddLink.textExternalLink": "Lien externe", "PE.Views.AddLink.textFirst": "Première diapositive", "PE.Views.AddLink.textInsert": "Insérer", - "PE.Views.AddLink.textInternalLink": "Diapositive dans cette présentation", + "PE.Views.AddLink.textInternalLink": "Emplacement dans cette présentation", "PE.Views.AddLink.textLast": "Dernière diapositive", "PE.Views.AddLink.textLink": "Lien", "PE.Views.AddLink.textLinkSlide": "Lier à", - "PE.Views.AddLink.textLinkType": "Type de lien", + "PE.Views.AddLink.textLinkType": "Type lien", "PE.Views.AddLink.textNext": "Diapositive suivante", "PE.Views.AddLink.textNumber": "Numéro de diapositive", "PE.Views.AddLink.textPrev": "Diapositive précédente", "PE.Views.AddLink.textTip": "Info-bulle", - "PE.Views.EditChart.textAddCustomColor": "Ajouter la couleur personnalisée", + "PE.Views.AddOther.textAddComment": "Ajouter un commentaire", + "PE.Views.AddOther.textBack": "Retour", + "PE.Views.AddOther.textComment": "Commentaire", + "PE.Views.AddOther.textDisplay": "Afficher", + "PE.Views.AddOther.textDone": "Terminé", + "PE.Views.AddOther.textExternalLink": "Lien externe", + "PE.Views.AddOther.textFirst": "Première diapositive", + "PE.Views.AddOther.textInsert": "Insérer", + "PE.Views.AddOther.textInternalLink": "Diapositive dans cette présentation", + "PE.Views.AddOther.textLast": "Dernière diapositive", + "PE.Views.AddOther.textLink": "Lien", + "PE.Views.AddOther.textLinkSlide": "Lien vers", + "PE.Views.AddOther.textLinkType": "Type de lien", + "PE.Views.AddOther.textNext": "Diapositive suivante", + "PE.Views.AddOther.textNumber": "Numéro de diapositive", + "PE.Views.AddOther.textPrev": "Diapositive précédente", + "PE.Views.AddOther.textTable": "Tableau", + "PE.Views.AddOther.textTip": "Info-bulle", + "PE.Views.EditChart.textAddCustomColor": "Ajouter couleur personnalisée", "PE.Views.EditChart.textAlign": "Aligner", "PE.Views.EditChart.textAlignBottom": "Aligner en bas", "PE.Views.EditChart.textAlignCenter": "Aligner au centre", @@ -266,19 +312,19 @@ "PE.Views.EditChart.textAlignMiddle": "Aligner au milieu", "PE.Views.EditChart.textAlignRight": "Aligner à droite", "PE.Views.EditChart.textAlignTop": "Aligner en haut", - "PE.Views.EditChart.textBack": "Retour", - "PE.Views.EditChart.textBackward": "Déplacer vers l'arrière", + "PE.Views.EditChart.textBack": "Retour en arrière", + "PE.Views.EditChart.textBackward": "Déplacer en arrière", "PE.Views.EditChart.textBorder": "Bordure", "PE.Views.EditChart.textColor": "Couleur", "PE.Views.EditChart.textCustomColor": "Couleur personnalisée", "PE.Views.EditChart.textFill": "Remplissage", "PE.Views.EditChart.textForward": "Déplacer vers l'avant", - "PE.Views.EditChart.textRemoveChart": "Supprimer le graphique", + "PE.Views.EditChart.textRemoveChart": "Supprimer diagramme", "PE.Views.EditChart.textReorder": "Réorganiser", "PE.Views.EditChart.textSize": "Taille", "PE.Views.EditChart.textStyle": "Style", - "PE.Views.EditChart.textToBackground": "Mettre en arrière-plan", - "PE.Views.EditChart.textToForeground": "Mettre au premier plan", + "PE.Views.EditChart.textToBackground": "Amener en arrière plan", + "PE.Views.EditChart.textToForeground": "Amener au premier plan", "PE.Views.EditChart.textType": "Type", "PE.Views.EditChart.txtDistribHor": "Distribuer horizontalement", "PE.Views.EditChart.txtDistribVert": "Distribuer verticalement", @@ -290,38 +336,38 @@ "PE.Views.EditImage.textAlignMiddle": "Aligner au milieu", "PE.Views.EditImage.textAlignRight": "Aligner à droite", "PE.Views.EditImage.textAlignTop": "Aligner en haut", - "PE.Views.EditImage.textBack": "Retour", - "PE.Views.EditImage.textBackward": "Déplacer vers l'arrière", + "PE.Views.EditImage.textBack": "Retour en arrière", + "PE.Views.EditImage.textBackward": "Déplacer en arrière", "PE.Views.EditImage.textDefault": "Taille actuelle", "PE.Views.EditImage.textForward": "Déplacer vers l'avant", - "PE.Views.EditImage.textFromLibrary": "Image de la bibliothèque", - "PE.Views.EditImage.textFromURL": "Image à partir d'une URL", - "PE.Views.EditImage.textImageURL": "URL d'une image", - "PE.Views.EditImage.textLinkSettings": "Paramètres de lien", - "PE.Views.EditImage.textRemove": "Supprimer l'image", + "PE.Views.EditImage.textFromLibrary": "Image depuis bibliothèque", + "PE.Views.EditImage.textFromURL": "Image depuis URL", + "PE.Views.EditImage.textImageURL": "URL image", + "PE.Views.EditImage.textLinkSettings": "Réglages lien", + "PE.Views.EditImage.textRemove": "Supprimer image", "PE.Views.EditImage.textReorder": "Réorganiser", "PE.Views.EditImage.textReplace": "Remplacer", - "PE.Views.EditImage.textReplaceImg": "Remplacer l’image", - "PE.Views.EditImage.textToBackground": "Mettre en arrière-plan", - "PE.Views.EditImage.textToForeground": "Mettre au premier plan", + "PE.Views.EditImage.textReplaceImg": "Remplacer image", + "PE.Views.EditImage.textToBackground": "Amener en arrière plan", + "PE.Views.EditImage.textToForeground": "Amener au premier plan", "PE.Views.EditImage.txtDistribHor": "Distribuer horizontalement", "PE.Views.EditImage.txtDistribVert": "Distribuer verticalement", - "PE.Views.EditLink.textBack": "Retour", - "PE.Views.EditLink.textDisplay": "Afficher", - "PE.Views.EditLink.textEdit": "Modifier le lien", + "PE.Views.EditLink.textBack": "Retour en arrière", + "PE.Views.EditLink.textDisplay": "Affichage", + "PE.Views.EditLink.textEdit": "Editer lien", "PE.Views.EditLink.textExternalLink": "Lien externe", "PE.Views.EditLink.textFirst": "Première diapositive", - "PE.Views.EditLink.textInternalLink": "Diapositive dans cette présentation", + "PE.Views.EditLink.textInternalLink": "Emplacement dans cette présentation", "PE.Views.EditLink.textLast": "Dernière diapositive", "PE.Views.EditLink.textLink": "Lien", "PE.Views.EditLink.textLinkSlide": "Lier à", - "PE.Views.EditLink.textLinkType": "Type de lien", + "PE.Views.EditLink.textLinkType": "Type lien", "PE.Views.EditLink.textNext": "Diapositive suivante", "PE.Views.EditLink.textNumber": "Numéro de diapositive", "PE.Views.EditLink.textPrev": "Diapositive précédente", - "PE.Views.EditLink.textRemove": "Supprimer le lien", + "PE.Views.EditLink.textRemove": "Supprimer lien", "PE.Views.EditLink.textTip": "Info-bulle", - "PE.Views.EditShape.textAddCustomColor": "Ajouter la couleur personnalisée", + "PE.Views.EditShape.textAddCustomColor": "Ajouter couleur personnalisée", "PE.Views.EditShape.textAlign": "Aligner", "PE.Views.EditShape.textAlignBottom": "Aligner en bas", "PE.Views.EditShape.textAlignCenter": "Aligner au centre", @@ -329,8 +375,8 @@ "PE.Views.EditShape.textAlignMiddle": "Aligner au milieu", "PE.Views.EditShape.textAlignRight": "Aligner à droite", "PE.Views.EditShape.textAlignTop": "Aligner en haut", - "PE.Views.EditShape.textBack": "Retour", - "PE.Views.EditShape.textBackward": "Déplacer vers l'arrière", + "PE.Views.EditShape.textBack": "Retour en arrière", + "PE.Views.EditShape.textBackward": "Déplacer en arrière", "PE.Views.EditShape.textBorder": "Bordure", "PE.Views.EditShape.textColor": "Couleur", "PE.Views.EditShape.textCustomColor": "Couleur personnalisée", @@ -338,18 +384,18 @@ "PE.Views.EditShape.textFill": "Remplissage", "PE.Views.EditShape.textForward": "Déplacer vers l'avant", "PE.Views.EditShape.textOpacity": "Opacité", - "PE.Views.EditShape.textRemoveShape": "Supprimer la forme", + "PE.Views.EditShape.textRemoveShape": "Supprimer forme", "PE.Views.EditShape.textReorder": "Réorganiser", "PE.Views.EditShape.textReplace": "Remplacer", "PE.Views.EditShape.textSize": "Taille", "PE.Views.EditShape.textStyle": "Style", - "PE.Views.EditShape.textToBackground": "Mettre en arrière-plan", - "PE.Views.EditShape.textToForeground": "Mettre au premier plan", + "PE.Views.EditShape.textToBackground": "Amener en arrière plan", + "PE.Views.EditShape.textToForeground": "Amener au premier plan", "PE.Views.EditShape.txtDistribHor": "Distribuer horizontalement", "PE.Views.EditShape.txtDistribVert": "Distribuer verticalement", - "PE.Views.EditSlide.textAddCustomColor": "Ajouter la couleur personnalisée", + "PE.Views.EditSlide.textAddCustomColor": "Ajouter couleur personnalisée", "PE.Views.EditSlide.textApplyAll": "Appliquer à toutes les diapositives", - "PE.Views.EditSlide.textBack": "Retour", + "PE.Views.EditSlide.textBack": "Retour en arrière", "PE.Views.EditSlide.textBlack": "À travers le noir", "PE.Views.EditSlide.textBottom": "En bas", "PE.Views.EditSlide.textBottomLeft": "Bas à gauche", @@ -361,7 +407,7 @@ "PE.Views.EditSlide.textCover": "Couvrir", "PE.Views.EditSlide.textCustomColor": "Couleur personnalisée", "PE.Views.EditSlide.textDelay": "Retard", - "PE.Views.EditSlide.textDuplicateSlide": "Dupliquer la diapositive", + "PE.Views.EditSlide.textDuplicateSlide": "Dupliquer diapositive", "PE.Views.EditSlide.textDuration": "Durée", "PE.Views.EditSlide.textEffect": "Effet", "PE.Views.EditSlide.textFade": "Fondu", @@ -369,18 +415,18 @@ "PE.Views.EditSlide.textHorizontalIn": "Horizontal intérieur", "PE.Views.EditSlide.textHorizontalOut": "Horizontal extérieur", "PE.Views.EditSlide.textLayout": "Disposition", - "PE.Views.EditSlide.textLeft": "À gauche", + "PE.Views.EditSlide.textLeft": "Gauche", "PE.Views.EditSlide.textNone": "Aucun", "PE.Views.EditSlide.textOpacity": "Opacité", "PE.Views.EditSlide.textPush": "Expulsion", - "PE.Views.EditSlide.textRemoveSlide": "Supprimer la diapositive", - "PE.Views.EditSlide.textRight": "À droite", + "PE.Views.EditSlide.textRemoveSlide": "Supprimer diapositive", + "PE.Views.EditSlide.textRight": "Droite", "PE.Views.EditSlide.textSmoothly": "Transition douce", "PE.Views.EditSlide.textSplit": "Fractionner", "PE.Views.EditSlide.textStartOnClick": "Démarrer en cliquant", "PE.Views.EditSlide.textStyle": "Style", "PE.Views.EditSlide.textTheme": "Thème", - "PE.Views.EditSlide.textTop": "En haut", + "PE.Views.EditSlide.textTop": "Haut", "PE.Views.EditSlide.textTopLeft": "Haut à gauche", "PE.Views.EditSlide.textTopRight": "Haut à droite", "PE.Views.EditSlide.textTransition": "Transition", @@ -389,12 +435,12 @@ "PE.Views.EditSlide.textVerticalIn": "Vertical intérieur", "PE.Views.EditSlide.textVerticalOut": "Vertical extérieur ", "PE.Views.EditSlide.textWedge": "Coin", - "PE.Views.EditSlide.textWipe": "Effacement", - "PE.Views.EditSlide.textZoom": "Zoom", + "PE.Views.EditSlide.textWipe": "Effacer", + "PE.Views.EditSlide.textZoom": "Grossissement", "PE.Views.EditSlide.textZoomIn": "Agrandir", "PE.Views.EditSlide.textZoomOut": "Diminuer", - "PE.Views.EditSlide.textZoomRotate": "Zoom et rotation", - "PE.Views.EditTable.textAddCustomColor": "Ajouter la couleur personnalisée", + "PE.Views.EditSlide.textZoomRotate": "Grossissement et rotation", + "PE.Views.EditTable.textAddCustomColor": "Ajouter couleur personnalisée", "PE.Views.EditTable.textAlign": "Aligner", "PE.Views.EditTable.textAlignBottom": "Aligner en bas", "PE.Views.EditTable.textAlignCenter": "Aligner au centre", @@ -402,12 +448,12 @@ "PE.Views.EditTable.textAlignMiddle": "Aligner au milieu", "PE.Views.EditTable.textAlignRight": "Aligner à droite", "PE.Views.EditTable.textAlignTop": "Aligner en haut", - "PE.Views.EditTable.textBack": "Retour", - "PE.Views.EditTable.textBackward": "Déplacer vers l'arrière", - "PE.Views.EditTable.textBandedColumn": "Colonne à bandes", - "PE.Views.EditTable.textBandedRow": "Ligne à bandes", + "PE.Views.EditTable.textBack": "Retour en arrière", + "PE.Views.EditTable.textBackward": "Déplacer en arrière", + "PE.Views.EditTable.textBandedColumn": "Colonne à couleur alternée", + "PE.Views.EditTable.textBandedRow": "Ligne à couleur alternée", "PE.Views.EditTable.textBorder": "Bordure", - "PE.Views.EditTable.textCellMargins": "Marges de la cellule", + "PE.Views.EditTable.textCellMargins": "Marges de cellule", "PE.Views.EditTable.textColor": "Couleur", "PE.Views.EditTable.textCustomColor": "Couleur personnalisée", "PE.Views.EditTable.textFill": "Remplissage", @@ -416,24 +462,24 @@ "PE.Views.EditTable.textHeaderRow": "Ligne d’en-tête", "PE.Views.EditTable.textLastColumn": "Dernière colonne", "PE.Views.EditTable.textOptions": "Options", - "PE.Views.EditTable.textRemoveTable": "Supprimer le tableau", + "PE.Views.EditTable.textRemoveTable": "Supprimer tableau", "PE.Views.EditTable.textReorder": "Réorganiser", "PE.Views.EditTable.textSize": "Taille", "PE.Views.EditTable.textStyle": "Style", - "PE.Views.EditTable.textStyleOptions": "Options de style", - "PE.Views.EditTable.textTableOptions": "Options du tableau", - "PE.Views.EditTable.textToBackground": "Mettre en arrière-plan", - "PE.Views.EditTable.textToForeground": "Mettre au premier plan", + "PE.Views.EditTable.textStyleOptions": "Options style", + "PE.Views.EditTable.textTableOptions": "Options tableau", + "PE.Views.EditTable.textToBackground": "Amener en arrière plan", + "PE.Views.EditTable.textToForeground": "Amener au premier plan", "PE.Views.EditTable.textTotalRow": "Ligne de total", "PE.Views.EditTable.txtDistribHor": "Distribuer horizontalement", "PE.Views.EditTable.txtDistribVert": "Distribuer verticalement", - "PE.Views.EditText.textAddCustomColor": "Ajouter la couleur personnalisée", + "PE.Views.EditText.textAddCustomColor": "Ajouter couleur personnalisée", "PE.Views.EditText.textAdditional": "Supplémentaire", "PE.Views.EditText.textAdditionalFormat": "Mise en forme supplémentaire", "PE.Views.EditText.textAfter": "Après", - "PE.Views.EditText.textAllCaps": "Majuscules", + "PE.Views.EditText.textAllCaps": "Tout en majuscules", "PE.Views.EditText.textAutomatic": "Automatique", - "PE.Views.EditText.textBack": "Retour", + "PE.Views.EditText.textBack": "Retour en arrière", "PE.Views.EditText.textBefore": "Avant", "PE.Views.EditText.textBullets": "Puces", "PE.Views.EditText.textCharacterBold": "B", @@ -443,11 +489,11 @@ "PE.Views.EditText.textCustomColor": "Couleur personnalisée", "PE.Views.EditText.textDblStrikethrough": "Barré double", "PE.Views.EditText.textDblSuperscript": "Exposant", - "PE.Views.EditText.textFontColor": "Couleur de police", - "PE.Views.EditText.textFontColors": "Couleurs de police", + "PE.Views.EditText.textFontColor": "Couleur police", + "PE.Views.EditText.textFontColors": "Couleurs police", "PE.Views.EditText.textFonts": "Polices", "PE.Views.EditText.textFromText": "Distance du texte", - "PE.Views.EditText.textLetterSpacing": "Espacement entre les lettres", + "PE.Views.EditText.textLetterSpacing": "Espacement lettres", "PE.Views.EditText.textLineSpacing": "Interligne", "PE.Views.EditText.textNone": "Aucun", "PE.Views.EditText.textNumbers": "Numéros", @@ -455,7 +501,7 @@ "PE.Views.EditText.textSmallCaps": "Petites majuscules", "PE.Views.EditText.textStrikethrough": "Barré", "PE.Views.EditText.textSubscript": "Indice", - "PE.Views.Search.textCase": "Sensible à la casse", + "PE.Views.Search.textCase": "Respecter la casse", "PE.Views.Search.textDone": "Effectué", "PE.Views.Search.textFind": "Rechercher", "PE.Views.Search.textFindAndReplace": "Rechercher et remplacer", @@ -464,23 +510,28 @@ "PE.Views.Settings. textComment": "Commentaire", "PE.Views.Settings.mniSlideStandard": "Standard (4:3)", "PE.Views.Settings.mniSlideWide": "Écran large (16:9)", - "PE.Views.Settings.textAbout": "A propos", + "PE.Views.Settings.textAbout": "À propos de", "PE.Views.Settings.textAddress": "adresse", "PE.Views.Settings.textApplication": "Application", - "PE.Views.Settings.textApplicationSettings": "Paramètres de l'application", + "PE.Views.Settings.textApplicationSettings": "Réglages application", "PE.Views.Settings.textAuthor": "Auteur", - "PE.Views.Settings.textBack": "Retour", + "PE.Views.Settings.textBack": "Retour en arrière", "PE.Views.Settings.textCentimeter": "Centimètre", "PE.Views.Settings.textCollaboration": "Collaboration", "PE.Views.Settings.textColorSchemes": "Jeux de couleurs", "PE.Views.Settings.textCreated": "Créé", "PE.Views.Settings.textCreateDate": "Date de création", - "PE.Views.Settings.textDone": "Terminé", + "PE.Views.Settings.textDisableAll": "Désactiver tout", + "PE.Views.Settings.textDisableAllMacrosWithNotification": "Désactiver tous les macros avec notification", + "PE.Views.Settings.textDisableAllMacrosWithoutNotification": "Désactiver tous les macros sans notification", + "PE.Views.Settings.textDone": "Effectué", "PE.Views.Settings.textDownload": "Télécharger", "PE.Views.Settings.textDownloadAs": "Télécharger comme...", - "PE.Views.Settings.textEditPresent": "Modifier la présentation", + "PE.Views.Settings.textEditPresent": "Editer présentation", "PE.Views.Settings.textEmail": "e-mail", - "PE.Views.Settings.textFind": "Trouver", + "PE.Views.Settings.textEnableAll": "Activer tout", + "PE.Views.Settings.textEnableAllMacrosWithoutNotification": "Activer toutes les macros sans notification", + "PE.Views.Settings.textFind": "Rechercher", "PE.Views.Settings.textFindAndReplace": "Rechercher et remplacer", "PE.Views.Settings.textHelp": "Aide", "PE.Views.Settings.textInch": "Pouce", @@ -488,23 +539,25 @@ "PE.Views.Settings.textLastModifiedBy": "Dernière modification par", "PE.Views.Settings.textLoading": "Chargement en cours...", "PE.Views.Settings.textLocation": "Emplacement", + "PE.Views.Settings.textMacrosSettings": "Réglages macros", "PE.Views.Settings.textOwner": "Propriétaire", "PE.Views.Settings.textPoint": "Point", - "PE.Views.Settings.textPoweredBy": "Motorisé par", - "PE.Views.Settings.textPresentInfo": "Infos sur présentation", - "PE.Views.Settings.textPresentSettings": "Paramètres de Présentation", - "PE.Views.Settings.textPresentSetup": "Paramètres de la présentation", - "PE.Views.Settings.textPresentTitle": "Titre de la présentation", + "PE.Views.Settings.textPoweredBy": "Fondé sur", + "PE.Views.Settings.textPresentInfo": "Renseignements présentation", + "PE.Views.Settings.textPresentSettings": "Options présentation", + "PE.Views.Settings.textPresentSetup": "Réglages présentation", + "PE.Views.Settings.textPresentTitle": "Titre présentation", "PE.Views.Settings.textPrint": "Imprimer", - "PE.Views.Settings.textSettings": "Paramètres", + "PE.Views.Settings.textSettings": "Réglages", + "PE.Views.Settings.textShowNotification": "Montrer la notification", "PE.Views.Settings.textSlideSize": "Taille de la diapositive", - "PE.Views.Settings.textSpellcheck": "Vérification de l'orthographe", + "PE.Views.Settings.textSpellcheck": "Vérification orthographe", "PE.Views.Settings.textSubject": "Sujet", - "PE.Views.Settings.textTel": "Tél.", + "PE.Views.Settings.textTel": "tel", "PE.Views.Settings.textTitle": "Titre", "PE.Views.Settings.textUnitOfMeasurement": "Unité de mesure", - "PE.Views.Settings.textUploaded": "Chargé", + "PE.Views.Settings.textUploaded": "Téléchargé", "PE.Views.Settings.textVersion": "Version", "PE.Views.Settings.unknownText": "Inconnu", - "PE.Views.Toolbar.textBack": "Retour" + "PE.Views.Toolbar.textBack": "Retour en arrière" } \ No newline at end of file diff --git a/apps/presentationeditor/mobile/locale/it.json b/apps/presentationeditor/mobile/locale/it.json index 74d30c056..3fc2b1b4b 100644 --- a/apps/presentationeditor/mobile/locale/it.json +++ b/apps/presentationeditor/mobile/locale/it.json @@ -223,8 +223,8 @@ "PE.Controllers.Main.uploadImageTextText": "Caricamento dell'immagine in corso...", "PE.Controllers.Main.uploadImageTitleText": "Caricamento dell'immagine", "PE.Controllers.Main.waitText": "Attendere prego...", - "PE.Controllers.Main.warnLicenseExp": "La tua licenza è scaduta.
          Si prega di aggiornare la licenza e ricaricare la pagina.", "PE.Controllers.Main.warnLicenseExceeded": "Hai raggiunto il limite per le connessioni simultanee agli editor %1. Questo documento verrà aperto in sola lettura.
          Contatta l’amministratore per saperne di più.", + "PE.Controllers.Main.warnLicenseExp": "La tua licenza è scaduta.
          Si prega di aggiornare la licenza e ricaricare la pagina.", "PE.Controllers.Main.warnLicenseUsersExceeded": "Hai raggiunto il limite per gli utenti con accesso agli editor %1. Contatta l’amministratore per saperne di più.", "PE.Controllers.Main.warnNoLicense": "Hai raggiunto il limite per le connessioni simultanee agli editor %1. Questo documento verrà aperto in sola lettura.
          Contatta il team di vendita di %1 per i termini di aggiornamento personali.", "PE.Controllers.Main.warnNoLicenseUsers": "Hai raggiunto il limite per gli utenti con accesso agli editor %1. Contatta il team di vendita di %1 per i termini di aggiornamento personali.", diff --git a/apps/presentationeditor/mobile/locale/ko.json b/apps/presentationeditor/mobile/locale/ko.json index 59f5796dc..006b26ca7 100644 --- a/apps/presentationeditor/mobile/locale/ko.json +++ b/apps/presentationeditor/mobile/locale/ko.json @@ -1,8 +1,24 @@ { + "Common.Controllers.Collaboration.textAddReply": "답장 추가", + "Common.Controllers.Collaboration.textCancel": "취소", + "Common.Controllers.Collaboration.textDeleteComment": "주석삭제", + "Common.Controllers.Collaboration.textDeleteReply": "답글 삭제", + "Common.Controllers.Collaboration.textDone": "완료", + "Common.Controllers.Collaboration.textEdit": "수정", + "Common.Controllers.Collaboration.textMessageDeleteComment": "정말로 삭제 하시겠습니까", + "Common.Controllers.Collaboration.textMessageDeleteReply": "정말로 삭제 하시겠습니까", + "Common.UI.ThemeColorPalette.textCustomColors": "사용자 정의 색상", "Common.UI.ThemeColorPalette.textStandartColors": "표준 색상", "Common.UI.ThemeColorPalette.textThemeColors": "테마 색", "Common.Utils.Metric.txtCm": "cm", "Common.Utils.Metric.txtPt": "pt", + "Common.Views.Collaboration.textAddReply": "답장 추가", + "Common.Views.Collaboration.textBack": "뒤로", + "Common.Views.Collaboration.textCancel": "취소", + "Common.Views.Collaboration.textCollaboration": "합치기", + "Common.Views.Collaboration.textDone": "완료", + "Common.Views.Collaboration.textEditReply": "답변편집", + "Common.Views.Collaboration.textEditСomment": "주석 편집", "PE.Controllers.AddContainer.textImage": "이미지", "PE.Controllers.AddContainer.textLink": "링크", "PE.Controllers.AddContainer.textShape": "Shape", @@ -19,10 +35,16 @@ "PE.Controllers.AddLink.textPrev": "이전 슬라이드", "PE.Controllers.AddLink.textSlide": "슬라이드", "PE.Controllers.AddLink.txtNotUrl": "이 필드는 'http://www.example.com'형식의 URL이어야합니다.", + "PE.Controllers.AddOther.textCancel": "취소", + "PE.Controllers.AddOther.textContinue": "계속", + "PE.Controllers.AddOther.textDelete": "삭제", + "PE.Controllers.AddOther.textDeleteDraft": "정말로 삭제 하시겠습니까", "PE.Controllers.AddTable.textCancel": "취소", "PE.Controllers.AddTable.textColumns": "열", "PE.Controllers.AddTable.textRows": "Rows", "PE.Controllers.AddTable.textTableSize": "표 크기", + "PE.Controllers.DocumentHolder.errorCopyCutPaste": "복사, 자르기 및 붙여 넣기", + "PE.Controllers.DocumentHolder.menuAddComment": "메모 추가", "PE.Controllers.DocumentHolder.menuAddLink": "링크 추가", "PE.Controllers.DocumentHolder.menuCopy": "복사", "PE.Controllers.DocumentHolder.menuCut": "잘라 내기", @@ -32,6 +54,8 @@ "PE.Controllers.DocumentHolder.menuOpenLink": "링크 열기", "PE.Controllers.DocumentHolder.menuPaste": "붙여 넣기", "PE.Controllers.DocumentHolder.sheetCancel": "취소", + "PE.Controllers.DocumentHolder.textCopyCutPasteActions": "복사, 자르기 및 붙여 넣기", + "PE.Controllers.DocumentHolder.textDoNotShowAgain": "다시 표시하지 않음", "PE.Controllers.EditContainer.textChart": "차트", "PE.Controllers.EditContainer.textHyperlink": "하이퍼 링크", "PE.Controllers.EditContainer.textImage": "이미지", @@ -60,6 +84,7 @@ "PE.Controllers.Main.advDRMPassword": "Password", "PE.Controllers.Main.applyChangesTextText": "데이터로드 중 ...", "PE.Controllers.Main.applyChangesTitleText": "데이터로드 중", + "PE.Controllers.Main.closeButtonText": "파일 닫기", "PE.Controllers.Main.convertationTimeoutText": "전환 시간 초과를 초과했습니다.", "PE.Controllers.Main.criticalErrorExtText": "문서 목록으로 돌아가려면 '확인'을 누르십시오.", "PE.Controllers.Main.criticalErrorTitle": "오류", @@ -70,8 +95,10 @@ "PE.Controllers.Main.errorCoAuthoringDisconnect": "서버 연결이 끊어졌습니다. 더 이상 편집 할 수 없습니다.", "PE.Controllers.Main.errorConnectToServer": "문서를 저장할 수 없습니다. 연결 설정을 확인하거나 관리자에게 문의하십시오.
          '확인'버튼을 클릭하면 문서를 다운로드하라는 메시지가 나타납니다.", "PE.Controllers.Main.errorDatabaseConnection": "외부 오류입니다.
          데이터베이스 연결 오류입니다. 지원팀에 문의하십시오.", + "PE.Controllers.Main.errorDataEncrypted": "암호화 된 변경 사항은", "PE.Controllers.Main.errorDataRange": "잘못된 데이터 범위입니다.", "PE.Controllers.Main.errorDefaultMessage": "오류 코드 : % 1", + "PE.Controllers.Main.errorEditingDownloadas": "오류가 발생했습니다.", "PE.Controllers.Main.errorFilePassProtect": "이 문서는 암호로 보호되어있어 열 수 없습니다.", "PE.Controllers.Main.errorKeyEncrypt": "알 수없는 키 설명자", "PE.Controllers.Main.errorKeyExpire": "키 설명자가 만료되었습니다", @@ -79,6 +106,7 @@ "PE.Controllers.Main.errorServerVersion": "에디터 버전이 업데이트되었습니다. 페이지가 다시로드되어 변경 사항이 적용됩니다.", "PE.Controllers.Main.errorStockChart": "잘못된 행 순서. 주식형 차트를 작성하려면 시트에 데이터를 다음과 같은 순서로 배치하십시오 :
          개시 가격, 최대 가격, 최소 가격, 마감 가격.", "PE.Controllers.Main.errorUpdateVersion": "파일 버전이 변경되었습니다. 페이지가 다시로드됩니다.", + "PE.Controllers.Main.errorUpdateVersionOnDisconnect": "인터넷 연결이 복구 되었으며 파일에 수정 사항이 발생되었습니다. 작업을 계속 하시기 전에 반드시 기존의 파일을 다운로드하거나 내용을 복사해서 작업 내용을 잃어 버리는 일이 없도록 한 후에 이 페이지를 새로 고침(reload) 해 주시기 바랍니다.", "PE.Controllers.Main.errorUserDrop": "파일에 지금 액세스 할 수 없습니다.", "PE.Controllers.Main.errorUsersExceed": "사용자 수가 초과되었습니다.", "PE.Controllers.Main.errorViewerDisconnect": "연결이 끊어졌습니다. 문서를 볼 수는

          하지만 연결이 복원 될 때까지 다운로드 할 수 없습니다.", @@ -233,6 +261,15 @@ "PE.Views.AddLink.textNumber": "슬라이드 번호", "PE.Views.AddLink.textPrev": "이전 슬라이드", "PE.Views.AddLink.textTip": "화면 팁", + "PE.Views.AddOther.textAddComment": "메모 추가", + "PE.Views.AddOther.textBack": "뒤로", + "PE.Views.AddOther.textComment": "댓글", + "PE.Views.AddOther.textDisplay": "표시", + "PE.Views.AddOther.textDone": "완료", + "PE.Views.AddOther.textExternalLink": "외부 링크", + "PE.Views.AddOther.textFirst": "첫 번째 슬라이드", + "PE.Views.AddOther.textInsert": "삽입", + "PE.Views.EditChart.textAddCustomColor": "사용자 색상 추가", "PE.Views.EditChart.textAlign": "정렬", "PE.Views.EditChart.textAlignBottom": "아래쪽 정렬", "PE.Views.EditChart.textAlignCenter": "정렬 센터", @@ -244,6 +281,7 @@ "PE.Views.EditChart.textBackward": "뒤로 이동", "PE.Views.EditChart.textBorder": "테두리", "PE.Views.EditChart.textColor": "Color", + "PE.Views.EditChart.textCustomColor": "사용자 정의 색상", "PE.Views.EditChart.textFill": "채우기", "PE.Views.EditChart.textForward": "앞으로 이동", "PE.Views.EditChart.textRemoveChart": "차트 제거", @@ -294,6 +332,7 @@ "PE.Views.EditLink.textPrev": "이전 슬라이드", "PE.Views.EditLink.textRemove": "링크 제거", "PE.Views.EditLink.textTip": "화면 팁", + "PE.Views.EditShape.textAddCustomColor": "사용자 색상 추가", "PE.Views.EditShape.textAlign": "정렬", "PE.Views.EditShape.textAlignBottom": "아래쪽 정렬", "PE.Views.EditShape.textAlignCenter": "정렬 중심", @@ -305,6 +344,7 @@ "PE.Views.EditShape.textBackward": "뒤로 이동", "PE.Views.EditShape.textBorder": "테두리", "PE.Views.EditShape.textColor": "Color", + "PE.Views.EditShape.textCustomColor": "사용자 색상", "PE.Views.EditShape.textEffects": "효과", "PE.Views.EditShape.textFill": "채우기", "PE.Views.EditShape.textForward": "앞으로 이동", @@ -318,6 +358,7 @@ "PE.Views.EditShape.textToForeground": "포 그라운드로 가져 오기", "PE.Views.EditShape.txtDistribHor": "가로로 분포", "PE.Views.EditShape.txtDistribVert": "수직 배분", + "PE.Views.EditSlide.textAddCustomColor": "사용자 색상 추가", "PE.Views.EditSlide.textApplyAll": "모든 슬라이드에 적용", "PE.Views.EditSlide.textBack": "뒤로", "PE.Views.EditSlide.textBlack": "검정색을 통해", @@ -329,6 +370,7 @@ "PE.Views.EditSlide.textColor": "Color", "PE.Views.EditSlide.textCounterclockwise": "반 시계 방향", "PE.Views.EditSlide.textCover": "표지", + "PE.Views.EditSlide.textCustomColor": "사용자 색상", "PE.Views.EditSlide.textDelay": "지연", "PE.Views.EditSlide.textDuplicateSlide": "중복 슬라이드", "PE.Views.EditSlide.textDuration": "재생 시간", @@ -363,6 +405,7 @@ "PE.Views.EditSlide.textZoomIn": "확대", "PE.Views.EditSlide.textZoomOut": "축소", "PE.Views.EditSlide.textZoomRotate": "확대 / 축소 및 회전", + "PE.Views.EditTable.textAddCustomColor": "사용자 색상 추가", "PE.Views.EditTable.textAlign": "정렬", "PE.Views.EditTable.textAlignBottom": "아래쪽 정렬", "PE.Views.EditTable.textAlignCenter": "정렬 센터", @@ -377,6 +420,7 @@ "PE.Views.EditTable.textBorder": "테두리", "PE.Views.EditTable.textCellMargins": "셀 여백", "PE.Views.EditTable.textColor": "Color", + "PE.Views.EditTable.textCustomColor": "사용자 색상", "PE.Views.EditTable.textFill": "채우기", "PE.Views.EditTable.textFirstColumn": "첫 번째 열", "PE.Views.EditTable.textForward": "앞으로 이동", @@ -394,6 +438,7 @@ "PE.Views.EditTable.textTotalRow": "총 행", "PE.Views.EditTable.txtDistribHor": "가로로 배포", "PE.Views.EditTable.txtDistribVert": "Vertically Distribute", + "PE.Views.EditText.textAddCustomColor": "사용자 색상 추가", "PE.Views.EditText.textAdditional": "추가", "PE.Views.EditText.textAdditionalFormat": "추가 서식 지정", "PE.Views.EditText.textAfter": "이후", @@ -402,6 +447,9 @@ "PE.Views.EditText.textBack": "뒤로", "PE.Views.EditText.textBefore": "이전", "PE.Views.EditText.textBullets": "글 머리 기호", + "PE.Views.EditText.textCharacterBold": "B", + "PE.Views.EditText.textCharacterItalic": "I", + "PE.Views.EditText.textCustomColor": "사용자 색상", "PE.Views.EditText.textDblStrikethrough": "Double Strikethrough", "PE.Views.EditText.textDblSuperscript": "위첨자", "PE.Views.EditText.textFontColor": "글꼴 색", @@ -416,21 +464,39 @@ "PE.Views.EditText.textSmallCaps": "작은 대문자", "PE.Views.EditText.textStrikethrough": "취소 선", "PE.Views.EditText.textSubscript": "아래 첨자", + "PE.Views.Search.textCase": "대소문자 구별", + "PE.Views.Search.textDone": "완료", + "PE.Views.Search.textFind": "찾기", + "PE.Views.Search.textFindAndReplace": "찾기 및 바꾸기", "PE.Views.Search.textSearch": "검색", + "PE.Views.Settings. textComment": "댓글", "PE.Views.Settings.mniSlideStandard": "표준 (4 : 3)", "PE.Views.Settings.mniSlideWide": "와이드 스크린 (16 : 9)", "PE.Views.Settings.textAbout": "정보", "PE.Views.Settings.textAddress": "주소", + "PE.Views.Settings.textApplication": "어플리케이션", + "PE.Views.Settings.textApplicationSettings": "어플리케이션 설정", "PE.Views.Settings.textAuthor": "저자", "PE.Views.Settings.textBack": "뒤로", + "PE.Views.Settings.textCentimeter": "센티미터", + "PE.Views.Settings.textCollaboration": "합치기", + "PE.Views.Settings.textColorSchemes": "색 구성표", + "PE.Views.Settings.textCreated": "생성", "PE.Views.Settings.textCreateDate": "생성 날짜", + "PE.Views.Settings.textDisableAll": "모두 비활성화", + "PE.Views.Settings.textDisableAllMacrosWithNotification": "모든 매크로를", + "PE.Views.Settings.textDisableAllMacrosWithoutNotification": "모든 매크로 비활성화", "PE.Views.Settings.textDone": "완료", "PE.Views.Settings.textDownload": "다운로드", "PE.Views.Settings.textDownloadAs": "다른 이름으로 다운로드 ...", "PE.Views.Settings.textEditPresent": "프레젠테이션 편집", "PE.Views.Settings.textEmail": "이메일", + "PE.Views.Settings.textEnableAll": "모두 활성화", + "PE.Views.Settings.textEnableAllMacrosWithoutNotification": "없이 모든 매크로 사용", "PE.Views.Settings.textFind": "찾기", + "PE.Views.Settings.textFindAndReplace": "찾기 및 바꾸기", "PE.Views.Settings.textHelp": "Help", + "PE.Views.Settings.textInch": "인치", "PE.Views.Settings.textLoading": "로드 중 ...", "PE.Views.Settings.textPoweredBy": "Powered by", "PE.Views.Settings.textPresentInfo": "프레젠테이션 정보", diff --git a/apps/presentationeditor/mobile/locale/pt.json b/apps/presentationeditor/mobile/locale/pt.json index 30171d364..185f1a6aa 100644 --- a/apps/presentationeditor/mobile/locale/pt.json +++ b/apps/presentationeditor/mobile/locale/pt.json @@ -223,8 +223,8 @@ "PE.Controllers.Main.uploadImageTextText": "Carregando imagem...", "PE.Controllers.Main.uploadImageTitleText": "Carregando imagem", "PE.Controllers.Main.waitText": "Aguarde...", - "PE.Controllers.Main.warnLicenseExp": "Sua licença expirou.
          Atualize sua licença e atualize a página.", "PE.Controllers.Main.warnLicenseExceeded": "Você atingiu o limite de conexões simultâneas para editores %1. Este documento será aberto apenas para visualização.
          Entre em contato com seu administrador para saber mais.", + "PE.Controllers.Main.warnLicenseExp": "Sua licença expirou.
          Atualize sua licença e atualize a página.", "PE.Controllers.Main.warnLicenseUsersExceeded": "Você atingiu o limite de usuários para editores %1. Entre em contato com seu administrador para saber mais.", "PE.Controllers.Main.warnNoLicense": "Você atingiu o limite de conexões simultâneas para editores %1. Este documento será aberto apenas para visualização.
          Entre em contato com a equipe de vendas da %1 para obter os termos de atualização pessoais.", "PE.Controllers.Main.warnNoLicenseUsers": "Você atingiu o limite de usuários para editores %1.
          Entre em contato com a equipe de vendas da %1 para obter os termos de atualização pessoais.", diff --git a/apps/presentationeditor/mobile/locale/ru.json b/apps/presentationeditor/mobile/locale/ru.json index 2b78f61b0..6bf5100d5 100644 --- a/apps/presentationeditor/mobile/locale/ru.json +++ b/apps/presentationeditor/mobile/locale/ru.json @@ -114,8 +114,12 @@ "PE.Controllers.Main.errorFileSizeExceed": "Размер файла превышает ограничение, установленное для вашего сервера.
          Обратитесь к администратору Сервера документов для получения дополнительной информации.", "PE.Controllers.Main.errorKeyEncrypt": "Неизвестный дескриптор ключа", "PE.Controllers.Main.errorKeyExpire": "Срок действия дескриптора ключа истек", + "PE.Controllers.Main.errorOpensource": "Используя бесплатную версию Community, вы можете открывать документы только на просмотр. Для доступа к мобильным веб-редакторам требуется коммерческая лицензия.", "PE.Controllers.Main.errorProcessSaveResult": "Не удалось завершить сохранение.", "PE.Controllers.Main.errorServerVersion": "Версия редактора была обновлена. Страница будет перезагружена, чтобы применить изменения.", + "PE.Controllers.Main.errorSessionAbsolute": "Время сеанса редактирования документа истекло. Пожалуйста, обновите страницу.", + "PE.Controllers.Main.errorSessionIdle": "Документ долгое время не редактировался. Пожалуйста, обновите страницу.", + "PE.Controllers.Main.errorSessionToken": "Подключение к серверу было прервано. Пожалуйста, обновите страницу.", "PE.Controllers.Main.errorStockChart": "Неверный порядок строк. Чтобы создать биржевую диаграмму, расположите данные на листе в следующем порядке:
          цена открытия, максимальная цена, минимальная цена, цена закрытия.", "PE.Controllers.Main.errorUpdateVersion": "Версия файла была изменена. Страница будет перезагружена.", "PE.Controllers.Main.errorUpdateVersionOnDisconnect": "Подключение к Интернету было восстановлено, и версия файла изменилась.
          Прежде чем продолжить работу, надо скачать файл или скопировать его содержимое, чтобы обеспечить сохранность данных, а затем перезагрузить страницу.", @@ -164,8 +168,8 @@ "PE.Controllers.Main.textDone": "Готово", "PE.Controllers.Main.textHasMacros": "Файл содержит автозапускаемые макросы.
          Хотите запустить макросы?", "PE.Controllers.Main.textLoadingDocument": "Загрузка презентации", - "PE.Controllers.Main.textNoLicenseTitle": "Лицензионное ограничение", "PE.Controllers.Main.textNo": "Нет", + "PE.Controllers.Main.textNoLicenseTitle": "Лицензионное ограничение", "PE.Controllers.Main.textOK": "OK", "PE.Controllers.Main.textPaidFeature": "Платная функция", "PE.Controllers.Main.textPassword": "Пароль", @@ -250,8 +254,8 @@ "PE.Controllers.Main.uploadImageTextText": "Загрузка рисунка...", "PE.Controllers.Main.uploadImageTitleText": "Загрузка рисунка", "PE.Controllers.Main.waitText": "Пожалуйста, подождите...", - "PE.Controllers.Main.warnLicenseExp": "Истек срок действия лицензии.
          Обновите лицензию, а затем обновите страницу.", "PE.Controllers.Main.warnLicenseExceeded": "Вы достигли лимита на одновременные подключения к редакторам %1. Этот документ будет открыт только на просмотр.
          Свяжитесь с администратором, чтобы узнать больше.", + "PE.Controllers.Main.warnLicenseExp": "Истек срок действия лицензии.
          Обновите лицензию, а затем обновите страницу.", "PE.Controllers.Main.warnLicenseUsersExceeded": "Вы достигли лимита на количество пользователей редакторов %1.
          Свяжитесь с администратором, чтобы узнать больше.", "PE.Controllers.Main.warnNoLicense": "Вы достигли лимита на одновременные подключения к редакторам %1. Этот документ будет открыт на просмотр.
          Напишите в отдел продаж %1, чтобы обсудить индивидуальные условия лицензирования.", "PE.Controllers.Main.warnNoLicenseUsers": "Вы достигли лимита на одновременные подключения к редакторам %1.
          Напишите в отдел продаж %1, чтобы обсудить индивидуальные условия лицензирования.", diff --git a/apps/presentationeditor/mobile/locale/sk.json b/apps/presentationeditor/mobile/locale/sk.json index d3b334a7d..7531dc6b9 100644 --- a/apps/presentationeditor/mobile/locale/sk.json +++ b/apps/presentationeditor/mobile/locale/sk.json @@ -5,8 +5,12 @@ "Common.Controllers.Collaboration.textDeleteReply": "Vymazať odpoveď", "Common.Controllers.Collaboration.textDone": "Hotovo", "Common.Controllers.Collaboration.textEdit": "Upraviť", + "Common.Controllers.Collaboration.textEditUser": "Používatelia, ktorí súbor práve upravujú:", "Common.Controllers.Collaboration.textMessageDeleteComment": "Naozaj chcete zmazať tento komentár?", "Common.Controllers.Collaboration.textMessageDeleteReply": "Naozaj chcete zmazať túto odpoveď?", + "Common.Controllers.Collaboration.textReopen": "Znovu otvoriť", + "Common.Controllers.Collaboration.textResolve": "Vyriešiť", + "Common.Controllers.Collaboration.textYes": "Áno", "Common.UI.ThemeColorPalette.textCustomColors": "Vlastné farby", "Common.UI.ThemeColorPalette.textStandartColors": "Štandardné farby", "Common.UI.ThemeColorPalette.textThemeColors": "Farebné témy", @@ -18,7 +22,10 @@ "Common.Views.Collaboration.textCollaboration": "Spolupráca", "Common.Views.Collaboration.textDone": "Hotovo", "Common.Views.Collaboration.textEditReply": "Upraviť odpoveď", + "Common.Views.Collaboration.textEditUsers": "Používatelia", "Common.Views.Collaboration.textEditСomment": "Upraviť komentár", + "Common.Views.Collaboration.textNoComments": "Táto prezentácia neobsahuje komentáre", + "Common.Views.Collaboration.textСomments": "Komentáre", "PE.Controllers.AddContainer.textImage": "Obrázok", "PE.Controllers.AddContainer.textLink": "Odkaz", "PE.Controllers.AddContainer.textOther": "Ostatné", @@ -54,9 +61,11 @@ "PE.Controllers.DocumentHolder.menuMore": "Viac", "PE.Controllers.DocumentHolder.menuOpenLink": "Otvoriť odkaz", "PE.Controllers.DocumentHolder.menuPaste": "Vložiť", + "PE.Controllers.DocumentHolder.menuViewComment": "Zobraziť komentár", "PE.Controllers.DocumentHolder.sheetCancel": "Zrušiť", "PE.Controllers.DocumentHolder.textCopyCutPasteActions": "Kopírovať, vystrihnúť a prilepiť", "PE.Controllers.DocumentHolder.textDoNotShowAgain": "Znova už nezobrazovať", + "PE.Controllers.DocumentPreview.txtFinalMessage": "Koniec prezentácie. Kliknutím ukončite.", "PE.Controllers.EditContainer.textChart": "Graf", "PE.Controllers.EditContainer.textHyperlink": "Hypertextový odkaz", "PE.Controllers.EditContainer.textImage": "Obrázok", @@ -92,6 +101,7 @@ "PE.Controllers.Main.downloadErrorText": "Sťahovanie zlyhalo.", "PE.Controllers.Main.downloadTextText": "Sťahovanie dokumentu...", "PE.Controllers.Main.downloadTitleText": "Sťahovanie dokumentu", + "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": "Spojenie so serverom sa stratilo. Už nemôžete 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.", @@ -101,8 +111,10 @@ "PE.Controllers.Main.errorDefaultMessage": "Kód chyby: %1", "PE.Controllers.Main.errorEditingDownloadas": "Pri práci na dokumente sa vyskytla chyba.
          Použite voľbu \"Stiahnuť\" a uložte si súbor ako zálohu na svoj počítač.", "PE.Controllers.Main.errorFilePassProtect": "Dokument je chránený heslom.", + "PE.Controllers.Main.errorFileSizeExceed": "Veľkosť súboru prekračuje limity vášho servera.
          Pre ďalšie podrobnosti kontaktujte prosím vášho správcu dokumentového servera.", "PE.Controllers.Main.errorKeyEncrypt": "Neznámy kľúč deskriptoru", "PE.Controllers.Main.errorKeyExpire": "Kľúč deskriptora vypršal", + "PE.Controllers.Main.errorOpensource": "Pomocou bezplatnej verzie Community môžete otvoriť dokumenty iba na prezeranie. Na prístup k mobilným webovým editorom je potrebná komerčná licencia.", "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.", "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.", @@ -138,6 +150,7 @@ "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.scriptLoadError": "Spojenie je príliš pomalé, niektoré komponenty nemožno nahrať. Obnovte prosím stránku.", "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", @@ -150,16 +163,19 @@ "PE.Controllers.Main.textContactUs": "Obchodné oddelenie", "PE.Controllers.Main.textCustomLoader": "Majte na pamäti, že podľa podmienok licencie nie ste oprávnený meniť načítač.
          Pre získanie ponuky sa obráťte na naše obchodné oddelenie.", "PE.Controllers.Main.textDone": "Hotovo", + "PE.Controllers.Main.textHasMacros": "Súbor obsahuje automatické makrá.
          Chcete spustiť makrá?", "PE.Controllers.Main.textLoadingDocument": "Načítavanie prezentácie", "PE.Controllers.Main.textNo": "Nie", - "PE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE obmedzenie pripojenia", + "PE.Controllers.Main.textNoLicenseTitle": "Bol dosiahnutý limit licencie", "PE.Controllers.Main.textOK": "OK", "PE.Controllers.Main.textPaidFeature": "Platená funkcia", "PE.Controllers.Main.textPassword": "Heslo", "PE.Controllers.Main.textPreloader": "Nahrávanie...", + "PE.Controllers.Main.textRemember": "Pamätať si moju voľbu", "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.textYes": "Áno", "PE.Controllers.Main.titleLicenseExp": "Platnosť licencie uplynula", "PE.Controllers.Main.titleServerVersion": "Editor bol aktualizovaný", "PE.Controllers.Main.txtArt": "Váš text tu", @@ -234,11 +250,15 @@ "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.waitText": "Prosím čakajte...", + "PE.Controllers.Main.warnLicenseExceeded": "Počet súbežných spojení s dokumentovým serverom bol prekročený a dokument bude znovu otvorený iba na prezeranie.
          Pre ďalšie informácie kontaktujte prosím vášho správcu.", "PE.Controllers.Main.warnLicenseExp": "Vaša licencia vypršala.
          Prosím, aktualizujte si svoju licenciu a obnovte stránku.", + "PE.Controllers.Main.warnLicenseUsersExceeded": "Počet súbežných užívateľov bol prekročený a dokument bude znovu otvorený len na čítanie.
          Pre ďalšie informácie kontaktujte prosím vášho správcu.", "PE.Controllers.Main.warnNoLicense": "Táto verzia aplikácie %1 editors má určité obmedzenia pre súbežné pripojenia k dokumentovému serveru.
          Ak potrebujete viac, zvážte aktualizáciu aktuálnej licencie alebo zakúpenie komerčnej.", "PE.Controllers.Main.warnNoLicenseUsers": "Táto verzia %1 editors má určité obmedzenia pre spolupracujúcich používateľov.
          Ak potrebujete viac, zvážte aktualizáciu vašej aktuálnej licencie alebo kúpu komerčnej.", "PE.Controllers.Main.warnProcessRightsChange": "Bolo vám zamietnuté právo upravovať súbor.", "PE.Controllers.Search.textNoTextFound": "Text nebol nájdený", + "PE.Controllers.Search.textReplaceAll": "Nahradiť všetko", "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.", @@ -274,11 +294,16 @@ "PE.Views.AddOther.textExternalLink": "Externý odkaz", "PE.Views.AddOther.textFirst": "Prvá snímka", "PE.Views.AddOther.textInsert": "Vložiť", + "PE.Views.AddOther.textInternalLink": "Snímok v tejto prezentácii", "PE.Views.AddOther.textLast": "Posledná snímka", "PE.Views.AddOther.textLink": "Odkaz", "PE.Views.AddOther.textLinkSlide": "Odkaz na", "PE.Views.AddOther.textLinkType": "Typ odkazu", "PE.Views.AddOther.textNext": "Nasledujúca snímka", + "PE.Views.AddOther.textNumber": "Číslo snímky", + "PE.Views.AddOther.textPrev": "Predchádzajúca snímka", + "PE.Views.AddOther.textTable": "Tabuľka", + "PE.Views.AddOther.textTip": "Nápoveda", "PE.Views.EditChart.textAddCustomColor": "Pridať vlastnú farbu", "PE.Views.EditChart.textAlign": "Zarovnať", "PE.Views.EditChart.textAlignBottom": "Zarovnať dole", @@ -313,7 +338,7 @@ "PE.Views.EditImage.textAlignTop": "Zarovnať nahor", "PE.Views.EditImage.textBack": "Späť", "PE.Views.EditImage.textBackward": "Posunúť späť", - "PE.Views.EditImage.textDefault": "Predvolená veľkosť", + "PE.Views.EditImage.textDefault": "Aktuálna veľkosť", "PE.Views.EditImage.textForward": "Posunúť vpred", "PE.Views.EditImage.textFromLibrary": "Obrázok z Knižnice", "PE.Views.EditImage.textFromURL": "Obrázok z URL adresy", @@ -368,6 +393,7 @@ "PE.Views.EditShape.textToForeground": "Premiestniť do popredia", "PE.Views.EditShape.txtDistribHor": "Rozložiť horizontálne", "PE.Views.EditShape.txtDistribVert": "Rozložiť vertikálne", + "PE.Views.EditSlide.textAddCustomColor": "Pridať vlastnú farbu", "PE.Views.EditSlide.textApplyAll": "Použiť na všetky snímky", "PE.Views.EditSlide.textBack": "Späť", "PE.Views.EditSlide.textBlack": "Prostredníctvom čiernej", @@ -458,6 +484,8 @@ "PE.Views.EditText.textBullets": "Odrážky", "PE.Views.EditText.textCharacterBold": "B", "PE.Views.EditText.textCharacterItalic": "I", + "PE.Views.EditText.textCharacterStrikethrough": "S", + "PE.Views.EditText.textCharacterUnderline": "U", "PE.Views.EditText.textCustomColor": "Vlastná farba", "PE.Views.EditText.textDblStrikethrough": "Dvojité prečiarknutie", "PE.Views.EditText.textDblSuperscript": "Horný index", @@ -477,6 +505,7 @@ "PE.Views.Search.textDone": "Hotovo", "PE.Views.Search.textFind": "Hľadať", "PE.Views.Search.textFindAndReplace": "Hľadať a nahradiť", + "PE.Views.Search.textReplace": "Nahradiť", "PE.Views.Search.textSearch": "Hľadať", "PE.Views.Settings. textComment": "Komentár", "PE.Views.Settings.mniSlideStandard": "Štandard (4:3)", @@ -512,13 +541,22 @@ "PE.Views.Settings.textLocation": "Umiestnenie", "PE.Views.Settings.textMacrosSettings": "Nastavenia makier", "PE.Views.Settings.textOwner": "Vlastník", + "PE.Views.Settings.textPoint": "Bod", "PE.Views.Settings.textPoweredBy": "Poháňaný ", "PE.Views.Settings.textPresentInfo": "Informácie o prezentácii", + "PE.Views.Settings.textPresentSettings": "Nastavení prezentácie", "PE.Views.Settings.textPresentSetup": "Nastavenie prezentácie", "PE.Views.Settings.textPresentTitle": "Názov prezentácie", + "PE.Views.Settings.textPrint": "Tlačiť", "PE.Views.Settings.textSettings": "Nastavenia", + "PE.Views.Settings.textShowNotification": "Ukázať oznámenie", "PE.Views.Settings.textSlideSize": "Veľkosť snímku", + "PE.Views.Settings.textSpellcheck": "Kontrola pravopisu", + "PE.Views.Settings.textSubject": "Predmet", "PE.Views.Settings.textTel": "Tel", + "PE.Views.Settings.textTitle": "Názov", + "PE.Views.Settings.textUnitOfMeasurement": "Jednotka merania", + "PE.Views.Settings.textUploaded": "Nahrané", "PE.Views.Settings.textVersion": "Verzia", "PE.Views.Settings.unknownText": "Neznámy", "PE.Views.Toolbar.textBack": "Späť" diff --git a/apps/presentationeditor/mobile/locale/sl.json b/apps/presentationeditor/mobile/locale/sl.json index c16d36ee4..61f3898a9 100644 --- a/apps/presentationeditor/mobile/locale/sl.json +++ b/apps/presentationeditor/mobile/locale/sl.json @@ -24,6 +24,7 @@ "Common.Views.Collaboration.textEditReply": "Uredi odgovor", "Common.Views.Collaboration.textEditUsers": "Uporabniki", "Common.Views.Collaboration.textEditСomment": "Uredi komentar", + "Common.Views.Collaboration.textNoComments": "Prezentacija ne vsebuje komentarjev", "Common.Views.Collaboration.textСomments": "Komentarji", "PE.Controllers.AddContainer.textImage": "Slika", "PE.Controllers.AddContainer.textLink": "Povezava", @@ -31,6 +32,8 @@ "PE.Controllers.AddContainer.textShape": "Oblika", "PE.Controllers.AddContainer.textSlide": "Diapozitiv", "PE.Controllers.AddContainer.textTable": "Tabela", + "PE.Controllers.AddImage.textEmptyImgUrl": "Določiti morate URL slike.", + "PE.Controllers.AddImage.txtNotUrl": "To polje URL naslova naj bo v obliki „http://www.example.com“", "PE.Controllers.AddLink.textDefault": "Izbrano besedilo", "PE.Controllers.AddLink.textExternalLink": "Zunanja povezava", "PE.Controllers.AddLink.textFirst": "Prvi diapozitiv", @@ -39,6 +42,7 @@ "PE.Controllers.AddLink.textNext": "Naslednji diapozitiv", "PE.Controllers.AddLink.textPrev": "Prejšnji diapozitiv", "PE.Controllers.AddLink.textSlide": "Diapozitiv", + "PE.Controllers.AddLink.txtNotUrl": "To polje URL naslova naj bo v obliki „http://www.example.com“", "PE.Controllers.AddOther.textCancel": "Zapri", "PE.Controllers.AddOther.textContinue": "Nadaljuj", "PE.Controllers.AddOther.textDelete": "Izbriši", @@ -47,6 +51,7 @@ "PE.Controllers.AddTable.textColumns": "Stolpci", "PE.Controllers.AddTable.textRows": "Vrstice", "PE.Controllers.AddTable.textTableSize": "Velikost tabele", + "PE.Controllers.DocumentHolder.errorCopyCutPaste": "Dejanja kopiranja, rezanja in lepljenja s kontekstnim menijem se izvajajo samo v trenutni datoteki.", "PE.Controllers.DocumentHolder.menuAddComment": "Dodaj komentar", "PE.Controllers.DocumentHolder.menuAddLink": "Dodaj povezavo", "PE.Controllers.DocumentHolder.menuCopy": "Kopiraj", @@ -58,6 +63,9 @@ "PE.Controllers.DocumentHolder.menuPaste": "Prilepi", "PE.Controllers.DocumentHolder.menuViewComment": "Ogled komentarja", "PE.Controllers.DocumentHolder.sheetCancel": "Zapri", + "PE.Controllers.DocumentHolder.textCopyCutPasteActions": "Kopiraj, izreži in prilepi možnosti", + "PE.Controllers.DocumentHolder.textDoNotShowAgain": "Ne pokaži znova", + "PE.Controllers.DocumentPreview.txtFinalMessage": "Konec predogleda diapozitiva. Pritisnite za izhod.", "PE.Controllers.EditContainer.textChart": "Graf", "PE.Controllers.EditContainer.textHyperlink": "Hiperpovezava", "PE.Controllers.EditContainer.textImage": "Slika", @@ -66,6 +74,8 @@ "PE.Controllers.EditContainer.textSlide": "Diapozitiv", "PE.Controllers.EditContainer.textTable": "Tabela", "PE.Controllers.EditContainer.textText": "Besedilo", + "PE.Controllers.EditImage.textEmptyImgUrl": "Določiti morate URL slike.", + "PE.Controllers.EditImage.txtNotUrl": "To polje URL naslova naj bo v obliki „http://www.example.com“", "PE.Controllers.EditLink.textDefault": "Izbrano besedilo", "PE.Controllers.EditLink.textExternalLink": "Zunanja povezava", "PE.Controllers.EditLink.textFirst": "Prvi diapozitiv", @@ -74,6 +84,7 @@ "PE.Controllers.EditLink.textNext": "Naslednji diapozitiv", "PE.Controllers.EditLink.textPrev": "Prejšnji diapozitiv", "PE.Controllers.EditLink.textSlide": "Diapozitiv", + "PE.Controllers.EditLink.txtNotUrl": "To polje URL naslova naj bo v obliki „http://www.example.com“", "PE.Controllers.EditSlide.textSec": "S", "PE.Controllers.EditText.textAuto": "Samodejno", "PE.Controllers.EditText.textFonts": "Fonti", @@ -85,20 +96,34 @@ "PE.Controllers.Main.applyChangesTitleText": "Nalaganje podatkov", "PE.Controllers.Main.closeButtonText": "Zapri datoteko", "PE.Controllers.Main.convertationTimeoutText": "Pretvorbena prekinitev presežena.", + "PE.Controllers.Main.criticalErrorExtText": "Pritisnite »V redu«, da se vrnete na seznam dokumentov.", "PE.Controllers.Main.criticalErrorTitle": "Napaka", "PE.Controllers.Main.downloadErrorText": "Prenos ni uspel.", "PE.Controllers.Main.downloadTextText": "Prenašanje predstavitve ...", "PE.Controllers.Main.downloadTitleText": "Prenašanje predstavitve", "PE.Controllers.Main.errorAccessDeny": "Poskušate izvesti dejanje, za katerega nimate pravic.
          Obrnite se na skrbnika strežnika dokumentov.", "PE.Controllers.Main.errorBadImageUrl": "URL slike je napačen", + "PE.Controllers.Main.errorCoAuthoringDisconnect": "Povezava s strežnikom je izgubljena. Ne morete več urejati.", + "PE.Controllers.Main.errorConnectToServer": "Dokumenta ni bilo mogoče shraniti. Preverite nastavitve povezave ali se obrnite na skrbnika.
          Ko kliknete gumb »V redu«, boste pozvani, da prenesete dokument.", "PE.Controllers.Main.errorDatabaseConnection": "Zunanje težave.
          Težave s povezavo s podatkovno bazo. Prosimo kontaktirajte podporo.", + "PE.Controllers.Main.errorDataEncrypted": "Prejete so šifrirane spremembe, ki jih ni mogoče razvozlati.", "PE.Controllers.Main.errorDataRange": "Nepravilen obseg podatkov.", "PE.Controllers.Main.errorDefaultMessage": "Koda napake: %1", + "PE.Controllers.Main.errorEditingDownloadas": "Med delom z dokumentom je prišlo do napake.
          Z možnostjo »Prenos« shranite varnostno kopijo datoteke na trdi disk računalnika.", + "PE.Controllers.Main.errorFilePassProtect": "Datoteka je zaščitena z geslom in je ni mogoče odpreti.", + "PE.Controllers.Main.errorFileSizeExceed": "Velikost datoteke presega omejitev, nastavljeno za vaš strežnik.
          Za podrobnosti se obrnite na skrbnika.", "PE.Controllers.Main.errorKeyEncrypt": "Neznan ključni deskriptor", "PE.Controllers.Main.errorKeyExpire": "Ključni deskriptor je potekel", + "PE.Controllers.Main.errorOpensource": "Z brezplačno različico Community lahko dokumente odprete samo za ogled. Za dostop do mobilnih spletnih urejevalnikov je potrebna komercialna licenca.", "PE.Controllers.Main.errorProcessSaveResult": "Shranjevanje je bilo neuspešno.", + "PE.Controllers.Main.errorServerVersion": "Različica urejevalnika je posodobljena. Stran bo ponovno naložena, da bo spremenila spremembe.", "PE.Controllers.Main.errorStockChart": "Nepravilen vrstni red vrstic. Za izgradnjo razpredelnice delnic podatke na strani navedite v sledečem vrstnem redu:
          otvoritvena cena, maksimalna cena, minimalna cena, zaključna cena.", + "PE.Controllers.Main.errorUpdateVersion": "Različica datoteke je bila spremenjena. Stran bo osvežena.", "PE.Controllers.Main.errorUpdateVersionOnDisconnect": "Povezava s spletom je bila obnovljena in spremenjena je različica datoteke.
          Preden nadaljujete z delom, morate datoteko prenesti ali kopirati njeno vsebino, da se prepričate, da se nič ne izgubi, in nato znova naložite to stran.", + "PE.Controllers.Main.errorUserDrop": "Do datoteke v tem trenutku ni možno dostopati.", + "PE.Controllers.Main.errorUsersExceed": "Število uporabnikov je bilo preseženo", + "PE.Controllers.Main.errorViewerDisconnect": "Povezava je izgubljena. Dokument si lahko še vedno ogledate,
          vendar ga ne boste mogli prenesti, dokler se povezava ne vzpostavi in ​​stran ponovno naloži.", + "PE.Controllers.Main.leavePageText": "V tem dokumentu se nahajajo neshranjene spremembe. Kliknite »Ostani na tej strani«, da počakate na samodejno shranjevanje dokumenta. Kliknite »Zapusti to stran«, če želite zavreči vse neshranjene spremembe.", "PE.Controllers.Main.loadFontsTextText": "Nalaganje podatkov ...", "PE.Controllers.Main.loadFontsTitleText": "Nalaganje podatkov", "PE.Controllers.Main.loadFontTextText": "Nalaganje podatkov ...", @@ -112,6 +137,7 @@ "PE.Controllers.Main.loadThemeTextText": "Nalaganje teme ...", "PE.Controllers.Main.loadThemeTitleText": "Nalaganje teme", "PE.Controllers.Main.notcriticalErrorTitle": "Opozorilo", + "PE.Controllers.Main.openErrorText": "Prišlo je do težave med odpiranjem datoteke.", "PE.Controllers.Main.openTextText": "Odpiranje dokumenta ...", "PE.Controllers.Main.openTitleText": "Odpiranje dokumenta", "PE.Controllers.Main.printTextText": "Tiskanje dokumenta ...", @@ -119,18 +145,25 @@ "PE.Controllers.Main.reloadButtonText": "Osveži stran", "PE.Controllers.Main.requestEditFailedMessageText": "Nekdo v tem trenutku ureja ta dokument. Prosim ponovno poskusite kasneje.", "PE.Controllers.Main.requestEditFailedTitleText": "Dostop zavrnjen", + "PE.Controllers.Main.saveErrorText": "Prišlo je do težave med shranjevanjem datoteke.", "PE.Controllers.Main.savePreparingText": "Priprava na shranjevanje", "PE.Controllers.Main.savePreparingTitle": "Priprava na shranjevanje. Prosim počakajte ...", "PE.Controllers.Main.saveTextText": "Shranjevanje dokumenta ...", "PE.Controllers.Main.saveTitleText": "Shranjevanje dokumenta", "PE.Controllers.Main.scriptLoadError": "Povezava je počasna, nekatere komponente niso pravilno naložene. Prosimo osvežite stran.", + "PE.Controllers.Main.splitDividerErrorText": "Število vrstic mora biti deljivo s številom %1", + "PE.Controllers.Main.splitMaxColsErrorText": "Število stolpcev mora biti manjše od %1", + "PE.Controllers.Main.splitMaxRowsErrorText": "Število vrstic mora biti manjše od %1", "PE.Controllers.Main.textAnonymous": "Anonimno", "PE.Controllers.Main.textBack": "Nazaj", "PE.Controllers.Main.textBuyNow": "Obišči spletno mesto", "PE.Controllers.Main.textCancel": "Zapri", "PE.Controllers.Main.textClose": "Zapri", + "PE.Controllers.Main.textCloseTip": "Kliknite za zaprtje nasveta.", "PE.Controllers.Main.textContactUs": "Kontaktirajte oddelek za prodajo", + "PE.Controllers.Main.textCustomLoader": "Upoštevajte, da v skladu s pogoji licence niste upravičeni do menjave Loader-ja.
          Za ponudbo se obrnite na naš prodajni oddelek.", "PE.Controllers.Main.textDone": "Končano", + "PE.Controllers.Main.textHasMacros": "Ta datoteka vsebuje avtomatske makroje.
          Jih želite res zagnati.", "PE.Controllers.Main.textLoadingDocument": "Nalaganje prezentacije", "PE.Controllers.Main.textNo": "Ne", "PE.Controllers.Main.textNoLicenseTitle": "%1 omejitev povezave", @@ -140,13 +173,17 @@ "PE.Controllers.Main.textPreloader": "Nalaganje ...", "PE.Controllers.Main.textRemember": "Zapomni si mojo izbiro", "PE.Controllers.Main.textShape": "Oblika", + "PE.Controllers.Main.textTryUndoRedo": "Funkcije Undo / Redo so onemogočene za način hitrega urejanja.", "PE.Controllers.Main.textUsername": "Uporabniško ime", "PE.Controllers.Main.textYes": "Da", "PE.Controllers.Main.titleLicenseExp": "Licenca je potekla", "PE.Controllers.Main.titleServerVersion": "Urednik je bil posodobljen", + "PE.Controllers.Main.txtArt": "Vaše besedilo pride tukaj", + "PE.Controllers.Main.txtBasicShapes": "Osnovne oblike", "PE.Controllers.Main.txtButtons": "Gumbi", "PE.Controllers.Main.txtCallouts": "Oblački", "PE.Controllers.Main.txtCharts": "Grafi", + "PE.Controllers.Main.txtClipArt": "Clip Art", "PE.Controllers.Main.txtDateTime": "Datum in čas", "PE.Controllers.Main.txtDiagram": "SmartArt", "PE.Controllers.Main.txtDiagramTitle": "Naslov grafa", @@ -157,7 +194,10 @@ "PE.Controllers.Main.txtImage": "Slika", "PE.Controllers.Main.txtLines": "Vrstice", "PE.Controllers.Main.txtMath": "Matematika", + "PE.Controllers.Main.txtMedia": "Media", + "PE.Controllers.Main.txtNeedSynchronize": "Imate posodobitve", "PE.Controllers.Main.txtPicture": "Slika", + "PE.Controllers.Main.txtProtected": "Ko vnesete geslo in odprete datoteko, bo trenutno geslo datoteke ponastavljeno", "PE.Controllers.Main.txtRectangles": "Pravokotniki", "PE.Controllers.Main.txtSeries": "Niz", "PE.Controllers.Main.txtSldLtTBlank": "Prazen", @@ -168,6 +208,7 @@ "PE.Controllers.Main.txtSldLtTCust": "Po meri", "PE.Controllers.Main.txtSldLtTDgm": "Diagram", "PE.Controllers.Main.txtSldLtTFourObj": "Štirje objekti", + "PE.Controllers.Main.txtSldLtTMediaAndTx": "Mediji in besedilo", "PE.Controllers.Main.txtSldLtTObj": "Naslov in objekt", "PE.Controllers.Main.txtSldLtTObjAndTwoObj": "Objekt in dva objekta", "PE.Controllers.Main.txtSldLtTObjAndTx": "Objekt in besedilo", @@ -195,22 +236,35 @@ "PE.Controllers.Main.txtSldLtTVertTitleAndTx": "Vertikalen naslov in besedilo", "PE.Controllers.Main.txtSldLtTVertTitleAndTxOverChart": "Vertikalen naslov in besedilo nad tabelo", "PE.Controllers.Main.txtSldLtTVertTx": "Vertikalno besedilo", + "PE.Controllers.Main.txtSlideNumber": "Številka diapozitiva", + "PE.Controllers.Main.txtSlideSubtitle": "Podnaslov diapozitiva", + "PE.Controllers.Main.txtSlideText": "Drsno besedilo", + "PE.Controllers.Main.txtSlideTitle": "Naslov diapozitiva", "PE.Controllers.Main.txtStarsRibbons": "Zvezde & Trakovi", "PE.Controllers.Main.txtXAxis": "X os", "PE.Controllers.Main.txtYAxis": "Y os", "PE.Controllers.Main.unknownErrorText": "Neznana napaka.", + "PE.Controllers.Main.unsupportedBrowserErrorText": "Vaš brskalnik ni podprt.", "PE.Controllers.Main.uploadImageExtMessage": "Neznan format slike.", "PE.Controllers.Main.uploadImageFileCountMessage": "Ni naloženih slik.", "PE.Controllers.Main.uploadImageSizeMessage": "Maksimalni limit velikosti slike je presežen.", "PE.Controllers.Main.uploadImageTextText": "Nalaganje slike ...", "PE.Controllers.Main.uploadImageTitleText": "Nalaganje slike", "PE.Controllers.Main.waitText": "Prosimo počakajte ...", + "PE.Controllers.Main.warnLicenseExceeded": "Dosegli ste omejitev za istočasno povezavo z urejevalniki %1. Ta dokument bo na voljo samo za ogled.
          Če želite izvedeti več, se obrnite na skrbnika.", + "PE.Controllers.Main.warnLicenseExp": "Vaša licnenca je potekla.
          Prosimo nadgradite licenco in osvežite stran.", + "PE.Controllers.Main.warnLicenseUsersExceeded": "Dosegli ste omejitev uporabnikov za %1 urednike. Če želite izvedeti več, se obrnite na skrbnika.", + "PE.Controllers.Main.warnNoLicense": "Dosegli ste omejitev za istočasno povezavo z urejevalniki % 1. Ta dokument bo na voljo samo za ogled.
          Za osebne pogoje nadgradnje se obrnite na% 1 prodajno ekipo.", + "PE.Controllers.Main.warnNoLicenseUsers": "Dosegli ste omejitev uporabnika za %1 urednike. Za osebne pogoje nadgradnje se obrnite na %1 prodajno ekipo.", "PE.Controllers.Main.warnProcessRightsChange": "Pravica, da urejate datoteko je bila zavrnjena.", "PE.Controllers.Search.textNoTextFound": "Besedila ni mogoče najti", "PE.Controllers.Search.textReplaceAll": "Zamenjaj vse", "PE.Controllers.Settings.notcriticalErrorTitle": "Opozorilo", "PE.Controllers.Settings.txtLoading": "Nalaganje ...", + "PE.Controllers.Toolbar.dlgLeaveMsgText": "V tem dokumentu se nahajajo neshranjene spremembe. Kliknite »Ostani na tej strani«, da počakate na samodejno shranjevanje dokumenta. Kliknite »Zapusti to stran«, če želite zavreči vse neshranjene spremembe.", + "PE.Controllers.Toolbar.dlgLeaveTitleText": "Zapuščate aplikacijo", "PE.Controllers.Toolbar.leaveButtonText": "Zapusti to stran", + "PE.Controllers.Toolbar.stayButtonText": "Ostani na tej strani", "PE.Views.AddImage.textAddress": "Naslov", "PE.Views.AddImage.textBack": "Nazaj", "PE.Views.AddImage.textFromLibrary": "Slika iz knjižnice", @@ -229,7 +283,9 @@ "PE.Views.AddLink.textLinkSlide": "Povezava k", "PE.Views.AddLink.textLinkType": "Vrsta povezave", "PE.Views.AddLink.textNext": "Naslednji diapozitiv", + "PE.Views.AddLink.textNumber": "Številka diapozitiva", "PE.Views.AddLink.textPrev": "Prejšnji diapozitiv", + "PE.Views.AddLink.textTip": "Nasvet", "PE.Views.AddOther.textAddComment": "Dodaj komentar", "PE.Views.AddOther.textBack": "Nazaj", "PE.Views.AddOther.textComment": "Komentar", @@ -244,8 +300,10 @@ "PE.Views.AddOther.textLinkSlide": "Povezava do", "PE.Views.AddOther.textLinkType": "Vrsta povezave", "PE.Views.AddOther.textNext": "Naslednji diapozitiv", + "PE.Views.AddOther.textNumber": "Številka diapozitiva", "PE.Views.AddOther.textPrev": "Prejšnji diapozitiv", "PE.Views.AddOther.textTable": "Tabela", + "PE.Views.AddOther.textTip": "Nasvet", "PE.Views.EditChart.textAddCustomColor": "Dodaj barvo po meri", "PE.Views.EditChart.textAlign": "Poravnava", "PE.Views.EditChart.textAlignBottom": "Poravnaj dno", @@ -268,6 +326,8 @@ "PE.Views.EditChart.textToBackground": "Pošlji v ozadje", "PE.Views.EditChart.textToForeground": "Premakni v ospredje", "PE.Views.EditChart.textType": "Tip", + "PE.Views.EditChart.txtDistribHor": "Distributiraj horizontalno", + "PE.Views.EditChart.txtDistribVert": "Distributiraj vertikalno", "PE.Views.EditImage.textAddress": "Naslov", "PE.Views.EditImage.textAlign": "Poravnava", "PE.Views.EditImage.textAlignBottom": "Poravnaj dno", @@ -290,6 +350,8 @@ "PE.Views.EditImage.textReplaceImg": "Zamenjaj sliko", "PE.Views.EditImage.textToBackground": "Pošlji v ozadje", "PE.Views.EditImage.textToForeground": "Premakni v ospredje", + "PE.Views.EditImage.txtDistribHor": "Distributiraj horizontalno", + "PE.Views.EditImage.txtDistribVert": "Distributiraj vertikalno", "PE.Views.EditLink.textBack": "Nazaj", "PE.Views.EditLink.textDisplay": "Prikaži", "PE.Views.EditLink.textEdit": "Uredi povezavo", @@ -301,8 +363,10 @@ "PE.Views.EditLink.textLinkSlide": "Povezava do", "PE.Views.EditLink.textLinkType": "Vrsta povezave", "PE.Views.EditLink.textNext": "Naslednji diapozitiv", + "PE.Views.EditLink.textNumber": "Številka diapozitiva", "PE.Views.EditLink.textPrev": "Prejšnji diapozitiv", "PE.Views.EditLink.textRemove": "Odstrani povezavo", + "PE.Views.EditLink.textTip": "Nasvet", "PE.Views.EditShape.textAddCustomColor": "Dodaj barvo po meri", "PE.Views.EditShape.textAlign": "Poravnava", "PE.Views.EditShape.textAlignBottom": "Poravnaj dno", @@ -327,13 +391,20 @@ "PE.Views.EditShape.textStyle": "Slog", "PE.Views.EditShape.textToBackground": "Pošlji v ozadje", "PE.Views.EditShape.textToForeground": "Premakni v ospredje", + "PE.Views.EditShape.txtDistribHor": "Distributiraj horizontalno", + "PE.Views.EditShape.txtDistribVert": "Distributiraj vertikalno", "PE.Views.EditSlide.textAddCustomColor": "Dodaj barvo po meri", "PE.Views.EditSlide.textApplyAll": "Uporabi za vse diapozitive", "PE.Views.EditSlide.textBack": "Nazaj", + "PE.Views.EditSlide.textBlack": "Skozi črno", "PE.Views.EditSlide.textBottom": "Dno", + "PE.Views.EditSlide.textBottomLeft": "Spodaj levo", + "PE.Views.EditSlide.textBottomRight": "Spodaj desno", "PE.Views.EditSlide.textClock": "Ura", "PE.Views.EditSlide.textClockwise": "V smeri urinega kazalca", "PE.Views.EditSlide.textColor": "Barva", + "PE.Views.EditSlide.textCounterclockwise": "V nasprotni smeri urinega kazalca", + "PE.Views.EditSlide.textCover": "Naslovnica", "PE.Views.EditSlide.textCustomColor": "Barva po meri", "PE.Views.EditSlide.textDelay": "Zamik", "PE.Views.EditSlide.textDuplicateSlide": "Podvoji diapozitiv", @@ -347,6 +418,7 @@ "PE.Views.EditSlide.textLeft": "Levo", "PE.Views.EditSlide.textNone": "nič", "PE.Views.EditSlide.textOpacity": "Prosojnost", + "PE.Views.EditSlide.textPush": "Potisni", "PE.Views.EditSlide.textRemoveSlide": "Izbriši diapozitiv", "PE.Views.EditSlide.textRight": "Desno", "PE.Views.EditSlide.textSmoothly": "Gladko", @@ -355,6 +427,9 @@ "PE.Views.EditSlide.textStyle": "Slog", "PE.Views.EditSlide.textTheme": "Tema", "PE.Views.EditSlide.textTop": "Vrh", + "PE.Views.EditSlide.textTopLeft": "Zgoraj levo", + "PE.Views.EditSlide.textTopRight": "Zgoraj desno", + "PE.Views.EditSlide.textTransition": "Prehodi", "PE.Views.EditSlide.textType": "Tip", "PE.Views.EditSlide.textUnCover": "Razkrij", "PE.Views.EditSlide.textVerticalIn": "Vertikalen v", @@ -375,6 +450,8 @@ "PE.Views.EditTable.textAlignTop": "Poravnaj na vrh", "PE.Views.EditTable.textBack": "Nazaj", "PE.Views.EditTable.textBackward": "Premakni nazaj", + "PE.Views.EditTable.textBandedColumn": "Stolpec", + "PE.Views.EditTable.textBandedRow": "Povezana vrstica", "PE.Views.EditTable.textBorder": "Obrobe", "PE.Views.EditTable.textCellMargins": "Robovi celice", "PE.Views.EditTable.textColor": "Barva", @@ -389,8 +466,13 @@ "PE.Views.EditTable.textReorder": "Preuredi", "PE.Views.EditTable.textSize": "Velikost", "PE.Views.EditTable.textStyle": "Slog", + "PE.Views.EditTable.textStyleOptions": "Možnosti oblikovanja", + "PE.Views.EditTable.textTableOptions": "Možnosti tabele", "PE.Views.EditTable.textToBackground": "Pošlji v ozadje", "PE.Views.EditTable.textToForeground": "Premakni v ospredje", + "PE.Views.EditTable.textTotalRow": "Skupno število vrstic", + "PE.Views.EditTable.txtDistribHor": "Distributiraj horizontalno", + "PE.Views.EditTable.txtDistribVert": "Distributiraj vertikalno", "PE.Views.EditText.textAddCustomColor": "Dodaj barvo po meri", "PE.Views.EditText.textAdditional": "Dodatno", "PE.Views.EditText.textAdditionalFormat": "Dodatno oblikovanje", @@ -416,6 +498,7 @@ "PE.Views.EditText.textNone": "nič", "PE.Views.EditText.textNumbers": "Števila", "PE.Views.EditText.textSize": "Velikost", + "PE.Views.EditText.textSmallCaps": "Male črke", "PE.Views.EditText.textStrikethrough": "Prečrtano", "PE.Views.EditText.textSubscript": "Podpisano", "PE.Views.Search.textCase": "Občutljiv na velike in male črke", @@ -436,6 +519,8 @@ "PE.Views.Settings.textCentimeter": "Centimeter", "PE.Views.Settings.textCollaboration": "Skupinsko delo", "PE.Views.Settings.textColorSchemes": "Barvna shema", + "PE.Views.Settings.textCreated": "Ustvarjeno", + "PE.Views.Settings.textCreateDate": "Datum nastanka", "PE.Views.Settings.textDisableAll": "Onemogoči vse", "PE.Views.Settings.textDisableAllMacrosWithNotification": "Onemogoči vse makroje z obvestilom", "PE.Views.Settings.textDisableAllMacrosWithoutNotification": "Onemogoči vse makroje brez obvestila", @@ -459,6 +544,8 @@ "PE.Views.Settings.textPoint": "Točka", "PE.Views.Settings.textPoweredBy": "Poganja", "PE.Views.Settings.textPresentInfo": "Informacije o prezentaciji", + "PE.Views.Settings.textPresentSettings": "Nastavitve prezentacije", + "PE.Views.Settings.textPresentSetup": "Nastavitve prezentacije", "PE.Views.Settings.textPresentTitle": "Naslov prezentacije", "PE.Views.Settings.textPrint": "Natisni", "PE.Views.Settings.textSettings": "Nastavitve", diff --git a/apps/presentationeditor/mobile/locale/zh.json b/apps/presentationeditor/mobile/locale/zh.json index 68e1c89ea..1f427ade2 100644 --- a/apps/presentationeditor/mobile/locale/zh.json +++ b/apps/presentationeditor/mobile/locale/zh.json @@ -1,17 +1,34 @@ { + "Common.Controllers.Collaboration.textAddReply": "添加回复", + "Common.Controllers.Collaboration.textCancel": "取消", + "Common.Controllers.Collaboration.textDeleteComment": "删除注释", + "Common.Controllers.Collaboration.textDeleteReply": "删除回复", + "Common.Controllers.Collaboration.textDone": "完成", + "Common.Controllers.Collaboration.textEdit": "编辑", "Common.Controllers.Collaboration.textEditUser": "文件正在被多个用户编辑。", + "Common.Controllers.Collaboration.textMessageDeleteComment": "你确定要删除这一注释吗?", + "Common.Controllers.Collaboration.textMessageDeleteReply": "你确定要删除这一回复吗?", + "Common.Controllers.Collaboration.textReopen": "重新打开", + "Common.Controllers.Collaboration.textResolve": "解决", + "Common.Controllers.Collaboration.textYes": "是", "Common.UI.ThemeColorPalette.textCustomColors": "自定义颜色", "Common.UI.ThemeColorPalette.textStandartColors": "标准颜色", "Common.UI.ThemeColorPalette.textThemeColors": "主题颜色", "Common.Utils.Metric.txtCm": "厘米", "Common.Utils.Metric.txtPt": "像素", + "Common.Views.Collaboration.textAddReply": "添加回复", "Common.Views.Collaboration.textBack": "返回", + "Common.Views.Collaboration.textCancel": "取消", "Common.Views.Collaboration.textCollaboration": "协作", + "Common.Views.Collaboration.textDone": "完成", + "Common.Views.Collaboration.textEditReply": "编辑回复", "Common.Views.Collaboration.textEditUsers": "用户", + "Common.Views.Collaboration.textEditСomment": "编辑注释", "Common.Views.Collaboration.textNoComments": "此演示文稿不包含评论", "Common.Views.Collaboration.textСomments": "评论", "PE.Controllers.AddContainer.textImage": "图片", "PE.Controllers.AddContainer.textLink": "链接", + "PE.Controllers.AddContainer.textOther": "其他", "PE.Controllers.AddContainer.textShape": "形状", "PE.Controllers.AddContainer.textSlide": "滑动", "PE.Controllers.AddContainer.textTable": "表格", @@ -26,11 +43,16 @@ "PE.Controllers.AddLink.textPrev": "上一张幻灯片", "PE.Controllers.AddLink.textSlide": "滑动", "PE.Controllers.AddLink.txtNotUrl": "此字段应为格式为“http://www.example.com”的网址", + "PE.Controllers.AddOther.textCancel": "取消", + "PE.Controllers.AddOther.textContinue": "继续", + "PE.Controllers.AddOther.textDelete": "删除", + "PE.Controllers.AddOther.textDeleteDraft": "你确定要删除这一稿吗?", "PE.Controllers.AddTable.textCancel": "取消", "PE.Controllers.AddTable.textColumns": "列", "PE.Controllers.AddTable.textRows": "行", "PE.Controllers.AddTable.textTableSize": "表格大小", "PE.Controllers.DocumentHolder.errorCopyCutPaste": "使用上下文菜单的复制、剪切和粘贴操作将仅在当前文件中执行。", + "PE.Controllers.DocumentHolder.menuAddComment": "添加注释", "PE.Controllers.DocumentHolder.menuAddLink": "增加链接", "PE.Controllers.DocumentHolder.menuCopy": "复制", "PE.Controllers.DocumentHolder.menuCut": "剪切", @@ -39,6 +61,7 @@ "PE.Controllers.DocumentHolder.menuMore": "更多", "PE.Controllers.DocumentHolder.menuOpenLink": "打开链接", "PE.Controllers.DocumentHolder.menuPaste": "粘贴", + "PE.Controllers.DocumentHolder.menuViewComment": "查看注释", "PE.Controllers.DocumentHolder.sheetCancel": "取消", "PE.Controllers.DocumentHolder.textCopyCutPasteActions": "复制,剪切和粘贴操作", "PE.Controllers.DocumentHolder.textDoNotShowAgain": "不要再显示", @@ -91,6 +114,7 @@ "PE.Controllers.Main.errorFileSizeExceed": "文件大小超出了为服务器设置的限制.
          有关详细信息,请与文档服务器管理员联系。", "PE.Controllers.Main.errorKeyEncrypt": "未知密钥描述", "PE.Controllers.Main.errorKeyExpire": "密钥过期", + "PE.Controllers.Main.errorOpensource": "这个免费的社区版本只能够用来查看文件。要想在手机上使用在线编辑工具,请购买商业版。", "PE.Controllers.Main.errorProcessSaveResult": "保存失败", "PE.Controllers.Main.errorServerVersion": "该编辑版本已经更新。该页面将被重新加载以应用更改。", "PE.Controllers.Main.errorStockChart": "行顺序不正确。建立股票图表将数据按照以下顺序放置在表格上:
          开盘价,最高价格,最低价格,收盘价。", @@ -139,15 +163,19 @@ "PE.Controllers.Main.textContactUs": "联系销售", "PE.Controllers.Main.textCustomLoader": "请注意,根据许可条款您无权更改加载程序。
          请联系我们的销售部门获取报价。", "PE.Controllers.Main.textDone": "完成", + "PE.Controllers.Main.textHasMacros": "这个文件带有自动宏。
          是否要运行宏?", "PE.Controllers.Main.textLoadingDocument": "载入演示", + "PE.Controllers.Main.textNo": "不", "PE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE开源版本", "PE.Controllers.Main.textOK": "确定", "PE.Controllers.Main.textPaidFeature": "付费功能", "PE.Controllers.Main.textPassword": "密码", "PE.Controllers.Main.textPreloader": "载入中……", + "PE.Controllers.Main.textRemember": "记住我的选择", "PE.Controllers.Main.textShape": "形状", "PE.Controllers.Main.textTryUndoRedo": "快速共同编辑模式下,Undo / Redo功能被禁用。", "PE.Controllers.Main.textUsername": "用户名", + "PE.Controllers.Main.textYes": "是", "PE.Controllers.Main.titleLicenseExp": "许可证过期", "PE.Controllers.Main.titleServerVersion": "编辑器已更新", "PE.Controllers.Main.txtArt": "你的文本在此", @@ -258,6 +286,24 @@ "PE.Views.AddLink.textNumber": "幻灯片编号", "PE.Views.AddLink.textPrev": "上一张幻灯片", "PE.Views.AddLink.textTip": "屏幕提示", + "PE.Views.AddOther.textAddComment": "添加注释", + "PE.Views.AddOther.textBack": "返回", + "PE.Views.AddOther.textComment": "注释", + "PE.Views.AddOther.textDisplay": "展示", + "PE.Views.AddOther.textDone": "完成", + "PE.Views.AddOther.textExternalLink": "外部链接", + "PE.Views.AddOther.textFirst": "第一张幻灯片", + "PE.Views.AddOther.textInsert": "插入", + "PE.Views.AddOther.textInternalLink": "本演示文件中的幻灯片", + "PE.Views.AddOther.textLast": "最后一张幻灯片", + "PE.Views.AddOther.textLink": "链接", + "PE.Views.AddOther.textLinkSlide": "链接到", + "PE.Views.AddOther.textLinkType": "链接类型", + "PE.Views.AddOther.textNext": "下一张幻灯片", + "PE.Views.AddOther.textNumber": "幻灯片编号", + "PE.Views.AddOther.textPrev": "上一张幻灯片", + "PE.Views.AddOther.textTable": "表格", + "PE.Views.AddOther.textTip": "屏幕提示", "PE.Views.EditChart.textAddCustomColor": "\n添加自定义颜色", "PE.Views.EditChart.textAlign": "对齐", "PE.Views.EditChart.textAlignBottom": "底部对齐", @@ -475,11 +521,16 @@ "PE.Views.Settings.textColorSchemes": "颜色方案", "PE.Views.Settings.textCreated": "已创建", "PE.Views.Settings.textCreateDate": "创建日期", + "PE.Views.Settings.textDisableAll": "解除所有项目", + "PE.Views.Settings.textDisableAllMacrosWithNotification": "解除所有带通知的宏", + "PE.Views.Settings.textDisableAllMacrosWithoutNotification": "解除所有不带通知的宏", "PE.Views.Settings.textDone": "完成", "PE.Views.Settings.textDownload": "下载", "PE.Views.Settings.textDownloadAs": "下载为...", "PE.Views.Settings.textEditPresent": "编辑演示文稿", "PE.Views.Settings.textEmail": "电子邮件", + "PE.Views.Settings.textEnableAll": "启动所有项目", + "PE.Views.Settings.textEnableAllMacrosWithoutNotification": "启动所有不带通知的宏", "PE.Views.Settings.textFind": "查找", "PE.Views.Settings.textFindAndReplace": "查找和替换", "PE.Views.Settings.textHelp": "帮助", @@ -488,6 +539,7 @@ "PE.Views.Settings.textLastModifiedBy": "上次修改时间", "PE.Views.Settings.textLoading": "载入中……", "PE.Views.Settings.textLocation": "位置", + "PE.Views.Settings.textMacrosSettings": "宏设置", "PE.Views.Settings.textOwner": "创建者", "PE.Views.Settings.textPoint": "点", "PE.Views.Settings.textPoweredBy": "支持方", @@ -497,6 +549,7 @@ "PE.Views.Settings.textPresentTitle": "演讲题目", "PE.Views.Settings.textPrint": "打印", "PE.Views.Settings.textSettings": "设置", + "PE.Views.Settings.textShowNotification": "显示通知", "PE.Views.Settings.textSlideSize": "滑动尺寸", "PE.Views.Settings.textSpellcheck": "拼写检查", "PE.Views.Settings.textSubject": "主题", diff --git a/apps/spreadsheeteditor/embed/locale/ko.json b/apps/spreadsheeteditor/embed/locale/ko.json index 0fa191811..e657ed9bb 100644 --- a/apps/spreadsheeteditor/embed/locale/ko.json +++ b/apps/spreadsheeteditor/embed/locale/ko.json @@ -1,26 +1,28 @@ { "common.view.modals.txtCopy": "클립보드로 복사", - "common.view.modals.txtEmbed": "퍼가기", + "common.view.modals.txtEmbed": "개체 삽입", "common.view.modals.txtHeight": "높이", "common.view.modals.txtShare": "링크 공유", - "common.view.modals.txtWidth": "너비", + "common.view.modals.txtWidth": "넓이", "SSE.ApplicationController.convertationErrorText": "변환 실패", - "SSE.ApplicationController.convertationTimeoutText": "전환 시간 초과를 초과했습니다.", + "SSE.ApplicationController.convertationTimeoutText": "변환 시간을 초과했습니다.", "SSE.ApplicationController.criticalErrorTitle": "오류", "SSE.ApplicationController.downloadErrorText": "다운로드하지 못했습니다.", "SSE.ApplicationController.downloadTextText": "스프레드 시트 다운로드 중 ...", - "SSE.ApplicationController.errorAccessDeny": "권한이없는 작업을 수행하려고합니다.
          Document Server 관리자에게 문의하십시오.", + "SSE.ApplicationController.errorAccessDeny": "권한이없는 작업을 수행하려고합니다. \n문서 서버 관리자에게 보다 자세한 내용을 안내 받으시기 바랍니다.", "SSE.ApplicationController.errorDefaultMessage": "오류 코드 : %1", - "SSE.ApplicationController.errorFilePassProtect": "이 문서는 암호로 보호되어있어 열 수 없습니다.", + "SSE.ApplicationController.errorFilePassProtect": "이 문서는 암호로 보호되어 있어 열 수 없습니다.", + "SSE.ApplicationController.errorFileSizeExceed": "파일의 크기가 서버에서 정해진 범위를 초과 했습니다. 문서 서버 관리자에게 해당 내용에 대한 자세한 안내를 받아 보시기 바랍니다.", + "SSE.ApplicationController.errorUpdateVersionOnDisconnect": "인터넷 연결이 복구 되었으며 파일에 수정 사항이 발생되었습니다. 작업을 계속 하시기 전에 반드시 기존의 파일을 다운로드하거나 내용을 복사해서 작업 내용을 잃어 버리는 일이 없도록 한 후에 이 페이지를 새로 고침(reload) 해 주시기 바랍니다.", "SSE.ApplicationController.errorUserDrop": "파일에 지금 액세스 할 수 없습니다.", "SSE.ApplicationController.notcriticalErrorTitle": "경고", "SSE.ApplicationController.scriptLoadError": "연결 속도가 느려, 일부 요소들이 로드되지 않았습니다. 페이지를 다시 새로 고침해주세요.", - "SSE.ApplicationController.textLoadingDocument": "스프레드 시트로드 중", - "SSE.ApplicationController.textOf": "중", + "SSE.ApplicationController.textLoadingDocument": "스프레드 시트 로드 중", + "SSE.ApplicationController.textOf": "의", "SSE.ApplicationController.txtClose": "완료", "SSE.ApplicationController.unknownErrorText": "알 수없는 오류.", - "SSE.ApplicationController.unsupportedBrowserErrorText": "사용중인 브라우저가 지원되지 않습니다.", - "SSE.ApplicationController.waitText": "잠시만 기달려주세요...", + "SSE.ApplicationController.unsupportedBrowserErrorText": "사용 중인 브라우저가 지원되지 않습니다.", + "SSE.ApplicationController.waitText": "잠시만 기다려주세요...", "SSE.ApplicationView.txtDownload": "다운로드", "SSE.ApplicationView.txtEmbed": "퍼가기", "SSE.ApplicationView.txtFullScreen": "전체 화면", diff --git a/apps/spreadsheeteditor/embed/locale/nl.json b/apps/spreadsheeteditor/embed/locale/nl.json index bee107e8d..9465c8ef4 100644 --- a/apps/spreadsheeteditor/embed/locale/nl.json +++ b/apps/spreadsheeteditor/embed/locale/nl.json @@ -1,7 +1,10 @@ { "common.view.modals.txtCopy": "Kopieer naar klembord", + "common.view.modals.txtEmbed": "Ingevoegd", "common.view.modals.txtHeight": "Hoogte", + "common.view.modals.txtShare": "Link delen", "common.view.modals.txtWidth": "Breedte", + "SSE.ApplicationController.convertationErrorText": "Conversie is mislukt", "SSE.ApplicationController.convertationTimeoutText": "Time-out voor conversie overschreden.", "SSE.ApplicationController.criticalErrorTitle": "Fout", "SSE.ApplicationController.downloadErrorText": "Download mislukt.", @@ -9,6 +12,8 @@ "SSE.ApplicationController.errorAccessDeny": "U probeert een actie uit te voeren waarvoor u geen rechten hebt.
          Neem contact op met de beheerder van de documentserver.", "SSE.ApplicationController.errorDefaultMessage": "Foutcode: %1", "SSE.ApplicationController.errorFilePassProtect": "Het bestand is beschermd met een wachtwoord en kan niet worden geopend.", + "SSE.ApplicationController.errorFileSizeExceed": "De bestandsgrootte overschrijdt de limiet die is ingesteld voor uw server.
          Neem contact op met uw Document Server-beheerder voor details.", + "SSE.ApplicationController.errorUpdateVersionOnDisconnect": "De internetverbinding is hersteld en de bestandsversie is gewijzigd.
          Voordat u verder kunt werken, moet u het bestand downloaden of de inhoud kopiëren om er zeker van te zijn dat er niets verloren gaat, en deze pagina vervolgens opnieuw laden.", "SSE.ApplicationController.errorUserDrop": "Toegang tot het bestand is op dit moment niet mogelijk.", "SSE.ApplicationController.notcriticalErrorTitle": "Waarschuwing", "SSE.ApplicationController.scriptLoadError": "De verbinding is te langzaam, sommige componenten konden niet geladen worden. Laad de pagina opnieuw.", @@ -17,7 +22,9 @@ "SSE.ApplicationController.txtClose": "Sluiten", "SSE.ApplicationController.unknownErrorText": "Onbekende fout.", "SSE.ApplicationController.unsupportedBrowserErrorText": "Uw browser wordt niet ondersteund.", + "SSE.ApplicationController.waitText": "Een moment geduld", "SSE.ApplicationView.txtDownload": "Downloaden", + "SSE.ApplicationView.txtEmbed": "Invoegen", "SSE.ApplicationView.txtFullScreen": "Volledig scherm", "SSE.ApplicationView.txtShare": "Delen" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/embed/locale/sk.json b/apps/spreadsheeteditor/embed/locale/sk.json index 8454ba71f..0754a1d2c 100644 --- a/apps/spreadsheeteditor/embed/locale/sk.json +++ b/apps/spreadsheeteditor/embed/locale/sk.json @@ -1,5 +1,6 @@ { "common.view.modals.txtCopy": "Skopírovať do schránky", + "common.view.modals.txtEmbed": "Vložiť", "common.view.modals.txtHeight": "Výška", "common.view.modals.txtShare": "Zdieľať odkaz", "common.view.modals.txtWidth": "Šírka", diff --git a/apps/spreadsheeteditor/embed/locale/uk.json b/apps/spreadsheeteditor/embed/locale/uk.json index b89b6aecd..985b253e9 100644 --- a/apps/spreadsheeteditor/embed/locale/uk.json +++ b/apps/spreadsheeteditor/embed/locale/uk.json @@ -1,7 +1,10 @@ { "common.view.modals.txtCopy": "Копіювати в буфер обміну", + "common.view.modals.txtEmbed": "Вставити", "common.view.modals.txtHeight": "Висота", + "common.view.modals.txtShare": "Розповсюдити посилання", "common.view.modals.txtWidth": "Ширина", + "SSE.ApplicationController.convertationErrorText": "Не вдалося конвертувати", "SSE.ApplicationController.convertationTimeoutText": "Термін переходу перевищено.", "SSE.ApplicationController.criticalErrorTitle": "Помилка", "SSE.ApplicationController.downloadErrorText": "Завантаження не вдалося", @@ -9,14 +12,19 @@ "SSE.ApplicationController.errorAccessDeny": "Ви намагаєтеся виконати дію, на яку у вас немає прав.
          Будь ласка, зв'яжіться з адміністратором вашого Сервера документів.", "SSE.ApplicationController.errorDefaultMessage": "Код помилки: %1", "SSE.ApplicationController.errorFilePassProtect": "Документ захищений паролем і його неможливо відкрити.", + "SSE.ApplicationController.errorFileSizeExceed": "Розмір файлу перевищує обмеження, встановлені для вашого сервера.
          Для детальної інформації зверніться до адміністратора сервера документів.", + "SSE.ApplicationController.errorUpdateVersionOnDisconnect": "Підключення до Інтернету було відновлено, а версія файлу змінена.
          Перш ніж продовжувати роботу, потрібно завантажити файл або скопіювати його вміст, щоб переконатися, що нічого не втрачено, а потім перезавантажити цю сторінку.", "SSE.ApplicationController.errorUserDrop": "На даний момент файл не доступний.", "SSE.ApplicationController.notcriticalErrorTitle": "Застереження", + "SSE.ApplicationController.scriptLoadError": "З'єднання занадто повільне, деякі компоненти не вдалося завантажити. Перезавантажте сторінку.", "SSE.ApplicationController.textLoadingDocument": "Завантаження електронної таблиці", "SSE.ApplicationController.textOf": "з", "SSE.ApplicationController.txtClose": "Закрити", "SSE.ApplicationController.unknownErrorText": "Невідома помилка.", "SSE.ApplicationController.unsupportedBrowserErrorText": "Ваш браузер не підтримується", + "SSE.ApplicationController.waitText": "Будьласка, зачекайте...", "SSE.ApplicationView.txtDownload": "Завантажити", + "SSE.ApplicationView.txtEmbed": "Вставити", "SSE.ApplicationView.txtFullScreen": "Повноекранний режим", "SSE.ApplicationView.txtShare": "Доступ" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/app/controller/Main.js b/apps/spreadsheeteditor/main/app/controller/Main.js index 33fc50241..431e08729 100644 --- a/apps/spreadsheeteditor/main/app/controller/Main.js +++ b/apps/spreadsheeteditor/main/app/controller/Main.js @@ -357,7 +357,7 @@ define([ this.appOptions.canRequestSharingSettings = this.editorConfig.canRequestSharingSettings; this.appOptions.mentionShare = !((typeof (this.appOptions.customization) == 'object') && (this.appOptions.customization.mentionShare==false)); this.appOptions.canMakeActionLink = this.editorConfig.canMakeActionLink; - this.appOptions.canFeaturePivot = !!this.api.asc_isSupportFeature("pivot-tables"); + this.appOptions.canFeaturePivot = true; this.headerView = this.getApplication().getController('Viewport').getView('Common.Views.Header'); this.headerView.setCanBack(this.appOptions.canBackToFolder === true, (this.appOptions.canBackToFolder) ? this.editorConfig.customization.goback.text : ''); diff --git a/apps/spreadsheeteditor/main/app/controller/Toolbar.js b/apps/spreadsheeteditor/main/app/controller/Toolbar.js index ca710a338..d0b765740 100644 --- a/apps/spreadsheeteditor/main/app/controller/Toolbar.js +++ b/apps/spreadsheeteditor/main/app/controller/Toolbar.js @@ -81,7 +81,7 @@ define([ 'insert:textart': this.onInsertTextart, 'change:scalespn': this.onClickChangeScaleInMenu.bind(me), 'click:customscale': this.onScaleClick.bind(me), - 'home:open' : this.onHomeOpen + 'home:open' : this.onHomeOpen }, 'FileMenu': { 'menu:hide': me.onFileMenu.bind(me, 'hide'), @@ -2381,6 +2381,8 @@ define([ toolbar.lockToolbar(SSE.enumLock.ruleFilter, need_disable, { array: toolbar.btnsSetAutofilter.concat(toolbar.btnCustomSort, toolbar.btnTableTemplate, toolbar.btnInsertTable, toolbar.btnRemoveDuplicates) }); + toolbar.lockToolbar(SSE.enumLock.tableHasSlicer, filterInfo && filterInfo.asc_getIsSlicerAdded(), { array: toolbar.btnsSetAutofilter }); + need_disable = (selectionType !== Asc.c_oAscSelectionType.RangeSlicer) && (this._state.controlsdisabled.filters || (val===null)); toolbar.lockToolbar(SSE.enumLock.cantSort, need_disable, { array: toolbar.btnsSortDown.concat(toolbar.btnsSortUp) }); diff --git a/apps/spreadsheeteditor/main/app/view/AutoFilterDialog.js b/apps/spreadsheeteditor/main/app/view/AutoFilterDialog.js index da561aba0..1d34eed6e 100644 --- a/apps/spreadsheeteditor/main/app/view/AutoFilterDialog.js +++ b/apps/spreadsheeteditor/main/app/view/AutoFilterDialog.js @@ -790,7 +790,7 @@ define([ this.type = options.type; _.extend(_options, { - width : 215, + width : 250, height : 215, contentWidth : 180, header : true, @@ -805,9 +805,9 @@ define([ '
          ', '
          ', '
          ', - '
          ', + '
          ', '
          ', - '
          ', + '
          ', '
          ', '
          ', '
          ' diff --git a/apps/spreadsheeteditor/main/app/view/DataTab.js b/apps/spreadsheeteditor/main/app/view/DataTab.js index f7bd1439f..d9020b935 100644 --- a/apps/spreadsheeteditor/main/app/view/DataTab.js +++ b/apps/spreadsheeteditor/main/app/view/DataTab.js @@ -190,13 +190,13 @@ define([ this.lockedControls.push(this.btnCustomSort); this.btnsSortDown = Common.Utils.injectButtons($host.find('.slot-sortdesc'), '', 'toolbar__icon btn-sort-down', '', - [_set.editCell, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.lostConnect, _set.coAuth, _set.ruleFilter, _set.cantModifyFilter, _set.sheetLock]); + [_set.editCell, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.lostConnect, _set.coAuth, _set.ruleFilter, _set.cantModifyFilter, _set.sheetLock, _set.cantSort]); this.btnsSortUp = Common.Utils.injectButtons($host.find('.slot-sortasc'), '', 'toolbar__icon btn-sort-up', '', - [_set.editCell, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.lostConnect, _set.coAuth, _set.ruleFilter, _set.cantModifyFilter, _set.sheetLock]); + [_set.editCell, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.lostConnect, _set.coAuth, _set.ruleFilter, _set.cantModifyFilter, _set.sheetLock, _set.cantSort]); this.btnsSetAutofilter = Common.Utils.injectButtons($host.find('.slot-btn-setfilter'), '', 'toolbar__icon btn-autofilter', '', - [_set.editCell, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.selSlicer, _set.lostConnect, _set.coAuth, _set.ruleFilter, _set.editPivot, _set.cantModifyFilter], + [_set.editCell, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.selSlicer, _set.lostConnect, _set.coAuth, _set.ruleFilter, _set.editPivot, _set.cantModifyFilter, _set.tableHasSlicer], false, false, true); this.btnsClearAutofilter = Common.Utils.injectButtons($host.find('.slot-btn-clear-filter'), '', 'toolbar__icon btn-clear-filter', '', diff --git a/apps/spreadsheeteditor/main/app/view/FormulaDialog.js b/apps/spreadsheeteditor/main/app/view/FormulaDialog.js index 3cf3f4dee..d5991d3be 100644 --- a/apps/spreadsheeteditor/main/app/view/FormulaDialog.js +++ b/apps/spreadsheeteditor/main/app/view/FormulaDialog.js @@ -108,7 +108,7 @@ define([ }).on ('changing', function (input, value) { if (value.length) { value = value.replace(/([.?*+^$[\]\\(){}|-])/g, "\\$1"); - me.filter = new RegExp(value, 'ig'); + me.filter = value.toLowerCase(); } else { me.filter = undefined; } @@ -159,7 +159,7 @@ define([ hide: function () { var val = this.cmbFuncGroup.getValue(); (val=='Recommended') && (val = 'Last10'); - if (this.cmbFuncGroup.store.at(0).get('value')=='Recommended') { + if (this.cmbFuncGroup.store.length>0 && this.cmbFuncGroup.store.at(0).get('value')=='Recommended') { this.cmbFuncGroup.store.shift(); this.cmbFuncGroup.onResetItems(); } @@ -321,13 +321,23 @@ define([ } var me = this, + filter_reg = new RegExp(me.filter, 'ig'), arr = this.allFunctions.filter(function(item) { - return !!item.get('name').match(me.filter); + return !!item.get('name').match(filter_reg); }); - if (arr.length>0 && this.cmbFuncGroup.store.at(0).get('value')!='Recommended') { - this.cmbFuncGroup.store.unshift({value: 'Recommended', displayValue: this.txtRecommended}); - this.cmbFuncGroup.onResetItems(); - } else if (arr.length==0 && this.cmbFuncGroup.store.at(0).get('value')=='Recommended') { + if (arr.length>0) { + if (this.cmbFuncGroup.store.at(0).get('value')!='Recommended') { + this.cmbFuncGroup.store.unshift({value: 'Recommended', displayValue: this.txtRecommended}); + this.cmbFuncGroup.onResetItems(); + } + var idx = _.findIndex(arr, function(item) { + return (item.get('name').toLowerCase()===me.filter); + }); + if (idx>0) { + var removed = arr.splice(idx, 1); + arr.unshift(removed[0]); + } + } else if (arr.length==0 && this.cmbFuncGroup.store.length>0 && this.cmbFuncGroup.store.at(0).get('value')=='Recommended') { this.cmbFuncGroup.store.shift(); this.cmbFuncGroup.onResetItems(); } diff --git a/apps/spreadsheeteditor/main/app/view/Statusbar.js b/apps/spreadsheeteditor/main/app/view/Statusbar.js index cb1b7456c..7ec57c21c 100644 --- a/apps/spreadsheeteditor/main/app/view/Statusbar.js +++ b/apps/spreadsheeteditor/main/app/view/Statusbar.js @@ -238,6 +238,7 @@ define([ this.dropTabs = selectTabs; }, this), 'tab:drop': _.bind(function (dataTransfer, index) { + if (this.isEditFormula) return; var data = dataTransfer.getData("onlyoffice"); if (data) { var arrData = JSON.parse(data); diff --git a/apps/spreadsheeteditor/main/app/view/Toolbar.js b/apps/spreadsheeteditor/main/app/view/Toolbar.js index 116e20b68..bfb0783e1 100644 --- a/apps/spreadsheeteditor/main/app/view/Toolbar.js +++ b/apps/spreadsheeteditor/main/app/view/Toolbar.js @@ -96,7 +96,8 @@ define([ noSlicerSource: 'no-slicer-source', selSlicer: 'sel-slicer', cantSort: 'cant-sort', - pivotLock: 'pivot-lock' + pivotLock: 'pivot-lock', + tableHasSlicer: 'table-has-slicer' }; SSE.Views.Toolbar = Common.UI.Mixtbar.extend(_.extend({ diff --git a/apps/spreadsheeteditor/main/locale/da.json b/apps/spreadsheeteditor/main/locale/da.json index c936c40c5..7bebff45b 100644 --- a/apps/spreadsheeteditor/main/locale/da.json +++ b/apps/spreadsheeteditor/main/locale/da.json @@ -2651,6 +2651,8 @@ "SSE.Views.Toolbar.txtTime": "Tid", "SSE.Views.Toolbar.txtUnmerge": "Adskil celler", "SSE.Views.Toolbar.txtYen": "¥ Yen", + "SSE.Views.Toolbar.capBtnPrintTitles": "Print Titler", + "SSE.Views.Toolbar.tipPrintTitles": "Print titler", "SSE.Views.Top10FilterDialog.textType": "Vis", "SSE.Views.Top10FilterDialog.txtBottom": "Bund", "SSE.Views.Top10FilterDialog.txtItems": "Element", diff --git a/apps/spreadsheeteditor/main/locale/de.json b/apps/spreadsheeteditor/main/locale/de.json index ed6785021..17ed5ca02 100644 --- a/apps/spreadsheeteditor/main/locale/de.json +++ b/apps/spreadsheeteditor/main/locale/de.json @@ -122,6 +122,7 @@ "Common.Views.ListSettingsDialog.txtOfText": "% des Textes", "Common.Views.ListSettingsDialog.txtSize": "Größe", "Common.Views.ListSettingsDialog.txtStart": "Beginnen mit", + "Common.Views.ListSettingsDialog.txtSymbol": "Symbol", "Common.Views.ListSettingsDialog.txtTitle": "Listeneinstellungen", "Common.Views.OpenDialog.closeButtonText": "Datei schließen", "Common.Views.OpenDialog.txtAdvanced": "Erweitert", @@ -797,8 +798,8 @@ "SSE.Controllers.Main.waitText": "Bitte warten...", "SSE.Controllers.Main.warnBrowserIE9": "Die Anwendung hat geringe Fähigkeiten in IE9. Nutzen Sie IE10 oder höher.", "SSE.Controllers.Main.warnBrowserZoom": "Die aktuelle Zoom-Einstellung Ihres Webbrowsers wird nicht völlig unterstützt. Bitte stellen Sie die Standardeinstellung mithilfe der Tastenkombination STRG+0 wieder her.", - "SSE.Controllers.Main.warnLicenseExp": "Ihre Lizenz ist abgelaufen.
          Bitte aktualisieren Sie Ihre Lizenz und laden Sie die Seite neu.", "SSE.Controllers.Main.warnLicenseExceeded": "Sie haben das Limit für gleichzeitige Verbindungen in %1-Editoren erreicht. Dieses Dokument wird nur zum Anzeigen geöffnet.
          Bitte wenden Sie sich an Ihren Administrator, um weitere Informationen zu erhalten.", + "SSE.Controllers.Main.warnLicenseExp": "Ihre Lizenz ist abgelaufen.
          Bitte aktualisieren Sie Ihre Lizenz und laden Sie die Seite neu.", "SSE.Controllers.Main.warnLicenseUsersExceeded": "Sie haben das Benutzerlimit für %1-Editoren erreicht. Bitte wenden Sie sich an Ihren Administrator, um weitere Informationen zu erhalten.", "SSE.Controllers.Main.warnNoLicense": "Sie haben das Limit für gleichzeitige Verbindungen in %1-Editoren erreicht. Dieses Dokument wird nur zum Anzeigen geöffnet.
          Bitte kontaktieren Sie unser Verkaufsteam, um persönliche Upgrade-Bedingungen zu erhalten.", "SSE.Controllers.Main.warnNoLicenseUsers": "Sie haben das Benutzerlimit für %1-Editoren erreicht. Bitte kontaktieren Sie unser Verkaufsteam, um persönliche Upgrade-Bedingungen zu erhalten.", @@ -1211,6 +1212,7 @@ "SSE.Views.AutoFilterDialog.txtTitle": "Filter", "SSE.Views.AutoFilterDialog.txtTop10": "Erste 10", "SSE.Views.AutoFilterDialog.txtValueFilter": "Wertefilter", + "SSE.Views.AutoFilterDialog.warnFilterError": "Es wird mindestens ein Feld benötigt", "SSE.Views.AutoFilterDialog.warnNoSelected": "Sie müssen zumindest einen Wert wählen", "SSE.Views.CellEditor.textManager": "Name-Manager", "SSE.Views.CellEditor.tipFormula": "Funktion einfügen", @@ -1219,6 +1221,8 @@ "SSE.Views.CellRangeDialog.txtEmpty": "Dieses Feld ist erforderlich", "SSE.Views.CellRangeDialog.txtInvalidRange": "FEHLER! Ungültiger Zellenbereich", "SSE.Views.CellRangeDialog.txtTitle": "Datenbereich auswählen", + "SSE.Views.CellSettings.strShrink": "passend schrumpfen", + "SSE.Views.CellSettings.strWrap": "Text umbrechen", "SSE.Views.CellSettings.textAngle": "Winkel", "SSE.Views.CellSettings.textBackColor": "Hintergrundfarbe", "SSE.Views.CellSettings.textBackground": "Hintergrundfarbe", @@ -1502,6 +1506,7 @@ "SSE.Views.DocumentHolder.textShapeAlignMiddle": "Mittig ausrichten", "SSE.Views.DocumentHolder.textShapeAlignRight": "Rechts ausrichten", "SSE.Views.DocumentHolder.textShapeAlignTop": "Oben ausrichten", + "SSE.Views.DocumentHolder.textSum": "Summe", "SSE.Views.DocumentHolder.textUndo": "Rückgängig machen", "SSE.Views.DocumentHolder.textUnFreezePanes": "Fixierung aufheben", "SSE.Views.DocumentHolder.topCellText": "Oben ausrichten", @@ -1570,6 +1575,7 @@ "SSE.Views.DocumentHolder.txtWidth": "Breite", "SSE.Views.DocumentHolder.vertAlignText": "Vertikale Ausrichtung", "SSE.Views.FieldSettingsDialog.strLayout": "Layout", + "SSE.Views.FieldSettingsDialog.strSubtotals": "Zwischensumme", "SSE.Views.FieldSettingsDialog.textTitle": "Feldeinstellungen", "SSE.Views.FieldSettingsDialog.txtAverage": "MITTELWERT", "SSE.Views.FieldSettingsDialog.txtBlank": "leere Reihen einfügen nach jeder", @@ -1581,6 +1587,7 @@ "SSE.Views.FieldSettingsDialog.txtMin": "Min", "SSE.Views.FieldSettingsDialog.txtOutline": "Gliederung", "SSE.Views.FieldSettingsDialog.txtProduct": "Produkt", + "SSE.Views.FieldSettingsDialog.txtSum": "Summe", "SSE.Views.FieldSettingsDialog.txtSummarize": "Funktion für Zwischensummen", "SSE.Views.FileMenu.btnBackCaption": "Dateispeicherort öffnen", "SSE.Views.FileMenu.btnCloseMenuCaption": "Menü schließen", @@ -1674,6 +1681,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRunMacrosDesc": "Aktivieren aller Makros ohne Benachrichtigung", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStopMacros": "Alle deaktivieren.", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStopMacrosDesc": "Alle Makros ohne Benachrichtigung deaktivieren", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacros": "Benachrichtigungen anzeigen", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacrosDesc": "Alle Makros mit einer Benachrichtigung deaktivieren", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin": "wie Windows", "SSE.Views.FileMenuPanels.MainSpellCheckSettings.okButtonText": "Anwenden", @@ -1799,6 +1807,7 @@ "SSE.Views.HyperlinkSettingsDialog.textInvalidRange": "FEHLER! Ungültiger Zellenbereich", "SSE.Views.HyperlinkSettingsDialog.textNames": "Definierte Namen", "SSE.Views.HyperlinkSettingsDialog.textSelectData": "Daten auswählen", + "SSE.Views.HyperlinkSettingsDialog.textSheets": "Arbeitsblätter", "SSE.Views.HyperlinkSettingsDialog.textTipText": "QuickInfo-Text", "SSE.Views.HyperlinkSettingsDialog.textTitle": "Hyperlink-Einstellungen", "SSE.Views.HyperlinkSettingsDialog.txtEmpty": "Dieses Feld ist erforderlich", @@ -2013,6 +2022,7 @@ "SSE.Views.PivotSettingsAdvanced.textInvalidRange": "FEHLER! Ungültiger Zellenbereich", "SSE.Views.PivotSettingsAdvanced.textOver": "über, dann runter", "SSE.Views.PivotSettingsAdvanced.textSelectData": "Daten auswählen", + "SSE.Views.PivotSettingsAdvanced.textTitle": "Pivot-Tabelle fortgeschritten", "SSE.Views.PivotSettingsAdvanced.txtName": "Name", "SSE.Views.PivotTable.capBlankRows": "Leere Zeilen", "SSE.Views.PivotTable.capGrandTotals": "Gesamtergebnisse", @@ -2207,6 +2217,7 @@ "SSE.Views.ShapeSettingsAdvanced.textSnap": "Andocken an die Zelle", "SSE.Views.ShapeSettingsAdvanced.textSpacing": "Abstand zwischen Spalten", "SSE.Views.ShapeSettingsAdvanced.textSquare": "Eckig", + "SSE.Views.ShapeSettingsAdvanced.textTextBox": "Textfeld", "SSE.Views.ShapeSettingsAdvanced.textTitle": "Form - Erweiterte Einstellungen", "SSE.Views.ShapeSettingsAdvanced.textTop": "Oben", "SSE.Views.ShapeSettingsAdvanced.textTwoCell": "Verschieben und Ändern der Größe mit Zellen", @@ -2247,6 +2258,7 @@ "SSE.Views.SlicerSettings.textSize": "Größe", "SSE.Views.SlicerSettings.textSmallLarge": "kleinste zur größeste", "SSE.Views.SlicerSettings.textVert": "Vertikal", + "SSE.Views.SlicerSettings.textWidth": "Breite", "SSE.Views.SlicerSettings.textZA": "Z bis A", "SSE.Views.SlicerSettingsAdvanced.strButtons": "Schaltflächen", "SSE.Views.SlicerSettingsAdvanced.strColumns": "Spalten", @@ -2254,6 +2266,7 @@ "SSE.Views.SlicerSettingsAdvanced.strHideNoData": "verberge Element ohne Daten", "SSE.Views.SlicerSettingsAdvanced.strShowHeader": "Kopfzeile anzeigen", "SSE.Views.SlicerSettingsAdvanced.strSize": "Größe", + "SSE.Views.SlicerSettingsAdvanced.strWidth": "Breite", "SSE.Views.SlicerSettingsAdvanced.textAbsolute": "kein Bewegen oder Größenänderung mit", "SSE.Views.SlicerSettingsAdvanced.textAlt": "Alternativer Text", "SSE.Views.SlicerSettingsAdvanced.textAltDescription": "Beschreibung", @@ -2334,6 +2347,7 @@ "SSE.Views.SpecialPasteDialog.textNone": "kein", "SSE.Views.SpecialPasteDialog.textOperation": "Aktion", "SSE.Views.SpecialPasteDialog.textPaste": "Einfügen", + "SSE.Views.SpecialPasteDialog.textSub": "abziehen", "SSE.Views.SpecialPasteDialog.textTitle": "Spezielles Einfügen", "SSE.Views.SpecialPasteDialog.textValues": "Werte", "SSE.Views.SpecialPasteDialog.textVFormat": "Werte & Formatierung", @@ -2366,6 +2380,7 @@ "SSE.Views.Statusbar.itemMinimum": "Minimum", "SSE.Views.Statusbar.itemMove": "Verschieben", "SSE.Views.Statusbar.itemRename": "Umbenennen", + "SSE.Views.Statusbar.itemSum": "Summe", "SSE.Views.Statusbar.itemTabColor": "Farbe des Tabulators", "SSE.Views.Statusbar.RenameDialog.errNameExists": "Das Arbeitsblatt mit demselben Namen ist bereits vorhanden.", "SSE.Views.Statusbar.RenameDialog.errNameWrongChar": "Der Blattname kann die folgenden Zeichen nicht enthalten: \\/*?[]:", @@ -2707,11 +2722,14 @@ "SSE.Views.Toolbar.txtTime": "Zeit", "SSE.Views.Toolbar.txtUnmerge": "Zellverbund aufheben", "SSE.Views.Toolbar.txtYen": "¥ Yen", + "SSE.Views.Toolbar.capBtnPrintTitles": "Drucke Titel", + "SSE.Views.Toolbar.tipPrintTitles": "Drucke titel", "SSE.Views.Top10FilterDialog.textType": "Anzeigen", "SSE.Views.Top10FilterDialog.txtBottom": "Unten", "SSE.Views.Top10FilterDialog.txtBy": "nach", "SSE.Views.Top10FilterDialog.txtItems": "Artikel", "SSE.Views.Top10FilterDialog.txtPercent": "Prozent", + "SSE.Views.Top10FilterDialog.txtSum": "Summe", "SSE.Views.Top10FilterDialog.txtTitle": "Top-10-AutoFilter", "SSE.Views.Top10FilterDialog.txtTop": "Oben", "SSE.Views.Top10FilterDialog.txtValueTitle": "Top 10 Filter", @@ -2728,7 +2746,10 @@ "SSE.Views.ValueFieldSettingsDialog.txtNormal": "keine Berechnung", "SSE.Views.ValueFieldSettingsDialog.txtPercent": "Prozent von", "SSE.Views.ValueFieldSettingsDialog.txtPercentDiff": "Prozentuelle Differenz zu", + "SSE.Views.ValueFieldSettingsDialog.txtPercentOfCol": "Prozent der Spalte", "SSE.Views.ValueFieldSettingsDialog.txtPercentOfRow": "Prozent vom Ganzen", "SSE.Views.ValueFieldSettingsDialog.txtPercentOfTotal": "Prozent von Zeile", - "SSE.Views.ValueFieldSettingsDialog.txtProduct": "Produkt" + "SSE.Views.ValueFieldSettingsDialog.txtProduct": "Produkt", + "SSE.Views.ValueFieldSettingsDialog.txtShowAs": "Zeige Werte als", + "SSE.Views.ValueFieldSettingsDialog.txtSum": "Summe" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/en.json b/apps/spreadsheeteditor/main/locale/en.json index 40e254a5c..b87701625 100644 --- a/apps/spreadsheeteditor/main/locale/en.json +++ b/apps/spreadsheeteditor/main/locale/en.json @@ -515,9 +515,10 @@ "SSE.Controllers.Main.errorForceSave": "An error occurred while saving the file. Please use the 'Download as' option to save the file to your computer hard drive or try again later.", "SSE.Controllers.Main.errorFormulaName": "An error in the entered formula.
          Incorrect formula name is used.", "SSE.Controllers.Main.errorFormulaParsing": "Internal error while parsing the formula.", + "SSE.Controllers.Main.errorFrmlMaxLength": "The length of your formula exceeds the limit of 8192 characters.
          Please edit it and try again.", + "SSE.Controllers.Main.errorFrmlMaxReference": "You cannot enter this formula because it has too many values,
          cell references, and/or names.", "SSE.Controllers.Main.errorFrmlMaxTextLength": "Text values in formulas are limited to 255 characters.
          Use the CONCATENATE function or concatenation operator (&).", "SSE.Controllers.Main.errorFrmlWrongReferences": "The function refers to a sheet that does not exist.
          Please check the data and try again.", - "SSE.Controllers.Main.errorFrmlMaxReference": "You cannot enter this formula because it has too many values,
          cell references, and/or names.", "SSE.Controllers.Main.errorFTChangeTableRangeError": "Operation could not be completed for the selected cell range.
          Select a range so that the first table row was on the same row
          and the resulting table overlapped the current one.", "SSE.Controllers.Main.errorFTRangeIncludedOtherTables": "Operation could not be completed for the selected cell range.
          Select a range which does not include other tables.", "SSE.Controllers.Main.errorInvalidRef": "Enter a correct name for the selection or a valid reference to go to.", @@ -529,13 +530,13 @@ "SSE.Controllers.Main.errorLockedWorksheetRename": "The sheet cannot be renamed at the moment as it is being renamed by another user", "SSE.Controllers.Main.errorMaxPoints": "The maximum number of points in series per chart is 4096.", "SSE.Controllers.Main.errorMoveRange": "Cannot change part of a merged cell", + "SSE.Controllers.Main.errorMoveSlicerError": "Table slicers cannot be copied from one workbook to another.
          Try again by selecting the entire table and the slicers.", "SSE.Controllers.Main.errorMultiCellFormula": "Multi-cell array formulas are not allowed in tables.", "SSE.Controllers.Main.errorNoDataToParse": "No data was selected to parse.", - "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.errorOpenWarning": "One of the file formulas exceeds the limit of 8192 characters.
          The formula was removed.", "SSE.Controllers.Main.errorOperandExpected": "The entered function syntax is not correct. Please check if you are missing one of the parentheses - '(' or ')'.", "SSE.Controllers.Main.errorPasteMaxRange": "The copy and paste area do 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.errorPasteSlicerError": "Table slicers cannot be copied from one workbook to another.", - "SSE.Controllers.Main.errorMoveSlicerError": "Table slicers cannot be copied from one workbook to another.
          Try again by selecting the entire table and the slicers.", "SSE.Controllers.Main.errorPivotOverlap": "A pivot table report cannot overlap a table.", "SSE.Controllers.Main.errorPrintMaxPagesCount": "Unfortunately, it is not possible to print more than 1500 pages at once in the current program version.
          This restriction will be removed in the upcoming releases.", "SSE.Controllers.Main.errorProcessSaveResult": "Saving failed", @@ -555,7 +556,6 @@ "SSE.Controllers.Main.errorWrongBracketsCount": "An error in the entered formula.
          Wrong number of brackets is used.", "SSE.Controllers.Main.errorWrongOperator": "An error in the entered formula. Wrong operator is used.
          Please correct the error.", "SSE.Controllers.Main.errRemDuplicates": "Duplicate values found and deleted: {0}, unique values left: {1}.", - "SSE.Controllers.Main.errorFrmlMaxLength": "You cannot add this formula as its length exceeded the allowed number of characters.
          Please edit it and try again.", "SSE.Controllers.Main.leavePageText": "You have unsaved changes in this spreadsheet. Click 'Stay on this Page' then 'Save' to save them. Click 'Leave this Page' to discard all the unsaved changes.", "SSE.Controllers.Main.loadFontsTextText": "Loading data...", "SSE.Controllers.Main.loadFontsTitleText": "Loading Data", @@ -844,11 +844,11 @@ "SSE.Controllers.Main.waitText": "Please, wait...", "SSE.Controllers.Main.warnBrowserIE9": "The application has low capabilities on IE9. Use IE10 or higher", "SSE.Controllers.Main.warnBrowserZoom": "Your browser current zoom setting is not fully supported. Please reset to the default zoom by pressing Ctrl+0.", + "SSE.Controllers.Main.warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only.
          Contact your administrator to learn more.", "SSE.Controllers.Main.warnLicenseExp": "Your license has expired.
          Please update your license and refresh the page.", + "SSE.Controllers.Main.warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", "SSE.Controllers.Main.warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only.
          Contact %1 sales team for personal upgrade terms.", "SSE.Controllers.Main.warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", - "SSE.Controllers.Main.warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only.
          Contact your administrator to learn more.", - "SSE.Controllers.Main.warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", "SSE.Controllers.Main.warnProcessRightsChange": "You have been denied the right to edit the file.", "SSE.Controllers.Print.strAllSheets": "All Sheets", "SSE.Controllers.Print.textFirstCol": "First column", @@ -1862,18 +1862,18 @@ "SSE.Views.FormulaTab.txtFormulaTip": "Insert function", "SSE.Views.FormulaTab.txtMore": "More functions", "SSE.Views.FormulaTab.txtRecent": "Recently used", + "SSE.Views.FormulaWizard.textAny": "any", + "SSE.Views.FormulaWizard.textArgument": "Argument", "SSE.Views.FormulaWizard.textFunction": "Function", "SSE.Views.FormulaWizard.textFunctionRes": "Function result", "SSE.Views.FormulaWizard.textHelp": "Help on this function", - "SSE.Views.FormulaWizard.textTitle": "Function Argumens", - "SSE.Views.FormulaWizard.textValue": "Formula result", - "SSE.Views.FormulaWizard.textNoArgs": "This function has no arguments", - "SSE.Views.FormulaWizard.textArgument": "Argument", - "SSE.Views.FormulaWizard.textNumber": "number", - "SSE.Views.FormulaWizard.textText": "text", - "SSE.Views.FormulaWizard.textRef": "reference", - "SSE.Views.FormulaWizard.textAny": "any", "SSE.Views.FormulaWizard.textLogical": "logical", + "SSE.Views.FormulaWizard.textNoArgs": "This function has no arguments", + "SSE.Views.FormulaWizard.textNumber": "number", + "SSE.Views.FormulaWizard.textRef": "reference", + "SSE.Views.FormulaWizard.textText": "text", + "SSE.Views.FormulaWizard.textTitle": "Function Arguments", + "SSE.Views.FormulaWizard.textValue": "Formula result", "SSE.Views.GroupDialog.textColumns": "Columns", "SSE.Views.GroupDialog.textRows": "Rows", "SSE.Views.HeaderFooterDialog.textAlign": "Align with page margins", @@ -2479,7 +2479,7 @@ "SSE.Views.SortDialog.textZA": "Z to A", "SSE.Views.SortDialog.txtInvalidRange": "Invalid cells range.", "SSE.Views.SortDialog.txtTitle": "Sort", - "SSE.Views.SortFilterDialog.textAsc": "Ascenging (A to Z) by", + "SSE.Views.SortFilterDialog.textAsc": "Ascending (A to Z) by", "SSE.Views.SortFilterDialog.textDesc": "Descending (Z to A) by", "SSE.Views.SortFilterDialog.txtTitle": "Sort", "SSE.Views.SortOptionsDialog.textCase": "Case sensitive", @@ -2666,6 +2666,7 @@ "SSE.Views.Toolbar.capBtnPageOrient": "Orientation", "SSE.Views.Toolbar.capBtnPageSize": "Size", "SSE.Views.Toolbar.capBtnPrintArea": "Print Area", + "SSE.Views.Toolbar.capBtnPrintTitles": "Print Titles", "SSE.Views.Toolbar.capBtnScale": "Scale to Fit", "SSE.Views.Toolbar.capImgAlign": "Align", "SSE.Views.Toolbar.capImgBackward": "Send Backward", @@ -2809,6 +2810,7 @@ "SSE.Views.Toolbar.tipPrColor": "Background color", "SSE.Views.Toolbar.tipPrint": "Print", "SSE.Views.Toolbar.tipPrintArea": "Print area", + "SSE.Views.Toolbar.tipPrintTitles": "Print titles", "SSE.Views.Toolbar.tipRedo": "Redo", "SSE.Views.Toolbar.tipSave": "Save", "SSE.Views.Toolbar.tipSaveCoauth": "Save your changes for the other users to see them.", diff --git a/apps/spreadsheeteditor/main/locale/es.json b/apps/spreadsheeteditor/main/locale/es.json index c09f50570..3c3febc5e 100644 --- a/apps/spreadsheeteditor/main/locale/es.json +++ b/apps/spreadsheeteditor/main/locale/es.json @@ -15,6 +15,7 @@ "Common.define.chartData.textStock": "De cotizaciones", "Common.define.chartData.textSurface": "Superficie", "Common.define.chartData.textWinLossSpark": "Ganancia/pérdida", + "Common.Translation.warnFileLocked": "El archivo está siendo editado en otra aplicación. Puede continuar editándolo y guardarlo como una copia.", "Common.UI.ColorButton.textNewColor": "Color personalizado", "Common.UI.ComboBorderSize.txtNoBorders": "Sin bordes", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Sin bordes", @@ -58,6 +59,10 @@ "Common.Views.About.txtPoweredBy": "Desarrollado por", "Common.Views.About.txtTel": "tel.: ", "Common.Views.About.txtVersion": "Versión ", + "Common.Views.AutoCorrectDialog.textBy": "Por:", + "Common.Views.AutoCorrectDialog.textMathCorrect": "Autocorrección matemática", + "Common.Views.AutoCorrectDialog.textReplace": "Reemplazar:", + "Common.Views.AutoCorrectDialog.textTitle": "Autocorrección", "Common.Views.Chat.textSend": "Enviar", "Common.Views.Comments.textAdd": "Añadir", "Common.Views.Comments.textAddComment": "Añadir", @@ -82,7 +87,7 @@ "Common.Views.CopyWarningDialog.textToPaste": "para pegar", "Common.Views.DocumentAccessDialog.textLoading": "Cargando...", "Common.Views.DocumentAccessDialog.textTitle": "Ajustes de uso compartido", - "Common.Views.Header.labelCoUsersDescr": "El Documento está siendo editado actualmente por muchos usuarios", + "Common.Views.Header.labelCoUsersDescr": "Usuarios que están editando el archivo:", "Common.Views.Header.textAdvSettings": "Ajustes avanzados", "Common.Views.Header.textBack": "Abrir ubicación del archivo", "Common.Views.Header.textCompactView": "Esconder barra de herramientas", @@ -108,11 +113,21 @@ "Common.Views.ImageFromUrlDialog.textUrl": "Pegar URL de imagen:", "Common.Views.ImageFromUrlDialog.txtEmpty": "Este campo es obligatorio", "Common.Views.ImageFromUrlDialog.txtNotUrl": "El campo debe ser URL en el formato \"http://www.example.com\"", + "Common.Views.ListSettingsDialog.textBulleted": "Con viñetas", + "Common.Views.ListSettingsDialog.textNumbering": "Numerado", "Common.Views.ListSettingsDialog.tipChange": "Cambiar viñeta", "Common.Views.ListSettingsDialog.txtBullet": "Viñeta", "Common.Views.ListSettingsDialog.txtColor": "Color", + "Common.Views.ListSettingsDialog.txtNewBullet": "Nueva viñeta", + "Common.Views.ListSettingsDialog.txtNone": "Ninguno", "Common.Views.ListSettingsDialog.txtOfText": "% de texto", + "Common.Views.ListSettingsDialog.txtSize": "Tamaño", + "Common.Views.ListSettingsDialog.txtStart": "Empezar en", + "Common.Views.ListSettingsDialog.txtSymbol": "Símbolo", + "Common.Views.ListSettingsDialog.txtTitle": "Ajustes de lista", + "Common.Views.ListSettingsDialog.txtType": "Tipo", "Common.Views.OpenDialog.closeButtonText": "Cerrar archivo", + "Common.Views.OpenDialog.txtAdvanced": "Avanzado", "Common.Views.OpenDialog.txtColon": "Colon", "Common.Views.OpenDialog.txtComma": "Coma", "Common.Views.OpenDialog.txtDelimiter": "Delimitador", @@ -158,6 +173,8 @@ "Common.Views.ReviewChanges.strStrictDesc": "Use el botón \"Guardar\" para sincronizar los cambios que o tú u otros habéis realizado", "Common.Views.ReviewChanges.tipAcceptCurrent": "Aceptar cambio actual", "Common.Views.ReviewChanges.tipCoAuthMode": "Establezca el modo de co-edición", + "Common.Views.ReviewChanges.tipCommentRem": "Eliminar comentarios", + "Common.Views.ReviewChanges.tipCommentRemCurrent": "Eliminar comentarios actuales", "Common.Views.ReviewChanges.tipHistory": "Mostrar historial de versiones", "Common.Views.ReviewChanges.tipRejectCurrent": "Rechazar Cambio Actual", "Common.Views.ReviewChanges.tipReview": "Rastrear cambios", @@ -172,6 +189,10 @@ "Common.Views.ReviewChanges.txtChat": "Chat", "Common.Views.ReviewChanges.txtClose": "Cerrar", "Common.Views.ReviewChanges.txtCoAuthMode": "Modo de co-edición", + "Common.Views.ReviewChanges.txtCommentRemAll": "Eliminar todos los comentarios", + "Common.Views.ReviewChanges.txtCommentRemCurrent": "Eliminar comentarios actuales", + "Common.Views.ReviewChanges.txtCommentRemMy": "Eliminar mis comentarios", + "Common.Views.ReviewChanges.txtCommentRemMyCurrent": "Eliminar mis actuales comentarios", "Common.Views.ReviewChanges.txtCommentRemove": "Eliminar", "Common.Views.ReviewChanges.txtDocLang": "Idioma", "Common.Views.ReviewChanges.txtFinal": "Todos los cambio aceptados (vista previa)", @@ -228,9 +249,38 @@ "Common.Views.SignSettingsDialog.textShowDate": "Presentar fecha de la firma", "Common.Views.SignSettingsDialog.textTitle": "Preparación de la firma", "Common.Views.SignSettingsDialog.txtEmpty": "Este campo es obligatorio", + "Common.Views.SymbolTableDialog.textCharacter": "Carácter", + "Common.Views.SymbolTableDialog.textCode": "Valor HEX de Unicode", + "Common.Views.SymbolTableDialog.textCopyright": "Signo de Copyright", + "Common.Views.SymbolTableDialog.textDCQuote": "Comillas dobles de cierre", + "Common.Views.SymbolTableDialog.textDOQuote": "Comillas dobles de apertura", + "Common.Views.SymbolTableDialog.textEllipsis": "Elipsis horizontal", + "Common.Views.SymbolTableDialog.textEmDash": "Guión largo", + "Common.Views.SymbolTableDialog.textEmSpace": "Espacio largo", + "Common.Views.SymbolTableDialog.textEnDash": "Guión corto", + "Common.Views.SymbolTableDialog.textEnSpace": "Espacio corto", "Common.Views.SymbolTableDialog.textFont": "Letra ", + "Common.Views.SymbolTableDialog.textNBHyphen": "Guión sin ruptura", + "Common.Views.SymbolTableDialog.textNBSpace": "Espacio de no separación", + "Common.Views.SymbolTableDialog.textPilcrow": "Signo de antígrafo", + "Common.Views.SymbolTableDialog.textQEmSpace": "1/4 Espacio largo", "Common.Views.SymbolTableDialog.textRange": "Rango", + "Common.Views.SymbolTableDialog.textRecent": "Símbolos utilizados recientemente", + "Common.Views.SymbolTableDialog.textRegistered": "Signo de marca registrada", + "Common.Views.SymbolTableDialog.textSCQuote": "Comillas simples de cierre", + "Common.Views.SymbolTableDialog.textSection": "Signo de sección", + "Common.Views.SymbolTableDialog.textShortcut": "Tecla de método abreviado", + "Common.Views.SymbolTableDialog.textSHyphen": "Guión virtual", + "Common.Views.SymbolTableDialog.textSOQuote": "Comillas simples de apertura", + "Common.Views.SymbolTableDialog.textSpecial": "Caracteres especiales", + "Common.Views.SymbolTableDialog.textSymbols": "Símbolos", + "Common.Views.SymbolTableDialog.textTitle": "Símbolo", + "Common.Views.SymbolTableDialog.textTradeMark": "Símbolo de marca comercial", "SSE.Controllers.DataTab.textWizard": "Texto en columnas", + "SSE.Controllers.DataTab.txtExpand": "Expandir", + "SSE.Controllers.DataTab.txtExpandRemDuplicates": "Los datos junto a la selección no serán eliminados. ¿Quiere ampliar la selección para incluir los datos adyacentes o continuar sólo con las celdas actualmente seleccionadas?", + "SSE.Controllers.DataTab.txtRemDuplicates": "Eliminar duplicados", + "SSE.Controllers.DataTab.txtRemSelected": "Eliminar en seleccionado", "SSE.Controllers.DocumentHolder.alignmentText": "Alineación", "SSE.Controllers.DocumentHolder.centerText": "Al centro", "SSE.Controllers.DocumentHolder.deleteColumnText": "Eliminar columna", @@ -251,6 +301,7 @@ "SSE.Controllers.DocumentHolder.textCtrlClick": "Haga clic en el enlace para abrirlo o haga clic y mantenga pulsado el botón del ratón para seleccionar la celda.", "SSE.Controllers.DocumentHolder.textInsertLeft": "Insertar a la izquierda", "SSE.Controllers.DocumentHolder.textInsertTop": "Insertar Arriba", + "SSE.Controllers.DocumentHolder.textPasteSpecial": "Pegado especial", "SSE.Controllers.DocumentHolder.textSym": "sym", "SSE.Controllers.DocumentHolder.tipIsLocked": "Este elemento se está editando por otro usuario.", "SSE.Controllers.DocumentHolder.txtAboveAve": "Superior a la media", @@ -416,6 +467,7 @@ "SSE.Controllers.Main.downloadErrorText": "Error de descarga.", "SSE.Controllers.Main.downloadTextText": "Cargando hoja de cálculo...", "SSE.Controllers.Main.downloadTitleText": "Cargando hoja de cálculo", + "SSE.Controllers.Main.errNoDuplicates": "No se han encontrado valores duplicados.", "SSE.Controllers.Main.errorAccessDeny": "Usted no tiene permisos para realizar la acción que está intentando hacer.
          Por favor, contacte con el Administrador del Servidor de Documentos.", "SSE.Controllers.Main.errorArgsRange": "Un error en la fórmula introducida.
          Se usa intervalo de argumentos incorrecto.", "SSE.Controllers.Main.errorAutoFilterChange": "No se permite la operación porque intenta desplazar celdas en una tabla de su hoja de cálculo.", @@ -434,22 +486,29 @@ "SSE.Controllers.Main.errorDatabaseConnection": "Error externo.
          Error de conexión de base de datos. Por favor póngase en contacto con soporte si el error se mantiene.", "SSE.Controllers.Main.errorDataEncrypted": "Se han recibido cambios cifrados, ellos no pueden ser descifrados.", "SSE.Controllers.Main.errorDataRange": "Rango de datos incorrecto.", + "SSE.Controllers.Main.errorDataValidate": "El valor que ha introducido no es válido.
          Un usuario ha restringido los valores que pueden ser introducidos en esta celda.", "SSE.Controllers.Main.errorDefaultMessage": "Código de error: %1", "SSE.Controllers.Main.errorEditingDownloadas": "Se produjo un error durante el trabajo con el documento.
          Use la opción 'Descargar como...' para guardar la copia de seguridad de este archivo en el disco duro de su computadora.", "SSE.Controllers.Main.errorEditingSaveas": "Se produjo un error durante el trabajo con el documento.
          Use la opción 'Guardar como...' para guardar la copia de seguridad de este archivo en el disco duro de su computadora.", "SSE.Controllers.Main.errorEmailClient": "No se pudo encontrar ningun cliente de email.", "SSE.Controllers.Main.errorFilePassProtect": "El archivo está protegido por una contraseña y no puede ser abierto.", "SSE.Controllers.Main.errorFileRequest": "Error externo.
          Error de solicitud de archivo. Por favor póngase en contacto con soporte si el error se mantiene.", + "SSE.Controllers.Main.errorFileSizeExceed": "El tamaño del archivo excede la limitación establecida para su servidor. Por favor, póngase en contacto con el administrador del Servidor de documentos para obtener más detalles. ", "SSE.Controllers.Main.errorFileVKey": "Error externo.
          Clave de seguridad incorrecto. Por favor póngase en contacto con soporte si el error se mantiene.", "SSE.Controllers.Main.errorFillRange": "Es imposible rellenar el rango de celdas seleccionado.
          Todas las celdas seleccionadas deben tener el mismo tamaño.", "SSE.Controllers.Main.errorForceSave": "Ha ocurrido un error mientras guardaba el archivo. Por favor use la opción \"Descargar\" para guardar el archivo en el disco duro de su ordenador o inténtelo de nuevo más tarde.", "SSE.Controllers.Main.errorFormulaName": "Un error en la fórmula introducida.
          Nombre de fórmula incorrecto.", "SSE.Controllers.Main.errorFormulaParsing": "Error interno mientras analizando la fórmula.", + "SSE.Controllers.Main.errorFrmlMaxLength": "La longitud de su fórmula excede el límite de 8192 carácteres.
          Por favor, edítela e intente de nuevo.", + "SSE.Controllers.Main.errorFrmlMaxReference": "No puede introducir esta fórmula porque tiene demasiados valores,
          referencias de celda, y/o nombres.", "SSE.Controllers.Main.errorFrmlMaxTextLength": "Valores de texto en fórmulas son limitados al número de caracteres - 255.
          Use la función CONCATENAR u operador de concatenación (&).", "SSE.Controllers.Main.errorFrmlWrongReferences": "La función se refiere a una hoja que no existe.
          Por favor, compruebe los datos e inténtelo de nuevo.", + "SSE.Controllers.Main.errorFTChangeTableRangeError": "La operación no se pudo completar para el rango de celdas seleccionado.
          Seleccione un rango de modo que la primera fila de la tabla esté en la misma fila
          y la tabla resultante se superponga a la actual.", + "SSE.Controllers.Main.errorFTRangeIncludedOtherTables": "La operación no se pudo completar para el rango de celdas seleccionado.
          Seleccione un rango que no incluye otras tablas.", "SSE.Controllers.Main.errorInvalidRef": "Introducir un nombre correcto para la selección o una referencia válida para ir a.", "SSE.Controllers.Main.errorKeyEncrypt": "Descriptor de clave desconocido", "SSE.Controllers.Main.errorKeyExpire": "Descriptor de clave ha expirado", + "SSE.Controllers.Main.errorLabledColumnsPivot": "Para crear una tabla dinámica, utilice datos que estén organizados como una lista con columnas etiquetadas.", "SSE.Controllers.Main.errorLockedAll": "No se pudo realizar la operación porque la hoja había sido bloqueada por otro usuario.", "SSE.Controllers.Main.errorLockedCellPivot": "No puede modificar datos dentro de una tabla pivote.", "SSE.Controllers.Main.errorLockedWorksheetRename": "La hoja no se la puede cambiar en el momento en que se está cambiando el nombre por otro usuario", @@ -457,9 +516,10 @@ "SSE.Controllers.Main.errorMoveRange": "Es imposible cambiar una parte de la celda unida", "SSE.Controllers.Main.errorMultiCellFormula": "Fórmulas de matriz con celdas múltiples no están permitidas en tablas.", "SSE.Controllers.Main.errorNoDataToParse": "No se seleccionaron datos para redistribuir.", - "SSE.Controllers.Main.errorOpenWarning": "La longitud de una de las fórmulas en el archivo superó
          el número de caracteres permitidos y se quitó.", + "SSE.Controllers.Main.errorOpenWarning": "Una de las fórmulas del archivo excede el límite de 8192 caracteres.
          La fórmula fue eliminada.", "SSE.Controllers.Main.errorOperandExpected": "La función de sintaxis introducida no es correcta. Le recomendamos verificar si no le hace falta uno del paréntesis - '(' o ')'", "SSE.Controllers.Main.errorPasteMaxRange": "El área de copiar no coincide con el área de pegar.
          Para pegar las celdas copiadas, por favor, seleccione una zona con el mismo tamaño o haga clic en la primera celda de una fila.", + "SSE.Controllers.Main.errorPivotOverlap": "El informe de la tabla dinámica no puede superponerse a la tabla.", "SSE.Controllers.Main.errorPrintMaxPagesCount": "Por desgracia, no es posible imprimir más de 1500 páginas a la vez en la versión actual.
          Esta restricción será extraida en próximos lanzamientos.", "SSE.Controllers.Main.errorProcessSaveResult": "Problemas al guardar", "SSE.Controllers.Main.errorServerVersion": "La versión del editor ha sido actualizada. La página será recargada para aplicar los cambios.", @@ -474,9 +534,10 @@ "SSE.Controllers.Main.errorUpdateVersionOnDisconnect": "La conexión a Internet se ha restaurado y la versión del archivo ha cambiado a
          . Antes de continuar trabajando, necesita descargar el archivo o copiar su contenido para asegurarse de que no ha perdido nada, por ultimo recargue esta pagina.", "SSE.Controllers.Main.errorUserDrop": "No se puede acceder al archivo ahora.", "SSE.Controllers.Main.errorUsersExceed": "El número de usuarios permitido según su plan de precios fue excedido", - "SSE.Controllers.Main.errorViewerDisconnect": "Se pierde la conexión. Usted todavía puede visualizar el documento,
          pero no puede descargar o imprimirlo hasta que la conexión sea restaurada.", + "SSE.Controllers.Main.errorViewerDisconnect": "Se ha perdido la conexión. Usted todavía puede visualizar el documento,
          pero no puede descargar o imprimirlo hasta que la conexión sea restaurada y la página esté recargada.", "SSE.Controllers.Main.errorWrongBracketsCount": "Un error en la fórmula introducida.
          Número incorrecto de corchetes es usado.", "SSE.Controllers.Main.errorWrongOperator": "Un error en la fórmula introducida. Se usa operador inválido.
          Por favor, corrija el error.", + "SSE.Controllers.Main.errRemDuplicates": "Duplicar valores encontrados y eliminados: {0}, valores únicos restantes: {1}.", "SSE.Controllers.Main.leavePageText": "Usted tiene cambios no guardados en esta hoja de cálculo. Haga clic en 'Permanecer en esta página', después 'Guardar' para guardarlos. Haga clic en 'Abandonar esta página' para descartar todos los cambios no guardados.", "SSE.Controllers.Main.loadFontsTextText": "Cargando datos...", "SSE.Controllers.Main.loadFontsTitleText": "Cargando datos", @@ -510,12 +571,14 @@ "SSE.Controllers.Main.textConfirm": "Confirmación", "SSE.Controllers.Main.textContactUs": "Contactar con equipo de ventas", "SSE.Controllers.Main.textCustomLoader": "Note, por favor, que según los términos de la licencia Usted no tiene derecho a cambiar el cargador.
          Por favor, póngase en contacto con nuestro Departamento de Ventas para obtener una cotización.", + "SSE.Controllers.Main.textHasMacros": "El archivo contiene macros automáticas.
          ¿Quiere ejecutar macros?", "SSE.Controllers.Main.textLoadingDocument": "Cargando hoja de cálculo", "SSE.Controllers.Main.textNo": "No", - "SSE.Controllers.Main.textNoLicenseTitle": "%1 limitación de conexiones", + "SSE.Controllers.Main.textNoLicenseTitle": "Se ha alcanzado el límite de licencias", "SSE.Controllers.Main.textPaidFeature": "Función de pago", "SSE.Controllers.Main.textPleaseWait": "El proceso puede durar un buen rato. Espere por favor...", "SSE.Controllers.Main.textRecalcFormulas": "Calculando formulas...", + "SSE.Controllers.Main.textRemember": "Recordar mi elección", "SSE.Controllers.Main.textShape": "Forma", "SSE.Controllers.Main.textStrict": "Modo estricto", "SSE.Controllers.Main.textTryUndoRedo": "Las funciones Anular/Rehacer se desactivan para el modo co-edición rápido.
          Haga Clic en el botón \"modo estricto\" para cambiar al modo de co-edición estricta para editar el archivo sin la interferencia de otros usuarios y enviar sus cambios sólo después de guardarlos. Se puede cambiar entre los modos de co-edición usando los ajustes avanzados de edición.", @@ -524,24 +587,35 @@ "SSE.Controllers.Main.titleRecalcFormulas": "Calculando...", "SSE.Controllers.Main.titleServerVersion": "Editor ha sido actualizado", "SSE.Controllers.Main.txtAccent": "Acento", + "SSE.Controllers.Main.txtAll": "(Todos)", "SSE.Controllers.Main.txtArt": "Su texto aquí", "SSE.Controllers.Main.txtBasicShapes": "Formas básicas", + "SSE.Controllers.Main.txtBlank": "(en blanco)", "SSE.Controllers.Main.txtButtons": "Botones", + "SSE.Controllers.Main.txtByField": "%1 de %2", "SSE.Controllers.Main.txtCallouts": "Llamadas", "SSE.Controllers.Main.txtCharts": "Gráficos", + "SSE.Controllers.Main.txtClearFilter": "Borrar filtro (Alt+C)", + "SSE.Controllers.Main.txtColLbls": "Etiquetas de columna", "SSE.Controllers.Main.txtColumn": "Columna", + "SSE.Controllers.Main.txtConfidential": "Confidencial", "SSE.Controllers.Main.txtDate": "Fecha", "SSE.Controllers.Main.txtDiagramTitle": "Título del gráfico", "SSE.Controllers.Main.txtEditingMode": "Establecer el modo de edición...", "SSE.Controllers.Main.txtFiguredArrows": "Formas de flecha", "SSE.Controllers.Main.txtFile": "Archivo", + "SSE.Controllers.Main.txtGrandTotal": "Total general", "SSE.Controllers.Main.txtLines": "Líneas", "SSE.Controllers.Main.txtMath": "Matemáticas", + "SSE.Controllers.Main.txtMultiSelect": "Selección múltiple (Alt+S)", "SSE.Controllers.Main.txtPage": "Página", + "SSE.Controllers.Main.txtPageOf": "Página %1 de %2", "SSE.Controllers.Main.txtPages": "Páginas", + "SSE.Controllers.Main.txtPreparedBy": "Preparado por", "SSE.Controllers.Main.txtPrintArea": "Área_de_impresión", "SSE.Controllers.Main.txtRectangles": "Rectángulos", "SSE.Controllers.Main.txtRow": "Fila", + "SSE.Controllers.Main.txtRowLbls": "Etiquetas de fila", "SSE.Controllers.Main.txtSeries": "Serie", "SSE.Controllers.Main.txtShape_accentBorderCallout1": "Llamada con línea 1 (borde y barra de énfasis)", "SSE.Controllers.Main.txtShape_accentBorderCallout2": "Llamada con línea 2 (borde y barra de énfasis)", @@ -736,7 +810,10 @@ "SSE.Controllers.Main.txtStyle_Title": "Título", "SSE.Controllers.Main.txtStyle_Total": "Total", "SSE.Controllers.Main.txtStyle_Warning_Text": "Texto de advertencia", + "SSE.Controllers.Main.txtTab": "Pestaña", "SSE.Controllers.Main.txtTable": "Tabla", + "SSE.Controllers.Main.txtTime": "Hora", + "SSE.Controllers.Main.txtValues": "Valores", "SSE.Controllers.Main.txtXAxis": "Eje X", "SSE.Controllers.Main.txtYAxis": "Eje Y", "SSE.Controllers.Main.unknownErrorText": "Error desconocido.", @@ -749,20 +826,28 @@ "SSE.Controllers.Main.waitText": "Por favor, espere...", "SSE.Controllers.Main.warnBrowserIE9": "Este aplicación tiene baja capacidad en IE9. Utilice IE10 o superior", "SSE.Controllers.Main.warnBrowserZoom": "La configuración actual de zoom de su navegador no está soportada por completo. Por favor restablezca zoom predeterminado pulsando Ctrl+0.", - "SSE.Controllers.Main.warnLicenseExceeded": "Se ha excedido el número permitido de las conexiones simultáneas al servidor de documentos, y el documento se abrirá para sólo lectura.
          Por favor, contacte con su administrador para recibir más información.", + "SSE.Controllers.Main.warnLicenseExceeded": "Usted ha alcanzado el límite de conexiones simultáneas con %1 editores. Este documento se abrirá sólo para su visualización.
          Por favor, contacte con su administrador para recibir más información.", "SSE.Controllers.Main.warnLicenseExp": "Su licencia ha expirado.
          Por favor, actualice su licencia y después recargue la página.", - "SSE.Controllers.Main.warnLicenseUsersExceeded": "Se ha excedido el número permitido de los usuarios simultáneos, y el documento se abrirá para sólo lectura.
          Por favor, contacte con su administrador para recibir más información.", - "SSE.Controllers.Main.warnNoLicense": "Esta versión de editores de %1 tiene ciertas limitaciones para el número de conexiones simultáneas al servidor de documentos.
          Si se requiere más, por favor, considere comprar una licencia comercial.", - "SSE.Controllers.Main.warnNoLicenseUsers": "Esta versión de editores %1 tiene ciertas limitaciones para usuarios simultáneos.
          Si necesita más, por favor, considere comprar una licencia comercial.", + "SSE.Controllers.Main.warnLicenseUsersExceeded": "Usted ha alcanzado el límite de usuarios para los editores de %1. Por favor, contacte con su administrador para recibir más información.", + "SSE.Controllers.Main.warnNoLicense": "Usted ha alcanzado el límite de conexiones simultáneas con %1 editores. Este documento se abrirá sólo para su visualización.
          Contacte con el equipo de ventas de %1 para conocer los términos de actualización personal.", + "SSE.Controllers.Main.warnNoLicenseUsers": "Usted ha alcanzado el límite de usuarios para los editores de %1. Contacte con el equipo de ventas de %1 para conocer los términos de actualización personal.", "SSE.Controllers.Main.warnProcessRightsChange": "El derecho de edición del archivo es denegado.", "SSE.Controllers.Print.strAllSheets": "Todas las hojas", + "SSE.Controllers.Print.textFirstCol": "Primera columna", + "SSE.Controllers.Print.textFirstRow": "Primera fila", + "SSE.Controllers.Print.textFrozenCols": "Columnas inmovilizadas", + "SSE.Controllers.Print.textFrozenRows": "Filas inmovilizadas ", + "SSE.Controllers.Print.textInvalidRange": "¡ERROR!¡Rango de celdas inválido! ", + "SSE.Controllers.Print.textNoRepeat": "No repetir", + "SSE.Controllers.Print.textRepeat": "Repetir...", + "SSE.Controllers.Print.textSelectRange": "Seleccionar rango", "SSE.Controllers.Print.textWarning": "Aviso", "SSE.Controllers.Print.txtCustom": "Personalizado", "SSE.Controllers.Print.warnCheckMargings": "Márgenes son incorrectos", "SSE.Controllers.Statusbar.errorLastSheet": "Un libro debe contener al menos una hoja visible.", "SSE.Controllers.Statusbar.errorRemoveSheet": "Imposible borrar la hoja de cálculo.", "SSE.Controllers.Statusbar.strSheet": "Hoja", - "SSE.Controllers.Statusbar.warnDeleteSheet": "La hoja de cálculo puede contener datos. ¿Está seguro de que quiere continuar?", + "SSE.Controllers.Statusbar.warnDeleteSheet": "Las hojas de trabajo seleccionadas pueden contener datos. ¿Está seguro de que quiere proceder?", "SSE.Controllers.Statusbar.zoomText": "Zoom {0}%", "SSE.Controllers.Toolbar.confirmAddFontName": "El tipo de letra que usted va a guardar no está disponible en este dispositivo.
          El estilo de letra se mostrará usando uno de los tipos de letra del sistema, el tipo de letra guardado va a usarse cuando esté disponible.
          ¿Desea continuar?", "SSE.Controllers.Toolbar.errorMaxRows": "¡ERROR! El número máximo de series de datos por gráfico es 225", @@ -852,6 +937,7 @@ "SSE.Controllers.Toolbar.txtBracket_UppLim": "Corchetes", "SSE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen": "Corchete único", "SSE.Controllers.Toolbar.txtBracket_UppLim_OpenNone": "Corchete único", + "SSE.Controllers.Toolbar.txtDeleteCells": "Eliminar celdas", "SSE.Controllers.Toolbar.txtExpand": "Expandir y ordenar", "SSE.Controllers.Toolbar.txtExpandSort": "Los datos al lado del rango seleccionado no serán ordenados. ¿Quiere Usted expandir el rango seleccionado para incluir datos de las celdas adyacentes o continuar ordenación del rango seleccionado?", "SSE.Controllers.Toolbar.txtFractionDiagonal": "Fracción sesgada", @@ -890,6 +976,7 @@ "SSE.Controllers.Toolbar.txtFunction_Sinh": "Función de seno hiperbólica", "SSE.Controllers.Toolbar.txtFunction_Tan": "Función de tangente", "SSE.Controllers.Toolbar.txtFunction_Tanh": "Función de tangente hiperbólica", + "SSE.Controllers.Toolbar.txtInsertCells": "Insertar celdas", "SSE.Controllers.Toolbar.txtIntegral": "Integral", "SSE.Controllers.Toolbar.txtIntegral_dtheta": "Diferencial zeta", "SSE.Controllers.Toolbar.txtIntegral_dx": "Diferencial x", @@ -1105,12 +1192,19 @@ "SSE.Controllers.Toolbar.txtSymbol_vdots": "Elipsis vertical", "SSE.Controllers.Toolbar.txtSymbol_xsi": "Csi", "SSE.Controllers.Toolbar.txtSymbol_zeta": "Dseda", + "SSE.Controllers.Toolbar.txtTable_TableStyleDark": "Estilo de tabla oscuro", + "SSE.Controllers.Toolbar.txtTable_TableStyleLight": "Estilo de tabla claro", + "SSE.Controllers.Toolbar.txtTable_TableStyleMedium": "Estilo de tabla medio", "SSE.Controllers.Toolbar.warnLongOperation": "Se puede ocupar mucho tiempo para terminar la operación que Usted desea realizar.
          ¿Está seguro que desea continuar?", "SSE.Controllers.Toolbar.warnMergeLostData": "En la celda unida permanecerán sólo los datos de la celda de la esquina superior izquierda.
          Está seguro de que quiere continuar?", "SSE.Controllers.Viewport.textFreezePanes": "Inmovilizar paneles", "SSE.Controllers.Viewport.textHideFBar": "Ocultar barra de fórmulas", "SSE.Controllers.Viewport.textHideGridlines": "Ocultar cuadrícula", "SSE.Controllers.Viewport.textHideHeadings": "Ocultar títulos", + "SSE.Views.AdvancedSeparatorDialog.strDecimalSeparator": "Separador decimal", + "SSE.Views.AdvancedSeparatorDialog.strThousandsSeparator": "Separador de miles", + "SSE.Views.AdvancedSeparatorDialog.textLabel": "Ajustes utilizados para reconocer los datos numéricos", + "SSE.Views.AdvancedSeparatorDialog.textTitle": "Ajustes avanzados", "SSE.Views.AutoFilterDialog.btnCustomFilter": "Filtro personalizado", "SSE.Views.AutoFilterDialog.textAddSelection": "Añadir selección actual para filtración", "SSE.Views.AutoFilterDialog.textEmptyItem": "{Blanks}", @@ -1130,9 +1224,11 @@ "SSE.Views.AutoFilterDialog.txtFilterFontColor": "Filtrar por color de la letra", "SSE.Views.AutoFilterDialog.txtGreater": "Mayor qué...", "SSE.Views.AutoFilterDialog.txtGreaterEquals": "Mayor qué o igual a...", + "SSE.Views.AutoFilterDialog.txtLabelFilter": "Filtrar de etiqueta", "SSE.Views.AutoFilterDialog.txtLess": "Menos que...", "SSE.Views.AutoFilterDialog.txtLessEquals": "Menos que o igual a...", "SSE.Views.AutoFilterDialog.txtNotBegins": "No empieza con...", + "SSE.Views.AutoFilterDialog.txtNotBetween": "No está entre...", "SSE.Views.AutoFilterDialog.txtNotContains": "No contiene...", "SSE.Views.AutoFilterDialog.txtNotEnds": "No termina en...", "SSE.Views.AutoFilterDialog.txtNotEquals": "No es igual...", @@ -1142,9 +1238,12 @@ "SSE.Views.AutoFilterDialog.txtSortFontColor": "Ordenar por color de la letra", "SSE.Views.AutoFilterDialog.txtSortHigh2Low": "Ordenar de mayor a menor", "SSE.Views.AutoFilterDialog.txtSortLow2High": "Ordenar de menor a mayor ", + "SSE.Views.AutoFilterDialog.txtSortOption": "Más opciones de ordenación...", "SSE.Views.AutoFilterDialog.txtTextFilter": "Filtro de Texto", "SSE.Views.AutoFilterDialog.txtTitle": "Filtro", "SSE.Views.AutoFilterDialog.txtTop10": "Top 10", + "SSE.Views.AutoFilterDialog.txtValueFilter": "Filtro de valor", + "SSE.Views.AutoFilterDialog.warnFilterError": "Necesita la menos un campo de en el área Valores para aplicar el filtro de valor.", "SSE.Views.AutoFilterDialog.warnNoSelected": "Usted debe elegir por lo menos un valor", "SSE.Views.CellEditor.textManager": "Administrador de nombre", "SSE.Views.CellEditor.tipFormula": "Insertar función", @@ -1153,12 +1252,15 @@ "SSE.Views.CellRangeDialog.txtEmpty": "Este campo es obligatorio", "SSE.Views.CellRangeDialog.txtInvalidRange": "¡ERROR!Rango de celdas inválido", "SSE.Views.CellRangeDialog.txtTitle": "Selección de rango de datos", + "SSE.Views.CellSettings.strShrink": "Reducir para ajustar", + "SSE.Views.CellSettings.strWrap": "Ajustar texto", "SSE.Views.CellSettings.textAngle": "Ángulo", "SSE.Views.CellSettings.textBackColor": "Color del fondo", "SSE.Views.CellSettings.textBackground": "Color del fondo", "SSE.Views.CellSettings.textBorderColor": "Color", "SSE.Views.CellSettings.textBorders": "Estilo de bordes", "SSE.Views.CellSettings.textColor": "Color de relleno", + "SSE.Views.CellSettings.textControl": "Control del texto", "SSE.Views.CellSettings.textDirection": "Dirección ", "SSE.Views.CellSettings.textFill": "Relleno", "SSE.Views.CellSettings.textForeground": "Color de primer plano", @@ -1208,9 +1310,10 @@ "SSE.Views.ChartSettingsDlg.errorMaxPoints": "¡ERROR! El máximo", "SSE.Views.ChartSettingsDlg.errorMaxRows": "¡ERROR! El número máximo de series de datos por gráfico es 225", "SSE.Views.ChartSettingsDlg.errorStockChart": "Orden de las filas incorrecto. Para compilar un gráfico de cotizaciones introduzca los datos en la hoja de la forma siguiente:
          precio de apertura, precio máximo, precio mínimo, precio de cierre.", + "SSE.Views.ChartSettingsDlg.textAbsolute": "No mover, ni cambiar tamaño con celdas", "SSE.Views.ChartSettingsDlg.textAlt": "Texto alternativo", "SSE.Views.ChartSettingsDlg.textAltDescription": "Descripción", - "SSE.Views.ChartSettingsDlg.textAltTip": "Representación de texto alternativa de la información sobre el objeto visual, que se leerá para las personas con deficiencia visual o deterioro cognitivo para ayudarles a entender mejor, que información contiene la imagen, autoforma, gráfico o tabla.", + "SSE.Views.ChartSettingsDlg.textAltTip": "Representación de texto alternativa de la información sobre el objeto visual, que se leerá para las personas con deficiencia visual o deterioro cognitivo para ayudarles a entender mejor, que información contiene la imagen, autoforma, gráfica o tabla.", "SSE.Views.ChartSettingsDlg.textAltTitle": "Título", "SSE.Views.ChartSettingsDlg.textAuto": "Auto", "SSE.Views.ChartSettingsDlg.textAutoEach": "Automático para cada", @@ -1282,6 +1385,7 @@ "SSE.Views.ChartSettingsDlg.textNextToAxis": "Al lado de eje", "SSE.Views.ChartSettingsDlg.textNone": "Ninguno", "SSE.Views.ChartSettingsDlg.textNoOverlay": "Sin superposición", + "SSE.Views.ChartSettingsDlg.textOneCell": "Mover sin cambiar tamaño con celdas", "SSE.Views.ChartSettingsDlg.textOnTickMarks": "Marcas de graduación", "SSE.Views.ChartSettingsDlg.textOut": "Fuera", "SSE.Views.ChartSettingsDlg.textOuterTop": "Arriba en el exterior", @@ -1317,6 +1421,7 @@ "SSE.Views.ChartSettingsDlg.textTitleSparkline": "Sparkline - Ajustes avanzados", "SSE.Views.ChartSettingsDlg.textTop": "Top", "SSE.Views.ChartSettingsDlg.textTrillions": "Billones", + "SSE.Views.ChartSettingsDlg.textTwoCell": "Mover y cambiar tamaño con celdas", "SSE.Views.ChartSettingsDlg.textType": "Tipo", "SSE.Views.ChartSettingsDlg.textTypeData": "Tipo y datos", "SSE.Views.ChartSettingsDlg.textTypeStyle": "Tipo de gráfico, estilo y
          rango de datos", @@ -1329,13 +1434,29 @@ "SSE.Views.ChartSettingsDlg.textYAxisTitle": "Título del eje Y", "SSE.Views.ChartSettingsDlg.textZero": "Cero", "SSE.Views.ChartSettingsDlg.txtEmpty": "Este campo es obligatorio", + "SSE.Views.CreatePivotDialog.textDataRange": "Rango de datos de origen", + "SSE.Views.CreatePivotDialog.textDestination": "Elegir dónde colocar la tabla", + "SSE.Views.CreatePivotDialog.textExist": "Hoja de cálculo existente", + "SSE.Views.CreatePivotDialog.textInvalidRange": "Rango de celdas inválido", + "SSE.Views.CreatePivotDialog.textNew": "Hoja de cálculo nueva", + "SSE.Views.CreatePivotDialog.textSelectData": "Seleccionar datos", + "SSE.Views.CreatePivotDialog.textTitle": "Crear tabla", + "SSE.Views.CreatePivotDialog.txtEmpty": "Este campo es obligatorio", "SSE.Views.DataTab.capBtnGroup": "Agrupar", + "SSE.Views.DataTab.capBtnTextCustomSort": "Orden personalizado", + "SSE.Views.DataTab.capBtnTextRemDuplicates": "Eliminar duplicados", "SSE.Views.DataTab.capBtnTextToCol": "Texto en columnas", "SSE.Views.DataTab.capBtnUngroup": "Desagrupar", + "SSE.Views.DataTab.textBelow": "Filas resumen debajo del detalle", "SSE.Views.DataTab.textClear": "Borrar esquema", "SSE.Views.DataTab.textColumns": "Desagrupar columnas", + "SSE.Views.DataTab.textGroupColumns": "Agrupar columnas", + "SSE.Views.DataTab.textGroupRows": "Agrupar filas", + "SSE.Views.DataTab.textRightOf": "Columnas resumen a la derecha del detalle", "SSE.Views.DataTab.textRows": "Desagrupar filas", + "SSE.Views.DataTab.tipCustomSort": "Orden personalizado", "SSE.Views.DataTab.tipGroup": "Agrupar rango de celdas", + "SSE.Views.DataTab.tipRemDuplicates": "Eliminar filas duplicadas de la hoja", "SSE.Views.DataTab.tipToColumns": "Dividir texto de celda en columnas", "SSE.Views.DataTab.tipUngroup": "Desagrupar rango de celdas", "SSE.Views.DigitalFilterDialog.capAnd": "Y", @@ -1359,6 +1480,7 @@ "SSE.Views.DigitalFilterDialog.txtTitle": "Filtro personalizado", "SSE.Views.DocumentHolder.advancedImgText": "Ajustes avanzados de imagen", "SSE.Views.DocumentHolder.advancedShapeText": "Ajustes avanzados de forma", + "SSE.Views.DocumentHolder.advancedSlicerText": "Ajustes avanzados de segmentación de datos ", "SSE.Views.DocumentHolder.bottomCellText": "Alinear en la parte inferior", "SSE.Views.DocumentHolder.bulletsText": "Viñetas y numeración", "SSE.Views.DocumentHolder.centerCellText": "Alinear al centro", @@ -1376,7 +1498,7 @@ "SSE.Views.DocumentHolder.insertColumnRightText": "Columna derecha", "SSE.Views.DocumentHolder.insertRowAboveText": "Fila de arriba", "SSE.Views.DocumentHolder.insertRowBelowText": "Fila debajo", - "SSE.Views.DocumentHolder.originalSizeText": "Tamaño Predeterminado", + "SSE.Views.DocumentHolder.originalSizeText": "Tamaño actual", "SSE.Views.DocumentHolder.removeHyperlinkText": "Eliminar hiperenlace", "SSE.Views.DocumentHolder.selectColumnText": "Toda la columna", "SSE.Views.DocumentHolder.selectDataText": "Datos de columna", @@ -1392,6 +1514,8 @@ "SSE.Views.DocumentHolder.textArrangeBackward": "Enviar atrás", "SSE.Views.DocumentHolder.textArrangeForward": "Traer adelante", "SSE.Views.DocumentHolder.textArrangeFront": "Traer al primer plano", + "SSE.Views.DocumentHolder.textAverage": "Promedio", + "SSE.Views.DocumentHolder.textCount": "Contar", "SSE.Views.DocumentHolder.textCrop": "Recortar", "SSE.Views.DocumentHolder.textCropFill": "Relleno", "SSE.Views.DocumentHolder.textCropFit": "Adaptar", @@ -1400,7 +1524,12 @@ "SSE.Views.DocumentHolder.textFlipV": "Voltear verticalmente", "SSE.Views.DocumentHolder.textFreezePanes": "Inmovilizar paneles", "SSE.Views.DocumentHolder.textFromFile": "De archivo", + "SSE.Views.DocumentHolder.textFromStorage": "Desde almacenamiento", "SSE.Views.DocumentHolder.textFromUrl": "De URL", + "SSE.Views.DocumentHolder.textListSettings": "Ajustes de lista", + "SSE.Views.DocumentHolder.textMax": "Máx.", + "SSE.Views.DocumentHolder.textMin": "Mín.", + "SSE.Views.DocumentHolder.textMore": "Más funciones", "SSE.Views.DocumentHolder.textMoreFormats": "Otros formatos", "SSE.Views.DocumentHolder.textNone": "Ninguno", "SSE.Views.DocumentHolder.textReplace": "Reemplazar imagen", @@ -1413,8 +1542,11 @@ "SSE.Views.DocumentHolder.textShapeAlignMiddle": "Alinear al centro", "SSE.Views.DocumentHolder.textShapeAlignRight": "Alinear a la derecha", "SSE.Views.DocumentHolder.textShapeAlignTop": "Alinear en la parte superior", + "SSE.Views.DocumentHolder.textStdDev": "StdDev", + "SSE.Views.DocumentHolder.textSum": "Suma", "SSE.Views.DocumentHolder.textUndo": "Deshacer", "SSE.Views.DocumentHolder.textUnFreezePanes": "Unfreeze Panes", + "SSE.Views.DocumentHolder.textVar": "Var", "SSE.Views.DocumentHolder.topCellText": "Alinear en la parte superior", "SSE.Views.DocumentHolder.txtAccounting": "Contabilidad", "SSE.Views.DocumentHolder.txtAddComment": "Añadir comentario", @@ -1480,6 +1612,33 @@ "SSE.Views.DocumentHolder.txtUngroup": "Desagrupar", "SSE.Views.DocumentHolder.txtWidth": "Ancho", "SSE.Views.DocumentHolder.vertAlignText": "Alineación vertical", + "SSE.Views.FieldSettingsDialog.strLayout": "Diseño", + "SSE.Views.FieldSettingsDialog.strSubtotals": "Subtotales", + "SSE.Views.FieldSettingsDialog.textReport": "Formulario de informe", + "SSE.Views.FieldSettingsDialog.textTitle": "Ajustes de campo", + "SSE.Views.FieldSettingsDialog.txtAverage": "Promedio", + "SSE.Views.FieldSettingsDialog.txtBlank": "Insertar filas en blanco después de cada elemento", + "SSE.Views.FieldSettingsDialog.txtBottom": "Mostrar en la parte inferior del grupo", + "SSE.Views.FieldSettingsDialog.txtCompact": "Compactar", + "SSE.Views.FieldSettingsDialog.txtCount": "Contar", + "SSE.Views.FieldSettingsDialog.txtCountNums": "Contar números", + "SSE.Views.FieldSettingsDialog.txtCustomName": "Nombre personalizado", + "SSE.Views.FieldSettingsDialog.txtEmpty": "Mostrar elementos sin datos", + "SSE.Views.FieldSettingsDialog.txtMax": "Máx.", + "SSE.Views.FieldSettingsDialog.txtMin": "Mín.", + "SSE.Views.FieldSettingsDialog.txtOutline": "Esquema", + "SSE.Views.FieldSettingsDialog.txtProduct": "Producto", + "SSE.Views.FieldSettingsDialog.txtRepeat": "Repetir etiquetas de elementos en cada fila", + "SSE.Views.FieldSettingsDialog.txtShowSubtotals": "Mostrar subtotales", + "SSE.Views.FieldSettingsDialog.txtSourceName": "Nombre de origen:", + "SSE.Views.FieldSettingsDialog.txtStdDev": "StdDev", + "SSE.Views.FieldSettingsDialog.txtStdDevp": "StdDevp", + "SSE.Views.FieldSettingsDialog.txtSum": "Suma", + "SSE.Views.FieldSettingsDialog.txtSummarize": "Funciones para subtotales", + "SSE.Views.FieldSettingsDialog.txtTabular": "Tabular", + "SSE.Views.FieldSettingsDialog.txtTop": "Mostrar en la parte superior del grupo", + "SSE.Views.FieldSettingsDialog.txtVar": "Var", + "SSE.Views.FieldSettingsDialog.txtVarp": "Varp", "SSE.Views.FileMenu.btnBackCaption": "Abrir ubicación del archivo", "SSE.Views.FileMenu.btnCloseMenuCaption": "Cerrar menú", "SSE.Views.FileMenu.btnCreateNewCaption": "Crear nueva", @@ -1525,18 +1684,25 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthMode": "El modo Co-edición", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescFast": "Otros usuarios verán los cambios a la vez", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescStrict": "Usted tendrá que aceptar los cambios antes de poder verlos", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strDecimalSeparator": "Separador decimal", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFast": "rápido", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFontRender": "Hinting", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strForcesave": "Siempre guardar en el servidor (de lo contrario guardar en el servidor al cerrar documento)", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocale": "Idioma de fórmulas", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocaleEx": "Ejemplo: SUMA; MIN; MAX; CONTAR", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strLiveComment": "Activar opción de demostración de comentarios", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strMacrosSettings": "Ajustes de macros", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPaste": "Cortar, copiar y pegar", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPasteButton": "Mostrar el botón Opciones de pegado cuando se pegue contenido", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strR1C1": "Activar estilo R1C1", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettings": "Ajustes regionales", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettingsEx": "Ejemplo:", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strResolvedComment": "Activar la visualización de los comentarios resueltos", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strSeparator": "Separador", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strStrict": "Estricto", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strThousandsSeparator": "Separador de miles", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strUnit": "Unidad de medida", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strUseSeparatorsBasedOnRegionalSettings": "Utilizar separadores basados en los ajustes regionales", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strZoom": "Valor de zoom predeterminado", "SSE.Views.FileMenuPanels.MainSettingsGeneral.text10Minutes": "Cada 10 minutos ", "SSE.Views.FileMenuPanels.MainSettingsGeneral.text30Minutes": "Cada 30 minutos", @@ -1562,8 +1728,19 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPl": "Polaco", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPt": "Punto", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRu": "Ruso", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRunMacros": "Habilitar todo", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRunMacrosDesc": "Habilitar todas las macros sin notificación ", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStopMacros": "Deshabilitar todo", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStopMacrosDesc": "Deshabilitar todas las macros sin notificación", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacros": "Mostrar notificación", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacrosDesc": "Deshabilitar todas las macros con notificación", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin": "como Windows", "SSE.Views.FileMenuPanels.MainSpellCheckSettings.okButtonText": "Aplicar", + "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strDictionaryLanguage": "Idioma del diccionario", + "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strIgnoreWordsInUPPERCASE": "Omitir palabras en MAYÚSCULAS", + "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strIgnoreWordsWithNumbers": "Omitir palabras con números", + "SSE.Views.FileMenuPanels.MainSpellCheckSettings.txtAutoCorrect": "Opciones de autocorrección", + "SSE.Views.FileMenuPanels.MainSpellCheckSettings.txtProofing": "Revisión", "SSE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Aviso", "SSE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "Con contraseña", "SSE.Views.FileMenuPanels.ProtectDoc.strProtect": "Proteger hoja de cálculo", @@ -1577,6 +1754,7 @@ "SSE.Views.FileMenuPanels.ProtectDoc.txtView": "Ver firmas", "SSE.Views.FileMenuPanels.Settings.txtGeneral": "General", "SSE.Views.FileMenuPanels.Settings.txtPageSettings": "Ajustes de la Página", + "SSE.Views.FileMenuPanels.Settings.txtSpellChecking": "Сorrección ortográfica", "SSE.Views.FormatSettingsDialog.textCategory": "Categoría", "SSE.Views.FormatSettingsDialog.textDecimal": "Decimal", "SSE.Views.FormatSettingsDialog.textFormat": "Formato", @@ -1608,6 +1786,8 @@ "SSE.Views.FormulaDialog.sDescription": "Descripción", "SSE.Views.FormulaDialog.textGroupDescription": "Seleccionar grupo de función", "SSE.Views.FormulaDialog.textListDescription": "Seleccionar función", + "SSE.Views.FormulaDialog.txtRecommended": "Recomendado", + "SSE.Views.FormulaDialog.txtSearch": "Buscar", "SSE.Views.FormulaDialog.txtTitle": "Insertar función", "SSE.Views.FormulaTab.textAutomatic": "Automático", "SSE.Views.FormulaTab.textCalculateCurrentSheet": "Calcular la hoja actual", @@ -1623,6 +1803,11 @@ "SSE.Views.FormulaTab.txtFormulaTip": "Insertar función", "SSE.Views.FormulaTab.txtMore": "Más funciones", "SSE.Views.FormulaTab.txtRecent": "Usados recientemente", + "SSE.Views.FormulaWizard.textFunction": "Función", + "SSE.Views.FormulaWizard.textFunctionRes": "Resultado de la función", + "SSE.Views.FormulaWizard.textHelp": "Ayuda sobre esta función", + "SSE.Views.FormulaWizard.textTitle": "Argumentos de la función", + "SSE.Views.FormulaWizard.textValue": "Resultado de la fórmula", "SSE.Views.GroupDialog.textColumns": "Columnas", "SSE.Views.GroupDialog.textRows": "Filas", "SSE.Views.HeaderFooterDialog.textAlign": "Alinear con márgenes de página", @@ -1641,6 +1826,7 @@ "SSE.Views.HeaderFooterDialog.textInsert": "Insertar", "SSE.Views.HeaderFooterDialog.textItalic": "Cursiva", "SSE.Views.HeaderFooterDialog.textLeft": "A la izquierda", + "SSE.Views.HeaderFooterDialog.textMaxError": "El texto es demasiado largo. Reduzca el número de caracteres usados.", "SSE.Views.HeaderFooterDialog.textNewColor": "Color personalizado", "SSE.Views.HeaderFooterDialog.textOdd": "Página impar", "SSE.Views.HeaderFooterDialog.textPageCount": "Número de páginas", @@ -1661,13 +1847,18 @@ "SSE.Views.HyperlinkSettingsDialog.strLinkTo": "Enlace a", "SSE.Views.HyperlinkSettingsDialog.strRange": "Rango", "SSE.Views.HyperlinkSettingsDialog.strSheet": "Hoja", + "SSE.Views.HyperlinkSettingsDialog.textCopy": "Copiar ", "SSE.Views.HyperlinkSettingsDialog.textDefault": "Rango seleccionado", "SSE.Views.HyperlinkSettingsDialog.textEmptyDesc": "Introduzca título aquí", "SSE.Views.HyperlinkSettingsDialog.textEmptyLink": "Introduzca enlace aquí", "SSE.Views.HyperlinkSettingsDialog.textEmptyTooltip": "Introduzca informacíon sobre herramientas aquí", "SSE.Views.HyperlinkSettingsDialog.textExternalLink": "Enlace externo", + "SSE.Views.HyperlinkSettingsDialog.textGetLink": "Obtener enlace", "SSE.Views.HyperlinkSettingsDialog.textInternalLink": "Rango de datos interno", "SSE.Views.HyperlinkSettingsDialog.textInvalidRange": "¡ERROR!¡Rango de celdas inválido!", + "SSE.Views.HyperlinkSettingsDialog.textNames": "Nombres definidos", + "SSE.Views.HyperlinkSettingsDialog.textSelectData": "Seleccionar datos", + "SSE.Views.HyperlinkSettingsDialog.textSheets": "Hojas", "SSE.Views.HyperlinkSettingsDialog.textTipText": "Información en pantalla ", "SSE.Views.HyperlinkSettingsDialog.textTitle": "Configuración de hiperenlace", "SSE.Views.HyperlinkSettingsDialog.txtEmpty": "Este campo es obligatorio", @@ -1680,6 +1871,7 @@ "SSE.Views.ImageSettings.textEditObject": "Editar objeto", "SSE.Views.ImageSettings.textFlip": "Volteo", "SSE.Views.ImageSettings.textFromFile": "De archivo", + "SSE.Views.ImageSettings.textFromStorage": "Desde almacenamiento", "SSE.Views.ImageSettings.textFromUrl": "De URL", "SSE.Views.ImageSettings.textHeight": "Altura", "SSE.Views.ImageSettings.textHint270": "Girar 90° a la izquierda", @@ -1688,21 +1880,24 @@ "SSE.Views.ImageSettings.textHintFlipV": "Volteo Vertical", "SSE.Views.ImageSettings.textInsert": "Reemplazar imagen", "SSE.Views.ImageSettings.textKeepRatio": "Proporciones constantes", - "SSE.Views.ImageSettings.textOriginalSize": "Tamaño Predeterminado", + "SSE.Views.ImageSettings.textOriginalSize": "Tamaño actual", "SSE.Views.ImageSettings.textRotate90": "Girar 90°", "SSE.Views.ImageSettings.textRotation": "Rotación", "SSE.Views.ImageSettings.textSize": "Tamaño", "SSE.Views.ImageSettings.textWidth": "Ancho", + "SSE.Views.ImageSettingsAdvanced.textAbsolute": "No mover, ni cambiar tamaño con celdas", "SSE.Views.ImageSettingsAdvanced.textAlt": "Texto alternativo", "SSE.Views.ImageSettingsAdvanced.textAltDescription": "Descripción", - "SSE.Views.ImageSettingsAdvanced.textAltTip": "Representación de texto alternativa de la información sobre el objeto visual, que se leerá para las personas con deficiencia visual o deterioro cognitivo para ayudarles a entender mejor, que información contiene la imagen, autoforma, gráfico o tabla.", + "SSE.Views.ImageSettingsAdvanced.textAltTip": "Representación de texto alternativa de la información sobre el objeto visual, que se leerá para las personas con deficiencia visual o deterioro cognitivo para ayudarles a entender mejor, que información contiene la imagen, autoforma, gráfica o tabla.", "SSE.Views.ImageSettingsAdvanced.textAltTitle": "Título", "SSE.Views.ImageSettingsAdvanced.textAngle": "Ángulo", "SSE.Views.ImageSettingsAdvanced.textFlipped": "Volteado", "SSE.Views.ImageSettingsAdvanced.textHorizontally": "Horizontalmente", + "SSE.Views.ImageSettingsAdvanced.textOneCell": "Mover sin cambiar tamaño con celdas", "SSE.Views.ImageSettingsAdvanced.textRotation": "Rotación", "SSE.Views.ImageSettingsAdvanced.textSnap": "Rompimiento de la célula", "SSE.Views.ImageSettingsAdvanced.textTitle": "Imagen - Ajustes avanzados", + "SSE.Views.ImageSettingsAdvanced.textTwoCell": "Mover y cambiar tamaño con celdas", "SSE.Views.ImageSettingsAdvanced.textVertically": "Verticalmente", "SSE.Views.LeftMenu.tipAbout": "Acerca de programa", "SSE.Views.LeftMenu.tipChat": "Chat", @@ -1710,6 +1905,7 @@ "SSE.Views.LeftMenu.tipFile": "Archivo", "SSE.Views.LeftMenu.tipPlugins": "Plugins", "SSE.Views.LeftMenu.tipSearch": "Buscar", + "SSE.Views.LeftMenu.tipSpellcheck": "Сorrección ortográfica", "SSE.Views.LeftMenu.tipSupport": "Feedback y Soporte", "SSE.Views.LeftMenu.txtDeveloper": "MODO DE DESARROLLO", "SSE.Views.LeftMenu.txtTrial": "MODO DE PRUEBA", @@ -1720,10 +1916,12 @@ "SSE.Views.MainSettingsPrint.strMargins": "Márgenes", "SSE.Views.MainSettingsPrint.strPortrait": "Vertical", "SSE.Views.MainSettingsPrint.strPrint": "Imprimir", + "SSE.Views.MainSettingsPrint.strPrintTitles": "Imprimir títulos", "SSE.Views.MainSettingsPrint.strRight": "Derecho", "SSE.Views.MainSettingsPrint.strTop": "Superior", "SSE.Views.MainSettingsPrint.textActualSize": "Tamaño actual", "SSE.Views.MainSettingsPrint.textCustom": "Personalizado", + "SSE.Views.MainSettingsPrint.textCustomOptions": "Opciones personalizadas", "SSE.Views.MainSettingsPrint.textFitCols": "Caber todas las columnas en una página", "SSE.Views.MainSettingsPrint.textFitPage": "Caber la hoja en una página", "SSE.Views.MainSettingsPrint.textFitRows": "Caber Todas las Filas en una Página", @@ -1732,6 +1930,9 @@ "SSE.Views.MainSettingsPrint.textPageSize": "Tamaño de página", "SSE.Views.MainSettingsPrint.textPrintGrid": "Imprimir Cuadricula", "SSE.Views.MainSettingsPrint.textPrintHeadings": "Imprimir títulos de filas y columnas", + "SSE.Views.MainSettingsPrint.textRepeat": "Repetir...", + "SSE.Views.MainSettingsPrint.textRepeatLeft": "Repetir columnas a la izquierda", + "SSE.Views.MainSettingsPrint.textRepeatTop": "Repetir filas en la parte superior", "SSE.Views.MainSettingsPrint.textSettings": "Ajustes para", "SSE.Views.NamedRangeEditDlg.errorCreateDefName": "Los rangos con nombre existentes no pueden ser editados y los nuevos no se pueden crear
          en este momento ya que algunos de ellos están editándose.", "SSE.Views.NamedRangeEditDlg.namePlaceholder": "Nombre definido", @@ -1794,10 +1995,12 @@ "SSE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Derecho", "SSE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter": "Después", "SSE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore": "Antes", + "SSE.Views.ParagraphSettingsAdvanced.strIndentsSpecial": "Especial", "SSE.Views.ParagraphSettingsAdvanced.strIndentsSpecialBy": "Por", "SSE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Letra ", - "SSE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "Sangrías y disposición", + "SSE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "Sangría y espaciado", "SSE.Views.ParagraphSettingsAdvanced.strSmallCaps": "Mayúsculas pequeñas", + "SSE.Views.ParagraphSettingsAdvanced.strSpacing": "Espaciado", "SSE.Views.ParagraphSettingsAdvanced.strStrike": "Tachado", "SSE.Views.ParagraphSettingsAdvanced.strSubscript": "Subíndice", "SSE.Views.ParagraphSettingsAdvanced.strSuperscript": "Sobreíndice", @@ -1821,6 +2024,27 @@ "SSE.Views.ParagraphSettingsAdvanced.textTabRight": "Derecho", "SSE.Views.ParagraphSettingsAdvanced.textTitle": "Párrafo - Ajustes avanzados", "SSE.Views.ParagraphSettingsAdvanced.txtAutoText": "Auto", + "SSE.Views.PivotDigitalFilterDialog.capCondition1": "es igual a", + "SSE.Views.PivotDigitalFilterDialog.capCondition10": "no termina con", + "SSE.Views.PivotDigitalFilterDialog.capCondition11": "contiene", + "SSE.Views.PivotDigitalFilterDialog.capCondition12": "no contiene", + "SSE.Views.PivotDigitalFilterDialog.capCondition13": "entre", + "SSE.Views.PivotDigitalFilterDialog.capCondition14": "no está entre", + "SSE.Views.PivotDigitalFilterDialog.capCondition2": "no es igual a", + "SSE.Views.PivotDigitalFilterDialog.capCondition3": "es mayor que", + "SSE.Views.PivotDigitalFilterDialog.capCondition4": "es mayor o igual a ", + "SSE.Views.PivotDigitalFilterDialog.capCondition5": "es menor que", + "SSE.Views.PivotDigitalFilterDialog.capCondition6": "es menor o igual a ", + "SSE.Views.PivotDigitalFilterDialog.capCondition7": "empieza con", + "SSE.Views.PivotDigitalFilterDialog.capCondition8": "no empieza con", + "SSE.Views.PivotDigitalFilterDialog.capCondition9": "termina con", + "SSE.Views.PivotDigitalFilterDialog.textShowLabel": "Mostrar elementos para los que la etiqueta:", + "SSE.Views.PivotDigitalFilterDialog.textShowValue": "Mostrar elementos para los que:", + "SSE.Views.PivotDigitalFilterDialog.textUse1": "Use ? para presentar un carácter", + "SSE.Views.PivotDigitalFilterDialog.textUse2": "Use * para presentar una serie de carácteres", + "SSE.Views.PivotDigitalFilterDialog.txtAnd": "y", + "SSE.Views.PivotDigitalFilterDialog.txtTitleLabel": "Filtrar de etiqueta", + "SSE.Views.PivotDigitalFilterDialog.txtTitleValue": "Filtro de valor", "SSE.Views.PivotSettings.textAdvanced": "Mostrar ajustes avanzados", "SSE.Views.PivotSettings.textColumns": "Columnas", "SSE.Views.PivotSettings.textFields": "Seleccione campos", @@ -1841,6 +2065,28 @@ "SSE.Views.PivotSettings.txtMoveUp": "Mover hacia arriba", "SSE.Views.PivotSettings.txtMoveValues": "Mover a valores", "SSE.Views.PivotSettings.txtRemove": "Eliminar campo", + "SSE.Views.PivotSettingsAdvanced.strLayout": "Nombre y diseño", + "SSE.Views.PivotSettingsAdvanced.textAlt": "Texto alternativo", + "SSE.Views.PivotSettingsAdvanced.textAltDescription": "Descripción", + "SSE.Views.PivotSettingsAdvanced.textAltTip": "Representación de texto alternativa de la información sobre el objeto visual, que se leerá para las personas con deficiencia visual o deterioro cognitivo para ayudarles a entender mejor, que información contiene la imagen, autoforma, gráfica o tabla.", + "SSE.Views.PivotSettingsAdvanced.textAltTitle": "Título", + "SSE.Views.PivotSettingsAdvanced.textDataRange": "Rango de datos", + "SSE.Views.PivotSettingsAdvanced.textDataSource": "Origen de datos", + "SSE.Views.PivotSettingsAdvanced.textDisplayFields": "Mostrar campos en área de filtro de informe", + "SSE.Views.PivotSettingsAdvanced.textDown": "Hacia abajo, luego horizontalmente", + "SSE.Views.PivotSettingsAdvanced.textGrandTotals": "Totales generales", + "SSE.Views.PivotSettingsAdvanced.textHeaders": "Encabezados de campo", + "SSE.Views.PivotSettingsAdvanced.textInvalidRange": "¡ERROR!¡Rango de celdas inválido! ", + "SSE.Views.PivotSettingsAdvanced.textOver": "Horizontalmente, luego hacia abajo", + "SSE.Views.PivotSettingsAdvanced.textSelectData": "Seleccionar datos", + "SSE.Views.PivotSettingsAdvanced.textShowCols": "Mostrar para columnas", + "SSE.Views.PivotSettingsAdvanced.textShowHeaders": "Mostrar encabezados de campo para filas y columnas", + "SSE.Views.PivotSettingsAdvanced.textShowRows": "Mostrar para filas", + "SSE.Views.PivotSettingsAdvanced.textTitle": "Tabla dinámica - Ajustes avanzados", + "SSE.Views.PivotSettingsAdvanced.textWrapCol": "Campos de filtro de informe por columna", + "SSE.Views.PivotSettingsAdvanced.textWrapRow": "Campos de filtro de informe por fila", + "SSE.Views.PivotSettingsAdvanced.txtEmpty": "Este campo es obligatorio", + "SSE.Views.PivotSettingsAdvanced.txtName": "Nombre", "SSE.Views.PivotTable.capBlankRows": "Filas en blanco", "SSE.Views.PivotTable.capGrandTotals": "Totales", "SSE.Views.PivotTable.capLayout": "Repetir diseño", @@ -1879,6 +2125,7 @@ "SSE.Views.PrintSettings.strMargins": "Márgenes", "SSE.Views.PrintSettings.strPortrait": "Vertical", "SSE.Views.PrintSettings.strPrint": "Imprimir", + "SSE.Views.PrintSettings.strPrintTitles": "Imprimir títulos", "SSE.Views.PrintSettings.strRight": "Derecho", "SSE.Views.PrintSettings.strShow": "Mostrar", "SSE.Views.PrintSettings.strTop": "Superior", @@ -1886,6 +2133,7 @@ "SSE.Views.PrintSettings.textAllSheets": "Todas las hojas", "SSE.Views.PrintSettings.textCurrentSheet": "Hoja actual", "SSE.Views.PrintSettings.textCustom": "Personalizado", + "SSE.Views.PrintSettings.textCustomOptions": "Opciones personalizadas", "SSE.Views.PrintSettings.textFitCols": "Caber todas las columnas en una página", "SSE.Views.PrintSettings.textFitPage": "Caber la hoja en una página", "SSE.Views.PrintSettings.textFitRows": "Caber Todas las Filas en una Página", @@ -1899,6 +2147,9 @@ "SSE.Views.PrintSettings.textPrintHeadings": "Imprimir títulos de filas y columnas", "SSE.Views.PrintSettings.textPrintRange": "Área de impresión", "SSE.Views.PrintSettings.textRange": "Rango", + "SSE.Views.PrintSettings.textRepeat": "Repetir...", + "SSE.Views.PrintSettings.textRepeatLeft": "Repetir columnas a la izquierda", + "SSE.Views.PrintSettings.textRepeatTop": "Repetir filas en la parte superior", "SSE.Views.PrintSettings.textSelection": "Selección ", "SSE.Views.PrintSettings.textSettings": "Ajustes de Hoja", "SSE.Views.PrintSettings.textShowDetails": "Mostrar detalles", @@ -1906,6 +2157,22 @@ "SSE.Views.PrintSettings.textShowHeadings": "Mostrar títulos de filas y columnas", "SSE.Views.PrintSettings.textTitle": "Opciones de impresión", "SSE.Views.PrintSettings.textTitlePDF": "Ajustes de PDF", + "SSE.Views.PrintTitlesDialog.textFirstCol": "Primera columna", + "SSE.Views.PrintTitlesDialog.textFirstRow": "Primera fila", + "SSE.Views.PrintTitlesDialog.textFrozenCols": "Columnas inmovilizadas", + "SSE.Views.PrintTitlesDialog.textFrozenRows": "Filas inmovilizadas ", + "SSE.Views.PrintTitlesDialog.textInvalidRange": "¡ERROR!¡Rango de celdas inválido! ", + "SSE.Views.PrintTitlesDialog.textLeft": "Repetir columnas a la izquierda", + "SSE.Views.PrintTitlesDialog.textNoRepeat": "No repetir", + "SSE.Views.PrintTitlesDialog.textRepeat": "Repetir...", + "SSE.Views.PrintTitlesDialog.textSelectRange": "Seleccionar rango", + "SSE.Views.PrintTitlesDialog.textTitle": "Imprimir títulos", + "SSE.Views.PrintTitlesDialog.textTop": "Repetir filas en la parte superior", + "SSE.Views.RemoveDuplicatesDialog.textColumns": "Columnas", + "SSE.Views.RemoveDuplicatesDialog.textDescription": "Para eliminar los valores duplicados, seleccione una o más columnas que contienen duplicados.", + "SSE.Views.RemoveDuplicatesDialog.textHeaders": "Mis datos tienen encabezados", + "SSE.Views.RemoveDuplicatesDialog.textSelectAll": "Seleccionar todo", + "SSE.Views.RemoveDuplicatesDialog.txtTitle": "Eliminar duplicados", "SSE.Views.RightMenu.txtCellSettings": "Ajustes de celda", "SSE.Views.RightMenu.txtChartSettings": "Ajustes de gráfico", "SSE.Views.RightMenu.txtImageSettings": "Ajustes de imagen", @@ -1914,14 +2181,20 @@ "SSE.Views.RightMenu.txtSettings": "Ajustes comunes", "SSE.Views.RightMenu.txtShapeSettings": "Ajustes de forma", "SSE.Views.RightMenu.txtSignatureSettings": "Configuración de firma", + "SSE.Views.RightMenu.txtSlicerSettings": "Ajustes de segmentación de datos", "SSE.Views.RightMenu.txtSparklineSettings": "Ajustes de Sparkline", "SSE.Views.RightMenu.txtTableSettings": "Ajustes de la tabla", "SSE.Views.RightMenu.txtTextArtSettings": "Ajustes de arte de texto", "SSE.Views.ScaleDialog.textAuto": "Auto", + "SSE.Views.ScaleDialog.textError": "El valor introducido es incorrecto.", "SSE.Views.ScaleDialog.textFewPages": "páginas", + "SSE.Views.ScaleDialog.textFitTo": "Ajustar a", "SSE.Views.ScaleDialog.textHeight": "Altura", "SSE.Views.ScaleDialog.textManyPages": "páginas", "SSE.Views.ScaleDialog.textOnePage": "página", + "SSE.Views.ScaleDialog.textScaleTo": "Ajustar a", + "SSE.Views.ScaleDialog.textTitle": "Ajustes de escala", + "SSE.Views.ScaleDialog.textWidth": "Ancho", "SSE.Views.SetValueDialog.txtMaxText": "El valor máximo para este campo es {0}", "SSE.Views.SetValueDialog.txtMinText": "El valor mínimo para este campo es {0}", "SSE.Views.ShapeSettings.strBackground": "Color de fondo", @@ -1930,6 +2203,7 @@ "SSE.Views.ShapeSettings.strFill": "Relleno", "SSE.Views.ShapeSettings.strForeground": "Color de primer plano", "SSE.Views.ShapeSettings.strPattern": "Patrón", + "SSE.Views.ShapeSettings.strShadow": "Mostrar sombra", "SSE.Views.ShapeSettings.strSize": "Tamaño", "SSE.Views.ShapeSettings.strStroke": "Trazo", "SSE.Views.ShapeSettings.strTransparency": "Opacidad ", @@ -1941,6 +2215,7 @@ "SSE.Views.ShapeSettings.textEmptyPattern": "Sin patrón", "SSE.Views.ShapeSettings.textFlip": "Volteo", "SSE.Views.ShapeSettings.textFromFile": "De archivo", + "SSE.Views.ShapeSettings.textFromStorage": "Desde almacenamiento", "SSE.Views.ShapeSettings.textFromUrl": "De URL", "SSE.Views.ShapeSettings.textGradient": "Gradiente", "SSE.Views.ShapeSettings.textGradientFill": "Relleno degradado", @@ -1956,6 +2231,7 @@ "SSE.Views.ShapeSettings.textRadial": "Radial", "SSE.Views.ShapeSettings.textRotate90": "Girar 90°", "SSE.Views.ShapeSettings.textRotation": "Rotación", + "SSE.Views.ShapeSettings.textSelectImage": "Seleccionar imagen", "SSE.Views.ShapeSettings.textSelectTexture": "Seleccionar", "SSE.Views.ShapeSettings.textStretch": "Estirar", "SSE.Views.ShapeSettings.textStyle": "Estilo", @@ -1975,12 +2251,14 @@ "SSE.Views.ShapeSettings.txtWood": "Madera", "SSE.Views.ShapeSettingsAdvanced.strColumns": "Columnas", "SSE.Views.ShapeSettingsAdvanced.strMargins": "Márgenes interiores", + "SSE.Views.ShapeSettingsAdvanced.textAbsolute": "No mover, ni cambiar tamaño con celdas", "SSE.Views.ShapeSettingsAdvanced.textAlt": "Texto alternativo", "SSE.Views.ShapeSettingsAdvanced.textAltDescription": "Descripción", - "SSE.Views.ShapeSettingsAdvanced.textAltTip": "Representación de texto alternativa de la información sobre el objeto visual, que se leerá para las personas con deficiencia visual o deterioro cognitivo para ayudarles a entender mejor, que información contiene la imagen, autoforma, gráfico o tabla.", + "SSE.Views.ShapeSettingsAdvanced.textAltTip": "Representación de texto alternativa de la información sobre el objeto visual, que se leerá para las personas con deficiencia visual o deterioro cognitivo para ayudarles a entender mejor, que información contiene la imagen, autoforma, gráfica o tabla.", "SSE.Views.ShapeSettingsAdvanced.textAltTitle": "Título", "SSE.Views.ShapeSettingsAdvanced.textAngle": "Ángulo", "SSE.Views.ShapeSettingsAdvanced.textArrows": "Flechas", + "SSE.Views.ShapeSettingsAdvanced.textAutofit": "Autoajustar", "SSE.Views.ShapeSettingsAdvanced.textBeginSize": "Tamaño inicial", "SSE.Views.ShapeSettingsAdvanced.textBeginStyle": "Estilo inicial", "SSE.Views.ShapeSettingsAdvanced.textBevel": "Biselado", @@ -1998,6 +2276,9 @@ "SSE.Views.ShapeSettingsAdvanced.textLeft": "Izquierdo", "SSE.Views.ShapeSettingsAdvanced.textLineStyle": "Estilo de línea", "SSE.Views.ShapeSettingsAdvanced.textMiter": "Ángulo", + "SSE.Views.ShapeSettingsAdvanced.textOneCell": "Mover sin cambiar tamaño con celdas", + "SSE.Views.ShapeSettingsAdvanced.textOverflow": "Permitir que el texto desborde la forma", + "SSE.Views.ShapeSettingsAdvanced.textResizeFit": "Ajustar tamaño de la forma al texto", "SSE.Views.ShapeSettingsAdvanced.textRight": "Derecho", "SSE.Views.ShapeSettingsAdvanced.textRotation": "Rotación", "SSE.Views.ShapeSettingsAdvanced.textRound": "Redondeado", @@ -2005,8 +2286,10 @@ "SSE.Views.ShapeSettingsAdvanced.textSnap": "Rompimiento de la célula", "SSE.Views.ShapeSettingsAdvanced.textSpacing": "Espacio entre columnas", "SSE.Views.ShapeSettingsAdvanced.textSquare": "Cuadrado", + "SSE.Views.ShapeSettingsAdvanced.textTextBox": "Cuadro de texto", "SSE.Views.ShapeSettingsAdvanced.textTitle": "Forma - ajustes avanzados", "SSE.Views.ShapeSettingsAdvanced.textTop": "Superior", + "SSE.Views.ShapeSettingsAdvanced.textTwoCell": "Mover y cambiar tamaño con celdas", "SSE.Views.ShapeSettingsAdvanced.textVertically": "Verticalmente", "SSE.Views.ShapeSettingsAdvanced.textWeightArrows": "Grosores y flechas", "SSE.Views.ShapeSettingsAdvanced.textWidth": "Ancho", @@ -2025,8 +2308,78 @@ "SSE.Views.SignatureSettings.txtRequestedSignatures": "Esta hoja de cálculo debe firmarse.", "SSE.Views.SignatureSettings.txtSigned": "Firmas válidas se han añadido a la hoja de cálculo. La hoja de cálculo está protegida y no se puede editar.", "SSE.Views.SignatureSettings.txtSignedInvalid": "Algunas de las firmas digitales en la hoja de cálculo son inválidas o no se pudieron verificar. La hoja de cálculo está protegida y no se puede editar.", + "SSE.Views.SlicerAddDialog.textColumns": "Columnas", + "SSE.Views.SlicerAddDialog.txtTitle": "Insertar segmentaciones de datos", + "SSE.Views.SlicerSettings.strHideNoData": "Ocultar elementos sin datos", + "SSE.Views.SlicerSettings.strIndNoData": "Indicar visualmente los elementos sin datos", + "SSE.Views.SlicerSettings.strShowDel": "Mostrar elementos eliminados del origen de datos", + "SSE.Views.SlicerSettings.strShowNoData": "Mostrar elementos sin datos al final", + "SSE.Views.SlicerSettings.strSorting": "Ordenar y filtrar", + "SSE.Views.SlicerSettings.textAdvanced": "Mostrar ajustes avanzados", + "SSE.Views.SlicerSettings.textAsc": "Ascendente", + "SSE.Views.SlicerSettings.textAZ": "De A a Z", + "SSE.Views.SlicerSettings.textButtons": "Botones", + "SSE.Views.SlicerSettings.textColumns": "Columnas", + "SSE.Views.SlicerSettings.textDesc": "Descendente", + "SSE.Views.SlicerSettings.textHeight": "Altura", + "SSE.Views.SlicerSettings.textHor": "Horizontal ", + "SSE.Views.SlicerSettings.textKeepRatio": "Proporciones constantes", + "SSE.Views.SlicerSettings.textLargeSmall": "de mayor a menor", + "SSE.Views.SlicerSettings.textLock": "Deshabilitar cambiar tamaño or mover", + "SSE.Views.SlicerSettings.textNewOld": "de más recientes a más antiguos", + "SSE.Views.SlicerSettings.textOldNew": "de más antiguos a más recientes", + "SSE.Views.SlicerSettings.textPosition": "Posición", + "SSE.Views.SlicerSettings.textSize": "Tamaño", + "SSE.Views.SlicerSettings.textSmallLarge": "de menor a mayor", + "SSE.Views.SlicerSettings.textStyle": "Estilo", + "SSE.Views.SlicerSettings.textVert": "Vertical", + "SSE.Views.SlicerSettings.textWidth": "Ancho", + "SSE.Views.SlicerSettings.textZA": "De Z a A", + "SSE.Views.SlicerSettingsAdvanced.strButtons": "Botones", + "SSE.Views.SlicerSettingsAdvanced.strColumns": "Columnas", + "SSE.Views.SlicerSettingsAdvanced.strHeight": "Altura", + "SSE.Views.SlicerSettingsAdvanced.strHideNoData": "Ocultar elementos sin datos", + "SSE.Views.SlicerSettingsAdvanced.strIndNoData": "Indicar visualmente los elementos sin datos", + "SSE.Views.SlicerSettingsAdvanced.strReferences": "Referencias", + "SSE.Views.SlicerSettingsAdvanced.strShowDel": "Mostrar elementos eliminados del origen de datos", + "SSE.Views.SlicerSettingsAdvanced.strShowHeader": "Mostrar encabezado", + "SSE.Views.SlicerSettingsAdvanced.strShowNoData": "Mostrar elementos sin datos al final", + "SSE.Views.SlicerSettingsAdvanced.strSize": "Tamaño", + "SSE.Views.SlicerSettingsAdvanced.strSorting": "Ordenar y filtrar", + "SSE.Views.SlicerSettingsAdvanced.strStyle": "Estilo", + "SSE.Views.SlicerSettingsAdvanced.strStyleSize": "Estilo y tamaño", + "SSE.Views.SlicerSettingsAdvanced.strWidth": "Ancho", + "SSE.Views.SlicerSettingsAdvanced.textAbsolute": "No mover, ni cambiar tamaño con celdas", + "SSE.Views.SlicerSettingsAdvanced.textAlt": "Texto alternativo", + "SSE.Views.SlicerSettingsAdvanced.textAltDescription": "Descripción", + "SSE.Views.SlicerSettingsAdvanced.textAltTip": "Representación de texto alternativa de la información sobre el objeto visual, que se leerá para las personas con deficiencia visual o deterioro cognitivo para ayudarles a entender mejor, que información contiene la imagen, autoforma, gráfica o tabla.", + "SSE.Views.SlicerSettingsAdvanced.textAltTitle": "Título", + "SSE.Views.SlicerSettingsAdvanced.textAsc": "Ascendente", + "SSE.Views.SlicerSettingsAdvanced.textAZ": "De A a Z", + "SSE.Views.SlicerSettingsAdvanced.textDesc": "Descendente", + "SSE.Views.SlicerSettingsAdvanced.textFormulaName": "Nombre para utilizar en fórmulas", + "SSE.Views.SlicerSettingsAdvanced.textHeader": "Encabezado", + "SSE.Views.SlicerSettingsAdvanced.textKeepRatio": "Proporciones constantes", + "SSE.Views.SlicerSettingsAdvanced.textLargeSmall": "de mayor a menor", + "SSE.Views.SlicerSettingsAdvanced.textName": "Nombre", + "SSE.Views.SlicerSettingsAdvanced.textNewOld": "de más recientes a más antiguos", + "SSE.Views.SlicerSettingsAdvanced.textOldNew": "de más antiguos a más recientes", + "SSE.Views.SlicerSettingsAdvanced.textOneCell": "Mover sin cambiar tamaño con celdas", + "SSE.Views.SlicerSettingsAdvanced.textSmallLarge": "de menor a mayor", + "SSE.Views.SlicerSettingsAdvanced.textSnap": "Ajustar a celda", + "SSE.Views.SlicerSettingsAdvanced.textSort": "Ordenar", + "SSE.Views.SlicerSettingsAdvanced.textSourceName": "Nombre de origen", + "SSE.Views.SlicerSettingsAdvanced.textTitle": "Segmentación de datos - Ajustes avanzados", + "SSE.Views.SlicerSettingsAdvanced.textTwoCell": "Mover y cambiar tamaño con celdas", + "SSE.Views.SlicerSettingsAdvanced.textZA": "De Z a A", + "SSE.Views.SlicerSettingsAdvanced.txtEmpty": "Este campo es obligatorio", "SSE.Views.SortDialog.errorEmpty": "Todos los criterios de clasificación deben tener una columna o fila especificada.", + "SSE.Views.SortDialog.errorMoreOneCol": "Se ha seleccionado más de una columna.", + "SSE.Views.SortDialog.errorMoreOneRow": "Se ha seleccionado más de una fila.", + "SSE.Views.SortDialog.errorNotOriginalCol": "La columna que ha seleccionado no está en el rango original seleccionado.", + "SSE.Views.SortDialog.errorNotOriginalRow": "La fila que ha seleccionado no está en el rango seleccionado original. ", "SSE.Views.SortDialog.errorSameColumnColor": "%1 está siendo clasificado por el mismo color más de una vez. Borra el criterio de clasificación de duplicados e inténtalo de nuevo.", + "SSE.Views.SortDialog.errorSameColumnValue": "%1 está siendo ordenado por valores más de una vez.
          Elimina el criterio de ordenación duplicado e inténtalo de nuevo.", "SSE.Views.SortDialog.textAdd": "Añadir nivel", "SSE.Views.SortDialog.textAsc": "Ascendente", "SSE.Views.SortDialog.textAuto": "Automático", @@ -2034,45 +2387,99 @@ "SSE.Views.SortDialog.textBelow": "Debajo", "SSE.Views.SortDialog.textCellColor": "Color de la célula", "SSE.Views.SortDialog.textColumn": "Columna", + "SSE.Views.SortDialog.textCopy": "Copiar nivel", + "SSE.Views.SortDialog.textDelete": "Eliminar nivel", "SSE.Views.SortDialog.textDesc": "Descendente", + "SSE.Views.SortDialog.textDown": "Mover el nivel hacia abajo", "SSE.Views.SortDialog.textFontColor": "Color de letra", + "SSE.Views.SortDialog.textLeft": "Izquierdo", "SSE.Views.SortDialog.textMoreCols": "(Añadir columnas...)", "SSE.Views.SortDialog.textMoreRows": "(Añadir filas...)", "SSE.Views.SortDialog.textNone": "Ningún", "SSE.Views.SortDialog.textOptions": "Opciones", "SSE.Views.SortDialog.textOrder": "Ordenar", + "SSE.Views.SortDialog.textRight": "Derecho", "SSE.Views.SortDialog.textRow": "Fila", + "SSE.Views.SortDialog.textSort": "Ordenar según", + "SSE.Views.SortDialog.textSortBy": "Ordenar por", + "SSE.Views.SortDialog.textThenBy": "Luego por", + "SSE.Views.SortDialog.textTop": "Superior", + "SSE.Views.SortDialog.textUp": "Mover el nivel hacia arriba", + "SSE.Views.SortDialog.textValues": "Valores", + "SSE.Views.SortDialog.textZA": "De Z a A", + "SSE.Views.SortDialog.txtInvalidRange": "Rango de celdas inválido.", + "SSE.Views.SortDialog.txtTitle": "Ordenar", + "SSE.Views.SortFilterDialog.textAsc": "Ascendente (de A a Z) por", + "SSE.Views.SortFilterDialog.textDesc": "Descendente (de Z a A) por", + "SSE.Views.SortFilterDialog.txtTitle": "Ordenar", "SSE.Views.SortOptionsDialog.textCase": "Sensible a las mayúsculas y minúsculas", + "SSE.Views.SortOptionsDialog.textHeaders": "Mis datos tienen encabezados", + "SSE.Views.SortOptionsDialog.textLeftRight": "Ordenar de izquierda a derecha", "SSE.Views.SortOptionsDialog.textOrientation": "Orientación ", + "SSE.Views.SortOptionsDialog.textTitle": "Opciones de ordenación", + "SSE.Views.SortOptionsDialog.textTopBottom": "Ordenar de arriba hacia abajo", + "SSE.Views.SpecialPasteDialog.textAdd": "Añadir", + "SSE.Views.SpecialPasteDialog.textAll": "Todo", + "SSE.Views.SpecialPasteDialog.textBlanks": "Saltar blancos", + "SSE.Views.SpecialPasteDialog.textColWidth": "Anchos de columna", + "SSE.Views.SpecialPasteDialog.textComments": "Comentarios", + "SSE.Views.SpecialPasteDialog.textDiv": "Dividir", + "SSE.Views.SpecialPasteDialog.textFFormat": "Fórmulas y formato", + "SSE.Views.SpecialPasteDialog.textFNFormat": "Fórmulas y formatos de número", + "SSE.Views.SpecialPasteDialog.textFormats": "Formatos", + "SSE.Views.SpecialPasteDialog.textFormulas": "Fórmulas ", + "SSE.Views.SpecialPasteDialog.textFWidth": "Fórmulas y anchos de columna", + "SSE.Views.SpecialPasteDialog.textMult": "Multiplicar", + "SSE.Views.SpecialPasteDialog.textNone": "Ninguno", + "SSE.Views.SpecialPasteDialog.textOperation": "Operación", + "SSE.Views.SpecialPasteDialog.textPaste": "Pegar", + "SSE.Views.SpecialPasteDialog.textSub": "Restar", + "SSE.Views.SpecialPasteDialog.textTitle": "Pegado especial", + "SSE.Views.SpecialPasteDialog.textTranspose": "Transponer", + "SSE.Views.SpecialPasteDialog.textValues": "Valores", + "SSE.Views.SpecialPasteDialog.textVFormat": "Valores y formato", + "SSE.Views.SpecialPasteDialog.textVNFormat": "Valores y formatos de número", + "SSE.Views.SpecialPasteDialog.textWBorders": "Todo excepto bordes", + "SSE.Views.Spellcheck.noSuggestions": "No hay sugerencias", "SSE.Views.Spellcheck.textChange": "Cambiar", "SSE.Views.Spellcheck.textChangeAll": "Cambiar todo", "SSE.Views.Spellcheck.textIgnore": "Ignorar", "SSE.Views.Spellcheck.textIgnoreAll": "Ignorar todo", "SSE.Views.Spellcheck.txtAddToDictionary": "Añadir a Diccionario", + "SSE.Views.Spellcheck.txtComplete": "La corrección ortográfica ha sido completada", + "SSE.Views.Spellcheck.txtDictionaryLanguage": "Idioma del diccionario", + "SSE.Views.Spellcheck.txtNextTip": "Ir a la siguiente palabra", + "SSE.Views.Spellcheck.txtSpelling": "Ortografía", "SSE.Views.Statusbar.CopyDialog.itemCopyToEnd": "(Copar al final)", "SSE.Views.Statusbar.CopyDialog.itemMoveToEnd": "(Mover al final)", "SSE.Views.Statusbar.CopyDialog.textCopyBefore": "Copiar antes de hoja", "SSE.Views.Statusbar.CopyDialog.textMoveBefore": "Desplazar delante de hoja", "SSE.Views.Statusbar.filteredRecordsText": "Registros filtrados: {0} de {1}", "SSE.Views.Statusbar.filteredText": "Modo de filtro", + "SSE.Views.Statusbar.itemAverage": "Promedio", "SSE.Views.Statusbar.itemCopy": "Copiar", + "SSE.Views.Statusbar.itemCount": "Contar", "SSE.Views.Statusbar.itemDelete": "Borrar", "SSE.Views.Statusbar.itemHidden": "Ocultado", "SSE.Views.Statusbar.itemHide": "Ocultar", "SSE.Views.Statusbar.itemInsert": "Insertar", + "SSE.Views.Statusbar.itemMaximum": "Máximo", + "SSE.Views.Statusbar.itemMinimum": "Mínimo", "SSE.Views.Statusbar.itemMove": "Mover", "SSE.Views.Statusbar.itemRename": "Renombrar", + "SSE.Views.Statusbar.itemSum": "Suma", "SSE.Views.Statusbar.itemTabColor": "Color de tab", "SSE.Views.Statusbar.RenameDialog.errNameExists": "Hoja de cálculo con tal nombre existe ya.", "SSE.Views.Statusbar.RenameDialog.errNameWrongChar": "El nombre de hoja no puede contener los caracteres siguientes: \\/*?[]:", "SSE.Views.Statusbar.RenameDialog.labelSheetName": "Nombre de hoja", - "SSE.Views.Statusbar.textAverage": "PROMEDIO", - "SSE.Views.Statusbar.textCount": "CONTAR", - "SSE.Views.Statusbar.textMax": "MAX", - "SSE.Views.Statusbar.textMin": "MIN", + "SSE.Views.Statusbar.selectAllSheets": "Seleccionar todas las hojas", + "SSE.Views.Statusbar.textAverage": "Promedio", + "SSE.Views.Statusbar.textCount": "Contar", + "SSE.Views.Statusbar.textMax": "Máx.", + "SSE.Views.Statusbar.textMin": "Mín.", "SSE.Views.Statusbar.textNewColor": "Color personalizado", "SSE.Views.Statusbar.textNoColor": "Sin color", - "SSE.Views.Statusbar.textSum": "SUMA", + "SSE.Views.Statusbar.textSum": "Suma", "SSE.Views.Statusbar.tipAddTab": "Añadir hoja de cálculo", "SSE.Views.Statusbar.tipFirst": "Desplazar hasta la primera hoja", "SSE.Views.Statusbar.tipLast": "Desplazar hasta la última hoja", @@ -2081,6 +2488,7 @@ "SSE.Views.Statusbar.tipZoomFactor": "Zoom", "SSE.Views.Statusbar.tipZoomIn": "Acercar", "SSE.Views.Statusbar.tipZoomOut": "Alejar", + "SSE.Views.Statusbar.ungroupSheets": "Desagrupar hojas", "SSE.Views.Statusbar.zoomText": "Zoom {0}%", "SSE.Views.TableOptionsDialog.errorAutoFilterDataRange": "No se puede realizar la operación para el rango de celdas seleccionado.
          Seleccione un rango de datos uniforme diferente del existente y vuelva a intentarlo.", "SSE.Views.TableOptionsDialog.errorFTChangeTableRangeError": "La operación no se pudo completar para el rango de celdas seleccionado.
          Seleccione un rango de modo que la primera fila de la tabla esté en la misma fila
          y la tabla resultante se superponga a la actual.", @@ -2089,6 +2497,7 @@ "SSE.Views.TableOptionsDialog.txtEmpty": "Este campo es obligatorio", "SSE.Views.TableOptionsDialog.txtFormat": "Crear tabla", "SSE.Views.TableOptionsDialog.txtInvalidRange": "¡ERROR!¡Rango de celdas inválido! ", + "SSE.Views.TableOptionsDialog.txtNote": "Los encabezados deben permanecer en la misma fila y el rango de la tabla resultante debe superponerse sobre el rango de la tabla original.", "SSE.Views.TableOptionsDialog.txtTitle": "Título", "SSE.Views.TableSettings.deleteColumnText": "Borrar columna", "SSE.Views.TableSettings.deleteRowText": "Borrar fila", @@ -2102,6 +2511,7 @@ "SSE.Views.TableSettings.selectDataText": "Seleccionar datos de columna", "SSE.Views.TableSettings.selectRowText": "Seleccionar fila", "SSE.Views.TableSettings.selectTableText": "Seleccionar tabla", + "SSE.Views.TableSettings.textActions": "Acciones de tabla", "SSE.Views.TableSettings.textAdvanced": "Mostrar ajustes avanzados", "SSE.Views.TableSettings.textBanded": "Con bandas", "SSE.Views.TableSettings.textColumns": "Columnas", @@ -2116,10 +2526,13 @@ "SSE.Views.TableSettings.textIsLocked": "Este elemento está editándose por otro usuario.", "SSE.Views.TableSettings.textLast": "Último", "SSE.Views.TableSettings.textLongOperation": "Operación larga", + "SSE.Views.TableSettings.textPivot": "Insertar tabla dinámica", + "SSE.Views.TableSettings.textRemDuplicates": "Eliminar duplicados", "SSE.Views.TableSettings.textReservedName": "El nombre que está tratando de usar ya se hace referencia en las fórmulas de celda. Por favor seleccione otro nombre.", "SSE.Views.TableSettings.textResize": "Tamaño de tabla", "SSE.Views.TableSettings.textRows": "Filas", "SSE.Views.TableSettings.textSelectData": "Seleccionar datos", + "SSE.Views.TableSettings.textSlicer": "Insertar segmentación de datos", "SSE.Views.TableSettings.textTableName": "Nombre de la tabla", "SSE.Views.TableSettings.textTemplate": "Seleccionar de plantilla", "SSE.Views.TableSettings.textTotal": "Total", @@ -2173,10 +2586,13 @@ "SSE.Views.Toolbar.capBtnAddComment": "Añadir comentario", "SSE.Views.Toolbar.capBtnComment": "Comentario", "SSE.Views.Toolbar.capBtnInsHeader": "Encabezado/Pie de página", + "SSE.Views.Toolbar.capBtnInsSlicer": "Segmentación de datos", + "SSE.Views.Toolbar.capBtnInsSymbol": "Símbolo", "SSE.Views.Toolbar.capBtnMargins": "Márgenes", "SSE.Views.Toolbar.capBtnPageOrient": "Orientación ", "SSE.Views.Toolbar.capBtnPageSize": "Tamaño", "SSE.Views.Toolbar.capBtnPrintArea": "Área de impresión", + "SSE.Views.Toolbar.capBtnScale": "Ajustar área de impresión", "SSE.Views.Toolbar.capImgAlign": "Alineación", "SSE.Views.Toolbar.capImgBackward": "Enviar hacia atrás", "SSE.Views.Toolbar.capImgForward": "Traer adelante", @@ -2233,6 +2649,7 @@ "SSE.Views.Toolbar.textMarginsWide": "Amplios", "SSE.Views.Toolbar.textMiddleBorders": "Bordes horizontales internos", "SSE.Views.Toolbar.textMoreFormats": "Otros formatos", + "SSE.Views.Toolbar.textMorePages": "Más páginas", "SSE.Views.Toolbar.textNewColor": "Color personalizado", "SSE.Views.Toolbar.textNoBorders": "Sin bordes", "SSE.Views.Toolbar.textOnePage": "página", @@ -2263,6 +2680,8 @@ "SSE.Views.Toolbar.textTop": "Superior:", "SSE.Views.Toolbar.textTopBorders": "Bordes superiores", "SSE.Views.Toolbar.textUnderline": "Subrayar", + "SSE.Views.Toolbar.textVertical": "Texto vertical", + "SSE.Views.Toolbar.textWidth": "Ancho", "SSE.Views.Toolbar.textZoom": "Zoom", "SSE.Views.Toolbar.tipAlignBottom": "Alinear en la parte inferior", "SSE.Views.Toolbar.tipAlignCenter": "Alinear al centro", @@ -2302,11 +2721,12 @@ "SSE.Views.Toolbar.tipInsertImage": "Insertar imagen", "SSE.Views.Toolbar.tipInsertOpt": "Insertar celdas", "SSE.Views.Toolbar.tipInsertShape": "Insertar autoforma", + "SSE.Views.Toolbar.tipInsertSlicer": "Insertar segmentación de datos", "SSE.Views.Toolbar.tipInsertSymbol": "Insertar symboló", "SSE.Views.Toolbar.tipInsertTable": "Insertar tabla", "SSE.Views.Toolbar.tipInsertText": "Insertar cuadro de texto", "SSE.Views.Toolbar.tipInsertTextart": "Inserta Texto Arte", - "SSE.Views.Toolbar.tipMerge": "Unir", + "SSE.Views.Toolbar.tipMerge": "Combinar y centrar", "SSE.Views.Toolbar.tipNumFormat": "Formato de número", "SSE.Views.Toolbar.tipPageMargins": "Márgenes de página", "SSE.Views.Toolbar.tipPageOrient": "Orientación de página", @@ -2318,6 +2738,7 @@ "SSE.Views.Toolbar.tipRedo": "Rehacer", "SSE.Views.Toolbar.tipSave": "Guardar", "SSE.Views.Toolbar.tipSaveCoauth": "Guarde los cambios para que otros usuarios los puedan ver.", + "SSE.Views.Toolbar.tipScale": "Ajustar área de impresión", "SSE.Views.Toolbar.tipSendBackward": "Enviar hacia atrás", "SSE.Views.Toolbar.tipSendForward": "Traer adelante", "SSE.Views.Toolbar.tipSynchronize": "El documento ha sido cambiado por otro usuario. Por favor haga clic para guardar sus cambios y recargue las actualizaciones.", @@ -2327,6 +2748,7 @@ "SSE.Views.Toolbar.txtAccounting": "Contabilidad", "SSE.Views.Toolbar.txtAdditional": "Adicional", "SSE.Views.Toolbar.txtAscending": "Ascendente", + "SSE.Views.Toolbar.txtAutosumTip": "Sumatoria", "SSE.Views.Toolbar.txtClearAll": "Todo", "SSE.Views.Toolbar.txtClearComments": "Comentarios", "SSE.Views.Toolbar.txtClearFilter": "Limpiar filtro", @@ -2394,8 +2816,39 @@ "SSE.Views.Toolbar.txtYen": "¥ Yen", "SSE.Views.Top10FilterDialog.textType": "Mostrar", "SSE.Views.Top10FilterDialog.txtBottom": "Inferior", + "SSE.Views.Top10FilterDialog.txtBy": "por", "SSE.Views.Top10FilterDialog.txtItems": "Artículo", "SSE.Views.Top10FilterDialog.txtPercent": "Por ciento", + "SSE.Views.Top10FilterDialog.txtSum": "Suma", "SSE.Views.Top10FilterDialog.txtTitle": "Top 10 de Autofiltro", - "SSE.Views.Top10FilterDialog.txtTop": "Superior" + "SSE.Views.Top10FilterDialog.txtTop": "Superior", + "SSE.Views.Top10FilterDialog.txtValueTitle": "Filtro de los 10 mejores", + "SSE.Views.ValueFieldSettingsDialog.textTitle": "Ajustes de campo de valor", + "SSE.Views.ValueFieldSettingsDialog.txtAverage": "Promedio", + "SSE.Views.ValueFieldSettingsDialog.txtBaseField": "Campo base", + "SSE.Views.ValueFieldSettingsDialog.txtBaseItem": "Elemento base", + "SSE.Views.ValueFieldSettingsDialog.txtByField": "%1 de %2", + "SSE.Views.ValueFieldSettingsDialog.txtCount": "Contar", + "SSE.Views.ValueFieldSettingsDialog.txtCountNums": "Contar números", + "SSE.Views.ValueFieldSettingsDialog.txtCustomName": "Nombre personalizado", + "SSE.Views.ValueFieldSettingsDialog.txtDifference": "Diferencia de", + "SSE.Views.ValueFieldSettingsDialog.txtIndex": "Índice", + "SSE.Views.ValueFieldSettingsDialog.txtMax": "Máx.", + "SSE.Views.ValueFieldSettingsDialog.txtMin": "Mín.", + "SSE.Views.ValueFieldSettingsDialog.txtNormal": "Sin cálculo", + "SSE.Views.ValueFieldSettingsDialog.txtPercent": "Porcentaje de", + "SSE.Views.ValueFieldSettingsDialog.txtPercentDiff": "Diferencia de porcentaje de", + "SSE.Views.ValueFieldSettingsDialog.txtPercentOfCol": "Porcentaje de columnas", + "SSE.Views.ValueFieldSettingsDialog.txtPercentOfRow": "Porcentaje del total", + "SSE.Views.ValueFieldSettingsDialog.txtPercentOfTotal": "Porcentaje de filas", + "SSE.Views.ValueFieldSettingsDialog.txtProduct": "Producto", + "SSE.Views.ValueFieldSettingsDialog.txtRunTotal": "Total en", + "SSE.Views.ValueFieldSettingsDialog.txtShowAs": "Mostrar valores como", + "SSE.Views.ValueFieldSettingsDialog.txtSourceName": "Nombre de origen:", + "SSE.Views.ValueFieldSettingsDialog.txtStdDev": "StdDev", + "SSE.Views.ValueFieldSettingsDialog.txtStdDevp": "StdDevp", + "SSE.Views.ValueFieldSettingsDialog.txtSum": "Suma", + "SSE.Views.ValueFieldSettingsDialog.txtSummarize": "Resumir campo de valor por", + "SSE.Views.ValueFieldSettingsDialog.txtVar": "Var", + "SSE.Views.ValueFieldSettingsDialog.txtVarp": "Varp" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/fr.json b/apps/spreadsheeteditor/main/locale/fr.json index e63b3c083..e6de4d789 100644 --- a/apps/spreadsheeteditor/main/locale/fr.json +++ b/apps/spreadsheeteditor/main/locale/fr.json @@ -15,6 +15,8 @@ "Common.define.chartData.textStock": "Boursier", "Common.define.chartData.textSurface": "Surface", "Common.define.chartData.textWinLossSpark": "Gain/Perte", + "Common.Translation.warnFileLocked": "Ce fichier a été modifié avec une autre application. Vous pouvez continuer à le modifier et l'enregistrer comme une copie.", + "Common.UI.ColorButton.textNewColor": "Couleur personnalisée", "Common.UI.ComboBorderSize.txtNoBorders": "Pas de bordures", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Pas de bordures", "Common.UI.ComboDataView.emptyComboText": "Aucun style", @@ -29,7 +31,7 @@ "Common.UI.SearchDialog.textReplaceDef": "Saisissez le texte de remplacement", "Common.UI.SearchDialog.textSearchStart": "Entrez votre texte ici", "Common.UI.SearchDialog.textTitle": "Rechercher et remplacer", - "Common.UI.SearchDialog.textTitle2": "Trouver", + "Common.UI.SearchDialog.textTitle2": "Rechercher", "Common.UI.SearchDialog.textWholeWords": "Seulement les mots entiers", "Common.UI.SearchDialog.txtBtnHideReplace": "Cacher Remplacer", "Common.UI.SearchDialog.txtBtnReplace": "Remplacer", @@ -57,6 +59,10 @@ "Common.Views.About.txtPoweredBy": "Powered by", "Common.Views.About.txtTel": "tél.: ", "Common.Views.About.txtVersion": "Version ", + "Common.Views.AutoCorrectDialog.textBy": "Par:", + "Common.Views.AutoCorrectDialog.textMathCorrect": "AutoMaths", + "Common.Views.AutoCorrectDialog.textReplace": "Remplacer :", + "Common.Views.AutoCorrectDialog.textTitle": "Correction automatique", "Common.Views.Chat.textSend": "Envoyer", "Common.Views.Comments.textAdd": "Ajouter", "Common.Views.Comments.textAddComment": "Ajouter", @@ -107,14 +113,21 @@ "Common.Views.ImageFromUrlDialog.textUrl": "Coller URL d'image", "Common.Views.ImageFromUrlDialog.txtEmpty": "Ce champ est obligatoire", "Common.Views.ImageFromUrlDialog.txtNotUrl": "Ce champ doit contenir une URL au format \"http://www.example.com\"", + "Common.Views.ListSettingsDialog.textBulleted": "à puces", + "Common.Views.ListSettingsDialog.textNumbering": "Numéroté", "Common.Views.ListSettingsDialog.tipChange": "Changer de puce", "Common.Views.ListSettingsDialog.txtBullet": "Puce", "Common.Views.ListSettingsDialog.txtColor": "Couleur", + "Common.Views.ListSettingsDialog.txtNewBullet": "Nouvelle puce", + "Common.Views.ListSettingsDialog.txtNone": "Rien", "Common.Views.ListSettingsDialog.txtOfText": "% de texte", "Common.Views.ListSettingsDialog.txtSize": "Taille", "Common.Views.ListSettingsDialog.txtStart": "Commencer par", + "Common.Views.ListSettingsDialog.txtSymbol": "Symbole", "Common.Views.ListSettingsDialog.txtTitle": "Paramètres de la liste", + "Common.Views.ListSettingsDialog.txtType": "Type", "Common.Views.OpenDialog.closeButtonText": "Fermer le fichier", + "Common.Views.OpenDialog.txtAdvanced": "Avancé", "Common.Views.OpenDialog.txtColon": "Deux-points", "Common.Views.OpenDialog.txtComma": "Virgule", "Common.Views.OpenDialog.txtDelimiter": "Délimiteur", @@ -236,12 +249,38 @@ "Common.Views.SignSettingsDialog.textShowDate": "Afficher la date de signature à côté de la signature", "Common.Views.SignSettingsDialog.textTitle": "Mise en place de la signature", "Common.Views.SignSettingsDialog.txtEmpty": "Ce champ est obligatoire", + "Common.Views.SymbolTableDialog.textCharacter": "Caractère", "Common.Views.SymbolTableDialog.textCode": "Valeur hexadécimale Unicode", + "Common.Views.SymbolTableDialog.textCopyright": "Signe Copyright", + "Common.Views.SymbolTableDialog.textDCQuote": "Fermer les guillemets", + "Common.Views.SymbolTableDialog.textDOQuote": "Ouvrir les guillemets", + "Common.Views.SymbolTableDialog.textEllipsis": "Points de suspension", + "Common.Views.SymbolTableDialog.textEmDash": "Tiret cadratin", + "Common.Views.SymbolTableDialog.textEmSpace": "Espace cadratin", + "Common.Views.SymbolTableDialog.textEnDash": "Tiret demi-cadratin", + "Common.Views.SymbolTableDialog.textEnSpace": "Espace demi-cadratin", "Common.Views.SymbolTableDialog.textFont": "Police", + "Common.Views.SymbolTableDialog.textNBHyphen": "tiret insécable", + "Common.Views.SymbolTableDialog.textNBSpace": "Espace insécable", + "Common.Views.SymbolTableDialog.textPilcrow": "Symbole de Paragraphe", + "Common.Views.SymbolTableDialog.textQEmSpace": "1/4 Espace cadratin", "Common.Views.SymbolTableDialog.textRange": "Plage", "Common.Views.SymbolTableDialog.textRecent": "Caractères spéciaux récemment utilisés", + "Common.Views.SymbolTableDialog.textRegistered": "Signe 'Enregistré'", + "Common.Views.SymbolTableDialog.textSCQuote": "Fermer l'apostrophe", + "Common.Views.SymbolTableDialog.textSection": "Signe de Section ", + "Common.Views.SymbolTableDialog.textShortcut": "Touche de raccourci", + "Common.Views.SymbolTableDialog.textSHyphen": "Trait d'union conditionnel", + "Common.Views.SymbolTableDialog.textSOQuote": "Ouvrir l'apostrophe", + "Common.Views.SymbolTableDialog.textSpecial": "symboles spéciaux", + "Common.Views.SymbolTableDialog.textSymbols": "Symboles", "Common.Views.SymbolTableDialog.textTitle": "Symbole", + "Common.Views.SymbolTableDialog.textTradeMark": "Logo", "SSE.Controllers.DataTab.textWizard": "Texte en colonnes", + "SSE.Controllers.DataTab.txtExpand": "Développer", + "SSE.Controllers.DataTab.txtExpandRemDuplicates": "Les données situées à côté de la selection ne seront pas déplacées. Voulez-vous étendre la selection pour inclure les données adjacentes ou continuer avec les cellules selcetionnées seulement ?", + "SSE.Controllers.DataTab.txtRemDuplicates": "Supprimer les valeurs dupliquées", + "SSE.Controllers.DataTab.txtRemSelected": "Déplacer dans sélectionnés", "SSE.Controllers.DocumentHolder.alignmentText": "Alignement", "SSE.Controllers.DocumentHolder.centerText": "Au centre", "SSE.Controllers.DocumentHolder.deleteColumnText": "Supprimer la colonne", @@ -262,6 +301,7 @@ "SSE.Controllers.DocumentHolder.textCtrlClick": "Cliquez sur le lien pour l'ouvrir ou cliquez et maintenez votre souris pour choisir une cellule.", "SSE.Controllers.DocumentHolder.textInsertLeft": "Insérer à gauche", "SSE.Controllers.DocumentHolder.textInsertTop": "Insérer haut", + "SSE.Controllers.DocumentHolder.textPasteSpecial": "Collage spécial", "SSE.Controllers.DocumentHolder.textSym": "sym", "SSE.Controllers.DocumentHolder.tipIsLocked": "Cet élément est en cours de modification par un autre utilisateur.", "SSE.Controllers.DocumentHolder.txtAboveAve": "Au dessus de la moyenne", @@ -427,6 +467,7 @@ "SSE.Controllers.Main.downloadErrorText": "Échec du téléchargement.", "SSE.Controllers.Main.downloadTextText": "Téléchargement de la feuille de calcul en cours...", "SSE.Controllers.Main.downloadTitleText": "Téléchargement de la feuille de calcul", + "SSE.Controllers.Main.errNoDuplicates": "Aucune valeur duppliquée trouvée", "SSE.Controllers.Main.errorAccessDeny": "Vous tentez d'exéсuter une action pour laquelle vous ne disposez pas des droits.
          Veuillez contacter l'administrateur de Document Server.", "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.", @@ -458,11 +499,16 @@ "SSE.Controllers.Main.errorForceSave": "Une erreur est survenue lors de l'enregistrement du fichier. Veuillez utiliser l'option «Télécharger en tant que» pour enregistrer le fichier sur le disque dur de votre ordinateur ou réessayer plus tard.", "SSE.Controllers.Main.errorFormulaName": "Une erreur dans la formule entrée.
          Nom de formule utilisé est incorrect.", "SSE.Controllers.Main.errorFormulaParsing": "Une erreur interne lors de l'analyse de la formule.", + "SSE.Controllers.Main.errorFrmlMaxLength": "Vous ne pouvez pas ajouter cette formule car sa longueur dépasse le nombre de caractères autorisés
          Merci de modifier la formule et d'essayer à nouveau. ", + "SSE.Controllers.Main.errorFrmlMaxReference": "Vous ne pouvez pas saisir cette formule parce qu'elle est trop longues, ou contient
          références de cellules, et/ou noms. ", "SSE.Controllers.Main.errorFrmlMaxTextLength": "Les valeurs de texte dans les formules sont limitées à 255 caractères.
          Utilisez la fonction CONCATENER ou l’opérateur de concaténation (&).", "SSE.Controllers.Main.errorFrmlWrongReferences": "La fonction fait référence à une feuille qui n'existe pas.
          Veuillez vérifier les données et réessayer.", + "SSE.Controllers.Main.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.Controllers.Main.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.Controllers.Main.errorInvalidRef": "Entrez un nom correct pour la sélection ou une référence valable pour aller à.", "SSE.Controllers.Main.errorKeyEncrypt": "Descripteur de clés inconnu", "SSE.Controllers.Main.errorKeyExpire": "Descripteur de clés expiré", + "SSE.Controllers.Main.errorLabledColumnsPivot": "Pour créer un tableau croisé dynamique, utilisez les données organisées sous forme de liste avec des colonnes libellées.", "SSE.Controllers.Main.errorLockedAll": "L'opération ne peut pas être réalisée car la feuille a été verrouillée par un autre utilisateur.", "SSE.Controllers.Main.errorLockedCellPivot": "Impossible de modifier les données d'un tableau croisé dynamique.", "SSE.Controllers.Main.errorLockedWorksheetRename": "La feuille ne peut pas être renommée pour le moment car elle est en train d'être renommée par un autre utilisateur", @@ -473,13 +519,14 @@ "SSE.Controllers.Main.errorOpenWarning": "La longueur de l'une des formules dans le fichier a dépassé
          le nombre de caractères autorisé, et la formule a été supprimée.", "SSE.Controllers.Main.errorOperandExpected": "La syntaxe de la saisie est incorrecte. Veuillez vérifier si l'une des parenthèses - '(' ou ')' est manquante.", "SSE.Controllers.Main.errorPasteMaxRange": "La zone de copie ne correspond pas à la zone de collage.
          Sélectionnez une zone avec la même taille ou cliquez sur la première cellule d'une ligne pour coller les cellules sélectionnées.", + "SSE.Controllers.Main.errorPivotOverlap": "Report du tableau croise dynamique ne peut pas chevaucher un autre tableau.", "SSE.Controllers.Main.errorPrintMaxPagesCount": "Malheureusement, il n’est pas possible d’imprimer plus de 1500 pages à la fois en utilisant avec la version actuelle.
          Cette restriction sera supprimée dans une version future.", "SSE.Controllers.Main.errorProcessSaveResult": "Échec de l'enregistrement", "SSE.Controllers.Main.errorServerVersion": "La version de l'éditeur a été mise à jour. La page sera rechargée pour appliquer les modifications.", "SSE.Controllers.Main.errorSessionAbsolute": "Votre session a expiré. Veuillez recharger la page.", "SSE.Controllers.Main.errorSessionIdle": "Le document n'a pas été modifié depuis trop longtemps. Veuillez recharger la page.", "SSE.Controllers.Main.errorSessionToken": "La connexion au serveur a été interrompue. Veuillez recharger la page.", - "SSE.Controllers.Main.errorStockChart": "L'ordre des lignes est incorrect. Pour créer un graphique boursier organisez vos données sur la feuille de calcul dans l'ordre suivant:
          cours à l'ouverture, cours maximal, cours minimal, cours à la clôture.", + "SSE.Controllers.Main.errorStockChart": "Ordre lignes incorrect. Pour créer un diagramme boursier, positionnez les données sur la feuille de calcul dans l'ordre suivant :
          cours à l'ouverture, cours maximal, cours minimal, cours à la clôture.", "SSE.Controllers.Main.errorToken": "Le jeton de sécurité du document n’était pas formé correctement.
          Veuillez contacter l'administrateur de Document Server.", "SSE.Controllers.Main.errorTokenExpire": "Le jeton de sécurité du document a expiré.
          Veuillez contactez l'administrateur de Document Server.", "SSE.Controllers.Main.errorUnexpectedGuid": "Erreur externe.
          GUID non prévue. Si l'erreur persiste veillez contactez l'assistance technique.", @@ -490,6 +537,7 @@ "SSE.Controllers.Main.errorViewerDisconnect": "La connexion a été perdue. Vous pouvez toujours afficher le document,
          mais ne pouvez pas le télécharger jusqu'à ce que la connexion soit rétablie.", "SSE.Controllers.Main.errorWrongBracketsCount": "Une erreur dans la formule entrée.
          Nombre utilisé entre parenthèses est incorrect.", "SSE.Controllers.Main.errorWrongOperator": "Une erreur dans la formule entrée. Opérateur utilisé est incorrect.
          Veuillez corriger l'erreur.", + "SSE.Controllers.Main.errRemDuplicates": "Trouver et supprimer des valeurs duppliquées : {0}, laisser les valeurs uniques: {1}.", "SSE.Controllers.Main.leavePageText": "Vous avez des modifications non enregistrées dans cette feuille de calcul. Cliquez sur 'Rester sur cette page ' ensuite 'Enregistrer' pour les enregistrer. Cliquez sur 'Quitter cette page' pour annuler toutes les modifications non enregistrées.", "SSE.Controllers.Main.loadFontsTextText": "Chargement des données en cours...", "SSE.Controllers.Main.loadFontsTitleText": "Chargement des données", @@ -523,12 +571,14 @@ "SSE.Controllers.Main.textConfirm": "Confirmation", "SSE.Controllers.Main.textContactUs": "Contacter l'équipe de ventes", "SSE.Controllers.Main.textCustomLoader": "Veuillez noter que conformément aux clauses du contrat de licence vous n'êtes pas autorisé à changer le chargeur.
          Veuillez contacter notre Service des Ventes pour obtenir le devis.", + "SSE.Controllers.Main.textHasMacros": "Le fichier contient des macros automatiques.
          Voulez-vous exécuter les macros ?", "SSE.Controllers.Main.textLoadingDocument": "Chargement d'une feuille de calcul", "SSE.Controllers.Main.textNo": "Non", "SSE.Controllers.Main.textNoLicenseTitle": "La limite de la licence est atteinte", "SSE.Controllers.Main.textPaidFeature": "Fonction payante", "SSE.Controllers.Main.textPleaseWait": "L'opération peut prendre plus de temps que prévu. Veuillez patienter...", "SSE.Controllers.Main.textRecalcFormulas": "Calcul des formules...", + "SSE.Controllers.Main.textRemember": "Se souvenir de mon choix", "SSE.Controllers.Main.textShape": "Forme", "SSE.Controllers.Main.textStrict": "Mode strict", "SSE.Controllers.Main.textTryUndoRedo": "Les fonctions annuler/rétablir sont désactivées pour en mode \"co-édition rapide\".
          Cliquez sur le bouton \"Mode strict\" pour changer de mode et pouvoir modifier le fichier sans interférence avec d'autres utilisateurs puis envoyer vos modifications seulement après l'enregistrement. Vous pouvez basculer entre les différents modes de \"co-édition\" à l'aide via les paramètres avancés de l'éditeur.", @@ -537,11 +587,16 @@ "SSE.Controllers.Main.titleRecalcFormulas": "Calcul en cours...", "SSE.Controllers.Main.titleServerVersion": "L'éditeur est mis à jour", "SSE.Controllers.Main.txtAccent": "Accentuation", + "SSE.Controllers.Main.txtAll": "(Tous)", "SSE.Controllers.Main.txtArt": "Votre texte ici", "SSE.Controllers.Main.txtBasicShapes": "Formes de base", + "SSE.Controllers.Main.txtBlank": "(vide)", "SSE.Controllers.Main.txtButtons": "Boutons", + "SSE.Controllers.Main.txtByField": "%1 de %2", "SSE.Controllers.Main.txtCallouts": "Légendes", "SSE.Controllers.Main.txtCharts": "Graphiques", + "SSE.Controllers.Main.txtClearFilter": "Annuler les filtres (Alt+C)", + "SSE.Controllers.Main.txtColLbls": "Étiquettes de colonnes", "SSE.Controllers.Main.txtColumn": "Colonne", "SSE.Controllers.Main.txtConfidential": "Confidentiel", "SSE.Controllers.Main.txtDate": "Date", @@ -549,8 +604,10 @@ "SSE.Controllers.Main.txtEditingMode": "Définissez le mode d'édition...", "SSE.Controllers.Main.txtFiguredArrows": "Flèches figurées", "SSE.Controllers.Main.txtFile": "Fichier", + "SSE.Controllers.Main.txtGrandTotal": "Total général", "SSE.Controllers.Main.txtLines": "Lignes", "SSE.Controllers.Main.txtMath": "Maths", + "SSE.Controllers.Main.txtMultiSelect": "Sélection multiple (Alt+S)", "SSE.Controllers.Main.txtPage": "Page", "SSE.Controllers.Main.txtPageOf": "Page %1 de %2", "SSE.Controllers.Main.txtPages": "Pages", @@ -558,6 +615,7 @@ "SSE.Controllers.Main.txtPrintArea": "Zone_d'impression", "SSE.Controllers.Main.txtRectangles": "Rectangles", "SSE.Controllers.Main.txtRow": "Ligne", + "SSE.Controllers.Main.txtRowLbls": "Etiquettes de ligne", "SSE.Controllers.Main.txtSeries": "Série", "SSE.Controllers.Main.txtShape_accentBorderCallout1": "Légende encadrée avec une bordure 1", "SSE.Controllers.Main.txtShape_accentBorderCallout2": "Légende encadrée avec une bordure 2", @@ -755,6 +813,7 @@ "SSE.Controllers.Main.txtTab": "Onglet", "SSE.Controllers.Main.txtTable": "Tableau", "SSE.Controllers.Main.txtTime": "Heure", + "SSE.Controllers.Main.txtValues": "Valeurs", "SSE.Controllers.Main.txtXAxis": "Axe X", "SSE.Controllers.Main.txtYAxis": "Axe Y", "SSE.Controllers.Main.unknownErrorText": "Erreur inconnue.", @@ -767,13 +826,21 @@ "SSE.Controllers.Main.waitText": "Veuillez patienter...", "SSE.Controllers.Main.warnBrowserIE9": "L'application est peu compatible avec IE9. Utilisez IE10 ou version plus récente", "SSE.Controllers.Main.warnBrowserZoom": "Le paramètre actuel de zoom de votre navigateur n'est pas accepté. Veuillez rétablir le niveau de zoom par défaut en appuyant sur Ctrl+0.", - "SSE.Controllers.Main.warnLicenseExp": "Votre licence a expiré.
          Veuillez mettre à jour votre licence et actualisez la page.", "SSE.Controllers.Main.warnLicenseExceeded": "Vous avez dépassé le nombre maximal de connexions simultanées aux éditeurs %1. Ce document sera ouvert à la lecture seulement.
          Contactez votre administrateur pour en savoir davantage.", + "SSE.Controllers.Main.warnLicenseExp": "Votre licence a expiré.
          Veuillez mettre à jour votre licence et actualisez la page.", "SSE.Controllers.Main.warnLicenseUsersExceeded": "Vous avez dépassé le nombre maximal d’utilisateurs des éditeurs %1. Contactez votre administrateur pour en savoir davantage.", "SSE.Controllers.Main.warnNoLicense": "Vous avez dépassé le nombre maximal de connexions simultanées aux éditeurs %1. Ce document sera ouvert à la lecture seulement.
          Contactez l’équipe des ventes %1 pour mettre à jour les termes de la licence.", "SSE.Controllers.Main.warnNoLicenseUsers": "Vous avez dépassé le nombre maximal d’utilisateurs des éditeurs %1. Contactez l’équipe des ventes %1 pour mettre à jour les termes de la licence.", "SSE.Controllers.Main.warnProcessRightsChange": "Le droit d'édition du fichier vous a été refusé.", "SSE.Controllers.Print.strAllSheets": "Toutes les feuilles", + "SSE.Controllers.Print.textFirstCol": "Première colonne", + "SSE.Controllers.Print.textFirstRow": "Première ligne", + "SSE.Controllers.Print.textFrozenCols": "Colonnes verrouillées", + "SSE.Controllers.Print.textFrozenRows": "Lignes verrouillées", + "SSE.Controllers.Print.textInvalidRange": "ERREUR ! La plage de cellules n'est pas valide", + "SSE.Controllers.Print.textNoRepeat": "Ne pas répéter", + "SSE.Controllers.Print.textRepeat": "Répéter...", + "SSE.Controllers.Print.textSelectRange": "Sélectionner la ligne", "SSE.Controllers.Print.textWarning": "Avertissement", "SSE.Controllers.Print.txtCustom": "Personnalisé", "SSE.Controllers.Print.warnCheckMargings": "Marges incorrectes", @@ -784,7 +851,7 @@ "SSE.Controllers.Statusbar.zoomText": "Zoom {0}%", "SSE.Controllers.Toolbar.confirmAddFontName": "La police que vous allez enregistrer n'est pas disponible sur l'appareil actuel.
          Le style du texte sera affiché à l'aide de l'une des polices de système, la police sauvée sera utilisée lorsqu'il est disponible.
          Voulez-vous continuer?", "SSE.Controllers.Toolbar.errorMaxRows": "ERREUR! Maximum de 255 séries de données par graphique.", - "SSE.Controllers.Toolbar.errorStockChart": "L'ordre des lignes est incorrect. Pour créer un graphique boursier, organisez vos données sur la feuille de calcul dans l'ordre suivant:
          cours à l'ouverture, cours maximal, cours minimal, cours à la clôture.", + "SSE.Controllers.Toolbar.errorStockChart": "Ordre lignes incorrect. Pour créer un diagramme boursier, positionnez les données sur la feuille de calcul dans l'ordre suivant :
          cours à l'ouverture, cours maximal, cours minimal, cours à la clôture.", "SSE.Controllers.Toolbar.textAccent": "Caractères diacritiques", "SSE.Controllers.Toolbar.textBracket": "Parenthèses", "SSE.Controllers.Toolbar.textFontSizeErr": "La valeur entrée est incorrecte.
          Entrez une valeur numérique entre 1 et 409", @@ -870,6 +937,7 @@ "SSE.Controllers.Toolbar.txtBracket_UppLim": "Parenthèses", "SSE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen": "Crochet unique", "SSE.Controllers.Toolbar.txtBracket_UppLim_OpenNone": "Crochet unique", + "SSE.Controllers.Toolbar.txtDeleteCells": "Supprimer les cellules", "SSE.Controllers.Toolbar.txtExpand": "Développer et trier", "SSE.Controllers.Toolbar.txtExpandSort": "Les données situées à côté de la sélection ne seront pas triées. Souhaitez-vous développer la sélection pour inclure les données adjacentes ou souhaitez-vous continuer à trier iniquement les cellules sélectionnées ?", "SSE.Controllers.Toolbar.txtFractionDiagonal": "Fraction oblique", @@ -908,6 +976,7 @@ "SSE.Controllers.Toolbar.txtFunction_Sinh": "Fonction sinus hyperbolique", "SSE.Controllers.Toolbar.txtFunction_Tan": "Formule de la tangente", "SSE.Controllers.Toolbar.txtFunction_Tanh": "Fonction tangente hyperbolique", + "SSE.Controllers.Toolbar.txtInsertCells": "Insérer les cellules", "SSE.Controllers.Toolbar.txtIntegral": "Intégrale", "SSE.Controllers.Toolbar.txtIntegral_dtheta": "Thêta différentiel", "SSE.Controllers.Toolbar.txtIntegral_dx": "Différentiel x", @@ -1132,6 +1201,10 @@ "SSE.Controllers.Viewport.textHideFBar": "Masquer la barre de formule", "SSE.Controllers.Viewport.textHideGridlines": "Masquer le quadrillage", "SSE.Controllers.Viewport.textHideHeadings": "Masquer les en-têtes", + "SSE.Views.AdvancedSeparatorDialog.strDecimalSeparator": "Séparateur décimal", + "SSE.Views.AdvancedSeparatorDialog.strThousandsSeparator": "Séparateur de milliers", + "SSE.Views.AdvancedSeparatorDialog.textLabel": "Paramètres utilisés pour reconnaître les données numériques", + "SSE.Views.AdvancedSeparatorDialog.textTitle": "Paramètres avancés", "SSE.Views.AutoFilterDialog.btnCustomFilter": "Filtre personnalisé", "SSE.Views.AutoFilterDialog.textAddSelection": "Ajouter la sélection actuelle pour filtrer", "SSE.Views.AutoFilterDialog.textEmptyItem": "{Vides}", @@ -1151,9 +1224,11 @@ "SSE.Views.AutoFilterDialog.txtFilterFontColor": "Filtrer par couleur de police", "SSE.Views.AutoFilterDialog.txtGreater": "Plus grand que...", "SSE.Views.AutoFilterDialog.txtGreaterEquals": "Plus grand ou égal à...", + "SSE.Views.AutoFilterDialog.txtLabelFilter": "Filtre étiquette", "SSE.Views.AutoFilterDialog.txtLess": "Moins que...", "SSE.Views.AutoFilterDialog.txtLessEquals": "Moins que ou égal à...", "SSE.Views.AutoFilterDialog.txtNotBegins": "Ne pas commencer par ...", + "SSE.Views.AutoFilterDialog.txtNotBetween": "Pas entre ...", "SSE.Views.AutoFilterDialog.txtNotContains": "Ne contient pas...", "SSE.Views.AutoFilterDialog.txtNotEnds": "Ne se termine pas avec ...", "SSE.Views.AutoFilterDialog.txtNotEquals": "N'est pas égal...", @@ -1163,23 +1238,29 @@ "SSE.Views.AutoFilterDialog.txtSortFontColor": "Trier par couleur de police", "SSE.Views.AutoFilterDialog.txtSortHigh2Low": "Trier du plus élevé au plus bas", "SSE.Views.AutoFilterDialog.txtSortLow2High": "Trier le plus bas au plus élevé", + "SSE.Views.AutoFilterDialog.txtSortOption": "Plus d'options de tri...", "SSE.Views.AutoFilterDialog.txtTextFilter": "Filtre de texte", "SSE.Views.AutoFilterDialog.txtTitle": "Filtre", "SSE.Views.AutoFilterDialog.txtTop10": "Les 10 premiers", + "SSE.Views.AutoFilterDialog.txtValueFilter": "Filtre de valeur", + "SSE.Views.AutoFilterDialog.warnFilterError": "Vous avez besoin d'au moins un champs dans la zone des valeurs pour appliquer la filtre de valeur", "SSE.Views.AutoFilterDialog.warnNoSelected": "Vous devez choisir au moins une valeur", "SSE.Views.CellEditor.textManager": "Gestionnaire de Noms ", "SSE.Views.CellEditor.tipFormula": "Insérer une fonction", "SSE.Views.CellRangeDialog.errorMaxRows": "ERREUR! Maximum de 255 séries de données par graphique.", - "SSE.Views.CellRangeDialog.errorStockChart": "L'ordre des lignes est incorrect. Pour créer un graphique boursier organisez vos données sur la feuille de calcul dans l'ordre suivant:
          cours à l'ouverture, cours maximal, cours minimal, cours à la clôture.", + "SSE.Views.CellRangeDialog.errorStockChart": "Ordre lignes incorrect. Pour créer un diagramme boursier, positionnez les données sur la feuille de calcul dans l'ordre suivant :
          cours à l'ouverture, cours maximal, cours minimal, cours à la clôture.", "SSE.Views.CellRangeDialog.txtEmpty": "Ce champ est obligatoire", "SSE.Views.CellRangeDialog.txtInvalidRange": "ERREUR! Plage de cellules non valide", "SSE.Views.CellRangeDialog.txtTitle": "Sélectionner une plage de données", + "SSE.Views.CellSettings.strShrink": "Réduire pour ajuster", + "SSE.Views.CellSettings.strWrap": "Renvoyer à la ligne", "SSE.Views.CellSettings.textAngle": "Angle", "SSE.Views.CellSettings.textBackColor": "Couleur d'arrière-plan", "SSE.Views.CellSettings.textBackground": "Couleur d'arrière-plan", "SSE.Views.CellSettings.textBorderColor": "Couleur", "SSE.Views.CellSettings.textBorders": "Style des bordures", "SSE.Views.CellSettings.textColor": "Couleur de remplissage", + "SSE.Views.CellSettings.textControl": "Contrôle de texte", "SSE.Views.CellSettings.textDirection": "Direction", "SSE.Views.CellSettings.textFill": "Remplissage", "SSE.Views.CellSettings.textForeground": "Couleur de premier plan", @@ -1228,7 +1309,7 @@ "SSE.Views.ChartSettings.textWidth": "Largeur", "SSE.Views.ChartSettingsDlg.errorMaxPoints": "ERREUR! Maximum de 4096 points en série par graphique.", "SSE.Views.ChartSettingsDlg.errorMaxRows": "ERREUR! Maximum de 255 séries de données par graphique.", - "SSE.Views.ChartSettingsDlg.errorStockChart": "Ordre des lignes est incorrect. Pour créer un graphique boursier organisez vos données sur la feuille de calcul dans l'ordre suivant:
          cours à l'ouverture, cours maximal, cours minimal, cours à la clôture.", + "SSE.Views.ChartSettingsDlg.errorStockChart": "Ordre lignes incorrect. Pour créer un diagramme boursier, positionnez les données sur la feuille de calcul dans l'ordre suivant :
          cours à l'ouverture, cours maximal, cours minimal, cours à la clôture.", "SSE.Views.ChartSettingsDlg.textAbsolute": "Ne pas déplacer ou dimensionner avec les cellules", "SSE.Views.ChartSettingsDlg.textAlt": "Texte de remplacement", "SSE.Views.ChartSettingsDlg.textAltDescription": "Description", @@ -1353,8 +1434,17 @@ "SSE.Views.ChartSettingsDlg.textYAxisTitle": "Titre de l'axe Y", "SSE.Views.ChartSettingsDlg.textZero": "Valeur nulle", "SSE.Views.ChartSettingsDlg.txtEmpty": "Ce champ est obligatoire", + "SSE.Views.CreatePivotDialog.textDataRange": "Ligne de données de la source", + "SSE.Views.CreatePivotDialog.textDestination": "Choisissez l'émplacement du tableau", + "SSE.Views.CreatePivotDialog.textExist": "Feuille de calcul existante", + "SSE.Views.CreatePivotDialog.textInvalidRange": "Plage de cellules non valide", + "SSE.Views.CreatePivotDialog.textNew": "Nouvelle feuille e calcul", + "SSE.Views.CreatePivotDialog.textSelectData": "Sélectionner des données", + "SSE.Views.CreatePivotDialog.textTitle": "Créer un tableau", + "SSE.Views.CreatePivotDialog.txtEmpty": "Ce champ est obligatoire", "SSE.Views.DataTab.capBtnGroup": "Grouper", "SSE.Views.DataTab.capBtnTextCustomSort": "Tri personnalisé", + "SSE.Views.DataTab.capBtnTextRemDuplicates": "Supprimer les valeurs dupliquées", "SSE.Views.DataTab.capBtnTextToCol": "Texte en colonnes", "SSE.Views.DataTab.capBtnUngroup": "Dissocier", "SSE.Views.DataTab.textBelow": "Lignes de synthèse sous les lignes de détail", @@ -1366,6 +1456,7 @@ "SSE.Views.DataTab.textRows": "Dissocier les lignes", "SSE.Views.DataTab.tipCustomSort": "Tri personnalisé", "SSE.Views.DataTab.tipGroup": "Groper une plage de cellules", + "SSE.Views.DataTab.tipRemDuplicates": "Supprimer les lignes dupliquées d'une feuille de calcul", "SSE.Views.DataTab.tipToColumns": "Répartir le contenu d'une cellule dans des colonnes adjacentes", "SSE.Views.DataTab.tipUngroup": "Dissocier une plage de cellules", "SSE.Views.DigitalFilterDialog.capAnd": "Et", @@ -1389,6 +1480,7 @@ "SSE.Views.DigitalFilterDialog.txtTitle": "Filtre personnalisé", "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.advancedSlicerText": "Paramètres avancés du segment", "SSE.Views.DocumentHolder.bottomCellText": "Aligner en bas", "SSE.Views.DocumentHolder.bulletsText": "Puces et Numérotation", "SSE.Views.DocumentHolder.centerCellText": "Aligner au centre", @@ -1422,6 +1514,8 @@ "SSE.Views.DocumentHolder.textArrangeBackward": "Reculer", "SSE.Views.DocumentHolder.textArrangeForward": "Déplacer vers l'avant", "SSE.Views.DocumentHolder.textArrangeFront": "Mettre au premier plan", + "SSE.Views.DocumentHolder.textAverage": "Moyenne", + "SSE.Views.DocumentHolder.textCount": "Total", "SSE.Views.DocumentHolder.textCrop": "Rogner", "SSE.Views.DocumentHolder.textCropFill": "Remplissage", "SSE.Views.DocumentHolder.textCropFit": "Ajuster", @@ -1430,8 +1524,12 @@ "SSE.Views.DocumentHolder.textFlipV": "Retourner verticalement", "SSE.Views.DocumentHolder.textFreezePanes": "Verrouiller les volets", "SSE.Views.DocumentHolder.textFromFile": "D'un fichier", + "SSE.Views.DocumentHolder.textFromStorage": "A partir de l'espace de stockage", "SSE.Views.DocumentHolder.textFromUrl": "D'une URL", "SSE.Views.DocumentHolder.textListSettings": "Paramètres de la liste", + "SSE.Views.DocumentHolder.textMax": "Max", + "SSE.Views.DocumentHolder.textMin": "Min", + "SSE.Views.DocumentHolder.textMore": "Plus de fonctions", "SSE.Views.DocumentHolder.textMoreFormats": "Autres formats", "SSE.Views.DocumentHolder.textNone": "Aucune", "SSE.Views.DocumentHolder.textReplace": "Remplacer l’image", @@ -1444,8 +1542,11 @@ "SSE.Views.DocumentHolder.textShapeAlignMiddle": "Aligner au centre", "SSE.Views.DocumentHolder.textShapeAlignRight": "Aligner à droite", "SSE.Views.DocumentHolder.textShapeAlignTop": "Aligner en haut", + "SSE.Views.DocumentHolder.textStdDev": "Écartype", + "SSE.Views.DocumentHolder.textSum": "Somme", "SSE.Views.DocumentHolder.textUndo": "Annuler", "SSE.Views.DocumentHolder.textUnFreezePanes": "Libérer les volets", + "SSE.Views.DocumentHolder.textVar": "Var", "SSE.Views.DocumentHolder.topCellText": "Aligner en haut", "SSE.Views.DocumentHolder.txtAccounting": "Comptabilité", "SSE.Views.DocumentHolder.txtAddComment": "Ajouter un commentaire", @@ -1511,6 +1612,33 @@ "SSE.Views.DocumentHolder.txtUngroup": "Dissocier", "SSE.Views.DocumentHolder.txtWidth": "Largeur", "SSE.Views.DocumentHolder.vertAlignText": "Alignement vertical", + "SSE.Views.FieldSettingsDialog.strLayout": "Disposition", + "SSE.Views.FieldSettingsDialog.strSubtotals": "Sous-totaux", + "SSE.Views.FieldSettingsDialog.textReport": "Formulaire de rapport ", + "SSE.Views.FieldSettingsDialog.textTitle": "Paramètres de champ", + "SSE.Views.FieldSettingsDialog.txtAverage": "Moyenne", + "SSE.Views.FieldSettingsDialog.txtBlank": "Insérer une ligne vide après chaque élément", + "SSE.Views.FieldSettingsDialog.txtBottom": "Afficher en bas du groupe", + "SSE.Views.FieldSettingsDialog.txtCompact": "Compact", + "SSE.Views.FieldSettingsDialog.txtCount": "Total", + "SSE.Views.FieldSettingsDialog.txtCountNums": "Chiffres", + "SSE.Views.FieldSettingsDialog.txtCustomName": "Nom", + "SSE.Views.FieldSettingsDialog.txtEmpty": "Afficher les éléments sans données", + "SSE.Views.FieldSettingsDialog.txtMax": "Max", + "SSE.Views.FieldSettingsDialog.txtMin": "Min", + "SSE.Views.FieldSettingsDialog.txtOutline": "Contour", + "SSE.Views.FieldSettingsDialog.txtProduct": "Produit", + "SSE.Views.FieldSettingsDialog.txtRepeat": "Répéter les étiquettes des éléments sur chaque ligne", + "SSE.Views.FieldSettingsDialog.txtShowSubtotals": "Afficher les sous-totaux", + "SSE.Views.FieldSettingsDialog.txtSourceName": "Nom de la source :", + "SSE.Views.FieldSettingsDialog.txtStdDev": "Écartype", + "SSE.Views.FieldSettingsDialog.txtStdDevp": "StdDevp", + "SSE.Views.FieldSettingsDialog.txtSum": "Somme", + "SSE.Views.FieldSettingsDialog.txtSummarize": "Fonctions pour sous-totaux", + "SSE.Views.FieldSettingsDialog.txtTabular": "Tabulaire", + "SSE.Views.FieldSettingsDialog.txtTop": "Afficher en haut du groupe", + "SSE.Views.FieldSettingsDialog.txtVar": "Var", + "SSE.Views.FieldSettingsDialog.txtVarp": "Varp", "SSE.Views.FileMenu.btnBackCaption": "Ouvrir l'emplacement du fichier", "SSE.Views.FileMenu.btnCloseMenuCaption": "Fermer le menu", "SSE.Views.FileMenu.btnCreateNewCaption": "Nouveau classeur", @@ -1563,6 +1691,9 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocale": "La formule de langue", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocaleEx": "Example: SUM; MIN; MAX; COUNT", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strLiveComment": "Activer l'affichage des commentaires", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strMacrosSettings": "Réglages macros", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPaste": "Couper, copier et coller", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPasteButton": "Afficher le bouton \"Options de collage\" lorsque le contenu est collé ", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strR1C1": "Activer R1C1 style", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettings": "Paramètres régionaux", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettingsEx": "Exemple: ", @@ -1597,11 +1728,19 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPl": "Polonais", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPt": "Point", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRu": "Russe", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRunMacros": "Activer tout", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRunMacrosDesc": "Activer tous les macros sans notification", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStopMacros": "Désactiver tout", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStopMacrosDesc": "Désactiver tous les macros sans notification", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacros": "Montrer la notification", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacrosDesc": "Désactiver tous les macros avec notification", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin": "comme Windows", "SSE.Views.FileMenuPanels.MainSpellCheckSettings.okButtonText": "Appliquer", "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strDictionaryLanguage": "Langue du dictionnaire", "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strIgnoreWordsInUPPERCASE": "Ignorer les mots en MAJUSCULES", "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strIgnoreWordsWithNumbers": "Ignorer les mots contenant des chiffres", + "SSE.Views.FileMenuPanels.MainSpellCheckSettings.txtAutoCorrect": "Options de correction automatique", + "SSE.Views.FileMenuPanels.MainSpellCheckSettings.txtProofing": "Vérification", "SSE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Attention", "SSE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "Avec mot de passe", "SSE.Views.FileMenuPanels.ProtectDoc.strProtect": "Protéger le classeur", @@ -1647,6 +1786,8 @@ "SSE.Views.FormulaDialog.sDescription": "Description", "SSE.Views.FormulaDialog.textGroupDescription": "Sélectionner un groupe de fonctions", "SSE.Views.FormulaDialog.textListDescription": "Sélectionner une fonction", + "SSE.Views.FormulaDialog.txtRecommended": "Recommandé", + "SSE.Views.FormulaDialog.txtSearch": "Recherche", "SSE.Views.FormulaDialog.txtTitle": "Insérer une fonction", "SSE.Views.FormulaTab.textAutomatic": "Automatique", "SSE.Views.FormulaTab.textCalculateCurrentSheet": "Calculer la feuille courante", @@ -1662,6 +1803,11 @@ "SSE.Views.FormulaTab.txtFormulaTip": "Insérer une fonction", "SSE.Views.FormulaTab.txtMore": "Plus de fonctions", "SSE.Views.FormulaTab.txtRecent": "Récemment utilisé", + "SSE.Views.FormulaWizard.textFunction": "Fonction", + "SSE.Views.FormulaWizard.textFunctionRes": "Résultat de fonction", + "SSE.Views.FormulaWizard.textHelp": "Aide sur la fonction", + "SSE.Views.FormulaWizard.textTitle": "Argument de formule", + "SSE.Views.FormulaWizard.textValue": "Résultat d'une formule ", "SSE.Views.GroupDialog.textColumns": "Colonnes", "SSE.Views.GroupDialog.textRows": "Lignes", "SSE.Views.HeaderFooterDialog.textAlign": "Aligner sur les marges de page", @@ -1701,13 +1847,18 @@ "SSE.Views.HyperlinkSettingsDialog.strLinkTo": "Lier à", "SSE.Views.HyperlinkSettingsDialog.strRange": "Plage", "SSE.Views.HyperlinkSettingsDialog.strSheet": "Feuille", + "SSE.Views.HyperlinkSettingsDialog.textCopy": "Copier", "SSE.Views.HyperlinkSettingsDialog.textDefault": "Plage sélectionnée", "SSE.Views.HyperlinkSettingsDialog.textEmptyDesc": "Entrez une légende ici", "SSE.Views.HyperlinkSettingsDialog.textEmptyLink": "Entrez un lien ici", "SSE.Views.HyperlinkSettingsDialog.textEmptyTooltip": "Entrez une info-bulle ici", "SSE.Views.HyperlinkSettingsDialog.textExternalLink": "Lien externe", + "SSE.Views.HyperlinkSettingsDialog.textGetLink": "Obtenir le lien", "SSE.Views.HyperlinkSettingsDialog.textInternalLink": "Plage de données interne", "SSE.Views.HyperlinkSettingsDialog.textInvalidRange": "ERREUR! La plage de cellules non valide", + "SSE.Views.HyperlinkSettingsDialog.textNames": "Les noms définis", + "SSE.Views.HyperlinkSettingsDialog.textSelectData": "Sélectionner des données", + "SSE.Views.HyperlinkSettingsDialog.textSheets": "Feuilles de calcul", "SSE.Views.HyperlinkSettingsDialog.textTipText": "Texte de l'info-bulle ", "SSE.Views.HyperlinkSettingsDialog.textTitle": "Paramètres du lien hypertexte", "SSE.Views.HyperlinkSettingsDialog.txtEmpty": "Ce champ est obligatoire", @@ -1720,6 +1871,7 @@ "SSE.Views.ImageSettings.textEditObject": "Modifier l'objet", "SSE.Views.ImageSettings.textFlip": "Retournement", "SSE.Views.ImageSettings.textFromFile": "D'un fichier", + "SSE.Views.ImageSettings.textFromStorage": "A partir de l'espace de stockage", "SSE.Views.ImageSettings.textFromUrl": "D'une URL", "SSE.Views.ImageSettings.textHeight": "Hauteur", "SSE.Views.ImageSettings.textHint270": "Faire pivoter à gauche de 90°", @@ -1764,6 +1916,7 @@ "SSE.Views.MainSettingsPrint.strMargins": "Marges", "SSE.Views.MainSettingsPrint.strPortrait": "Portrait", "SSE.Views.MainSettingsPrint.strPrint": "Imprimer", + "SSE.Views.MainSettingsPrint.strPrintTitles": "Titres à imprimer", "SSE.Views.MainSettingsPrint.strRight": "A droite", "SSE.Views.MainSettingsPrint.strTop": "En haut", "SSE.Views.MainSettingsPrint.textActualSize": "Taille réelle", @@ -1777,6 +1930,9 @@ "SSE.Views.MainSettingsPrint.textPageSize": "Taille de la page", "SSE.Views.MainSettingsPrint.textPrintGrid": "Imprimer le quadrillage", "SSE.Views.MainSettingsPrint.textPrintHeadings": "Imprimer les titres de lignes et de colonnes ", + "SSE.Views.MainSettingsPrint.textRepeat": "Répéter...", + "SSE.Views.MainSettingsPrint.textRepeatLeft": "Colonnes à répéter à gauche", + "SSE.Views.MainSettingsPrint.textRepeatTop": "Répéter les lignes en haut", "SSE.Views.MainSettingsPrint.textSettings": "Paramètres pour", "SSE.Views.NamedRangeEditDlg.errorCreateDefName": "Actuellement, des plages nommées existantes ne peuvent pas être modifiées et les nouvelles ne peuvent pas être créées,
          car certaines d'entre eux sont en cours de modification.", "SSE.Views.NamedRangeEditDlg.namePlaceholder": "Nom défini", @@ -1868,6 +2024,27 @@ "SSE.Views.ParagraphSettingsAdvanced.textTabRight": "A droite", "SSE.Views.ParagraphSettingsAdvanced.textTitle": "Paragraphe - Paramètres avancés", "SSE.Views.ParagraphSettingsAdvanced.txtAutoText": "Auto", + "SSE.Views.PivotDigitalFilterDialog.capCondition1": "est égal", + "SSE.Views.PivotDigitalFilterDialog.capCondition10": "ne se termine pas par", + "SSE.Views.PivotDigitalFilterDialog.capCondition11": "contient", + "SSE.Views.PivotDigitalFilterDialog.capCondition12": "ne contient pas", + "SSE.Views.PivotDigitalFilterDialog.capCondition13": "entre", + "SSE.Views.PivotDigitalFilterDialog.capCondition14": "pas entre", + "SSE.Views.PivotDigitalFilterDialog.capCondition2": "n'est pas égal", + "SSE.Views.PivotDigitalFilterDialog.capCondition3": "est supérieur à", + "SSE.Views.PivotDigitalFilterDialog.capCondition4": "est supérieur ou égal à", + "SSE.Views.PivotDigitalFilterDialog.capCondition5": "est inférieur à", + "SSE.Views.PivotDigitalFilterDialog.capCondition6": "est inférieure ou égale à", + "SSE.Views.PivotDigitalFilterDialog.capCondition7": "commence par", + "SSE.Views.PivotDigitalFilterDialog.capCondition8": "ne commence pas par", + "SSE.Views.PivotDigitalFilterDialog.capCondition9": "se termine par", + "SSE.Views.PivotDigitalFilterDialog.textShowLabel": "Afficher les éléments avec l'étiquette :", + "SSE.Views.PivotDigitalFilterDialog.textShowValue": "Afficher les éléments pour lesquels :", + "SSE.Views.PivotDigitalFilterDialog.textUse1": "Utilisez ? pour présenter un caractère unique", + "SSE.Views.PivotDigitalFilterDialog.textUse2": "Utilisez * pour présenter une série de caractères", + "SSE.Views.PivotDigitalFilterDialog.txtAnd": "et", + "SSE.Views.PivotDigitalFilterDialog.txtTitleLabel": "Filtre étiquette", + "SSE.Views.PivotDigitalFilterDialog.txtTitleValue": "Filtre de valeur", "SSE.Views.PivotSettings.textAdvanced": "Afficher les paramètres avancés", "SSE.Views.PivotSettings.textColumns": "Colonnes", "SSE.Views.PivotSettings.textFields": "Sélectionner les champs", @@ -1888,6 +2065,28 @@ "SSE.Views.PivotSettings.txtMoveUp": "Monter", "SSE.Views.PivotSettings.txtMoveValues": "Déplacer vers les valeurs", "SSE.Views.PivotSettings.txtRemove": "Supprimer le champ", + "SSE.Views.PivotSettingsAdvanced.strLayout": "Nom et disposition", + "SSE.Views.PivotSettingsAdvanced.textAlt": "Texte de remplacement", + "SSE.Views.PivotSettingsAdvanced.textAltDescription": "Description", + "SSE.Views.PivotSettingsAdvanced.textAltTip": "La représentation textuelle alternative des informations sur l’objet visuel, qui sera lue par les personnes avec des déficiences cognitives ou visuelles pour les aider à mieux comprendre l'information de l’image, de la forme automatique, du graphique ou du tableau.", + "SSE.Views.PivotSettingsAdvanced.textAltTitle": "Titre", + "SSE.Views.PivotSettingsAdvanced.textDataRange": "Plage de données", + "SSE.Views.PivotSettingsAdvanced.textDataSource": "La source de données", + "SSE.Views.PivotSettingsAdvanced.textDisplayFields": "Afficher les champs dans la zone de filtre du report", + "SSE.Views.PivotSettingsAdvanced.textDown": "Vers le bas, puis à droite ", + "SSE.Views.PivotSettingsAdvanced.textGrandTotals": "Grands Totaux", + "SSE.Views.PivotSettingsAdvanced.textHeaders": "En-têtes des champs", + "SSE.Views.PivotSettingsAdvanced.textInvalidRange": "ERREUR ! La plage de cellules n'est pas valide", + "SSE.Views.PivotSettingsAdvanced.textOver": "A droite, puis vers le bas", + "SSE.Views.PivotSettingsAdvanced.textSelectData": "Sélectionner des données", + "SSE.Views.PivotSettingsAdvanced.textShowCols": "Afficher pour les colonnes", + "SSE.Views.PivotSettingsAdvanced.textShowHeaders": "Afficher les en-têtes des champs pour les lignes et les colonnes", + "SSE.Views.PivotSettingsAdvanced.textShowRows": "Afficher pour les lignes", + "SSE.Views.PivotSettingsAdvanced.textTitle": "Tableau croisé dynamique - Paramètres avancés", + "SSE.Views.PivotSettingsAdvanced.textWrapCol": "Afficher les champs de filtre de rapport par colonne", + "SSE.Views.PivotSettingsAdvanced.textWrapRow": "Afficher les champs de filtre de rapport par ligne", + "SSE.Views.PivotSettingsAdvanced.txtEmpty": "Ce champ est obligatoire", + "SSE.Views.PivotSettingsAdvanced.txtName": "Nom", "SSE.Views.PivotTable.capBlankRows": "Lignes vides", "SSE.Views.PivotTable.capGrandTotals": "Grands Totaux", "SSE.Views.PivotTable.capLayout": "Mise en page du rapport", @@ -1926,6 +2125,7 @@ "SSE.Views.PrintSettings.strMargins": "Marges", "SSE.Views.PrintSettings.strPortrait": "Portrait", "SSE.Views.PrintSettings.strPrint": "Imprimer", + "SSE.Views.PrintSettings.strPrintTitles": "Titres à imprimer", "SSE.Views.PrintSettings.strRight": "A droite", "SSE.Views.PrintSettings.strShow": "Afficher", "SSE.Views.PrintSettings.strTop": "En haut", @@ -1947,6 +2147,9 @@ "SSE.Views.PrintSettings.textPrintHeadings": "Imprimer les titres de lignes et de colonnes ", "SSE.Views.PrintSettings.textPrintRange": "Imprimer la plage", "SSE.Views.PrintSettings.textRange": "Plage", + "SSE.Views.PrintSettings.textRepeat": "Répéter...", + "SSE.Views.PrintSettings.textRepeatLeft": "Colonnes à répéter à gauche", + "SSE.Views.PrintSettings.textRepeatTop": "Répéter les lignes en haut", "SSE.Views.PrintSettings.textSelection": "Sélection", "SSE.Views.PrintSettings.textSettings": "Paramètres de la feuille", "SSE.Views.PrintSettings.textShowDetails": "Afficher détails", @@ -1954,6 +2157,22 @@ "SSE.Views.PrintSettings.textShowHeadings": "Montrer les en-têtes des lignes et des colonnes", "SSE.Views.PrintSettings.textTitle": "Paramètres d'impression", "SSE.Views.PrintSettings.textTitlePDF": "Paramètres du fichier PDF", + "SSE.Views.PrintTitlesDialog.textFirstCol": "Première colonne", + "SSE.Views.PrintTitlesDialog.textFirstRow": "Première ligne", + "SSE.Views.PrintTitlesDialog.textFrozenCols": "Colonnes verrouillées", + "SSE.Views.PrintTitlesDialog.textFrozenRows": "Lignes verrouillées", + "SSE.Views.PrintTitlesDialog.textInvalidRange": "ERREUR ! La plage de cellules n'est pas valide", + "SSE.Views.PrintTitlesDialog.textLeft": "Colonnes à répéter à gauche", + "SSE.Views.PrintTitlesDialog.textNoRepeat": "Ne pas répéter", + "SSE.Views.PrintTitlesDialog.textRepeat": "Répéter...", + "SSE.Views.PrintTitlesDialog.textSelectRange": "Sélectionner la ligne", + "SSE.Views.PrintTitlesDialog.textTitle": "Titres à imprimer", + "SSE.Views.PrintTitlesDialog.textTop": "Répéter les lignes en haut", + "SSE.Views.RemoveDuplicatesDialog.textColumns": "Colonnes", + "SSE.Views.RemoveDuplicatesDialog.textDescription": "Pour supprimer des valeurs dupliquées, selectionnez une ou plusieurs colonnes contenant les valeurs dupliquées.", + "SSE.Views.RemoveDuplicatesDialog.textHeaders": "Mes données ont des en-têtes", + "SSE.Views.RemoveDuplicatesDialog.textSelectAll": "Sélectionner tout", + "SSE.Views.RemoveDuplicatesDialog.txtTitle": "Supprimer les valeurs dupliquées", "SSE.Views.RightMenu.txtCellSettings": "Paramètres de cellule", "SSE.Views.RightMenu.txtChartSettings": "Paramètres du graphique", "SSE.Views.RightMenu.txtImageSettings": "Paramètres de l'image", @@ -1962,6 +2181,7 @@ "SSE.Views.RightMenu.txtSettings": "Paramètres communs", "SSE.Views.RightMenu.txtShapeSettings": "Paramètres de forme", "SSE.Views.RightMenu.txtSignatureSettings": "Paramètre de signature", + "SSE.Views.RightMenu.txtSlicerSettings": "Paramètres du segment", "SSE.Views.RightMenu.txtSparklineSettings": "Paramètres du graphique sparkline", "SSE.Views.RightMenu.txtTableSettings": "Paramètres du tableau", "SSE.Views.RightMenu.txtTextArtSettings": "Paramètres de texte d'art", @@ -1995,6 +2215,7 @@ "SSE.Views.ShapeSettings.textEmptyPattern": "Pas de modèles", "SSE.Views.ShapeSettings.textFlip": "Retournement", "SSE.Views.ShapeSettings.textFromFile": "D'un fichier", + "SSE.Views.ShapeSettings.textFromStorage": "A partir de l'espace de stockage", "SSE.Views.ShapeSettings.textFromUrl": "D'une URL", "SSE.Views.ShapeSettings.textGradient": "Gradient", "SSE.Views.ShapeSettings.textGradientFill": "Remplissage Gradient", @@ -2010,6 +2231,7 @@ "SSE.Views.ShapeSettings.textRadial": "Radial", "SSE.Views.ShapeSettings.textRotate90": "Faire pivoter de 90°", "SSE.Views.ShapeSettings.textRotation": "Rotation", + "SSE.Views.ShapeSettings.textSelectImage": "Sélectionner l'image", "SSE.Views.ShapeSettings.textSelectTexture": "Sélectionner", "SSE.Views.ShapeSettings.textStretch": "Prolonger", "SSE.Views.ShapeSettings.textStyle": "Style", @@ -2036,6 +2258,7 @@ "SSE.Views.ShapeSettingsAdvanced.textAltTitle": "Titre", "SSE.Views.ShapeSettingsAdvanced.textAngle": "Angle", "SSE.Views.ShapeSettingsAdvanced.textArrows": "Flèches", + "SSE.Views.ShapeSettingsAdvanced.textAutofit": "Ajuster automatiquement", "SSE.Views.ShapeSettingsAdvanced.textBeginSize": "Taille de début", "SSE.Views.ShapeSettingsAdvanced.textBeginStyle": "Style de début", "SSE.Views.ShapeSettingsAdvanced.textBevel": "Biseau", @@ -2054,6 +2277,8 @@ "SSE.Views.ShapeSettingsAdvanced.textLineStyle": "Style de ligne", "SSE.Views.ShapeSettingsAdvanced.textMiter": "Onglet", "SSE.Views.ShapeSettingsAdvanced.textOneCell": "Déplacer sans dimensionner avec les cellules", + "SSE.Views.ShapeSettingsAdvanced.textOverflow": "Autoriser le texte à sortir de la forme", + "SSE.Views.ShapeSettingsAdvanced.textResizeFit": "Redimensionner la forme pour contenir le texte", "SSE.Views.ShapeSettingsAdvanced.textRight": "A droite", "SSE.Views.ShapeSettingsAdvanced.textRotation": "Rotation", "SSE.Views.ShapeSettingsAdvanced.textRound": "Arrondi", @@ -2061,6 +2286,7 @@ "SSE.Views.ShapeSettingsAdvanced.textSnap": "Alignement dans une cellule", "SSE.Views.ShapeSettingsAdvanced.textSpacing": "Espacement entre les colonnes", "SSE.Views.ShapeSettingsAdvanced.textSquare": "Carré", + "SSE.Views.ShapeSettingsAdvanced.textTextBox": "Zone de texte", "SSE.Views.ShapeSettingsAdvanced.textTitle": "Forme - Paramètres avancés", "SSE.Views.ShapeSettingsAdvanced.textTop": "En haut", "SSE.Views.ShapeSettingsAdvanced.textTwoCell": "Déplacer et dimensionner avec des cellules", @@ -2082,6 +2308,71 @@ "SSE.Views.SignatureSettings.txtRequestedSignatures": "Il est nécessaire de signer ce classeur.", "SSE.Views.SignatureSettings.txtSigned": "Des signatures valides ont été ajoutées au classeur. Le classeur est protégé des modifications.", "SSE.Views.SignatureSettings.txtSignedInvalid": "Certaines signatures électriques sont invalides ou n'ont pu être vérifiées. Le classeur est protégé contre la modification. ", + "SSE.Views.SlicerAddDialog.textColumns": "Colonnes", + "SSE.Views.SlicerAddDialog.txtTitle": "Insérer segments", + "SSE.Views.SlicerSettings.strHideNoData": "Masquer les éléments vides", + "SSE.Views.SlicerSettings.strIndNoData": "Indiquer visuellement les éléments sans données", + "SSE.Views.SlicerSettings.strShowDel": "Afficher les éléments supprimés de la source de données", + "SSE.Views.SlicerSettings.strShowNoData": "Afficher les éléments sans données à la fin", + "SSE.Views.SlicerSettings.strSorting": "Trier et filtrer", + "SSE.Views.SlicerSettings.textAdvanced": "Afficher les paramètres avancés", + "SSE.Views.SlicerSettings.textAsc": "Croissant", + "SSE.Views.SlicerSettings.textAZ": "A à Z", + "SSE.Views.SlicerSettings.textButtons": "Boutons", + "SSE.Views.SlicerSettings.textColumns": "Colonnes", + "SSE.Views.SlicerSettings.textDesc": "Décroissant", + "SSE.Views.SlicerSettings.textHeight": "Hauteur", + "SSE.Views.SlicerSettings.textHor": "Horizontal", + "SSE.Views.SlicerSettings.textKeepRatio": "Proportions constantes", + "SSE.Views.SlicerSettings.textLargeSmall": "Du plus grand au plus petit", + "SSE.Views.SlicerSettings.textLock": "Désactiver redimensionnement ou déplacement", + "SSE.Views.SlicerSettings.textNewOld": "Du plus récent au plus ancien.", + "SSE.Views.SlicerSettings.textOldNew": "Du plus ancien au plus récent", + "SSE.Views.SlicerSettings.textPosition": "Position", + "SSE.Views.SlicerSettings.textSize": "Taille", + "SSE.Views.SlicerSettings.textSmallLarge": "Du plus petit au plus grand", + "SSE.Views.SlicerSettings.textStyle": "Style", + "SSE.Views.SlicerSettings.textVert": "Vertical", + "SSE.Views.SlicerSettings.textWidth": "Largeur", + "SSE.Views.SlicerSettings.textZA": "De Z à A", + "SSE.Views.SlicerSettingsAdvanced.strButtons": "Boutons", + "SSE.Views.SlicerSettingsAdvanced.strColumns": "Colonnes", + "SSE.Views.SlicerSettingsAdvanced.strHeight": "Hauteur", + "SSE.Views.SlicerSettingsAdvanced.strHideNoData": "Masquer les éléments vides", + "SSE.Views.SlicerSettingsAdvanced.strIndNoData": "Indiquer visuellement les éléments sans données", + "SSE.Views.SlicerSettingsAdvanced.strReferences": "Références", + "SSE.Views.SlicerSettingsAdvanced.strShowDel": "Afficher les éléments supprimés de la source de données", + "SSE.Views.SlicerSettingsAdvanced.strShowHeader": "Afficher l'en-tête", + "SSE.Views.SlicerSettingsAdvanced.strShowNoData": "Afficher les éléments sans données à la fin", + "SSE.Views.SlicerSettingsAdvanced.strSize": "Taille", + "SSE.Views.SlicerSettingsAdvanced.strSorting": "Trier et filtrer", + "SSE.Views.SlicerSettingsAdvanced.strStyle": "Style", + "SSE.Views.SlicerSettingsAdvanced.strStyleSize": "Style et taille", + "SSE.Views.SlicerSettingsAdvanced.strWidth": "Largeur", + "SSE.Views.SlicerSettingsAdvanced.textAbsolute": "Ne pas déplacer ou dimensionner avec les cellules", + "SSE.Views.SlicerSettingsAdvanced.textAlt": "Texte de remplacement", + "SSE.Views.SlicerSettingsAdvanced.textAltDescription": "Description", + "SSE.Views.SlicerSettingsAdvanced.textAltTip": "La représentation textuelle alternative des informations sur l’objet visuel, qui sera lue par les personnes avec des déficiences cognitives ou visuelles pour les aider à mieux comprendre l'information de l’image, de la forme automatique, du graphique ou du tableau.", + "SSE.Views.SlicerSettingsAdvanced.textAltTitle": "Titre", + "SSE.Views.SlicerSettingsAdvanced.textAsc": "Croissant", + "SSE.Views.SlicerSettingsAdvanced.textAZ": "A à Z", + "SSE.Views.SlicerSettingsAdvanced.textDesc": "Décroissant", + "SSE.Views.SlicerSettingsAdvanced.textFormulaName": "Utiliser le nom dans les formules", + "SSE.Views.SlicerSettingsAdvanced.textHeader": "En-tête", + "SSE.Views.SlicerSettingsAdvanced.textKeepRatio": "Proportions constantes", + "SSE.Views.SlicerSettingsAdvanced.textLargeSmall": "Du plus grand au plus petit", + "SSE.Views.SlicerSettingsAdvanced.textName": "Nom", + "SSE.Views.SlicerSettingsAdvanced.textNewOld": "Du plus récent au plus ancien.", + "SSE.Views.SlicerSettingsAdvanced.textOldNew": "Du plus ancien au plus récent", + "SSE.Views.SlicerSettingsAdvanced.textOneCell": "Déplacer sans dimensionner avec les cellules", + "SSE.Views.SlicerSettingsAdvanced.textSmallLarge": "Du plus petit au plus grand", + "SSE.Views.SlicerSettingsAdvanced.textSnap": "Alignement dans une cellule", + "SSE.Views.SlicerSettingsAdvanced.textSort": "Trier", + "SSE.Views.SlicerSettingsAdvanced.textSourceName": "Nom de source", + "SSE.Views.SlicerSettingsAdvanced.textTitle": "Segment - Paramètres avancés", + "SSE.Views.SlicerSettingsAdvanced.textTwoCell": "Déplacer et dimensionner avec des cellules", + "SSE.Views.SlicerSettingsAdvanced.textZA": "De Z à A", + "SSE.Views.SlicerSettingsAdvanced.txtEmpty": "Ce champ est obligatoire", "SSE.Views.SortDialog.errorEmpty": "Une colonne ou une ligne doit être spécifiée pour tous les critères de tri.", "SSE.Views.SortDialog.errorMoreOneCol": "Plusieurs colonnes sont sélectionnées.", "SSE.Views.SortDialog.errorMoreOneRow": "Plusieurs lignes sont sélectionnées.", @@ -2118,12 +2409,37 @@ "SSE.Views.SortDialog.textZA": "De Z à A", "SSE.Views.SortDialog.txtInvalidRange": "Plage de cellules invalide.", "SSE.Views.SortDialog.txtTitle": "Trier", + "SSE.Views.SortFilterDialog.textAsc": "Ordre croissant (A à Z)", + "SSE.Views.SortFilterDialog.textDesc": "Ordre décroissant (Z à A)", + "SSE.Views.SortFilterDialog.txtTitle": "Trier", "SSE.Views.SortOptionsDialog.textCase": "Sensible à la casse", "SSE.Views.SortOptionsDialog.textHeaders": "Mes données ont des en-têtes", "SSE.Views.SortOptionsDialog.textLeftRight": "Trier de la gauche vers la droite", "SSE.Views.SortOptionsDialog.textOrientation": "Orientation", "SSE.Views.SortOptionsDialog.textTitle": "Options de tri", "SSE.Views.SortOptionsDialog.textTopBottom": "Trier du haut vers le bas", + "SSE.Views.SpecialPasteDialog.textAdd": "Nouveau", + "SSE.Views.SpecialPasteDialog.textAll": "Tout", + "SSE.Views.SpecialPasteDialog.textBlanks": "Ignorer les vides", + "SSE.Views.SpecialPasteDialog.textColWidth": "Largeur de colonne", + "SSE.Views.SpecialPasteDialog.textComments": "Commentaires", + "SSE.Views.SpecialPasteDialog.textDiv": "Diviser", + "SSE.Views.SpecialPasteDialog.textFFormat": "Formules et mise en forme", + "SSE.Views.SpecialPasteDialog.textFNFormat": "Formules et format des chiffres", + "SSE.Views.SpecialPasteDialog.textFormats": "Formats", + "SSE.Views.SpecialPasteDialog.textFormulas": "Formules", + "SSE.Views.SpecialPasteDialog.textFWidth": "Formules et largeur de colonnes", + "SSE.Views.SpecialPasteDialog.textMult": "Multiplier", + "SSE.Views.SpecialPasteDialog.textNone": "Rien", + "SSE.Views.SpecialPasteDialog.textOperation": "Opération", + "SSE.Views.SpecialPasteDialog.textPaste": "Coller", + "SSE.Views.SpecialPasteDialog.textSub": "soustraire", + "SSE.Views.SpecialPasteDialog.textTitle": "Collage spécial", + "SSE.Views.SpecialPasteDialog.textTranspose": "Transposer", + "SSE.Views.SpecialPasteDialog.textValues": "Valeurs", + "SSE.Views.SpecialPasteDialog.textVFormat": "Valeurs et mise en forme", + "SSE.Views.SpecialPasteDialog.textVNFormat": "Valeurs et formats des chiffres", + "SSE.Views.SpecialPasteDialog.textWBorders": "Tout sauf la bordure", "SSE.Views.Spellcheck.noSuggestions": "Aucune suggestion orthographique", "SSE.Views.Spellcheck.textChange": "Modification", "SSE.Views.Spellcheck.textChangeAll": "Changer tout", @@ -2140,13 +2456,18 @@ "SSE.Views.Statusbar.CopyDialog.textMoveBefore": "Déplacer avant la feuille", "SSE.Views.Statusbar.filteredRecordsText": "Enregistrements filtrés :{0} de {1} ", "SSE.Views.Statusbar.filteredText": "Mode de filtrage", + "SSE.Views.Statusbar.itemAverage": "Moyenne", "SSE.Views.Statusbar.itemCopy": "Copier", + "SSE.Views.Statusbar.itemCount": "Total", "SSE.Views.Statusbar.itemDelete": "Supprimer", "SSE.Views.Statusbar.itemHidden": "Masquée", "SSE.Views.Statusbar.itemHide": "Masquer", "SSE.Views.Statusbar.itemInsert": "Insérer", + "SSE.Views.Statusbar.itemMaximum": "Maximum", + "SSE.Views.Statusbar.itemMinimum": "Minimum", "SSE.Views.Statusbar.itemMove": "Déplacer", "SSE.Views.Statusbar.itemRename": "Renommer", + "SSE.Views.Statusbar.itemSum": "Somme", "SSE.Views.Statusbar.itemTabColor": "Couleur d'onglet", "SSE.Views.Statusbar.RenameDialog.errNameExists": "Une feuille de calcul avec le même nom existe déjà.", "SSE.Views.Statusbar.RenameDialog.errNameWrongChar": "Le nom de feuille ne peut pas contenir les caractères suivants : \\/*?[]:", @@ -2174,8 +2495,9 @@ "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.errorMultiCellFormula": "Formules de tableau plusieurs cellules ne sont pas autorisées dans les classeurs.", "SSE.Views.TableOptionsDialog.txtEmpty": "Ce champ est obligatoire", - "SSE.Views.TableOptionsDialog.txtFormat": "Créer un tableau", + "SSE.Views.TableOptionsDialog.txtFormat": "Nouveau tableau", "SSE.Views.TableOptionsDialog.txtInvalidRange": "ERREUR! La plage de cellules non valide", + "SSE.Views.TableOptionsDialog.txtNote": "Les en-têtes doivent rester dans la même ligne, la ligne résultant de la table doit se chevaucher avec une ligne de table originale.", "SSE.Views.TableOptionsDialog.txtTitle": "Titre", "SSE.Views.TableSettings.deleteColumnText": "Supprimer la colonne", "SSE.Views.TableSettings.deleteRowText": "Supprimer la ligne", @@ -2189,6 +2511,7 @@ "SSE.Views.TableSettings.selectDataText": "Sélectionner les données de la colonne", "SSE.Views.TableSettings.selectRowText": "Sélectionner la ligne", "SSE.Views.TableSettings.selectTableText": "Sélectionner le tableau", + "SSE.Views.TableSettings.textActions": "Actions sur le tableau", "SSE.Views.TableSettings.textAdvanced": "Afficher les paramètres avancés", "SSE.Views.TableSettings.textBanded": "Bordé", "SSE.Views.TableSettings.textColumns": "Colonnes", @@ -2203,10 +2526,13 @@ "SSE.Views.TableSettings.textIsLocked": "Cet élément est en cours de modification par un autre utilisateur.", "SSE.Views.TableSettings.textLast": "Dernier", "SSE.Views.TableSettings.textLongOperation": "Longue opération", + "SSE.Views.TableSettings.textPivot": "Insérer un tableau croisé dynamique", + "SSE.Views.TableSettings.textRemDuplicates": "Supprimer les valeurs dupliquées", "SSE.Views.TableSettings.textReservedName": "Le nom que vous essayez d'utiliser est déjà référencé dans des formules de cellules. Veuillez utiliser un autre nom.", "SSE.Views.TableSettings.textResize": "Redimensionner tableau", "SSE.Views.TableSettings.textRows": "Lignes", "SSE.Views.TableSettings.textSelectData": "Sélectionner des données", + "SSE.Views.TableSettings.textSlicer": "Isérer un segment", "SSE.Views.TableSettings.textTableName": "Nom de la tableau", "SSE.Views.TableSettings.textTemplate": "Sélectionner à partir d'un modèle", "SSE.Views.TableSettings.textTotal": "Total", @@ -2260,6 +2586,7 @@ "SSE.Views.Toolbar.capBtnAddComment": "Ajouter un commentaire", "SSE.Views.Toolbar.capBtnComment": "Commentaire", "SSE.Views.Toolbar.capBtnInsHeader": "En-tête/Pied de page", + "SSE.Views.Toolbar.capBtnInsSlicer": "Segment", "SSE.Views.Toolbar.capBtnInsSymbol": "Symbole", "SSE.Views.Toolbar.capBtnMargins": "Marges", "SSE.Views.Toolbar.capBtnPageOrient": "Orientation", @@ -2324,7 +2651,6 @@ "SSE.Views.Toolbar.textMoreFormats": "Autres formats", "SSE.Views.Toolbar.textMorePages": "Plus de pages", "SSE.Views.Toolbar.textNewColor": "Couleur personnalisée", - "Common.UI.ColorButton.textNewColor": "Couleur personnalisée", "SSE.Views.Toolbar.textNoBorders": "Pas de bordures", "SSE.Views.Toolbar.textOnePage": "Page", "SSE.Views.Toolbar.textOutBorders": "Bordures extérieures", @@ -2354,6 +2680,7 @@ "SSE.Views.Toolbar.textTop": "En haut: ", "SSE.Views.Toolbar.textTopBorders": "Bordures supérieures", "SSE.Views.Toolbar.textUnderline": "Souligné", + "SSE.Views.Toolbar.textVertical": "Texte vertical", "SSE.Views.Toolbar.textWidth": "Largeur", "SSE.Views.Toolbar.textZoom": "Zoom", "SSE.Views.Toolbar.tipAlignBottom": "Aligner en bas", @@ -2394,6 +2721,7 @@ "SSE.Views.Toolbar.tipInsertImage": "Insérer une image", "SSE.Views.Toolbar.tipInsertOpt": "Insérer les cellules", "SSE.Views.Toolbar.tipInsertShape": "Insérer une forme automatique", + "SSE.Views.Toolbar.tipInsertSlicer": "Isérer un segment", "SSE.Views.Toolbar.tipInsertSymbol": "Insérer un symbole", "SSE.Views.Toolbar.tipInsertTable": "Insérer un tableau", "SSE.Views.Toolbar.tipInsertText": "Insérez zone de texte", @@ -2488,8 +2816,39 @@ "SSE.Views.Toolbar.txtYen": "¥ Yen", "SSE.Views.Top10FilterDialog.textType": "Afficher", "SSE.Views.Top10FilterDialog.txtBottom": "En bas", + "SSE.Views.Top10FilterDialog.txtBy": "par", "SSE.Views.Top10FilterDialog.txtItems": "Element", "SSE.Views.Top10FilterDialog.txtPercent": "Pour cent", + "SSE.Views.Top10FilterDialog.txtSum": "Somme", "SSE.Views.Top10FilterDialog.txtTitle": "Les 10 premiers de filtre automatique", - "SSE.Views.Top10FilterDialog.txtTop": "En haut" + "SSE.Views.Top10FilterDialog.txtTop": "En haut", + "SSE.Views.Top10FilterDialog.txtValueTitle": "Le top 10 filtre", + "SSE.Views.ValueFieldSettingsDialog.textTitle": "Paramètres du champ de valeur", + "SSE.Views.ValueFieldSettingsDialog.txtAverage": "Moyenne", + "SSE.Views.ValueFieldSettingsDialog.txtBaseField": "Champ de base", + "SSE.Views.ValueFieldSettingsDialog.txtBaseItem": "élément de base", + "SSE.Views.ValueFieldSettingsDialog.txtByField": "%1 de %2", + "SSE.Views.ValueFieldSettingsDialog.txtCount": "Total", + "SSE.Views.ValueFieldSettingsDialog.txtCountNums": "Chiffres", + "SSE.Views.ValueFieldSettingsDialog.txtCustomName": "Nom", + "SSE.Views.ValueFieldSettingsDialog.txtDifference": "Différence par rapport", + "SSE.Views.ValueFieldSettingsDialog.txtIndex": "Index", + "SSE.Views.ValueFieldSettingsDialog.txtMax": "Max", + "SSE.Views.ValueFieldSettingsDialog.txtMin": "Min", + "SSE.Views.ValueFieldSettingsDialog.txtNormal": "Pas de calculs", + "SSE.Views.ValueFieldSettingsDialog.txtPercent": "Pourcentage de", + "SSE.Views.ValueFieldSettingsDialog.txtPercentDiff": "Différence de pourcentage par rapport à", + "SSE.Views.ValueFieldSettingsDialog.txtPercentOfCol": "Pourcentage de colonnes", + "SSE.Views.ValueFieldSettingsDialog.txtPercentOfRow": "Pourcentage du total", + "SSE.Views.ValueFieldSettingsDialog.txtPercentOfTotal": "Pourcentage de ligne", + "SSE.Views.ValueFieldSettingsDialog.txtProduct": "Produit", + "SSE.Views.ValueFieldSettingsDialog.txtRunTotal": "Résultat cumulé par", + "SSE.Views.ValueFieldSettingsDialog.txtShowAs": "Afficher les valeurs comme", + "SSE.Views.ValueFieldSettingsDialog.txtSourceName": "Nom de la source :", + "SSE.Views.ValueFieldSettingsDialog.txtStdDev": "Écartype", + "SSE.Views.ValueFieldSettingsDialog.txtStdDevp": "StdDevp", + "SSE.Views.ValueFieldSettingsDialog.txtSum": "Somme", + "SSE.Views.ValueFieldSettingsDialog.txtSummarize": "Résumer les valeurs du champs par", + "SSE.Views.ValueFieldSettingsDialog.txtVar": "Var", + "SSE.Views.ValueFieldSettingsDialog.txtVarp": "Varp" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/it.json b/apps/spreadsheeteditor/main/locale/it.json index 4d59abce4..78104ffb3 100644 --- a/apps/spreadsheeteditor/main/locale/it.json +++ b/apps/spreadsheeteditor/main/locale/it.json @@ -512,13 +512,13 @@ "SSE.Controllers.Main.errorLockedWorksheetRename": "Il foglio non può essere rinominato al momento in quanto viene rinominato da un altro utente.", "SSE.Controllers.Main.errorMaxPoints": "Il numero massimo di punti in serie per grafico è di 4096.", "SSE.Controllers.Main.errorMoveRange": "Impossibile modificare parte di una cella unita", + "SSE.Controllers.Main.errorMoveSlicerError": "I filtri dei dati della tabella non possono essere copiati da una cartella di lavoro a un'altra.
          Riprova selezionando l'intera tabella e i filtri dei dati.", "SSE.Controllers.Main.errorMultiCellFormula": "Le formule di matrice multi-cella non sono consentite nelle tabelle.", "SSE.Controllers.Main.errorNoDataToParse": "Nessun dato selezionato per l'analisi.", "SSE.Controllers.Main.errorOpenWarning": "La lunghezza di una delle formule nel file ha superato
          il numero consentito di caratteri ed è stato rimossa.", "SSE.Controllers.Main.errorOperandExpected": "La sintassi per la funzione inserita non è corretta. Controlla se hai dimenticato una delle parentesi - '(' oppure ')'.", "SSE.Controllers.Main.errorPasteMaxRange": "l'area di copia-incolla non coincide.
          Selezionare un'area con le stesse dimensioni o fare click sulla prima cella in una riga per incollare le celle copiate.", "SSE.Controllers.Main.errorPasteSlicerError": "I filtri dei dati della tabella non possono essere copiati da una cartella di lavoro a un'altra.", - "SSE.Controllers.Main.errorMoveSlicerError": "I filtri dei dati della tabella non possono essere copiati da una cartella di lavoro a un'altra.
          Riprova selezionando l'intera tabella e i filtri dei dati.", "SSE.Controllers.Main.errorPivotOverlap": "Un report di tabella pivot non può sovrapporsi a una tabella.", "SSE.Controllers.Main.errorPrintMaxPagesCount": "Purtroppo non è possibile stampare più di 1500 pagine alla volta con la versione attuale del programma.
          Questa limitazione sarà rimossa nelle prossime versioni del programma.", "SSE.Controllers.Main.errorProcessSaveResult": "Salvataggio non riuscito", @@ -574,7 +574,7 @@ "SSE.Controllers.Main.textHasMacros": "Il file contiene macro automatiche.
          Vuoi eseguire le macro?", "SSE.Controllers.Main.textLoadingDocument": "Caricamento del foglio di calcolo", "SSE.Controllers.Main.textNo": "No", - "SSE.Controllers.Main.textNoLicenseTitle": "%1 limite connessione", + "SSE.Controllers.Main.textNoLicenseTitle": "Limite di licenza raggiunto", "SSE.Controllers.Main.textPaidFeature": "Funzionalità a pagamento", "SSE.Controllers.Main.textPleaseWait": "L'operazione può richiedere più tempo. Per favore, attendi...", "SSE.Controllers.Main.textRecalcFormulas": "Calcolo delle formule in corso...", @@ -826,8 +826,8 @@ "SSE.Controllers.Main.waitText": "Per favore, attendi...", "SSE.Controllers.Main.warnBrowserIE9": "L'applicazione è poco compatibile con IE9. Usa IE10 o più recente", "SSE.Controllers.Main.warnBrowserZoom": "Le impostazioni correnti di zoom del tuo browser non sono completamente supportate. Per favore, ritorna allo zoom predefinito premendo Ctrl+0.", - "SSE.Controllers.Main.warnLicenseExp": "La tua licenza è scaduta.
          Si prega di aggiornare la licenza e ricaricare la pagina.", "SSE.Controllers.Main.warnLicenseExceeded": "Hai raggiunto il limite per le connessioni simultanee agli editor %1. Questo documento verrà aperto in sola lettura.
          Contatta l’amministratore per saperne di più.", + "SSE.Controllers.Main.warnLicenseExp": "La tua licenza è scaduta.
          Si prega di aggiornare la licenza e ricaricare la pagina.", "SSE.Controllers.Main.warnLicenseUsersExceeded": "Hai raggiunto il limite per gli utenti con accesso agli editor %1. Contatta l’amministratore per saperne di più.", "SSE.Controllers.Main.warnNoLicense": "Hai raggiunto il limite per le connessioni simultanee agli editor %1. Questo documento verrà aperto in sola lettura.
          Contatta il team di vendita di %1 per i termini di aggiornamento personali.", "SSE.Controllers.Main.warnNoLicenseUsers": "Hai raggiunto il limite per gli utenti con accesso agli editor %1. Contatta il team di vendita di %1 per i termini di aggiornamento personali.", @@ -2814,6 +2814,8 @@ "SSE.Views.Toolbar.txtTime": "Ora", "SSE.Views.Toolbar.txtUnmerge": "Dividi celle", "SSE.Views.Toolbar.txtYen": "¥ Yen", + "SSE.Views.Toolbar.capBtnPrintTitles": "Stampa titoli", + "SSE.Views.Toolbar.tipPrintTitles": "Stampa titoli", "SSE.Views.Top10FilterDialog.textType": "Visualizza", "SSE.Views.Top10FilterDialog.txtBottom": "In basso", "SSE.Views.Top10FilterDialog.txtBy": "di", diff --git a/apps/spreadsheeteditor/main/locale/ja.json b/apps/spreadsheeteditor/main/locale/ja.json index 6235841ef..6a6b6bd2c 100644 --- a/apps/spreadsheeteditor/main/locale/ja.json +++ b/apps/spreadsheeteditor/main/locale/ja.json @@ -78,6 +78,7 @@ "Common.Views.Header.textAdvSettings": "詳細設定", "Common.Views.Header.textBack": "文書URLを開く", "Common.Views.Header.tipDownload": "ファイルをダウンロード", + "Common.Views.Header.tipGoEdit": "このファイルを編集する", "Common.Views.Header.tipPrint": "印刷", "Common.Views.Header.tipRedo": "やり直し", "Common.Views.Header.tipSave": "上書き保存", @@ -87,12 +88,15 @@ "Common.Views.ImageFromUrlDialog.txtEmpty": "このフィールドは必須項目です", "Common.Views.ImageFromUrlDialog.txtNotUrl": "このフィールドは「http://www.example.com」の形式のURLである必要があります。", "Common.Views.ListSettingsDialog.txtColor": "色", + "Common.Views.ListSettingsDialog.txtSymbol": "記号", "Common.Views.OpenDialog.closeButtonText": "ファイルを閉じる", "Common.Views.OpenDialog.txtColon": "コロン", "Common.Views.OpenDialog.txtComma": "カンマ", "Common.Views.OpenDialog.txtDelimiter": "区切り記号", "Common.Views.OpenDialog.txtEncoding": "エンコーディング", "Common.Views.OpenDialog.txtOther": "その他", + "Common.Views.OpenDialog.txtProtected": "パスワードを入力してファイルを開くと、ファイルの既存のパスワードがリセットされます。", + "Common.Views.OpenDialog.txtSemicolon": "セミコロン", "Common.Views.OpenDialog.txtSpace": "スペース", "Common.Views.OpenDialog.txtTab": "タブ", "Common.Views.OpenDialog.txtTitle": "%1オプションの選択", @@ -104,9 +108,11 @@ "Common.Views.Protection.hintSignature": "デジタル署名かデジタル署名行を追加", "Common.Views.Protection.txtAddPwd": "パスワードの追加", "Common.Views.Protection.txtChangePwd": "パスワードを変更する", + "Common.Views.Protection.txtDeletePwd": "パスワードを削除する", "Common.Views.Protection.txtInvisibleSignature": "デジタル署名を追加", "Common.Views.RenameDialog.textName": "ファイル名", "Common.Views.ReviewChanges.tipAcceptCurrent": "今の変更を反映する", + "Common.Views.ReviewChanges.tipCommentRemCurrent": "こののコメントを削除する", "Common.Views.ReviewChanges.tipReview": "変更履歴", "Common.Views.ReviewChanges.txtAccept": "同意", "Common.Views.ReviewChanges.txtAcceptAll": "すべての変更を反映する", @@ -114,6 +120,8 @@ "Common.Views.ReviewChanges.txtAcceptCurrent": "今の変更を反映する", "Common.Views.ReviewChanges.txtChat": "チャット", "Common.Views.ReviewChanges.txtClose": "閉じる", + "Common.Views.ReviewChanges.txtCommentRemCurrent": "こののコメントを削除する", + "Common.Views.ReviewChanges.txtCommentRemMyCurrent": "私の現在のコメントを削除する", "Common.Views.ReviewChanges.txtTurnon": "変更履歴", "Common.Views.ReviewChanges.txtView": "表示モード", "Common.Views.ReviewPopover.textAdd": "追加", @@ -129,6 +137,8 @@ "Common.Views.SignSettingsDialog.textInfoEmail": "メール", "Common.Views.SignSettingsDialog.textShowDate": "署名欄に署名日を表示する", "Common.Views.SymbolTableDialog.textCharacter": "文字", + "Common.Views.SymbolTableDialog.textSymbols": "記号と特殊文字", + "Common.Views.SymbolTableDialog.textTitle": "記号", "SSE.Controllers.DocumentHolder.centerText": "中央揃え", "SSE.Controllers.DocumentHolder.deleteColumnText": "列の削除", "SSE.Controllers.DocumentHolder.deleteText": "削除", @@ -136,6 +146,7 @@ "SSE.Controllers.DocumentHolder.insertText": "挿入", "SSE.Controllers.DocumentHolder.leftText": "左", "SSE.Controllers.DocumentHolder.notcriticalErrorTitle": "警告", + "SSE.Controllers.DocumentHolder.rightText": "右", "SSE.Controllers.DocumentHolder.textChangeColumnWidth": "列の幅{0}記号({1}ピクセル)", "SSE.Controllers.DocumentHolder.textChangeRowHeight": "行の高さ{0}ポイント({1}ピクセル)", "SSE.Controllers.DocumentHolder.textCtrlClick": "リンクをクリックしてCTRLを押してください。 ", @@ -152,6 +163,7 @@ "SSE.Controllers.DocumentHolder.txtAddRight": "右罫線の追加", "SSE.Controllers.DocumentHolder.txtAddTop": "上罫線の追加", "SSE.Controllers.DocumentHolder.txtAddVer": "縦線の追加", + "SSE.Controllers.DocumentHolder.txtAll": "すべて", "SSE.Controllers.DocumentHolder.txtAnd": "と", "SSE.Controllers.DocumentHolder.txtBegins": "で始まる", "SSE.Controllers.DocumentHolder.txtBelowAve": "平均より下​​", @@ -166,6 +178,7 @@ "SSE.Controllers.DocumentHolder.txtLess": "次の値より小さい", "SSE.Controllers.DocumentHolder.txtLessEquals": "次の値以下", "SSE.Controllers.DocumentHolder.txtOverbar": "テキストの上にバー", + "SSE.Controllers.DocumentHolder.txtPastePicture": "画像", "SSE.Controllers.DocumentHolder.txtRowHeight": "行の高さ", "SSE.Controllers.DocumentHolder.txtTop": "上", "SSE.Controllers.DocumentHolder.txtUnderbar": "テキストの下にバー", @@ -274,6 +287,7 @@ "SSE.Controllers.Main.textYes": "はい", "SSE.Controllers.Main.titleLicenseExp": "ライセンス期限を過ぎました", "SSE.Controllers.Main.titleRecalcFormulas": "計算中...", + "SSE.Controllers.Main.txtAll": "すべて", "SSE.Controllers.Main.txtArt": "あなたのテキストはここです。", "SSE.Controllers.Main.txtBasicShapes": "基本図形", "SSE.Controllers.Main.txtButtons": "ボタン", @@ -337,6 +351,7 @@ "SSE.Controllers.Toolbar.textFraction": "分数", "SSE.Controllers.Toolbar.textInsert": "挿入", "SSE.Controllers.Toolbar.textPivot": "ピボットテーブル", + "SSE.Controllers.Toolbar.textSymbols": "記号と特殊文字", "SSE.Controllers.Toolbar.textWarning": "警告", "SSE.Controllers.Toolbar.txtAccent_Bar": "バー", "SSE.Controllers.Toolbar.txtAccent_Check": "チェック", @@ -385,6 +400,7 @@ "SSE.Controllers.Toolbar.txtSymbol_less": "次の値より小さい", "SSE.Controllers.Toolbar.txtSymbol_uparrow": "上矢印", "SSE.Controllers.Toolbar.warnMergeLostData": "マージされたセルに左上のセルからのデータのみが残ります。
          続行してもよろしいです?", + "SSE.Views.AdvancedSeparatorDialog.textTitle": "詳細設定", "SSE.Views.AutoFilterDialog.btnCustomFilter": "ユーザー設定フィルター", "SSE.Views.AutoFilterDialog.textAddSelection": "現在の選択範囲をフィルターに追加する", "SSE.Views.AutoFilterDialog.textEmptyItem": "{空白セル}", @@ -433,6 +449,8 @@ "SSE.Views.CellSettings.textColor": "色で塗りつぶし", "SSE.Views.CellSettings.textDirection": "方向", "SSE.Views.CellSettings.textFill": "塗りつぶし", + "SSE.Views.CellSettings.textGradientFill": "グラデーション塗りつぶし", + "SSE.Views.CellSettings.textNoFill": "塗りつぶしなし", "SSE.Views.ChartSettings.strSparkColor": "色", "SSE.Views.ChartSettings.strTemplate": "テンプレート", "SSE.Views.ChartSettings.textAdvanced": "詳細設定の表示", @@ -579,7 +597,7 @@ "SSE.Views.DocumentHolder.direct270Text": "270度回転", "SSE.Views.DocumentHolder.direct90Text": "90度回転", "SSE.Views.DocumentHolder.directHText": "水平", - "SSE.Views.DocumentHolder.directionText": "文字の方向", + "SSE.Views.DocumentHolder.directionText": "文字列の方向", "SSE.Views.DocumentHolder.editChartText": "データの編集", "SSE.Views.DocumentHolder.editHyperlinkText": "ハイパーリンクの編集", "SSE.Views.DocumentHolder.insertColumnLeftText": "左に列の挿入", @@ -700,6 +718,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocale": "数式の言語", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocaleEx": "例えば:合計;最小;最大;カウント", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strLiveComment": "テキストコメントの表示をターンにします。", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strMacrosSettings": "マクロの設定", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettings": "地域の設定", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettingsEx": "例えば:", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strStrict": "高レベル", @@ -713,6 +732,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.textAutoSave": "自動保存", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textDisabled": "無効", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textMinute": "1 分ごと", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCacheMode": "既定のキャッシュ モード", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCm": "センチ", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtDe": "ドイツ語", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEn": "英吾", @@ -728,6 +748,7 @@ "SSE.Views.FileMenuPanels.Settings.txtGeneral": "全般", "SSE.Views.FileMenuPanels.Settings.txtPageSettings": "ページの設定", "SSE.Views.FormatSettingsDialog.textCategory": "カテゴリー", + "SSE.Views.FormatSettingsDialog.textSymbols": "記号と特殊文字", "SSE.Views.FormatSettingsDialog.txtCurrency": "通貨", "SSE.Views.FormatSettingsDialog.txtCustom": "カスタム", "SSE.Views.FormatSettingsDialog.txtDate": "日付", @@ -848,6 +869,7 @@ "SSE.Views.NameManagerDlg.tipIsLocked": "この要素が別のユーザーによって編集されています。", "SSE.Views.NameManagerDlg.txtTitle": "名前の管理", "SSE.Views.PageMarginsDialog.textLeft": "左", + "SSE.Views.PageMarginsDialog.textTitle": "余白", "SSE.Views.PageMarginsDialog.textTop": "上", "SSE.Views.ParagraphSettings.strLineHeight": "行間", "SSE.Views.ParagraphSettings.strParagraphSpacing": "段落の間隔", @@ -923,6 +945,7 @@ "SSE.Views.PrintSettings.textSettings": "シートの設定", "SSE.Views.PrintSettings.textShowDetails": "詳細の表示", "SSE.Views.PrintSettings.textTitle": "設定の印刷", + "SSE.Views.PrintSettings.textTitlePDF": "PDFの設定", "SSE.Views.RightMenu.txtCellSettings": "セル設定", "SSE.Views.RightMenu.txtChartSettings": "グラフの設定", "SSE.Views.RightMenu.txtImageSettings": "画像の設定", @@ -1008,6 +1031,7 @@ "SSE.Views.ShapeSettingsAdvanced.textWeightArrows": "太さ&矢印", "SSE.Views.ShapeSettingsAdvanced.textWidth": "幅", "SSE.Views.SignatureSettings.notcriticalErrorTitle": "警告", + "SSE.Views.SlicerSettingsAdvanced.strReferences": "参考資料", "SSE.Views.SortDialog.textAuto": "自動", "SSE.Views.SortDialog.textAZ": "AからZ", "SSE.Views.SortDialog.textBelow": "下", @@ -1016,6 +1040,7 @@ "SSE.Views.SortDialog.textLeft": "左", "SSE.Views.SortDialog.textTop": "上", "SSE.Views.SortOptionsDialog.textCase": "大文字と小文字の区別する", + "SSE.Views.SortOptionsDialog.textOrientation": "印刷の向き", "SSE.Views.SpecialPasteDialog.textAdd": "追加", "SSE.Views.SpecialPasteDialog.textAll": "すべて", "SSE.Views.SpecialPasteDialog.textComments": "コメント", @@ -1134,9 +1159,13 @@ "SSE.Views.Toolbar.capBtnAddComment": "コメントの追加", "SSE.Views.Toolbar.capBtnComment": "コメント", "SSE.Views.Toolbar.capBtnInsHeader": "ヘッダー/フッター", + "SSE.Views.Toolbar.capBtnInsSymbol": "記号", + "SSE.Views.Toolbar.capBtnMargins": "余白", + "SSE.Views.Toolbar.capBtnPageOrient": "印刷の向き", "SSE.Views.Toolbar.capImgForward": "前面へ移動", "SSE.Views.Toolbar.capImgGroup": "グループ化", "SSE.Views.Toolbar.capInsertChart": "グラフ", + "SSE.Views.Toolbar.capInsertHyperlink": "ハイパーリンク", "SSE.Views.Toolbar.capInsertImage": "画像", "SSE.Views.Toolbar.capInsertShape": "図形", "SSE.Views.Toolbar.capInsertTable": "表", @@ -1179,6 +1208,7 @@ "SSE.Views.Toolbar.textNewColor": "ユーザー設定の色の追加", "SSE.Views.Toolbar.textNoBorders": "枠線なし", "SSE.Views.Toolbar.textOutBorders": "外枠", + "SSE.Views.Toolbar.textPageMarginsCustom": "ユーザー設定の余白", "SSE.Views.Toolbar.textPrint": "印刷", "SSE.Views.Toolbar.textPrintOptions": "設定の印刷", "SSE.Views.Toolbar.textRightBorders": "右の罫線", @@ -1234,8 +1264,11 @@ "SSE.Views.Toolbar.tipInsertShape": "オートシェイプの挿入", "SSE.Views.Toolbar.tipInsertTable": "テーブルの挿入", "SSE.Views.Toolbar.tipInsertText": "テキストの挿入", + "SSE.Views.Toolbar.tipInsertTextart": "ワードアートの挿入", "SSE.Views.Toolbar.tipMerge": "マージ", "SSE.Views.Toolbar.tipNumFormat": "数の書式", + "SSE.Views.Toolbar.tipPageMargins": "余白", + "SSE.Views.Toolbar.tipPageOrient": "印刷の向き", "SSE.Views.Toolbar.tipPaste": "貼り付け", "SSE.Views.Toolbar.tipPrColor": "背景色", "SSE.Views.Toolbar.tipPrint": "印刷", diff --git a/apps/spreadsheeteditor/main/locale/ko.json b/apps/spreadsheeteditor/main/locale/ko.json index b97578e51..53a24da2b 100644 --- a/apps/spreadsheeteditor/main/locale/ko.json +++ b/apps/spreadsheeteditor/main/locale/ko.json @@ -2,6 +2,9 @@ "cancelButtonText": "취소", "Common.Controllers.Chat.notcriticalErrorTitle": "경고", "Common.Controllers.Chat.textEnterMessage": "여기에 메시지를 입력하십시오", + "Common.define.chartData.textArea": "영역", + "Common.define.chartData.textBar": "막대", + "Common.UI.ColorButton.textNewColor": "새 맞춤 색상 추가", "Common.UI.ComboBorderSize.txtNoBorders": "테두리 없음", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "테두리 없음", "Common.UI.ComboDataView.emptyComboText": "스타일 없음", @@ -44,6 +47,8 @@ "Common.Views.About.txtPoweredBy": "Powered by", "Common.Views.About.txtTel": "tel .:", "Common.Views.About.txtVersion": "버전", + "Common.Views.AutoCorrectDialog.textBy": "~로:", + "Common.Views.AutoCorrectDialog.textTitle": "자동 수정", "Common.Views.Chat.textSend": "보내기", "Common.Views.Comments.textAdd": "추가", "Common.Views.Comments.textAddComment": "덧글 추가", @@ -93,7 +98,11 @@ "Common.Views.ImageFromUrlDialog.textUrl": "이미지 URL 붙여 넣기 :", "Common.Views.ImageFromUrlDialog.txtEmpty": "이 입력란은 필수 항목", "Common.Views.ImageFromUrlDialog.txtNotUrl": "이 필드는 \"http://www.example.com\"형식의 URL이어야합니다.", + "Common.Views.ListSettingsDialog.textBulleted": "단추", + "Common.Views.ListSettingsDialog.txtBullet": "단추", + "Common.Views.ListSettingsDialog.txtOfText": "전체의 %", "Common.Views.OpenDialog.closeButtonText": "파일 닫기", + "Common.Views.OpenDialog.txtAdvanced": "고급", "Common.Views.OpenDialog.txtColon": "콜론", "Common.Views.OpenDialog.txtComma": "쉼표", "Common.Views.OpenDialog.txtDelimiter": "구분 기호", @@ -170,6 +179,11 @@ "Common.Views.ReviewChanges.txtSpelling": "맞춤법 검사", "Common.Views.ReviewChanges.txtTurnon": "변경 내용 추적", "Common.Views.ReviewChanges.txtView": "디스플레이 모드", + "Common.Views.ReviewPopover.textAdd": "추가", + "Common.Views.ReviewPopover.textAddReply": "답장 추가", + "Common.Views.ReviewPopover.textCancel": "취소", + "Common.Views.ReviewPopover.textMention": "+이 내용은 이 문서에 접근할 시 이메일을 통해 전해 질 것입니다.", + "Common.Views.ReviewPopover.textMentionNotify": "+이 내용은 이메일을 통해 사용자에게 알려 줄 것 입니다.", "Common.Views.SignDialog.textBold": "볼드체", "Common.Views.SignDialog.textCertificate": "인증", "Common.Views.SignDialog.textChange": "변경", @@ -215,6 +229,7 @@ "SSE.Controllers.DocumentHolder.textInsertTop": "Insert Top", "SSE.Controllers.DocumentHolder.textSym": "sym", "SSE.Controllers.DocumentHolder.tipIsLocked": "이 요소는 다른 사용자가 편집하고 있습니다.", + "SSE.Controllers.DocumentHolder.txtAboveAve": "평균 이상", "SSE.Controllers.DocumentHolder.txtAddBottom": "아래쪽 테두리 추가", "SSE.Controllers.DocumentHolder.txtAddFractionBar": "분수 막대 추가", "SSE.Controllers.DocumentHolder.txtAddHor": "가로선 추가", @@ -225,6 +240,11 @@ "SSE.Controllers.DocumentHolder.txtAddTop": "위쪽 테두리 추가", "SSE.Controllers.DocumentHolder.txtAddVer": "세로선 추가", "SSE.Controllers.DocumentHolder.txtAlignToChar": "문자에 정렬", + "SSE.Controllers.DocumentHolder.txtAll": "(전체)", + "SSE.Controllers.DocumentHolder.txtAnd": "그리고", + "SSE.Controllers.DocumentHolder.txtBegins": "~와 함께 시작하다.\n~로 시작하다", + "SSE.Controllers.DocumentHolder.txtBelowAve": "평균 이하", + "SSE.Controllers.DocumentHolder.txtBlanks": "(빈칸들)", "SSE.Controllers.DocumentHolder.txtBorderProps": "테두리 속성", "SSE.Controllers.DocumentHolder.txtBottom": "Bottom", "SSE.Controllers.DocumentHolder.txtColumnAlign": "열 정렬", @@ -238,6 +258,7 @@ "SSE.Controllers.DocumentHolder.txtDeleteRadical": "래디 칼 삭제", "SSE.Controllers.DocumentHolder.txtExpand": "확장 및 정렬", "SSE.Controllers.DocumentHolder.txtExpandSort": "선택 영역 옆의 데이터는 정렬되지 않습니다. 인접한 데이터를 포함하도록 선택 영역을 확장 하시겠습니까, 아니면 현재 선택된 셀만 정렬할까요?", + "SSE.Controllers.DocumentHolder.txtFilterBottom": "바닥", "SSE.Controllers.DocumentHolder.txtFractionLinear": "선형 분수로 변경", "SSE.Controllers.DocumentHolder.txtFractionSkewed": "기울어 진 분수로 변경", "SSE.Controllers.DocumentHolder.txtFractionStacked": "누적 분율로 변경", @@ -312,6 +333,8 @@ "SSE.Controllers.DocumentHolder.txtUnderbar": "텍스트 아래에 바", "SSE.Controllers.DocumentHolder.txtUndoExpansion": "테이블 자동확장 하지 않기", "SSE.Controllers.DocumentHolder.txtWidth": "너비", + "SSE.Controllers.FormulaDialog.sCategoryAll": "모든", + "SSE.Controllers.FormulaDialog.sCategoryLast10": "지난 10가지 되살리기 목록", "SSE.Controllers.LeftMenu.newDocumentTitle": "이름없는 스프레드 시트", "SSE.Controllers.LeftMenu.textByColumns": "열 기준", "SSE.Controllers.LeftMenu.textByRows": "행 기준", @@ -336,13 +359,14 @@ "SSE.Controllers.Main.downloadErrorText": "다운로드하지 못했습니다.", "SSE.Controllers.Main.downloadTextText": "스프레드 시트 다운로드 중 ...", "SSE.Controllers.Main.downloadTitleText": "스프레드 시트 다운로드 중", - "SSE.Controllers.Main.errorAccessDeny": "권한이없는 작업을 수행하려고합니다.
          Document Server 관리자에게 문의하십시오.", + "SSE.Controllers.Main.errorAccessDeny": "권한이없는 작업을 수행하려고합니다. \n문서 서버 관리자에게 보다 자세한 내용을 안내 받으시기 바랍니다.", "SSE.Controllers.Main.errorArgsRange": "입력 된 수식에 오류가 있습니다.
          잘못된 인수 범위가 사용되었습니다.", "SSE.Controllers.Main.errorAutoFilterChange": "작업은 워크 시트의 표에서 셀을 이동하려고 시도하므로 허용되지 않습니다.", "SSE.Controllers.Main.errorAutoFilterChangeFormatTable": "테이블의 일부를 이동할 수 없으므로 선택한 셀에 대해 작업을 수행 할 수 없습니다.
          전체 데이터를 이동하여 다시 시도하도록 다른 데이터 범위를 선택하십시오.", "SSE.Controllers.Main.errorAutoFilterDataRange": "선택한 셀 범위에서 작업을 수행 할 수 없습니다.
          기존 데이터 범위와 다른 데이터 범위를 선택하고 다시 시도하십시오.", "SSE.Controllers.Main.errorAutoFilterHiddenRange": "영역에 필터링 된 셀이 포함되어있어 작업을 수행 할 수 없습니다.
          필터링 된 요소를 숨김 해제하고 다시 시도하십시오.", "SSE.Controllers.Main.errorBadImageUrl": "이미지 URL이 잘못되었습니다.", + "SSE.Controllers.Main.errorCannotUngroup": "그룹 지정 취소가 되지 않습니다. 특정 열 또는 줄을 지정해서 그룹 지정을 하시기 바랍니다.", "SSE.Controllers.Main.errorCoAuthoringDisconnect": "서버 연결이 끊어졌습니다. 문서를 지금 편집 할 수 없습니다.", "SSE.Controllers.Main.errorConnectToServer": "문서를 저장할 수 없습니다. 연결 설정을 확인하거나 관리자에게 문의하십시오.
          '확인'버튼을 클릭하면 문서를 다운로드하라는 메시지가 나타납니다.", "SSE.Controllers.Main.errorCopyMultiselectArea": "이 명령은 여러 선택 항목과 함께 사용할 수 없습니다.
          단일 범위를 선택하고 다시 시도하십시오.", @@ -352,6 +376,8 @@ "SSE.Controllers.Main.errorDatabaseConnection": "외부 오류.
          데이터베이스 연결 오류입니다. 오류가 계속 발생하면 지원 담당자에게 문의하십시오.", "SSE.Controllers.Main.errorDataRange": "잘못된 데이터 범위입니다.", "SSE.Controllers.Main.errorDefaultMessage": "오류 코드 : % 1", + "SSE.Controllers.Main.errorEditingDownloadas": " 문서 작업 중에 알수 없는 장애가 발생했습니다.
          \"다른 이름으로 다운로드...\"를 선택하여 파일을 현재 사용 중인 컴퓨터 하드 디스크에 저장하시기 바랍니다.", + "SSE.Controllers.Main.errorEditingSaveas": " 문서 작업 중에 알수 없는 장애가 발생하였습니다.
          \"다른 이름으로 저장...\"을 선택하여 현재 사용 중인 컴퓨터의 하드 디스크에 저장하시기 바랍니다.", "SSE.Controllers.Main.errorFilePassProtect": "문서가 암호로 보호되어 있습니다.", "SSE.Controllers.Main.errorFileRequest": "외부 오류.
          파일 요청 오류입니다. 오류가 지속될 경우 지원 담당자에게 문의하십시오.", "SSE.Controllers.Main.errorFileVKey": "외부 오류.
          잘못된 보안 키입니다. 오류가 계속 발생하면 지원 부서에 문의하십시오.", @@ -371,6 +397,7 @@ "SSE.Controllers.Main.errorOpenWarning": "파일에있는 수식 중 하나의 길이가 허용 된 문자 수를 초과하여 제거되었습니다.", "SSE.Controllers.Main.errorOperandExpected": "입력 한 함수 구문이 올바르지 않습니다. 괄호 중 하나가 누락되어 있는지 확인하십시오 ( '('또는 ')').", "SSE.Controllers.Main.errorPasteMaxRange": "복사 및 붙여 넣기 영역이 일치하지 않습니다.
          복사 된 셀을 붙여 넣으려면 동일한 크기의 영역을 선택하거나 행의 첫 번째 셀을 클릭하십시오.", + "SSE.Controllers.Main.errorPivotOverlap": "피봇 보고서가 정해진 범위를 벗어났습니다.", "SSE.Controllers.Main.errorPrintMaxPagesCount": "유감스럽게도 현재 프로그램 버전에서 한 번에 1500 페이지 이상을 인쇄 할 수 없습니다.
          이 제한 사항은 다음 릴리스에서 제거 될 예정입니다.", "SSE.Controllers.Main.errorProcessSaveResult": "저장 실패", "SSE.Controllers.Main.errorServerVersion": "편집기 버전이 업데이트되었습니다. 페이지가 다시로드되어 변경 사항이 적용됩니다.", @@ -387,7 +414,7 @@ "SSE.Controllers.Main.errorViewerDisconnect": "연결이 끊어졌습니다. 문서를 볼 수는

          하지만 연결이 복원 될 때까지 다운로드하거나 인쇄 할 수 없습니다.", "SSE.Controllers.Main.errorWrongBracketsCount": "입력 된 수식에 오류가 있습니다.
          괄호가 잘못 사용되었습니다.", "SSE.Controllers.Main.errorWrongOperator": "입력 한 수식에 오류가 있습니다. 잘못된 연산자가 사용되었습니다.
          오류를 수정하십시오.", - "SSE.Controllers.Main.leavePageText": "이 스프레드 시트에 변경 사항을 저장하지 않았습니다.이 페이지에 머물러서 '저장'을 클릭하십시오. 저장하지 않은 모든 변경 사항을 취소하려면 '이 페이지 남겨두기'를 클릭하십시오.", + "SSE.Controllers.Main.leavePageText": "이 스프레드 시트에 변경 사항을 저장하지 않았습니다.'이 페이지에 머물기\"를 누르고 '저장'으로 저장하십시오. 저장하지 않은 모든 변경 사항을 무시하려면 '이 페이지 벗어나기'를 클릭하십시오.", "SSE.Controllers.Main.loadFontsTextText": "데이터로드 중 ...", "SSE.Controllers.Main.loadFontsTitleText": "데이터로드 중", "SSE.Controllers.Main.loadFontTextText": "데이터로드 중 ...", @@ -430,9 +457,12 @@ "SSE.Controllers.Main.titleRecalcFormulas": "계산 중 ...", "SSE.Controllers.Main.titleServerVersion": "편집기가 업데이트되었습니다.", "SSE.Controllers.Main.txtAccent": "Accent", - "SSE.Controllers.Main.txtArt": "여기에 귀하의 텍스트", + "SSE.Controllers.Main.txtAll": "(전체)", + "SSE.Controllers.Main.txtArt": "여기에 귀하의 텍스트를 입력하여 주십시오", "SSE.Controllers.Main.txtBasicShapes": "기본 셰이프", + "SSE.Controllers.Main.txtBlank": "(빈칸)", "SSE.Controllers.Main.txtButtons": "Buttons", + "SSE.Controllers.Main.txtByField": "%2의 %1", "SSE.Controllers.Main.txtCallouts": "콜 아웃", "SSE.Controllers.Main.txtCharts": "차트", "SSE.Controllers.Main.txtDiagramTitle": "차트 제목", @@ -442,6 +472,27 @@ "SSE.Controllers.Main.txtMath": "수학", "SSE.Controllers.Main.txtRectangles": "Rectangles", "SSE.Controllers.Main.txtSeries": "Series", + "SSE.Controllers.Main.txtShape_actionButtonBackPrevious": "되돌리기 또는 이전 버튼", + "SSE.Controllers.Main.txtShape_actionButtonBeginning": "시작 버튼", + "SSE.Controllers.Main.txtShape_actionButtonBlank": "공백 버튼", + "SSE.Controllers.Main.txtShape_arc": "호", + "SSE.Controllers.Main.txtShape_bentArrow": "구부러진 화살", + "SSE.Controllers.Main.txtShape_bentUpArrow": "위로 구부러진 화살", + "SSE.Controllers.Main.txtShape_bevel": "사선", + "SSE.Controllers.Main.txtShape_blockArc": "닫힌 호", + "SSE.Controllers.Main.txtShape_can": "할 수 있다\n캔(음식을 담는)", + "SSE.Controllers.Main.txtShape_lineWithArrow": "화살", + "SSE.Controllers.Main.txtShape_noSmoking": "\"No\" 표시", + "SSE.Controllers.Main.txtShape_star10": "10-포인트 크기 별", + "SSE.Controllers.Main.txtShape_star12": "12-포인트 크기 별", + "SSE.Controllers.Main.txtShape_star16": "16-포인트 크기 별", + "SSE.Controllers.Main.txtShape_star24": "24-포인트 크기 별", + "SSE.Controllers.Main.txtShape_star32": "32-포인트 크기 별", + "SSE.Controllers.Main.txtShape_star4": "4-포인트 크기 별", + "SSE.Controllers.Main.txtShape_star5": "5-포인트 크기 별", + "SSE.Controllers.Main.txtShape_star6": "6-포인트 크기 별", + "SSE.Controllers.Main.txtShape_star7": "7-포인트 크기 별", + "SSE.Controllers.Main.txtShape_star8": "8-포인트 크기 별", "SSE.Controllers.Main.txtStarsRibbons": "Stars & Ribbons", "SSE.Controllers.Main.txtStyle_Bad": "Bad", "SSE.Controllers.Main.txtStyle_Calculation": "계산", @@ -463,7 +514,7 @@ "SSE.Controllers.Main.txtStyle_Percent": "Percent", "SSE.Controllers.Main.txtStyle_Title": "제목", "SSE.Controllers.Main.txtStyle_Total": "Total", - "SSE.Controllers.Main.txtStyle_Warning_Text": "경고 텍스트", + "SSE.Controllers.Main.txtStyle_Warning_Text": "경고문", "SSE.Controllers.Main.txtXAxis": "X 축", "SSE.Controllers.Main.txtYAxis": "Y 축", "SSE.Controllers.Main.unknownErrorText": "알 수없는 오류.", @@ -475,7 +526,7 @@ "SSE.Controllers.Main.uploadImageTitleText": "이미지 업로드 중", "SSE.Controllers.Main.warnBrowserIE9": "응용 프로그램의 기능이 IE9에서 부족합니다. IE10 이상을 사용하십시오.", "SSE.Controllers.Main.warnBrowserZoom": "브라우저의 현재 확대 / 축소 설정이 완전히 지원되지 않습니다. Ctrl + 0을 눌러 기본 확대 / 축소로 재설정하십시오.", - "SSE.Controllers.Main.warnLicenseExp": "귀하의 라이센스가 만료되었습니다.
          라이센스를 업데이트하고 페이지를 새로 고침하십시오.", + "SSE.Controllers.Main.warnLicenseExp": "귀하의 라이센스가 만료되었습니다.
          라이센스를 갱신하고 페이지를 새로 고침하십시오.", "SSE.Controllers.Main.warnNoLicense": "이 버전의 %1 편집자에게는 문서 서버에 대한 동시 연결에 대한 특정 제한 사항이 있습니다.
          더 많은 정보가 필요하면 현재 라이센스를 업그레이드하거나 상용 소프트웨어를 구입하십시오.", "SSE.Controllers.Main.warnNoLicenseUsers": "이 버전의 %1 편집자에게는 동시 사용자에게 특정 제한 사항이 있습니다.
          더 많은 정보가 필요하면 현재 라이센스를 업그레이드하거나 상업용 라이센스를 구입하십시오.", "SSE.Controllers.Main.warnProcessRightsChange": "파일 편집 권한이 거부되었습니다.", @@ -634,11 +685,11 @@ "SSE.Controllers.Toolbar.txtIntegralTripleCenterSubSup": "Triple Integral", "SSE.Controllers.Toolbar.txtIntegralTripleSubSup": "Triple Integral", "SSE.Controllers.Toolbar.txtInvalidRange": "오류! 셀 범위가 잘못되었습니다.", - "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_Conjunction": "쇄기꼴", + "SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSub": "쇄기꼴", + "SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSubSup": "쇄기꼴", + "SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_Sub": "쇄기꼴", + "SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_SubSup": "쇄기꼴", "SSE.Controllers.Toolbar.txtLargeOperator_CoProd": "Co-Product", "SSE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSub": "Co-Product", "SSE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup": "Co-Product", @@ -833,6 +884,7 @@ "SSE.Controllers.Viewport.textHideFBar": "수식 표시 줄 숨기기", "SSE.Controllers.Viewport.textHideGridlines": "눈금 선 숨기기", "SSE.Controllers.Viewport.textHideHeadings": "제목 숨기기", + "SSE.Views.AdvancedSeparatorDialog.textTitle": "고급 설정", "SSE.Views.AutoFilterDialog.btnCustomFilter": "사용자 정의 필터", "SSE.Views.AutoFilterDialog.textAddSelection": "현재 선택을 필터에 추가", "SSE.Views.AutoFilterDialog.textEmptyItem": "{공백}", @@ -875,6 +927,10 @@ "SSE.Views.CellRangeDialog.txtEmpty": "이 입력란은 필수 항목", "SSE.Views.CellRangeDialog.txtInvalidRange": "오류! 셀 범위가 잘못되었습니다.", "SSE.Views.CellRangeDialog.txtTitle": "데이터 범위 선택", + "SSE.Views.CellSettings.textAngle": "각도", + "SSE.Views.CellSettings.textBackColor": "배경색", + "SSE.Views.CellSettings.textBackground": "배경색", + "SSE.Views.CellSettings.textBorders": "테두리 스타일", "SSE.Views.ChartSettings.strLineWeight": "선 두께", "SSE.Views.ChartSettings.strSparkColor": "Color", "SSE.Views.ChartSettings.strTemplate": "템플릿", @@ -997,6 +1053,7 @@ "SSE.Views.ChartSettingsDlg.textShowValues": "차트 값 표시", "SSE.Views.ChartSettingsDlg.textSingle": "단일 스파크 라인", "SSE.Views.ChartSettingsDlg.textSmooth": "부드럽게", + "SSE.Views.ChartSettingsDlg.textSnap": "셀 잠그기", "SSE.Views.ChartSettingsDlg.textSparkRanges": "스파크 라인 범위", "SSE.Views.ChartSettingsDlg.textStraight": "직선", "SSE.Views.ChartSettingsDlg.textStyle": "스타일", @@ -1068,10 +1125,13 @@ "SSE.Views.DocumentHolder.strDetails": "서명 상세", "SSE.Views.DocumentHolder.strSetup": "서명 셋업", "SSE.Views.DocumentHolder.strSign": "서명", + "SSE.Views.DocumentHolder.textAlign": "정렬", + "SSE.Views.DocumentHolder.textArrange": "배치", "SSE.Views.DocumentHolder.textArrangeBack": "배경으로 보내기", "SSE.Views.DocumentHolder.textArrangeBackward": "뒤로 이동", "SSE.Views.DocumentHolder.textArrangeForward": "앞으로 이동", "SSE.Views.DocumentHolder.textArrangeFront": "포 그라운드로 가져 오기", + "SSE.Views.DocumentHolder.textAverage": "평균", "SSE.Views.DocumentHolder.textEntriesList": "드롭 다운 목록에서 선택", "SSE.Views.DocumentHolder.textFreezePanes": "창 고정", "SSE.Views.DocumentHolder.textFromFile": "파일로부터", @@ -1079,6 +1139,12 @@ "SSE.Views.DocumentHolder.textMoreFormats": "기타 형식", "SSE.Views.DocumentHolder.textNone": "없음", "SSE.Views.DocumentHolder.textReplace": "이미지 바꾸기", + "SSE.Views.DocumentHolder.textShapeAlignBottom": "아래쪽 정렬", + "SSE.Views.DocumentHolder.textShapeAlignCenter": "가운데 정렬", + "SSE.Views.DocumentHolder.textShapeAlignLeft": "왼쪽 정렬", + "SSE.Views.DocumentHolder.textShapeAlignMiddle": "중간 정렬", + "SSE.Views.DocumentHolder.textShapeAlignRight": "오른쪽 정렬", + "SSE.Views.DocumentHolder.textShapeAlignTop": "상단 정렬", "SSE.Views.DocumentHolder.textUndo": "실행 취소", "SSE.Views.DocumentHolder.textUnFreezePanes": "창 고정 취소", "SSE.Views.DocumentHolder.topCellText": "정렬 위쪽", @@ -1140,8 +1206,9 @@ "SSE.Views.DocumentHolder.txtTextAdvanced": "텍스트 고급 설정", "SSE.Views.DocumentHolder.txtTime": "시간", "SSE.Views.DocumentHolder.txtUngroup": "그룹 해제", - "SSE.Views.DocumentHolder.txtWidth": "너비", + "SSE.Views.DocumentHolder.txtWidth": "폭", "SSE.Views.DocumentHolder.vertAlignText": "Vertical Alignment", + "SSE.Views.FieldSettingsDialog.txtAverage": "평균", "SSE.Views.FileMenu.btnBackCaption": "문서로 이동", "SSE.Views.FileMenu.btnCloseMenuCaption": "메뉴 닫기", "SSE.Views.FileMenu.btnCreateNewCaption": "새로 만들기", @@ -1162,6 +1229,10 @@ "SSE.Views.FileMenuPanels.CreateNew.fromTemplateText": "템플릿에서", "SSE.Views.FileMenuPanels.CreateNew.newDescriptionText": "편집 중에 스타일을 지정하고 서식을 지정할 수있는 빈 스프레드 시트를 새로 만들거나 템플릿 중 하나를 선택하여 특정 유형의 스프레드 시트를 시작하거나 일부 스타일이 미리 적용된 목적 ", "SSE.Views.FileMenuPanels.CreateNew.newDocumentText": "새 스프레드 시트", + "SSE.Views.FileMenuPanels.DocumentInfo.okButtonText": "적용", + "SSE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "저자 추가", + "SSE.Views.FileMenuPanels.DocumentInfo.txtAddText": "문장 추가", + "SSE.Views.FileMenuPanels.DocumentInfo.txtAppName": "어플리케이션", "SSE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "작성자", "SSE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "액세스 권한 변경", "SSE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "위치", @@ -1209,6 +1280,8 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPt": "Point", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRu": "러시아어", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin": "Windows로", + "SSE.Views.FileMenuPanels.MainSpellCheckSettings.okButtonText": "적용", + "SSE.Views.FileMenuPanels.MainSpellCheckSettings.txtAutoCorrect": "자동 수정 설정...", "SSE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "경고", "SSE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "비밀번호로", "SSE.Views.FileMenuPanels.ProtectDoc.strProtect": "스프레드시트 보호", @@ -1254,6 +1327,20 @@ "SSE.Views.FormulaDialog.textGroupDescription": "기능 그룹 선택", "SSE.Views.FormulaDialog.textListDescription": "함수 선택", "SSE.Views.FormulaDialog.txtTitle": "함수 삽입", + "SSE.Views.FormulaTab.textAutomatic": "자동", + "SSE.Views.FormulaTab.textCalculateCurrentSheet": "현재 시트를 계산하다", + "SSE.Views.FormulaTab.textCalculateWorkbook": "작업 파일을 계산하다", + "SSE.Views.FormulaTab.tipCalculate": "계산하다", + "SSE.Views.FormulaTab.tipCalculateTheEntireWorkbook": "전체 작업 파일을 계산하다", + "SSE.Views.FormulaTab.txtAdditional": "추가", + "SSE.Views.FormulaTab.txtAutosum": "자동 합계", + "SSE.Views.FormulaTab.txtCalculation": "계산", + "SSE.Views.FormulaWizard.textAny": "어떤 것", + "SSE.Views.HeaderFooterDialog.textAlign": "페이지 본문 영역에 정렬", + "SSE.Views.HeaderFooterDialog.textAll": "전체 페이지", + "SSE.Views.HeaderFooterDialog.textBold": "굵은체", + "SSE.Views.HeaderFooterDialog.textCenter": "중앙", + "SSE.Views.HeaderFooterDialog.textNewColor": "새 맞춤 색상 추가", "SSE.Views.HyperlinkSettingsDialog.strDisplay": "표시", "SSE.Views.HyperlinkSettingsDialog.strLinkTo": "링크 대상", "SSE.Views.HyperlinkSettingsDialog.strRange": "Range", @@ -1284,6 +1371,8 @@ "SSE.Views.ImageSettingsAdvanced.textAltDescription": "설명", "SSE.Views.ImageSettingsAdvanced.textAltTip": "시력이나인지 장애가있는 사람들에게 읽을 수있는 시각적 객체 정보의 대체 텍스트 기반 표현으로 이미지에 어떤 정보가 있는지 더 잘 이해할 수 있도록 도와줍니다. 차트 또는 표. ", "SSE.Views.ImageSettingsAdvanced.textAltTitle": "Title", + "SSE.Views.ImageSettingsAdvanced.textAngle": "각도", + "SSE.Views.ImageSettingsAdvanced.textSnap": "셀 잠그기", "SSE.Views.ImageSettingsAdvanced.textTitle": "이미지 - 고급 설정", "SSE.Views.LeftMenu.tipAbout": "정보", "SSE.Views.LeftMenu.tipChat": "채팅", @@ -1350,6 +1439,7 @@ "SSE.Views.NameManagerDlg.textWorkbook": "통합 문서", "SSE.Views.NameManagerDlg.tipIsLocked": "이 요소는 다른 사용자가 편집하고 있습니다.", "SSE.Views.NameManagerDlg.txtTitle": "이름 관리자", + "SSE.Views.PageMarginsDialog.textBottom": "바닥", "SSE.Views.ParagraphSettings.strLineHeight": "줄 간격", "SSE.Views.ParagraphSettings.strParagraphSpacing": "단락 간격", "SSE.Views.ParagraphSettings.strSpacingAfter": "이후", @@ -1365,6 +1455,9 @@ "SSE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "이중 취소 선", "SSE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Left", "SSE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Right", + "SSE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter": "이후", + "SSE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore": "이전", + "SSE.Views.ParagraphSettingsAdvanced.strIndentsSpecialBy": "~로", "SSE.Views.ParagraphSettingsAdvanced.strParagraphFont": "글꼴", "SSE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "들여 쓰기 및 배치", "SSE.Views.ParagraphSettingsAdvanced.strSmallCaps": "작은 대문자", @@ -1376,6 +1469,7 @@ "SSE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "문자 간격", "SSE.Views.ParagraphSettingsAdvanced.textDefault": "기본 탭", "SSE.Views.ParagraphSettingsAdvanced.textEffects": "효과", + "SSE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(없음)", "SSE.Views.ParagraphSettingsAdvanced.textRemove": "제거", "SSE.Views.ParagraphSettingsAdvanced.textRemoveAll": "모두 제거", "SSE.Views.ParagraphSettingsAdvanced.textSet": "지정", @@ -1384,6 +1478,10 @@ "SSE.Views.ParagraphSettingsAdvanced.textTabPosition": "탭 위치", "SSE.Views.ParagraphSettingsAdvanced.textTabRight": "Right", "SSE.Views.ParagraphSettingsAdvanced.textTitle": "단락 - 고급 설정", + "SSE.Views.ParagraphSettingsAdvanced.txtAutoText": "자동", + "SSE.Views.PivotDigitalFilterDialog.capCondition13": "~ 사이", + "SSE.Views.PivotDigitalFilterDialog.capCondition7": "~와 함께 시작하다.\n~로 시작하다", + "SSE.Views.PivotDigitalFilterDialog.txtAnd": "그리고", "SSE.Views.PivotSettings.textAdvanced": "고급 설정 표시", "SSE.Views.PivotSettings.textColumns": "컬럼", "SSE.Views.PivotSettings.textFields": "필드 선택", @@ -1404,6 +1502,7 @@ "SSE.Views.PivotSettings.txtMoveUp": "위로 이동", "SSE.Views.PivotSettings.txtMoveValues": "값으로 이동", "SSE.Views.PivotSettings.txtRemove": "필드 삭제", + "SSE.Views.PivotSettingsAdvanced.textAlt": "대체 문장", "SSE.Views.PivotTable.capBlankRows": "빈 열", "SSE.Views.PivotTable.capGrandTotals": "종합 합계", "SSE.Views.PivotTable.capLayout": "레이아웃 리포트", @@ -1462,6 +1561,7 @@ "SSE.Views.PrintSettings.textSettings": "시트 설정", "SSE.Views.PrintSettings.textShowDetails": "세부 정보 표시", "SSE.Views.PrintSettings.textTitle": "인쇄 설정", + "SSE.Views.RightMenu.txtCellSettings": "셀 설정", "SSE.Views.RightMenu.txtChartSettings": "차트 설정", "SSE.Views.RightMenu.txtImageSettings": "이미지 설정", "SSE.Views.RightMenu.txtParagraphSettings": "텍스트 설정", @@ -1472,6 +1572,7 @@ "SSE.Views.RightMenu.txtSparklineSettings": "스파크 라인 설정", "SSE.Views.RightMenu.txtTableSettings": "표 설정", "SSE.Views.RightMenu.txtTextArtSettings": "텍스트 아트 설정", + "SSE.Views.ScaleDialog.textAuto": "자동", "SSE.Views.SetValueDialog.txtMaxText": "이 필드의 최대 값은 {0} 입니다.", "SSE.Views.SetValueDialog.txtMinText": "이 필드의 최소값은 {0} 입니다.", "SSE.Views.ShapeSettings.strBackground": "배경색", @@ -1515,14 +1616,16 @@ "SSE.Views.ShapeSettings.txtLeather": "가죽", "SSE.Views.ShapeSettings.txtNoBorders": "No Line", "SSE.Views.ShapeSettings.txtPapyrus": "파피루스", - "SSE.Views.ShapeSettings.txtWood": "Wood", + "SSE.Views.ShapeSettings.txtWood": "목재", "SSE.Views.ShapeSettingsAdvanced.strColumns": "Columns", "SSE.Views.ShapeSettingsAdvanced.strMargins": "텍스트 채우기", "SSE.Views.ShapeSettingsAdvanced.textAlt": "대체 텍스트", "SSE.Views.ShapeSettingsAdvanced.textAltDescription": "설명", "SSE.Views.ShapeSettingsAdvanced.textAltTip": "시력이나인지 장애가있는 사람들에게 읽을 수있는 시각적 개체 정보의 대체 텍스트 기반 표현으로 이미지에있는 정보를 더 잘 이해할 수 있도록 도와줍니다. 차트 또는 표. ", "SSE.Views.ShapeSettingsAdvanced.textAltTitle": "제목", + "SSE.Views.ShapeSettingsAdvanced.textAngle": "각도", "SSE.Views.ShapeSettingsAdvanced.textArrows": "화살표", + "SSE.Views.ShapeSettingsAdvanced.textAutofit": "자동 맞춤", "SSE.Views.ShapeSettingsAdvanced.textBeginSize": "크기 시작", "SSE.Views.ShapeSettingsAdvanced.textBeginStyle": "스타일 시작", "SSE.Views.ShapeSettingsAdvanced.textBevel": "Bevel", @@ -1538,15 +1641,17 @@ "SSE.Views.ShapeSettingsAdvanced.textLeft": "왼쪽", "SSE.Views.ShapeSettingsAdvanced.textLineStyle": "선 스타일", "SSE.Views.ShapeSettingsAdvanced.textMiter": "연귀", + "SSE.Views.ShapeSettingsAdvanced.textOverflow": "도형 위에 텍스트 겹치기", "SSE.Views.ShapeSettingsAdvanced.textRight": "오른쪽", "SSE.Views.ShapeSettingsAdvanced.textRound": "Round", "SSE.Views.ShapeSettingsAdvanced.textSize": "크기", + "SSE.Views.ShapeSettingsAdvanced.textSnap": "셀 잠그기", "SSE.Views.ShapeSettingsAdvanced.textSpacing": "열 사이의 간격", "SSE.Views.ShapeSettingsAdvanced.textSquare": "Square", "SSE.Views.ShapeSettingsAdvanced.textTitle": "모양 - 고급 설정", "SSE.Views.ShapeSettingsAdvanced.textTop": "Top", "SSE.Views.ShapeSettingsAdvanced.textWeightArrows": "가중치 및 화살표", - "SSE.Views.ShapeSettingsAdvanced.textWidth": "너비", + "SSE.Views.ShapeSettingsAdvanced.textWidth": "폭", "SSE.Views.SignatureSettings.notcriticalErrorTitle": "경고", "SSE.Views.SignatureSettings.strDelete": "서명 삭제", "SSE.Views.SignatureSettings.strDetails": "서명 상세", @@ -1562,12 +1667,40 @@ "SSE.Views.SignatureSettings.txtRequestedSignatures": "이 스프레드시트는 서명되어야 함.", "SSE.Views.SignatureSettings.txtSigned": "유효한 서명이 당 스프레드시트에 추가되었슴. 이 스프레드시트는 편집할 수 없도록 보호됨.", "SSE.Views.SignatureSettings.txtSignedInvalid": "스프레드시트에 몇 가지 디지털 서명이 유효하지 않거나 확인되지 않음. 스프레드시트는 편집할 수 없도록 보호됨.", + "SSE.Views.SlicerSettings.textAsc": "오름차순", + "SSE.Views.SlicerSettings.textAZ": "처음부터", + "SSE.Views.SlicerSettings.textButtons": "버튼", + "SSE.Views.SlicerSettingsAdvanced.strButtons": "버튼", + "SSE.Views.SlicerSettingsAdvanced.textAlt": "대체 텍스트", + "SSE.Views.SlicerSettingsAdvanced.textAsc": "오름차순", + "SSE.Views.SlicerSettingsAdvanced.textAZ": "처음부터", + "SSE.Views.SlicerSettingsAdvanced.textSnap": "셀 잠그기", + "SSE.Views.SortDialog.errorEmpty": "분류 기준에는 반드시 특정 행과 열을 지정해야 합니다.", + "SSE.Views.SortDialog.errorSameColumnColor": " %1이 같은 색상으로 최소한 한 번 이상 분류되었습니다.
          중복된 분류 기준을 삭제하시고 다시 시도하여 주시기 바랍니다.", + "SSE.Views.SortDialog.errorSameColumnValue": " %1이 중복된 값으로 한 번 이상 분류되었습니다.
          중복된 분류 기준을 삭제하시고 다시 한 번 더 시도하여 주시기 바랍니다.", + "SSE.Views.SortDialog.textAdd": "레벨 추가", + "SSE.Views.SortDialog.textAsc": "오름차순", + "SSE.Views.SortDialog.textAuto": "자동", + "SSE.Views.SortDialog.textAZ": "처음부터", + "SSE.Views.SortDialog.textBelow": "아래", + "SSE.Views.SortDialog.textCellColor": "셀 색상", + "SSE.Views.SortDialog.textMoreCols": "(다른 행들...)", + "SSE.Views.SortDialog.textMoreRows": "(다른 열들...)", + "SSE.Views.SortFilterDialog.textAsc": "오름차순 (자음순) ", + "SSE.Views.SortOptionsDialog.textCase": "대소문자 구별", + "SSE.Views.SpecialPasteDialog.textAdd": "추가", + "SSE.Views.SpecialPasteDialog.textAll": "모든", + "SSE.Views.SpecialPasteDialog.textWBorders": "외곽선만", + "SSE.Views.Spellcheck.textChange": "변경", + "SSE.Views.Spellcheck.textChangeAll": "전체 변경", + "SSE.Views.Spellcheck.txtAddToDictionary": "사용자 정의 사전에 추가", "SSE.Views.Statusbar.CopyDialog.itemCopyToEnd": "(끝으로 복사)", "SSE.Views.Statusbar.CopyDialog.itemMoveToEnd": "(끝으로 이동)", "SSE.Views.Statusbar.CopyDialog.textCopyBefore": "시트 이전에 복사", "SSE.Views.Statusbar.CopyDialog.textMoveBefore": "시트 이전으로 이동", "SSE.Views.Statusbar.filteredRecordsText": "{1} 개의 필터링 된 레코드 중 {0}", "SSE.Views.Statusbar.filteredText": "필터 모드", + "SSE.Views.Statusbar.itemAverage": "평균", "SSE.Views.Statusbar.itemCopy": "복사", "SSE.Views.Statusbar.itemDelete": "삭제", "SSE.Views.Statusbar.itemHidden": "숨김", @@ -1679,8 +1812,11 @@ "SSE.Views.TextArtSettings.txtLeather": "가죽", "SSE.Views.TextArtSettings.txtNoBorders": "No Line", "SSE.Views.TextArtSettings.txtPapyrus": "Papyrus", - "SSE.Views.TextArtSettings.txtWood": "Wood", + "SSE.Views.TextArtSettings.txtWood": "나무", + "SSE.Views.Toolbar.capBtnAddComment": "주석 추가", "SSE.Views.Toolbar.capBtnComment": "코멘트", + "SSE.Views.Toolbar.capImgAlign": "정렬", + "SSE.Views.Toolbar.capImgForward": "앞으로 이동", "SSE.Views.Toolbar.capInsertChart": "차트", "SSE.Views.Toolbar.capInsertEquation": "수식", "SSE.Views.Toolbar.capInsertHyperlink": "하이퍼 링크", @@ -1690,6 +1826,7 @@ "SSE.Views.Toolbar.capInsertText": "텍스트 박스", "SSE.Views.Toolbar.mniImageFromFile": "파일에서 그림", "SSE.Views.Toolbar.mniImageFromUrl": "URL에서 그림", + "SSE.Views.Toolbar.textAddPrintArea": "인쇄 영역에 추가", "SSE.Views.Toolbar.textAlignBottom": "아래쪽 정렬", "SSE.Views.Toolbar.textAlignCenter": "Align Center", "SSE.Views.Toolbar.textAlignJust": "Justified", @@ -1698,9 +1835,11 @@ "SSE.Views.Toolbar.textAlignRight": "오른쪽 정렬", "SSE.Views.Toolbar.textAlignTop": "Align Top", "SSE.Views.Toolbar.textAllBorders": "모든 테두리", + "SSE.Views.Toolbar.textAuto": "자동", "SSE.Views.Toolbar.textBold": "Bold", "SSE.Views.Toolbar.textBordersColor": "테두리 색상", "SSE.Views.Toolbar.textBordersStyle": "테두리 스타일", + "SSE.Views.Toolbar.textBottom": "바닥:", "SSE.Views.Toolbar.textBottomBorders": "Bottom Borders", "SSE.Views.Toolbar.textCenterBorders": "내부 세로 테두리", "SSE.Views.Toolbar.textClockwise": "시계 방향으로 각도", @@ -1720,7 +1859,6 @@ "SSE.Views.Toolbar.textMiddleBorders": "내부 수평 테두리", "SSE.Views.Toolbar.textMoreFormats": "기타 형식", "SSE.Views.Toolbar.textNewColor": "새 사용자 지정 색 추가", - "Common.UI.ColorButton.textNewColor": "새 사용자 지정 색 추가", "SSE.Views.Toolbar.textNoBorders": "테두리 없음", "SSE.Views.Toolbar.textOutBorders": "테두리 밖", "SSE.Views.Toolbar.textPrint": "인쇄", @@ -1766,6 +1904,7 @@ "SSE.Views.Toolbar.tipFontColor": "글꼴 색", "SSE.Views.Toolbar.tipFontName": "글꼴", "SSE.Views.Toolbar.tipFontSize": "글꼴 크기", + "SSE.Views.Toolbar.tipImgAlign": "오브젝트 정렬", "SSE.Views.Toolbar.tipIncDecimal": "10 진수 증가", "SSE.Views.Toolbar.tipIncFont": "글꼴 크기 증가", "SSE.Views.Toolbar.tipInsertChart": "차트 삽입", @@ -1785,6 +1924,7 @@ "SSE.Views.Toolbar.tipRedo": "Redo", "SSE.Views.Toolbar.tipSave": "저장", "SSE.Views.Toolbar.tipSaveCoauth": "다른 사용자가 볼 수 있도록 변경 사항을 저장하십시오.", + "SSE.Views.Toolbar.tipSendForward": "앞으로 이동", "SSE.Views.Toolbar.tipSynchronize": "다른 사용자가 문서를 변경했습니다. 변경 사항을 저장하고 업데이트를 다시로드하려면 클릭하십시오.", "SSE.Views.Toolbar.tipTextOrientation": "Orientation", "SSE.Views.Toolbar.tipUndo": "실행 취소", @@ -1859,8 +1999,13 @@ "SSE.Views.Toolbar.txtYen": "¥ Yen", "SSE.Views.Top10FilterDialog.textType": "표시", "SSE.Views.Top10FilterDialog.txtBottom": "Bottom", + "SSE.Views.Top10FilterDialog.txtBy": "~로", "SSE.Views.Top10FilterDialog.txtItems": "Item", "SSE.Views.Top10FilterDialog.txtPercent": "백분율", "SSE.Views.Top10FilterDialog.txtTitle": "Top 10 AutoFilter", - "SSE.Views.Top10FilterDialog.txtTop": "Top" + "SSE.Views.Top10FilterDialog.txtTop": "Top", + "SSE.Views.ValueFieldSettingsDialog.txtAverage": "평균", + "SSE.Views.ValueFieldSettingsDialog.txtBaseField": "기본 필드", + "SSE.Views.ValueFieldSettingsDialog.txtBaseItem": "기본 항목", + "SSE.Views.ValueFieldSettingsDialog.txtByField": "%2의 %1" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/nl.json b/apps/spreadsheeteditor/main/locale/nl.json index 7796f689a..d238c63c1 100644 --- a/apps/spreadsheeteditor/main/locale/nl.json +++ b/apps/spreadsheeteditor/main/locale/nl.json @@ -4,6 +4,7 @@ "Common.Controllers.Chat.textEnterMessage": "Voer hier uw bericht in", "Common.define.chartData.textArea": "Vlak", "Common.define.chartData.textBar": "Staaf", + "Common.define.chartData.textCharts": "Grafieken", "Common.define.chartData.textColumn": "Kolom", "Common.define.chartData.textColumnSpark": "Kolom", "Common.define.chartData.textLine": "Lijn", @@ -14,6 +15,8 @@ "Common.define.chartData.textStock": "Voorraad", "Common.define.chartData.textSurface": "Oppervlak", "Common.define.chartData.textWinLossSpark": "Winst/verlies", + "Common.Translation.warnFileLocked": "Het bestand wordt bewerkt in een andere app. U kunt doorgaan met bewerken en als kopie opslaan.", + "Common.UI.ColorButton.textNewColor": "Nieuwe aangepaste kleur toevoegen", "Common.UI.ComboBorderSize.txtNoBorders": "Geen randen", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Geen randen", "Common.UI.ComboDataView.emptyComboText": "Geen stijlen", @@ -56,6 +59,10 @@ "Common.Views.About.txtPoweredBy": "Aangedreven door", "Common.Views.About.txtTel": "Tel.:", "Common.Views.About.txtVersion": "Versie", + "Common.Views.AutoCorrectDialog.textBy": "Door:", + "Common.Views.AutoCorrectDialog.textMathCorrect": "Wiskundige autocorrectie", + "Common.Views.AutoCorrectDialog.textReplace": "Vervangen:", + "Common.Views.AutoCorrectDialog.textTitle": "Automatische spellingscontrole", "Common.Views.Chat.textSend": "Verzenden", "Common.Views.Comments.textAdd": "Toevoegen", "Common.Views.Comments.textAddComment": "Opmerking toevoegen", @@ -98,6 +105,7 @@ "Common.Views.Header.tipRedo": "Opnieuw", "Common.Views.Header.tipSave": "Opslaan", "Common.Views.Header.tipUndo": "Ongedaan maken", + "Common.Views.Header.tipUndock": "Ontkoppel in een apart venster", "Common.Views.Header.tipViewSettings": "Weergave-instellingen", "Common.Views.Header.tipViewUsers": "Gebruikers weergeven en toegangsrechten voor documenten beheren", "Common.Views.Header.txtAccessRights": "Toegangsrechten wijzigen", @@ -105,7 +113,21 @@ "Common.Views.ImageFromUrlDialog.textUrl": "URL van een afbeelding plakken:", "Common.Views.ImageFromUrlDialog.txtEmpty": "Dit veld is vereist", "Common.Views.ImageFromUrlDialog.txtNotUrl": "Dit veld moet een URL in de notatie \"http://www.voorbeeld.com\" bevatten", + "Common.Views.ListSettingsDialog.textBulleted": "Opgesomd ", + "Common.Views.ListSettingsDialog.textNumbering": "Genummerd", + "Common.Views.ListSettingsDialog.tipChange": "Verander opsommingsteken", + "Common.Views.ListSettingsDialog.txtBullet": "Opsommingsteken", + "Common.Views.ListSettingsDialog.txtColor": "Kleur", + "Common.Views.ListSettingsDialog.txtNewBullet": "Nieuw opsommingsteken", + "Common.Views.ListSettingsDialog.txtNone": "Geen", + "Common.Views.ListSettingsDialog.txtOfText": "% van tekst", + "Common.Views.ListSettingsDialog.txtSize": "Grootte", + "Common.Views.ListSettingsDialog.txtStart": "Beginnen bij", + "Common.Views.ListSettingsDialog.txtSymbol": "Symbool", + "Common.Views.ListSettingsDialog.txtTitle": "Lijst instellingen", + "Common.Views.ListSettingsDialog.txtType": "Type", "Common.Views.OpenDialog.closeButtonText": "Bestand sluiten", + "Common.Views.OpenDialog.txtAdvanced": "Geavanceerd", "Common.Views.OpenDialog.txtColon": "Dubbele punt", "Common.Views.OpenDialog.txtComma": "Komma", "Common.Views.OpenDialog.txtDelimiter": "Scheidingsteken", @@ -114,6 +136,7 @@ "Common.Views.OpenDialog.txtOther": "Overige", "Common.Views.OpenDialog.txtPassword": "Wachtwoord", "Common.Views.OpenDialog.txtPreview": "Voorbeeld", + "Common.Views.OpenDialog.txtProtected": "Nadat u het wachtwoord heeft ingevoerd en het bestand heeft geopend, wordt het huidige wachtwoord voor het bestand gereset.", "Common.Views.OpenDialog.txtSemicolon": "Puntkomma", "Common.Views.OpenDialog.txtSpace": "Spatie", "Common.Views.OpenDialog.txtTab": "Tab", @@ -150,6 +173,8 @@ "Common.Views.ReviewChanges.strStrictDesc": "Gebruik de 'Opslaan' knop om de wijzigingen van u en andere te synchroniseren.", "Common.Views.ReviewChanges.tipAcceptCurrent": "Huidige wijziging accepteren", "Common.Views.ReviewChanges.tipCoAuthMode": "Zet samenwerkings modus", + "Common.Views.ReviewChanges.tipCommentRem": "Alle opmerkingen verwijderen", + "Common.Views.ReviewChanges.tipCommentRemCurrent": "Verwijder huidige opmerking", "Common.Views.ReviewChanges.tipHistory": "Toon versie geschiedenis", "Common.Views.ReviewChanges.tipRejectCurrent": "Huidige wijziging afwijzen", "Common.Views.ReviewChanges.tipReview": "Wijzigingen bijhouden", @@ -164,6 +189,11 @@ "Common.Views.ReviewChanges.txtChat": "Chat", "Common.Views.ReviewChanges.txtClose": "Sluiten", "Common.Views.ReviewChanges.txtCoAuthMode": "Modus Gezamenlijk bewerken", + "Common.Views.ReviewChanges.txtCommentRemAll": "Alle commentaar verwijderen", + "Common.Views.ReviewChanges.txtCommentRemCurrent": "Verwijder huidige opmerking", + "Common.Views.ReviewChanges.txtCommentRemMy": "Verwijder mijn commentaar", + "Common.Views.ReviewChanges.txtCommentRemMyCurrent": "Verwijder mijn huidige opmerkingen", + "Common.Views.ReviewChanges.txtCommentRemove": "Verwijder", "Common.Views.ReviewChanges.txtDocLang": "Taal", "Common.Views.ReviewChanges.txtFinal": "Alle veranderingen geaccepteerd (Voorbeeld)", "Common.Views.ReviewChanges.txtFinalCap": "Einde", @@ -182,6 +212,20 @@ "Common.Views.ReviewChanges.txtSpelling": "Spellingcontrole", "Common.Views.ReviewChanges.txtTurnon": "Wijzigingen bijhouden", "Common.Views.ReviewChanges.txtView": "Weergavemodus", + "Common.Views.ReviewPopover.textAdd": "Toevoegen", + "Common.Views.ReviewPopover.textAddReply": "Antwoord toevoegen", + "Common.Views.ReviewPopover.textCancel": "Annuleer", + "Common.Views.ReviewPopover.textClose": "Sluiten", + "Common.Views.ReviewPopover.textEdit": "OK", + "Common.Views.ReviewPopover.textMention": "+vermelding zal de gebruiker toegang geven tot het document en een email sturen", + "Common.Views.ReviewPopover.textMentionNotify": "+genoemde zal de gebruiker via email melden", + "Common.Views.ReviewPopover.textOpenAgain": "Opnieuw openen", + "Common.Views.ReviewPopover.textReply": "Beantwoorden", + "Common.Views.ReviewPopover.textResolve": "Oplossen", + "Common.Views.SaveAsDlg.textLoading": "Laden", + "Common.Views.SaveAsDlg.textTitle": "Map voor opslaan", + "Common.Views.SelectFileDlg.textLoading": "Laden", + "Common.Views.SelectFileDlg.textTitle": "Gegevensbron selecteren", "Common.Views.SignDialog.textBold": "Vet", "Common.Views.SignDialog.textCertificate": "Certificaat", "Common.Views.SignDialog.textChange": "Wijzigen", @@ -205,6 +249,36 @@ "Common.Views.SignSettingsDialog.textShowDate": "Toon signeer datum in handtekening regel", "Common.Views.SignSettingsDialog.textTitle": "Handtekening opzet", "Common.Views.SignSettingsDialog.txtEmpty": "Dit veld is vereist", + "Common.Views.SymbolTableDialog.textCharacter": "Teken", + "Common.Views.SymbolTableDialog.textCode": "Unicode HEX-waarde", + "Common.Views.SymbolTableDialog.textCopyright": "Copyright teken", + "Common.Views.SymbolTableDialog.textDCQuote": "Aanhalingsteken sluiten", + "Common.Views.SymbolTableDialog.textDOQuote": "Dubbel aanhalingsteken openen", + "Common.Views.SymbolTableDialog.textEllipsis": "Horizontale ellips", + "Common.Views.SymbolTableDialog.textEmDash": "streep", + "Common.Views.SymbolTableDialog.textEmSpace": "Spatie", + "Common.Views.SymbolTableDialog.textEnDash": "Korte streep", + "Common.Views.SymbolTableDialog.textEnSpace": "Korte spatie", + "Common.Views.SymbolTableDialog.textFont": "Lettertype", + "Common.Views.SymbolTableDialog.textNBHyphen": "Niet-afbrekenden koppelteken", + "Common.Views.SymbolTableDialog.textNBSpace": "niet-afbrekende spatie", + "Common.Views.SymbolTableDialog.textPilcrow": "Alineateken", + "Common.Views.SymbolTableDialog.textQEmSpace": "1/4 Em spatie", + "Common.Views.SymbolTableDialog.textRange": "Bereik", + "Common.Views.SymbolTableDialog.textRecent": "Recent gebruikte symbolen", + "Common.Views.SymbolTableDialog.textRegistered": "Geregistreerd teken", + "Common.Views.SymbolTableDialog.textSCQuote": "Enkele aanhalingsteken sluiten", + "Common.Views.SymbolTableDialog.textSection": "Sectie Teken", + "Common.Views.SymbolTableDialog.textShortcut": "Sneltoets", + "Common.Views.SymbolTableDialog.textSHyphen": "Zacht koppelteken", + "Common.Views.SymbolTableDialog.textSOQuote": "Een enkel citaat openen", + "Common.Views.SymbolTableDialog.textSpecial": "speciale karakters", + "Common.Views.SymbolTableDialog.textSymbols": "Symbolen", + "Common.Views.SymbolTableDialog.textTitle": "Symbool", + "Common.Views.SymbolTableDialog.textTradeMark": "Handelsmerk symbool", + "SSE.Controllers.DataTab.txtExpand": "Uitvouwen", + "SSE.Controllers.DataTab.txtRemDuplicates": "Verwijder duplicaten", + "SSE.Controllers.DataTab.txtRemSelected": "Verwijder in geselecteerde", "SSE.Controllers.DocumentHolder.alignmentText": "Uitlijning", "SSE.Controllers.DocumentHolder.centerText": "Centreren", "SSE.Controllers.DocumentHolder.deleteColumnText": "Kolom verwijderen", @@ -225,8 +299,10 @@ "SSE.Controllers.DocumentHolder.textCtrlClick": "Druk op Ctrl en klik op koppeling", "SSE.Controllers.DocumentHolder.textInsertLeft": "Links invoegen", "SSE.Controllers.DocumentHolder.textInsertTop": "Boven invoegen", + "SSE.Controllers.DocumentHolder.textPasteSpecial": "Plakken speciaal", "SSE.Controllers.DocumentHolder.textSym": "sym", "SSE.Controllers.DocumentHolder.tipIsLocked": "Dit element wordt bewerkt door een andere gebruiker.", + "SSE.Controllers.DocumentHolder.txtAboveAve": "Boven gemiddeld", "SSE.Controllers.DocumentHolder.txtAddBottom": "Onderrand toevoegen", "SSE.Controllers.DocumentHolder.txtAddFractionBar": "Deelteken toevoegen", "SSE.Controllers.DocumentHolder.txtAddHor": "Horizontale lijn toevoegen", @@ -237,9 +313,16 @@ "SSE.Controllers.DocumentHolder.txtAddTop": "Bovenrand toevoegen", "SSE.Controllers.DocumentHolder.txtAddVer": "Verticale lijn toevoegen", "SSE.Controllers.DocumentHolder.txtAlignToChar": "Uitlijnen op teken", + "SSE.Controllers.DocumentHolder.txtAll": "(Alles)", + "SSE.Controllers.DocumentHolder.txtAnd": "En", + "SSE.Controllers.DocumentHolder.txtBegins": "begint met", + "SSE.Controllers.DocumentHolder.txtBelowAve": "Onder gemiddelde", + "SSE.Controllers.DocumentHolder.txtBlanks": "(Blank)", "SSE.Controllers.DocumentHolder.txtBorderProps": "Eigenschappen rand", "SSE.Controllers.DocumentHolder.txtBottom": "Onder", + "SSE.Controllers.DocumentHolder.txtColumn": "Kolom", "SSE.Controllers.DocumentHolder.txtColumnAlign": "Kolomuitlijning", + "SSE.Controllers.DocumentHolder.txtContains": "bevat", "SSE.Controllers.DocumentHolder.txtDecreaseArg": "Argumentgrootte verkleinen", "SSE.Controllers.DocumentHolder.txtDeleteArg": "Argument verwijderen", "SSE.Controllers.DocumentHolder.txtDeleteBreak": "Handmatig einde verwijderen", @@ -248,11 +331,17 @@ "SSE.Controllers.DocumentHolder.txtDeleteEq": "Vergelijking verwijderen", "SSE.Controllers.DocumentHolder.txtDeleteGroupChar": "Teken verwijderen", "SSE.Controllers.DocumentHolder.txtDeleteRadical": "Wortel verwijderen", + "SSE.Controllers.DocumentHolder.txtEnds": "Eindigt met", + "SSE.Controllers.DocumentHolder.txtEquals": "Is gelijk", "SSE.Controllers.DocumentHolder.txtExpand": "Uitvouwen en sorteren", "SSE.Controllers.DocumentHolder.txtExpandSort": "De gegevens naast de selectie worden niet gesorteerd. Wilt u de selectie uitbreiden en aangrenzende gegevens opnemen of wilt u doorgaan met sorteren van alleen de cellen die op dit moment zijn geselecteerd?", + "SSE.Controllers.DocumentHolder.txtFilterBottom": "Onder", + "SSE.Controllers.DocumentHolder.txtFilterTop": "Boven", "SSE.Controllers.DocumentHolder.txtFractionLinear": "Wijzigen in Lineaire breuk", "SSE.Controllers.DocumentHolder.txtFractionSkewed": "Wijzigen in Schuine breuk", "SSE.Controllers.DocumentHolder.txtFractionStacked": "Wijzigen in Gestapelde breuk", + "SSE.Controllers.DocumentHolder.txtGreater": "Groter dan", + "SSE.Controllers.DocumentHolder.txtGreaterEquals": "Groter dan of gelijk aan", "SSE.Controllers.DocumentHolder.txtGroupCharOver": "Teken over tekst", "SSE.Controllers.DocumentHolder.txtGroupCharUnder": "Teken onder tekst", "SSE.Controllers.DocumentHolder.txtHeight": "Hoogte", @@ -276,12 +365,21 @@ "SSE.Controllers.DocumentHolder.txtInsertBreak": "Handmatig einde invoegen", "SSE.Controllers.DocumentHolder.txtInsertEqAfter": "Vergelijking invoegen na", "SSE.Controllers.DocumentHolder.txtInsertEqBefore": "Vergelijking invoegen vóór", + "SSE.Controllers.DocumentHolder.txtItems": "Items", + "SSE.Controllers.DocumentHolder.txtKeepTextOnly": "Alleen tekst behouden", + "SSE.Controllers.DocumentHolder.txtLess": "Kleiner dan", + "SSE.Controllers.DocumentHolder.txtLessEquals": "Kleiner dan of gelijk aan", "SSE.Controllers.DocumentHolder.txtLimitChange": "Locatie limieten wijzigen", "SSE.Controllers.DocumentHolder.txtLimitOver": "Limiet over tekst", "SSE.Controllers.DocumentHolder.txtLimitUnder": "Limiet onder tekst", "SSE.Controllers.DocumentHolder.txtMatchBrackets": "Haakjes aanpassen aan hoogte argumenten", "SSE.Controllers.DocumentHolder.txtMatrixAlign": "Matrixuitlijning", "SSE.Controllers.DocumentHolder.txtNoChoices": "Er zijn geen opties voor het vullen van de cel.
          Alleen tekstwaarden uit de kolom kunnen worden geselecteerd voor vervanging.", + "SSE.Controllers.DocumentHolder.txtNotBegins": "Begint niet met", + "SSE.Controllers.DocumentHolder.txtNotContains": "Bevat niet", + "SSE.Controllers.DocumentHolder.txtNotEnds": "Eindigt niet met", + "SSE.Controllers.DocumentHolder.txtNotEquals": "Is niet gelijk", + "SSE.Controllers.DocumentHolder.txtOr": "of", "SSE.Controllers.DocumentHolder.txtOverbar": "Streep boven tekst", "SSE.Controllers.DocumentHolder.txtPaste": "Plakken", "SSE.Controllers.DocumentHolder.txtPasteBorders": "Formule zonder randen", @@ -300,6 +398,7 @@ "SSE.Controllers.DocumentHolder.txtPasteValFormat": "Waarde + alle opmaak", "SSE.Controllers.DocumentHolder.txtPasteValNumFormat": "Waarde + getalnotatie", "SSE.Controllers.DocumentHolder.txtPasteValues": "Alleen waarde plakken", + "SSE.Controllers.DocumentHolder.txtPercent": "Procent", "SSE.Controllers.DocumentHolder.txtRedoExpansion": "Opnieuw toepassen tabel autouitbreiding", "SSE.Controllers.DocumentHolder.txtRemFractionBar": "Deelteken verwijderen", "SSE.Controllers.DocumentHolder.txtRemLimit": "Limiet verwijderen", @@ -324,6 +423,19 @@ "SSE.Controllers.DocumentHolder.txtUnderbar": "Staaf onder tekst", "SSE.Controllers.DocumentHolder.txtUndoExpansion": "Tabel autouitbreiding ongedaan maken", "SSE.Controllers.DocumentHolder.txtWidth": "Breedte", + "SSE.Controllers.FormulaDialog.sCategoryAll": "Alle", + "SSE.Controllers.FormulaDialog.sCategoryCube": "Kubus", + "SSE.Controllers.FormulaDialog.sCategoryDatabase": "Database", + "SSE.Controllers.FormulaDialog.sCategoryDateAndTime": "Datum & tijd", + "SSE.Controllers.FormulaDialog.sCategoryEngineering": "Engineering", + "SSE.Controllers.FormulaDialog.sCategoryFinancial": "Financieel", + "SSE.Controllers.FormulaDialog.sCategoryInformation": "Informatie", + "SSE.Controllers.FormulaDialog.sCategoryLast10": "10 laatst gebruikte", + "SSE.Controllers.FormulaDialog.sCategoryLogical": "Logisch", + "SSE.Controllers.FormulaDialog.sCategoryLookupAndReference": "Zoeken en verwijzen", + "SSE.Controllers.FormulaDialog.sCategoryMathematic": "Wiskunde en trigonometrie", + "SSE.Controllers.FormulaDialog.sCategoryStatistical": "Statistisch", + "SSE.Controllers.FormulaDialog.sCategoryTextAndData": "Tekst en gegevens", "SSE.Controllers.LeftMenu.newDocumentTitle": "Spreadsheet zonder naam", "SSE.Controllers.LeftMenu.textByColumns": "Kolommen", "SSE.Controllers.LeftMenu.textByRows": "Rijen", @@ -339,6 +451,7 @@ "SSE.Controllers.LeftMenu.textWarning": "Waarschuwing", "SSE.Controllers.LeftMenu.textWithin": "Binnen", "SSE.Controllers.LeftMenu.textWorkbook": "Werkmap", + "SSE.Controllers.LeftMenu.txtUntitled": "Naamloos", "SSE.Controllers.LeftMenu.warnDownloadAs": "Als u doorgaat met opslaan in deze indeling, gaan alle kenmerken verloren en blijft alleen de tekst behouden.
          Wilt u doorgaan?", "SSE.Controllers.Main.confirmMoveCellRange": "Het doelcelbereik kan gegevens bevatten. Doorgaan met bewerking?", "SSE.Controllers.Main.confirmPutMergeRange": "De brongegevens bevatten samengevoegde cellen.
          Voordat de cellen in de tabel zijn geplakt, is de samenvoeging opgeheven.", @@ -355,6 +468,8 @@ "SSE.Controllers.Main.errorAutoFilterDataRange": "De bewerking kan niet worden uitgevoerd voor het geselecteerde bereik van cellen.
          Selecteer een uniform gegevensbereik dat afwijkt van het bestaande bereik en probeer het opnieuw.", "SSE.Controllers.Main.errorAutoFilterHiddenRange": "De bewerking kan niet worden uitgevoerd omdat het gebied gefilterde cellen bevat.
          Maak het verbergen van de gefilterde elementen ongedaan en probeer het opnieuw.", "SSE.Controllers.Main.errorBadImageUrl": "URL afbeelding is onjuist", + "SSE.Controllers.Main.errorCannotUngroup": "Kan de groep niet opheffen. Om een overzicht te beginnen, selecteert de detailrijen of -kolommen en groepeert ze.", + "SSE.Controllers.Main.errorChangeArray": "U kunt een deel van een array niet wijzigen.", "SSE.Controllers.Main.errorCoAuthoringDisconnect": "Verbinding met server is verbroken. Het document kan op dit moment niet worden bewerkt.", "SSE.Controllers.Main.errorConnectToServer": "Het document kan niet worden opgeslagen. Controleer de verbindingsinstellingen of neem contact op met de beheerder.
          Wanneer u op de knop 'OK' klikt, wordt u gevraagd het document te downloaden.", "SSE.Controllers.Main.errorCopyMultiselectArea": "Deze opdracht kan niet worden uitgevoerd op meerdere selecties.
          Selecteer één bereik en probeer het opnieuw.", @@ -362,16 +477,24 @@ "SSE.Controllers.Main.errorCountArgExceed": "De ingevoerde formule bevat een fout.
          Aantal argumenten overschreden.", "SSE.Controllers.Main.errorCreateDefName": "De bestaande benoemde bereiken kunnen niet worden bewerkt en de nieuwe bereiken kunnen
          op dit moment niet worden gemaakt aangezien sommige bereiken al worden bewerkt.", "SSE.Controllers.Main.errorDatabaseConnection": "Externe fout.
          Fout in databaseverbinding. Neem contact op met Support als deze fout zich blijft voordoen.", + "SSE.Controllers.Main.errorDataEncrypted": "Versleutelde aanpassingen zijn ontvangen, deze kunnen niet ontsleuteld worden.", "SSE.Controllers.Main.errorDataRange": "Onjuist gegevensbereik.", "SSE.Controllers.Main.errorDefaultMessage": "Foutcode: %1", + "SSE.Controllers.Main.errorEditingDownloadas": "Er is een fout ontstaan tijdens het werken met het document.
          Gebruik de 'Opslaan als...' optie om het bestand als backup op te slaan op uw computer.", + "SSE.Controllers.Main.errorEditingSaveas": "Er is een fout ontstaan tijdens het werken met het document.
          Gebruik de 'Opslaan als...' optie om het bestand als backup op te slaan op uw computer.", + "SSE.Controllers.Main.errorEmailClient": "Er is geen e-mail client gevonden.", "SSE.Controllers.Main.errorFilePassProtect": "Het bestand is beschermd met een wachtwoord en kan niet worden geopend.", "SSE.Controllers.Main.errorFileRequest": "Externe fout.
          Fout in aanvraag bestand. Neem contact op met Support als deze fout zich blijft voordoen.", + "SSE.Controllers.Main.errorFileSizeExceed": "De bestandsgrootte overschrijdt de limiet die is ingesteld voor uw server.
          Neem contact op met uw Document Server-beheerder voor details.", "SSE.Controllers.Main.errorFileVKey": "Externe fout.
          Ongeldige beveiligingssleutel. Neem contact op met Support als deze fout zich blijft voordoen.", "SSE.Controllers.Main.errorFillRange": "Het geselecteerde celbereik kan niet worden gevuld.
          Alle samengevoegde cellen moeten dezelfde grootte hebben.", "SSE.Controllers.Main.errorForceSave": "Er is een fout ontstaan bij het opslaan van het bestand. Gebruik de 'Download als' knop om het bestand op te slaan op uw computer of probeer het later nog eens.", "SSE.Controllers.Main.errorFormulaName": "De ingevoerde formule bevat een fout.
          Onjuiste naam gebruikt voor formule.", "SSE.Controllers.Main.errorFormulaParsing": "Interne fout bij ontleden van de formule.", + "SSE.Controllers.Main.errorFrmlMaxReference": "U kunt deze formule niet invoeren omdat deze te veel
          waarden, cel verwijzingen en / of namen heeft.", "SSE.Controllers.Main.errorFrmlWrongReferences": "De functie verwijst naar een blad dat niet bestaat.
          Controleer de gegevens en probeer het opnieuw.", + "SSE.Controllers.Main.errorFTChangeTableRangeError": "De bewerking voor het geselecteerde celbereik kan niet worden voltooid.
          Selecteer een bereik waarbij de eerste tabelrij op dezelfde rij staat
          en de resultatentabel de huidige tabel overlapt. ", + "SSE.Controllers.Main.errorFTRangeIncludedOtherTables": "De bewerking voor het geselecteerde celbereik kan niet worden voltooid.
          Selecteer een bereik dat geen andere tabellen omvat.", "SSE.Controllers.Main.errorInvalidRef": "Voer een juiste naam in voor de selectie of een geldige referentie om naar toe te gaan.", "SSE.Controllers.Main.errorKeyEncrypt": "Onbekende sleuteldescriptor", "SSE.Controllers.Main.errorKeyExpire": "Sleuteldescriptor vervallen", @@ -383,6 +506,7 @@ "SSE.Controllers.Main.errorOpenWarning": "De lengte van een van de formules in het bestand overschrijdt
          het toegestane aantal tekens en de formule is verwijderd.", "SSE.Controllers.Main.errorOperandExpected": "De syntaxis van de ingevoerde functie is niet juist. Controleer of een van de haakjes '(' of ')' ontbreekt.", "SSE.Controllers.Main.errorPasteMaxRange": "Het te kopiëren gebied komt niet overeen met het plakgebied.
          Selecteer een gebied met dezelfde grootte of klik op de eerste cel van een rij om de gekopieerde cellen te plakken.", + "SSE.Controllers.Main.errorPivotOverlap": "Een draaitabel mag een tabel niet overlappen.", "SSE.Controllers.Main.errorPrintMaxPagesCount": "Helaas is het met de huidige programmaversie niet mogelijk om meer dan 1500 pagina's in één keer af te drukken.
          Deze beperking wordt opgeheven in komende releases.", "SSE.Controllers.Main.errorProcessSaveResult": "Opslaan mislukt", "SSE.Controllers.Main.errorServerVersion": "De versie van de editor is bijgewerkt. De pagina wordt opnieuw geladen om de wijzigingen toe te passen.", @@ -394,6 +518,7 @@ "SSE.Controllers.Main.errorTokenExpire": "Het token voor de documentbeveiliging is vervallen.
          Neem contact op met de beheerder van de documentserver.", "SSE.Controllers.Main.errorUnexpectedGuid": "Externe fout.
          Onverwachte GUID. Neem contact op met Support als deze fout zich blijft voordoen.", "SSE.Controllers.Main.errorUpdateVersion": "De bestandsversie is gewijzigd. De pagina wordt opnieuw geladen.", + "SSE.Controllers.Main.errorUpdateVersionOnDisconnect": "De internetverbinding is hersteld en de bestandsversie is gewijzigd.
          Voordat u verder kunt werken, moet u het bestand downloaden of de inhoud kopiëren om er zeker van te zijn dat er niets verloren gaat, en deze pagina vervolgens opnieuw laden.", "SSE.Controllers.Main.errorUserDrop": "Toegang tot het bestand is op dit moment niet mogelijk.", "SSE.Controllers.Main.errorUsersExceed": "Het onder het prijsplan toegestane aantal gebruikers is overschreden", "SSE.Controllers.Main.errorViewerDisconnect": "Verbinding is verbroken. U kunt het document nog wel bekijken,
          maar u kunt het pas downloaden of afdrukken als de verbinding is hersteld.", @@ -424,16 +549,22 @@ "SSE.Controllers.Main.savePreparingTitle": "Bezig met voorbereiding op opslaan. Even geduld...", "SSE.Controllers.Main.saveTextText": "Spreadsheet wordt opgeslagen...", "SSE.Controllers.Main.saveTitleText": "Spreadsheet wordt opgeslagen", + "SSE.Controllers.Main.scriptLoadError": "De verbinding is te langzaam, sommige componenten konden niet geladen worden. Laad de pagina opnieuw.", "SSE.Controllers.Main.textAnonymous": "Anoniem", "SSE.Controllers.Main.textBuyNow": "Website bezoeken", + "SSE.Controllers.Main.textClose": "Sluiten", "SSE.Controllers.Main.textCloseTip": "Klik om de tip te sluiten", "SSE.Controllers.Main.textConfirm": "Bevestiging", "SSE.Controllers.Main.textContactUs": "Contact opnemen met Verkoop", + "SSE.Controllers.Main.textCustomLoader": "Volgens de voorwaarden van de licentie heeft u geen recht om de lader aan te passen.
          Neem contact op met onze verkoopafdeling voor een offerte.", + "SSE.Controllers.Main.textHasMacros": "Het bestand bevat automatische macro's.
          Wilt u macro's uitvoeren?", "SSE.Controllers.Main.textLoadingDocument": "Spreadsheet wordt geladen", "SSE.Controllers.Main.textNo": "Nee", "SSE.Controllers.Main.textNoLicenseTitle": "Only Office verbindingslimiet", + "SSE.Controllers.Main.textPaidFeature": "Betaalde optie", "SSE.Controllers.Main.textPleaseWait": "De bewerking kan meer tijd dan verwacht in beslag nemen. Even geduld...", "SSE.Controllers.Main.textRecalcFormulas": "Formules worden berekend...", + "SSE.Controllers.Main.textRemember": "Onthoud voorkeur", "SSE.Controllers.Main.textShape": "Vorm", "SSE.Controllers.Main.textStrict": "Strikte modus", "SSE.Controllers.Main.textTryUndoRedo": "De functies Ongedaan maken/Opnieuw worden uitgeschakeld in de modus Snel gezamenlijk bewerken.
          Klik op de knop 'Strikte modus' om over te schakelen naar de strikte modus voor gezamenlijk bewerken. U kunt het bestand dan zonder interferentie van andere gebruikers bewerken en uw wijzigingen verzenden wanneer u die opslaat. U kunt schakelen tussen de modi voor gezamenlijke bewerking via Geavanceerde instellingen van de editor.", @@ -442,18 +573,203 @@ "SSE.Controllers.Main.titleRecalcFormulas": "Berekenen...", "SSE.Controllers.Main.titleServerVersion": "Editor bijgewerkt", "SSE.Controllers.Main.txtAccent": "Accent", + "SSE.Controllers.Main.txtAll": "(Alles)", "SSE.Controllers.Main.txtArt": "Hier tekst invoeren", "SSE.Controllers.Main.txtBasicShapes": "Basisvormen", + "SSE.Controllers.Main.txtBlank": "(Leeg)", "SSE.Controllers.Main.txtButtons": "Knoppen", + "SSE.Controllers.Main.txtByField": "%1 van %2", "SSE.Controllers.Main.txtCallouts": "Callouts", "SSE.Controllers.Main.txtCharts": "Grafieken", + "SSE.Controllers.Main.txtClearFilter": "Filter wissen (Alt + C)", + "SSE.Controllers.Main.txtColLbls": "Kolomlabels", + "SSE.Controllers.Main.txtColumn": "Kolom", + "SSE.Controllers.Main.txtConfidential": "Vertrouwelijk", + "SSE.Controllers.Main.txtDate": "Datum", "SSE.Controllers.Main.txtDiagramTitle": "Grafiektitel", "SSE.Controllers.Main.txtEditingMode": "Bewerkmodus instellen...", "SSE.Controllers.Main.txtFiguredArrows": "Pijlvormen", + "SSE.Controllers.Main.txtFile": "Bestand", + "SSE.Controllers.Main.txtGrandTotal": "Eindtotaal", "SSE.Controllers.Main.txtLines": "Lijnen", "SSE.Controllers.Main.txtMath": "Wiskunde", + "SSE.Controllers.Main.txtPage": "Pagina", + "SSE.Controllers.Main.txtPageOf": "Pagina %1 van %2", + "SSE.Controllers.Main.txtPages": "Pagina's", + "SSE.Controllers.Main.txtPreparedBy": "Voorbereid door", + "SSE.Controllers.Main.txtPrintArea": "Print_Bereik", "SSE.Controllers.Main.txtRectangles": "Rechthoeken", + "SSE.Controllers.Main.txtRow": "Rij", "SSE.Controllers.Main.txtSeries": "Serie", + "SSE.Controllers.Main.txtShape_accentBorderCallout1": "Legenda met lijn 1 (Rand en Accentbalk)", + "SSE.Controllers.Main.txtShape_accentBorderCallout2": "Legenda met lijn 2 (Rand met accentbalk)", + "SSE.Controllers.Main.txtShape_accentBorderCallout3": "Legenda met lijn 3 (Rand met accent balk)", + "SSE.Controllers.Main.txtShape_accentCallout1": "Legenda met lijn 1 (accentbalk)", + "SSE.Controllers.Main.txtShape_accentCallout2": "Legenda met lijn 1(accentbalk)", + "SSE.Controllers.Main.txtShape_accentCallout3": "Legenda met lijn 3 (accent balk)", + "SSE.Controllers.Main.txtShape_actionButtonBackPrevious": "Terug of vorige knop", + "SSE.Controllers.Main.txtShape_actionButtonBeginning": "Knop \"afspelen\"", + "SSE.Controllers.Main.txtShape_actionButtonBlank": "Lege knop", + "SSE.Controllers.Main.txtShape_actionButtonDocument": "Document knop", + "SSE.Controllers.Main.txtShape_actionButtonEnd": "Beëindigen", + "SSE.Controllers.Main.txtShape_actionButtonHelp": "Help knop", + "SSE.Controllers.Main.txtShape_actionButtonHome": "Start knop", + "SSE.Controllers.Main.txtShape_actionButtonInformation": "Informatieknop", + "SSE.Controllers.Main.txtShape_actionButtonMovie": "Film knop", + "SSE.Controllers.Main.txtShape_actionButtonReturn": "Return-knop", + "SSE.Controllers.Main.txtShape_actionButtonSound": "Geluid knop", + "SSE.Controllers.Main.txtShape_arc": "Boog", + "SSE.Controllers.Main.txtShape_bentArrow": "Gebogen pijl", + "SSE.Controllers.Main.txtShape_bentConnector5": "Rechthoekige verbinding", + "SSE.Controllers.Main.txtShape_bentConnector5WithArrow": "Rechthoekige verbinding met peil", + "SSE.Controllers.Main.txtShape_bentConnector5WithTwoArrows": "Rechthoekige verbinding met dubbele peilen", + "SSE.Controllers.Main.txtShape_bentUpArrow": "Naar boven gebogen pijl", + "SSE.Controllers.Main.txtShape_bevel": "Schuine rand", + "SSE.Controllers.Main.txtShape_blockArc": "Blokboog", + "SSE.Controllers.Main.txtShape_borderCallout1": "Legenda met lijn 1", + "SSE.Controllers.Main.txtShape_borderCallout2": "Legenda met lijn 2", + "SSE.Controllers.Main.txtShape_borderCallout3": "Legenda met lijn 3", + "SSE.Controllers.Main.txtShape_callout1": "Legenda met lijn 1 (Geen rand)", + "SSE.Controllers.Main.txtShape_callout2": "Legenda met lijn 2 (geen rand)", + "SSE.Controllers.Main.txtShape_callout3": "Legenda met lijn 3 (Geen rand)", + "SSE.Controllers.Main.txtShape_can": "Emmer", + "SSE.Controllers.Main.txtShape_chevron": "Chevron", + "SSE.Controllers.Main.txtShape_chord": "Cirkelsegment", + "SSE.Controllers.Main.txtShape_circularArrow": "Ronde pijl", + "SSE.Controllers.Main.txtShape_cloud": "Wolk", + "SSE.Controllers.Main.txtShape_cloudCallout": "Cloud legenda", + "SSE.Controllers.Main.txtShape_corner": "Hoek", + "SSE.Controllers.Main.txtShape_cube": "Kubus", + "SSE.Controllers.Main.txtShape_curvedConnector3": "Gebogen verbinding", + "SSE.Controllers.Main.txtShape_curvedConnector3WithArrow": "Gebogen verbinding met pijlen", + "SSE.Controllers.Main.txtShape_curvedConnector3WithTwoArrows": "Gebogen verbinding met dubbele peilen", + "SSE.Controllers.Main.txtShape_curvedDownArrow": "Gebogen pijl naar beneden", + "SSE.Controllers.Main.txtShape_curvedLeftArrow": "Gebogen pijl naar links", + "SSE.Controllers.Main.txtShape_curvedRightArrow": "Gebogen pijl naar rechts", + "SSE.Controllers.Main.txtShape_curvedUpArrow": "Gebogen pijl naar boven", + "SSE.Controllers.Main.txtShape_decagon": "Tienhoek", + "SSE.Controllers.Main.txtShape_diagStripe": "Diagonale Strepen", + "SSE.Controllers.Main.txtShape_diamond": "Diamant", + "SSE.Controllers.Main.txtShape_dodecagon": "Twaalfhoek", + "SSE.Controllers.Main.txtShape_donut": "Donut", + "SSE.Controllers.Main.txtShape_doubleWave": "Dubbele golf", + "SSE.Controllers.Main.txtShape_downArrow": "Pijl omlaag", + "SSE.Controllers.Main.txtShape_downArrowCallout": "Legenda met peil naar beneden", + "SSE.Controllers.Main.txtShape_ellipse": "Ovaal", + "SSE.Controllers.Main.txtShape_ellipseRibbon": "Gebogen lint naar beneden", + "SSE.Controllers.Main.txtShape_ellipseRibbon2": "Gebogen lint naar boven", + "SSE.Controllers.Main.txtShape_flowChartAlternateProcess": "Alternatief proces stroomdiagram ", + "SSE.Controllers.Main.txtShape_flowChartCollate": "Stroomdiagram: Sorteren", + "SSE.Controllers.Main.txtShape_flowChartConnector": "Stroomdiagram: Verbinden", + "SSE.Controllers.Main.txtShape_flowChartDecision": "Stroomdiagram: Beslissingen", + "SSE.Controllers.Main.txtShape_flowChartDelay": "Stroomdiagram: Vertraging", + "SSE.Controllers.Main.txtShape_flowChartDisplay": "Stroomdiagram: Beeldscherm", + "SSE.Controllers.Main.txtShape_flowChartDocument": "Stroomdiagram: Document", + "SSE.Controllers.Main.txtShape_flowChartExtract": "Stroomdiagram: Extractie", + "SSE.Controllers.Main.txtShape_flowChartInputOutput": "Stroomdiagram: gegevens", + "SSE.Controllers.Main.txtShape_flowChartInternalStorage": "Stroomdiagram: Interne opslag", + "SSE.Controllers.Main.txtShape_flowChartMagneticDisk": "Stroomdiagram: Magnetische schijf", + "SSE.Controllers.Main.txtShape_flowChartMagneticDrum": "Stroomdiagram: Opslag met directe toegang", + "SSE.Controllers.Main.txtShape_flowChartMagneticTape": "Stroomdiagram: Sequentiële toegang", + "SSE.Controllers.Main.txtShape_flowChartManualInput": "Stroomdiagram: Handmatige invoer", + "SSE.Controllers.Main.txtShape_flowChartManualOperation": "Stroomdiagram: Handmatige bewerking", + "SSE.Controllers.Main.txtShape_flowChartMerge": "Stroomdiagram: Samenvoegen", + "SSE.Controllers.Main.txtShape_flowChartMultidocument": "Stroomdiagram: Meerdere documenten", + "SSE.Controllers.Main.txtShape_flowChartOffpageConnector": "Stroomdiagram: Verbinding naar andere pagina", + "SSE.Controllers.Main.txtShape_flowChartOnlineStorage": "Stroomdiagram: Opgeslagen gegevens", + "SSE.Controllers.Main.txtShape_flowChartOr": "Stroomdiagram: Of", + "SSE.Controllers.Main.txtShape_flowChartPredefinedProcess": "Stroomdiagram: Voorgedefinieerd", + "SSE.Controllers.Main.txtShape_flowChartPreparation": "Stroomdiagram: Voorbereiding", + "SSE.Controllers.Main.txtShape_flowChartProcess": "Stroomdiagram: Proces", + "SSE.Controllers.Main.txtShape_flowChartPunchedCard": "Stroomdiagram: Kaart", + "SSE.Controllers.Main.txtShape_flowChartPunchedTape": "Stroomdiagram: Ponsband", + "SSE.Controllers.Main.txtShape_flowChartSort": "Stroomdiagram: Sorteren", + "SSE.Controllers.Main.txtShape_flowChartSummingJunction": "Stroomdiagram: Samenvoeging", + "SSE.Controllers.Main.txtShape_flowChartTerminator": "Stroomdiagram: Beëindigen ", + "SSE.Controllers.Main.txtShape_foldedCorner": "Ezelsoor", + "SSE.Controllers.Main.txtShape_frame": "Kader", + "SSE.Controllers.Main.txtShape_halfFrame": "Half kader", + "SSE.Controllers.Main.txtShape_heart": "Hart", + "SSE.Controllers.Main.txtShape_heptagon": "Zevenhoek", + "SSE.Controllers.Main.txtShape_hexagon": "zeshoek", + "SSE.Controllers.Main.txtShape_homePlate": "Vijfhoek", + "SSE.Controllers.Main.txtShape_horizontalScroll": "Horizontaal scrollen", + "SSE.Controllers.Main.txtShape_irregularSeal1": "Explosie 1", + "SSE.Controllers.Main.txtShape_irregularSeal2": "Explosie 2", + "SSE.Controllers.Main.txtShape_leftArrow": "Pijl links", + "SSE.Controllers.Main.txtShape_leftArrowCallout": "Legenda met peil naar links", + "SSE.Controllers.Main.txtShape_leftBrace": "Haakje links", + "SSE.Controllers.Main.txtShape_leftBracket": "Links hoekige haak", + "SSE.Controllers.Main.txtShape_leftRightArrow": "Peil naar links en rechts", + "SSE.Controllers.Main.txtShape_leftRightArrowCallout": "Legenda met peil naar rechts", + "SSE.Controllers.Main.txtShape_leftRightUpArrow": "Peil naar links, rechts en boven", + "SSE.Controllers.Main.txtShape_leftUpArrow": "Peil naar links en boven", + "SSE.Controllers.Main.txtShape_lightningBolt": "Bliksemschicht", + "SSE.Controllers.Main.txtShape_line": "Lijn", + "SSE.Controllers.Main.txtShape_lineWithArrow": "Pijl", + "SSE.Controllers.Main.txtShape_lineWithTwoArrows": "Dubbele pijl", + "SSE.Controllers.Main.txtShape_mathDivide": "Deling", + "SSE.Controllers.Main.txtShape_mathEqual": "Gelijk", + "SSE.Controllers.Main.txtShape_mathMinus": "Min", + "SSE.Controllers.Main.txtShape_mathMultiply": "Vermenigvuldigen", + "SSE.Controllers.Main.txtShape_mathNotEqual": "Niet gelijk", + "SSE.Controllers.Main.txtShape_mathPlus": "Plus", + "SSE.Controllers.Main.txtShape_moon": "Maan", + "SSE.Controllers.Main.txtShape_noSmoking": "\"Nee\" Symbool", + "SSE.Controllers.Main.txtShape_notchedRightArrow": "Pijl naar rechts met kerf", + "SSE.Controllers.Main.txtShape_octagon": "Achthoek", + "SSE.Controllers.Main.txtShape_parallelogram": "Parallellogram", + "SSE.Controllers.Main.txtShape_pentagon": "Vijfhoek", + "SSE.Controllers.Main.txtShape_pie": "Taart", + "SSE.Controllers.Main.txtShape_plaque": "Teken", + "SSE.Controllers.Main.txtShape_plus": "Plus", + "SSE.Controllers.Main.txtShape_polyline1": "Krabbel", + "SSE.Controllers.Main.txtShape_polyline2": "vrije vorm", + "SSE.Controllers.Main.txtShape_quadArrow": "Peil in vier richtingen", + "SSE.Controllers.Main.txtShape_quadArrowCallout": "Legenda met pijl in vier richtingen", + "SSE.Controllers.Main.txtShape_rect": "Vierhoek", + "SSE.Controllers.Main.txtShape_ribbon": "Lint naar beneden", + "SSE.Controllers.Main.txtShape_ribbon2": "Lint naar boven", + "SSE.Controllers.Main.txtShape_rightArrow": "Pijl rechts", + "SSE.Controllers.Main.txtShape_rightArrowCallout": "Legenda met pijl naar rechts", + "SSE.Controllers.Main.txtShape_rightBrace": "Haak Rechts", + "SSE.Controllers.Main.txtShape_rightBracket": "accolade rechts", + "SSE.Controllers.Main.txtShape_round1Rect": "Ronde enkele rechthoek", + "SSE.Controllers.Main.txtShape_round2DiagRect": "Ronde diagonale rechthoek", + "SSE.Controllers.Main.txtShape_round2SameRect": "Ronde rechthoek met dezelfde zijhoek", + "SSE.Controllers.Main.txtShape_roundRect": "Afgeronde driehoek", + "SSE.Controllers.Main.txtShape_rtTriangle": "Driehoek naar rechts", + "SSE.Controllers.Main.txtShape_smileyFace": "Smiley", + "SSE.Controllers.Main.txtShape_snip1Rect": "Snip Single Corner Rectangle", + "SSE.Controllers.Main.txtShape_snip2DiagRect": "Knip Diagonale Hoek Rechthoek", + "SSE.Controllers.Main.txtShape_snip2SameRect": "Knip Rechthoek in hoek aan dezelfde zijde", + "SSE.Controllers.Main.txtShape_snipRoundRect": "Knip en rond enkele hoek rechthoek", + "SSE.Controllers.Main.txtShape_spline": "Kromming", + "SSE.Controllers.Main.txtShape_star10": "10-Punt ster", + "SSE.Controllers.Main.txtShape_star12": "12-Punt ster", + "SSE.Controllers.Main.txtShape_star16": "16-Punt ster", + "SSE.Controllers.Main.txtShape_star24": "24-Punt ster", + "SSE.Controllers.Main.txtShape_star32": "32-Punt ster", + "SSE.Controllers.Main.txtShape_star4": "4-Punt ster", + "SSE.Controllers.Main.txtShape_star5": "5-Punt ster", + "SSE.Controllers.Main.txtShape_star6": "6-Punt ster", + "SSE.Controllers.Main.txtShape_star7": "7-Punt ster", + "SSE.Controllers.Main.txtShape_star8": "8-Punt ster", + "SSE.Controllers.Main.txtShape_stripedRightArrow": "Pijl naar rechts met strepen", + "SSE.Controllers.Main.txtShape_sun": "Zon", + "SSE.Controllers.Main.txtShape_teardrop": "Traan", + "SSE.Controllers.Main.txtShape_textRect": "Tekstvak", + "SSE.Controllers.Main.txtShape_trapezoid": "Trapezium", + "SSE.Controllers.Main.txtShape_triangle": "Driehoek", + "SSE.Controllers.Main.txtShape_upArrow": "Pijl omhoog", + "SSE.Controllers.Main.txtShape_upArrowCallout": "Legenda met peil omhoog", + "SSE.Controllers.Main.txtShape_upDownArrow": "Peil naar boven en beneden", + "SSE.Controllers.Main.txtShape_uturnArrow": "U-bocht pijl", + "SSE.Controllers.Main.txtShape_verticalScroll": "Verticale scrollen", + "SSE.Controllers.Main.txtShape_wave": "Golf", + "SSE.Controllers.Main.txtShape_wedgeEllipseCallout": "Ovale legenda", + "SSE.Controllers.Main.txtShape_wedgeRectCallout": "Rechthoekige legenda", + "SSE.Controllers.Main.txtShape_wedgeRoundRectCallout": "Afgeronde rechthoekige Legenda", "SSE.Controllers.Main.txtStarsRibbons": "Sterren en linten", "SSE.Controllers.Main.txtStyle_Bad": "Slecht", "SSE.Controllers.Main.txtStyle_Calculation": "Berekening", @@ -476,6 +792,10 @@ "SSE.Controllers.Main.txtStyle_Title": "Titel", "SSE.Controllers.Main.txtStyle_Total": "Totaal", "SSE.Controllers.Main.txtStyle_Warning_Text": "Waarschuwingstekst", + "SSE.Controllers.Main.txtTab": "Tab", + "SSE.Controllers.Main.txtTable": "Tabel", + "SSE.Controllers.Main.txtTime": "Tijd", + "SSE.Controllers.Main.txtValues": "Waarden", "SSE.Controllers.Main.txtXAxis": "X-as", "SSE.Controllers.Main.txtYAxis": "Y-as", "SSE.Controllers.Main.unknownErrorText": "Onbekende fout.", @@ -485,14 +805,22 @@ "SSE.Controllers.Main.uploadImageSizeMessage": "Maximaal toegestane afbeeldingsgrootte overschreden.", "SSE.Controllers.Main.uploadImageTextText": "Afbeelding wordt geüpload...", "SSE.Controllers.Main.uploadImageTitleText": "Afbeelding wordt geüpload", + "SSE.Controllers.Main.waitText": "Een moment geduld", "SSE.Controllers.Main.warnBrowserIE9": "Met IE9 heeft de toepassing beperkte mogelijkheden. Gebruik IE10 of hoger.", "SSE.Controllers.Main.warnBrowserZoom": "De huidige zoominstelling van uw browser wordt niet ondersteund. Zet de zoominstelling terug op de standaardwaarde door op Ctrl+0 te drukken.", + "SSE.Controllers.Main.warnLicenseExceeded": "Het aantal gelijktijdige verbindingen met de document server heeft het maximum overschreven. Het document zal geopend worden in een alleen-lezen modus.
          Neem contact op met de beheerder voor meer informatie.", "SSE.Controllers.Main.warnLicenseExp": "Uw licentie is vervallen.
          Werk uw licentie bij en vernieuw de pagina.", + "SSE.Controllers.Main.warnLicenseUsersExceeded": "U heeft de gebruikerslimiet voor %1 editors bereikt. Neem contact op met uw beheerder voor meer informatie.", "SSE.Controllers.Main.warnNoLicense": "Deze versie van %1 bevat limieten voor het aantal gelijktijdige gebruikers.
          Indien meer nodig is, upgrade dan de huidige licentie of schaf een commerciële licentie aan.", "SSE.Controllers.Main.warnNoLicenseUsers": "Deze versie van %1 bevat limieten voor het aantal gelijktijdige gebruikers.
          Indien meer nodig is, upgrade dan de huidige licentie of schaf een commerciële licentie aan.", "SSE.Controllers.Main.warnProcessRightsChange": "Het recht om het bestand te bewerken is u ontzegd.", "SSE.Controllers.Print.strAllSheets": "Alle werkbladen", + "SSE.Controllers.Print.textFirstCol": "Eerste kolom", + "SSE.Controllers.Print.textInvalidRange": "FOUT! Ongeldig celbereik", + "SSE.Controllers.Print.textNoRepeat": "Niet herhalen", + "SSE.Controllers.Print.textRepeat": "Herhalen...", "SSE.Controllers.Print.textWarning": "Waarschuwing", + "SSE.Controllers.Print.txtCustom": "Aangepast", "SSE.Controllers.Print.warnCheckMargings": "Marges zijn onjuist", "SSE.Controllers.Statusbar.errorLastSheet": "Werkmap moet ten minste één zichtbaar werkblad bevatten.", "SSE.Controllers.Statusbar.errorRemoveSheet": "Werkblad kan niet worden verwijderd.", @@ -507,6 +835,7 @@ "SSE.Controllers.Toolbar.textFontSizeErr": "De ingevoerde waarde is onjuist.
          Voer een numerieke waarde tussen 1 en 409 in.", "SSE.Controllers.Toolbar.textFraction": "Breuken", "SSE.Controllers.Toolbar.textFunction": "Functies", + "SSE.Controllers.Toolbar.textInsert": "Invoegen", "SSE.Controllers.Toolbar.textIntegral": "Integralen", "SSE.Controllers.Toolbar.textLargeOperator": "Grote operators", "SSE.Controllers.Toolbar.textLimitAndLog": "Limieten en logaritmen", @@ -586,6 +915,7 @@ "SSE.Controllers.Toolbar.txtBracket_UppLim": "Haakjes", "SSE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen": "Enkel haakje", "SSE.Controllers.Toolbar.txtBracket_UppLim_OpenNone": "Enkel haakje", + "SSE.Controllers.Toolbar.txtDeleteCells": "verwijder cellen", "SSE.Controllers.Toolbar.txtExpand": "Uitvouwen en sorteren", "SSE.Controllers.Toolbar.txtExpandSort": "De gegevens naast de selectie worden niet gesorteerd. Wilt u de selectie uitbreiden en aangrenzende gegevens opnemen of wilt u doorgaan met sorteren van alleen de cellen die op dit moment zijn geselecteerd?", "SSE.Controllers.Toolbar.txtFractionDiagonal": "Breuk met schuine deelstreep", @@ -624,6 +954,7 @@ "SSE.Controllers.Toolbar.txtFunction_Sinh": "Functie voor sinus hyperbolicus", "SSE.Controllers.Toolbar.txtFunction_Tan": "Tangensfunctie", "SSE.Controllers.Toolbar.txtFunction_Tanh": "Functie voor tangens hyperbolicus", + "SSE.Controllers.Toolbar.txtInsertCells": "Cellen invoegen", "SSE.Controllers.Toolbar.txtIntegral": "Integraal", "SSE.Controllers.Toolbar.txtIntegral_dtheta": "Differentieel theta", "SSE.Controllers.Toolbar.txtIntegral_dx": "Differentieel x", @@ -845,6 +1176,7 @@ "SSE.Controllers.Viewport.textHideFBar": "Formulebalk verbergen", "SSE.Controllers.Viewport.textHideGridlines": "Rasterlijnen verbergen", "SSE.Controllers.Viewport.textHideHeadings": "Koppen verbergen", + "SSE.Views.AdvancedSeparatorDialog.textTitle": "Geavanceerde instellingen", "SSE.Views.AutoFilterDialog.btnCustomFilter": "Aangepast filter", "SSE.Views.AutoFilterDialog.textAddSelection": "Huidige selectie toevoegen aan filter", "SSE.Views.AutoFilterDialog.textEmptyItem": "{Leeg}", @@ -876,9 +1208,11 @@ "SSE.Views.AutoFilterDialog.txtSortFontColor": "Sorteren op tekstkleur", "SSE.Views.AutoFilterDialog.txtSortHigh2Low": "Sorteren van hoogste naar laagste", "SSE.Views.AutoFilterDialog.txtSortLow2High": "Sorteren van laagste naar hoogste", + "SSE.Views.AutoFilterDialog.txtSortOption": "Meer sorteer opties", "SSE.Views.AutoFilterDialog.txtTextFilter": "Tekstfilter", "SSE.Views.AutoFilterDialog.txtTitle": "Filter", "SSE.Views.AutoFilterDialog.txtTop10": "Top 10", + "SSE.Views.AutoFilterDialog.warnFilterError": "U hebt ten minste één veld in het gebied Waarden nodig om een waardefilter toe te passen.", "SSE.Views.AutoFilterDialog.warnNoSelected": "U moet ten minste één waarde selecteren", "SSE.Views.CellEditor.textManager": "Namen beheren", "SSE.Views.CellEditor.tipFormula": "Functie invoegen", @@ -887,6 +1221,35 @@ "SSE.Views.CellRangeDialog.txtEmpty": "Dit veld is vereist", "SSE.Views.CellRangeDialog.txtInvalidRange": "FOUT! Ongeldig celbereik", "SSE.Views.CellRangeDialog.txtTitle": "Gegevensbereik selecteren", + "SSE.Views.CellSettings.strShrink": "Verklein om te passen", + "SSE.Views.CellSettings.strWrap": "Tekstterugloop", + "SSE.Views.CellSettings.textAngle": "Hoek", + "SSE.Views.CellSettings.textBackColor": "Arcering", + "SSE.Views.CellSettings.textBackground": "Arcering", + "SSE.Views.CellSettings.textBorderColor": "Kleur", + "SSE.Views.CellSettings.textBorders": "Randstijl", + "SSE.Views.CellSettings.textColor": "Kleuropvulling", + "SSE.Views.CellSettings.textDirection": "Richting", + "SSE.Views.CellSettings.textFill": "Vullen", + "SSE.Views.CellSettings.textForeground": "Voorgrondkleur", + "SSE.Views.CellSettings.textGradient": "Kleurovergang", + "SSE.Views.CellSettings.textGradientFill": "Vulling met kleurovergang", + "SSE.Views.CellSettings.textLinear": "Lineair", + "SSE.Views.CellSettings.textNoFill": "Geen vulling", + "SSE.Views.CellSettings.textPattern": "Patroon", + "SSE.Views.CellSettings.textPatternFill": "Patroon", + "SSE.Views.CellSettings.textRadial": "Radiaal", + "SSE.Views.CellSettings.textSelectBorders": "Selecteer de randen die u wilt wijzigen door de hierboven gekozen stijl toe te passen", + "SSE.Views.CellSettings.tipAll": "Buitenrand en alle binnenlijnen instellen", + "SSE.Views.CellSettings.tipBottom": "Alleen buitenrand onder instellen", + "SSE.Views.CellSettings.tipInner": "Alleen binnenlijnen instellen", + "SSE.Views.CellSettings.tipInnerHor": "Alleen horizontale binnenlijnen instellen", + "SSE.Views.CellSettings.tipInnerVert": "Alleen verticale binnenlijnen instellen", + "SSE.Views.CellSettings.tipLeft": "Alleen buitenrand links instellen", + "SSE.Views.CellSettings.tipNone": "Geen randen instellen", + "SSE.Views.CellSettings.tipOuter": "Alleen buitenrand instellen", + "SSE.Views.CellSettings.tipRight": "Alleen buitenrand rechts instellen", + "SSE.Views.CellSettings.tipTop": "Alleen buitenrand boven instellen", "SSE.Views.ChartSettings.strLineWeight": "Lijndikte", "SSE.Views.ChartSettings.strSparkColor": "Kleur", "SSE.Views.ChartSettings.strTemplate": "Sjabloon", @@ -986,6 +1349,7 @@ "SSE.Views.ChartSettingsDlg.textNextToAxis": "Naast as", "SSE.Views.ChartSettingsDlg.textNone": "Geen", "SSE.Views.ChartSettingsDlg.textNoOverlay": "Geen overlay", + "SSE.Views.ChartSettingsDlg.textOneCell": "Verplaats maar pas het formaat niet aan op cellen", "SSE.Views.ChartSettingsDlg.textOnTickMarks": "Op maatstreepjes", "SSE.Views.ChartSettingsDlg.textOut": "Buiten", "SSE.Views.ChartSettingsDlg.textOuterTop": "Buiten boven", @@ -1020,6 +1384,7 @@ "SSE.Views.ChartSettingsDlg.textTitleSparkline": "Sparkline - Geavanceerde instellingen", "SSE.Views.ChartSettingsDlg.textTop": "Boven", "SSE.Views.ChartSettingsDlg.textTrillions": "Biljoenen", + "SSE.Views.ChartSettingsDlg.textTwoCell": "Verplaats en pas aan op cellen", "SSE.Views.ChartSettingsDlg.textType": "Type", "SSE.Views.ChartSettingsDlg.textTypeData": "Type en gegevens", "SSE.Views.ChartSettingsDlg.textTypeStyle": "Type, stijl en gegevensbereik
          grafiek", @@ -1032,6 +1397,18 @@ "SSE.Views.ChartSettingsDlg.textYAxisTitle": "Titel Y-as", "SSE.Views.ChartSettingsDlg.textZero": "Nul", "SSE.Views.ChartSettingsDlg.txtEmpty": "Dit veld is vereist", + "SSE.Views.CreatePivotDialog.textDataRange": "Brongegevensbereik", + "SSE.Views.CreatePivotDialog.textDestination": "Kies waar u het tabel wilt plaatsen", + "SSE.Views.CreatePivotDialog.textInvalidRange": "Ongeldig celbereik", + "SSE.Views.CreatePivotDialog.textSelectData": "Gegevens selecteren", + "SSE.Views.CreatePivotDialog.textTitle": "Maak een draaitabel", + "SSE.Views.CreatePivotDialog.txtEmpty": "Dit veld is vereist", + "SSE.Views.DataTab.capBtnGroup": "Groeperen", + "SSE.Views.DataTab.capBtnTextRemDuplicates": "Verwijder duplicaten", + "SSE.Views.DataTab.capBtnUngroup": "Groepering opheffen", + "SSE.Views.DataTab.textBelow": "Samenvatting rijen onder detail", + "SSE.Views.DataTab.textGroupColumns": "Kolommen groeperen", + "SSE.Views.DataTab.textRightOf": "Overzichtskolommen rechts van detail", "SSE.Views.DigitalFilterDialog.capAnd": "En", "SSE.Views.DigitalFilterDialog.capCondition1": "is gelijk", "SSE.Views.DigitalFilterDialog.capCondition10": "eindigt niet met", @@ -1080,19 +1457,45 @@ "SSE.Views.DocumentHolder.strDetails": "Handtekening details", "SSE.Views.DocumentHolder.strSetup": "Handtekening opzet", "SSE.Views.DocumentHolder.strSign": "Teken", + "SSE.Views.DocumentHolder.textAlign": "Uitlijnen", + "SSE.Views.DocumentHolder.textArrange": "Ordenen", "SSE.Views.DocumentHolder.textArrangeBack": "Naar achtergrond sturen", "SSE.Views.DocumentHolder.textArrangeBackward": "Naar Achteren Verplaatsen", "SSE.Views.DocumentHolder.textArrangeForward": "Naar Voren Verplaatsen", "SSE.Views.DocumentHolder.textArrangeFront": "Naar voorgrond brengen", + "SSE.Views.DocumentHolder.textAverage": "Gemiddeld", + "SSE.Views.DocumentHolder.textCount": "AANTAL", + "SSE.Views.DocumentHolder.textCrop": "Uitsnijden", + "SSE.Views.DocumentHolder.textCropFill": "Vullen", + "SSE.Views.DocumentHolder.textCropFit": "Aanpassen", "SSE.Views.DocumentHolder.textEntriesList": "Selecteren uit de vervolgkeuzelijst", + "SSE.Views.DocumentHolder.textFlipH": "Horizontaal omdraaien", + "SSE.Views.DocumentHolder.textFlipV": "Verticaal omdraaien", "SSE.Views.DocumentHolder.textFreezePanes": "Deelvensters blokkeren", "SSE.Views.DocumentHolder.textFromFile": "Van bestand", + "SSE.Views.DocumentHolder.textFromStorage": "Van Opslag", "SSE.Views.DocumentHolder.textFromUrl": "Van URL", + "SSE.Views.DocumentHolder.textListSettings": "Lijst instellingen", + "SSE.Views.DocumentHolder.textMax": "Max", + "SSE.Views.DocumentHolder.textMin": "Min", + "SSE.Views.DocumentHolder.textMore": "Meer functies", "SSE.Views.DocumentHolder.textMoreFormats": "Meer indelingen", "SSE.Views.DocumentHolder.textNone": "Geen", "SSE.Views.DocumentHolder.textReplace": "Afbeelding vervangen", + "SSE.Views.DocumentHolder.textRotate": "Draaien", + "SSE.Views.DocumentHolder.textRotate270": "Draaien 90° linksom", + "SSE.Views.DocumentHolder.textRotate90": "Draaien 90° rechtsom", + "SSE.Views.DocumentHolder.textShapeAlignBottom": "Onder uitlijnen", + "SSE.Views.DocumentHolder.textShapeAlignCenter": "Centreren", + "SSE.Views.DocumentHolder.textShapeAlignLeft": "Links uitlijnen", + "SSE.Views.DocumentHolder.textShapeAlignMiddle": "Centreren", + "SSE.Views.DocumentHolder.textShapeAlignRight": "Rechts uitlijnen", + "SSE.Views.DocumentHolder.textShapeAlignTop": "Boven uitlijnen", + "SSE.Views.DocumentHolder.textStdDev": "StdDev", + "SSE.Views.DocumentHolder.textSum": "Som", "SSE.Views.DocumentHolder.textUndo": "Ongedaan maken", "SSE.Views.DocumentHolder.textUnFreezePanes": "Blokkering deelvensters opheffen", + "SSE.Views.DocumentHolder.textVar": "Var", "SSE.Views.DocumentHolder.topCellText": "Boven uitlijnen", "SSE.Views.DocumentHolder.txtAccounting": "Boekhouding", "SSE.Views.DocumentHolder.txtAddComment": "Opmerking toevoegen", @@ -1119,6 +1522,8 @@ "SSE.Views.DocumentHolder.txtDate": "Datum", "SSE.Views.DocumentHolder.txtDelete": "Verwijderen", "SSE.Views.DocumentHolder.txtDescending": "Aflopend", + "SSE.Views.DocumentHolder.txtDistribHor": "Horizontaal verdelen", + "SSE.Views.DocumentHolder.txtDistribVert": "Verticaal verdelen", "SSE.Views.DocumentHolder.txtEditComment": "Opmerking bewerken", "SSE.Views.DocumentHolder.txtFilter": "Filter", "SSE.Views.DocumentHolder.txtFilterCellColor": "Filteren op celkleur", @@ -1134,6 +1539,7 @@ "SSE.Views.DocumentHolder.txtNumber": "Aantal", "SSE.Views.DocumentHolder.txtNumFormat": "Getalnotatie", "SSE.Views.DocumentHolder.txtPaste": "Plakken", + "SSE.Views.DocumentHolder.txtPercentage": "Percentage", "SSE.Views.DocumentHolder.txtReapply": "Opnieuw toepassen", "SSE.Views.DocumentHolder.txtRow": "Hele rij", "SSE.Views.DocumentHolder.txtRowHeight": "Rijhoogte instellen", @@ -1155,6 +1561,24 @@ "SSE.Views.DocumentHolder.txtUngroup": "Groepering opheffen", "SSE.Views.DocumentHolder.txtWidth": "Breedte", "SSE.Views.DocumentHolder.vertAlignText": "Verticale uitlijning", + "SSE.Views.FieldSettingsDialog.strLayout": "Pagina-indeling", + "SSE.Views.FieldSettingsDialog.strSubtotals": "Subtotalen", + "SSE.Views.FieldSettingsDialog.textTitle": "Veld instellingen", + "SSE.Views.FieldSettingsDialog.txtAverage": "Gemiddeld", + "SSE.Views.FieldSettingsDialog.txtCompact": "Compact", + "SSE.Views.FieldSettingsDialog.txtCount": "AANTAL", + "SSE.Views.FieldSettingsDialog.txtCountNums": "Tel nummers", + "SSE.Views.FieldSettingsDialog.txtEmpty": "Toon items zonder gegevens", + "SSE.Views.FieldSettingsDialog.txtMax": "Max", + "SSE.Views.FieldSettingsDialog.txtMin": "Min", + "SSE.Views.FieldSettingsDialog.txtProduct": "Product", + "SSE.Views.FieldSettingsDialog.txtShowSubtotals": "Toon subtotalen", + "SSE.Views.FieldSettingsDialog.txtSourceName": "Bron naam:", + "SSE.Views.FieldSettingsDialog.txtStdDev": "StdDev", + "SSE.Views.FieldSettingsDialog.txtStdDevp": "StdDevp", + "SSE.Views.FieldSettingsDialog.txtSum": "Som", + "SSE.Views.FieldSettingsDialog.txtVar": "Var", + "SSE.Views.FieldSettingsDialog.txtVarp": "Varp", "SSE.Views.FileMenu.btnBackCaption": "Naar documenten", "SSE.Views.FileMenu.btnCloseMenuCaption": "Menu sluiten", "SSE.Views.FileMenu.btnCreateNewCaption": "Nieuw maken", @@ -1169,17 +1593,29 @@ "SSE.Views.FileMenu.btnRightsCaption": "Toegangsrechten...", "SSE.Views.FileMenu.btnSaveAsCaption": "Opslaan als", "SSE.Views.FileMenu.btnSaveCaption": "Opslaan", + "SSE.Views.FileMenu.btnSaveCopyAsCaption": "Kopie opslaan als...", "SSE.Views.FileMenu.btnSettingsCaption": "Geavanceerde instellingen...", "SSE.Views.FileMenu.btnToEditCaption": "Spreadsheet bewerken", "SSE.Views.FileMenuPanels.CreateNew.fromBlankText": "Van leeg bestand", "SSE.Views.FileMenuPanels.CreateNew.fromTemplateText": "Van sjabloon", "SSE.Views.FileMenuPanels.CreateNew.newDescriptionText": "Maak een nieuw leeg spreadsheet waarop u na het maken een stijl en opmaak kunt toepassen tijdens het bewerken. U kunt ook een van de sjablonen kiezen om te beginnen met een spreadsheet van een bepaald type of voor een bepaald doel waarop sommige stijlen al zijn toegepast.", "SSE.Views.FileMenuPanels.CreateNew.newDocumentText": "Nieuwe spreadsheet", + "SSE.Views.FileMenuPanels.DocumentInfo.okButtonText": "Toepassen", + "SSE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Voeg auteur toe", + "SSE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Tekst toevoegen", + "SSE.Views.FileMenuPanels.DocumentInfo.txtAppName": "Applicatie", "SSE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Auteur", "SSE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Toegangsrechten wijzigen", + "SSE.Views.FileMenuPanels.DocumentInfo.txtComment": "Opmerking", + "SSE.Views.FileMenuPanels.DocumentInfo.txtCreated": "Aangemaakt", + "SSE.Views.FileMenuPanels.DocumentInfo.txtModifyBy": "Laatst aangepast door", + "SSE.Views.FileMenuPanels.DocumentInfo.txtModifyDate": "Laatst aangepast", + "SSE.Views.FileMenuPanels.DocumentInfo.txtOwner": "Eigenaar", "SSE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Locatie", "SSE.Views.FileMenuPanels.DocumentInfo.txtRights": "Personen met rechten", + "SSE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Onderwerp", "SSE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Titel spreadsheet", + "SSE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Geüpload", "SSE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Toegangsrechten wijzigen", "SSE.Views.FileMenuPanels.DocumentRights.txtRights": "Personen met rechten", "SSE.Views.FileMenuPanels.MainSettingsGeneral.okButtonText": "Toepassen", @@ -1194,6 +1630,9 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocale": "Taal formule", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocaleEx": "Voorbeeld: SUM; MIN; MAX; COUNT", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strLiveComment": "Weergave van opmerkingen inschakelen", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strMacrosSettings": "Macro instellingen", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPaste": "Knippen, kopiëren en plakken", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPasteButton": "Toon de knop Plakopties wanneer de inhoud is geplakt", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettings": "Regionale instellingen", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettingsEx": "Voorbeeld:", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strResolvedComment": "Weergave van opgeloste opmerkingen inschakelen", @@ -1209,19 +1648,32 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.textDisabled": "Gedeactiveerd", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textForceSave": "Opslaan op server", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textMinute": "Elke minuut", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.textRefStyle": "Referentie stijl", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCacheMode": "standaard cache modus", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCm": "Centimeter", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtDe": "Duits", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEn": "Engels", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEs": "Spaans", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtFr": "Frans", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtInch": "Inch", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtIt": "Italiaans", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLiveComment": "Commentaarweergave", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtMac": "als OS X", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNative": "Native", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPl": "Pools", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPt": "Punt", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRu": "Russisch", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRunMacros": "Alles inschakelen", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRunMacrosDesc": "Schakel alle macro's in zonder een notificatie", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStopMacros": "Alles uitschakelen", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStopMacrosDesc": "Schakel alle macro's uit zonder melding", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacros": "Weergeef notificatie", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacrosDesc": "Schakel alle macro's uit met een melding", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin": "als Windows", + "SSE.Views.FileMenuPanels.MainSpellCheckSettings.okButtonText": "Toepassen", + "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strDictionaryLanguage": "Woordenboek taal", + "SSE.Views.FileMenuPanels.MainSpellCheckSettings.txtAutoCorrect": "Instellingen automatische spellingscontrole", + "SSE.Views.FileMenuPanels.MainSpellCheckSettings.txtProofing": "Controlleren", "SSE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Waarschuwing", "SSE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "Met wachtwoord", "SSE.Views.FileMenuPanels.ProtectDoc.strProtect": "Werkblad beveiligen", @@ -1235,6 +1687,7 @@ "SSE.Views.FileMenuPanels.ProtectDoc.txtView": "Toon handtekeningen", "SSE.Views.FileMenuPanels.Settings.txtGeneral": "Algemeen", "SSE.Views.FileMenuPanels.Settings.txtPageSettings": "Pagina-instellingen", + "SSE.Views.FileMenuPanels.Settings.txtSpellChecking": "Spellingcontrole", "SSE.Views.FormatSettingsDialog.textCategory": "Categorie", "SSE.Views.FormatSettingsDialog.textDecimal": "Decimaal", "SSE.Views.FormatSettingsDialog.textFormat": "Opmaak", @@ -1266,44 +1719,123 @@ "SSE.Views.FormulaDialog.sDescription": "Beschrijving", "SSE.Views.FormulaDialog.textGroupDescription": "Functiegroep selecteren", "SSE.Views.FormulaDialog.textListDescription": "Functie selecteren", + "SSE.Views.FormulaDialog.txtRecommended": "Aanbevolen", + "SSE.Views.FormulaDialog.txtSearch": "Zoeken", "SSE.Views.FormulaDialog.txtTitle": "Functie invoegen", + "SSE.Views.FormulaTab.textAutomatic": "Automatisch", + "SSE.Views.FormulaTab.textCalculateCurrentSheet": "Bereken het huidige blad", + "SSE.Views.FormulaTab.textCalculateWorkbook": "Bereken werkmap", + "SSE.Views.FormulaTab.textManual": "Handmatig", + "SSE.Views.FormulaTab.tipCalculate": "Berekend", + "SSE.Views.FormulaTab.tipCalculateTheEntireWorkbook": "Bereken de hele werkmap", + "SSE.Views.FormulaTab.txtAdditional": "Extra", + "SSE.Views.FormulaTab.txtAutosum": "Autosum", + "SSE.Views.FormulaTab.txtAutosumTip": "Optelling", + "SSE.Views.FormulaTab.txtCalculation": "Berekening", + "SSE.Views.FormulaTab.txtFormula": "Functie", + "SSE.Views.FormulaTab.txtFormulaTip": "Functie invoegen", + "SSE.Views.FormulaTab.txtMore": "Meer functies", + "SSE.Views.FormulaTab.txtRecent": "Recent gebruikt", + "SSE.Views.FormulaWizard.textAny": "Elke", + "SSE.Views.FormulaWizard.textArgument": "Argument", + "SSE.Views.FormulaWizard.textFunction": "Functie", + "SSE.Views.FormulaWizard.textLogical": "Logisch", + "SSE.Views.FormulaWizard.textNumber": "Getal", + "SSE.Views.FormulaWizard.textRef": "Referentie", + "SSE.Views.FormulaWizard.textText": "Tekst", + "SSE.Views.FormulaWizard.textValue": "Resultaat formule", + "SSE.Views.GroupDialog.textColumns": "Kolommen", + "SSE.Views.GroupDialog.textRows": "Rijen", + "SSE.Views.HeaderFooterDialog.textAlign": "Lijn uit met paginamarges", + "SSE.Views.HeaderFooterDialog.textAll": "Alle pagina's", + "SSE.Views.HeaderFooterDialog.textBold": "Vet", + "SSE.Views.HeaderFooterDialog.textCenter": "Midden", + "SSE.Views.HeaderFooterDialog.textColor": "Tekstkleur", + "SSE.Views.HeaderFooterDialog.textDate": "Datum", + "SSE.Views.HeaderFooterDialog.textDiffFirst": "Eerste pagina afwijkend", + "SSE.Views.HeaderFooterDialog.textDiffOdd": "Even en oneven pagina's afwijkend", + "SSE.Views.HeaderFooterDialog.textEven": "Even pagina", + "SSE.Views.HeaderFooterDialog.textFileName": "Bestandsnaam", + "SSE.Views.HeaderFooterDialog.textFirst": "Eerste pagina", + "SSE.Views.HeaderFooterDialog.textFooter": "Voettekst", + "SSE.Views.HeaderFooterDialog.textHeader": "Koptekst", + "SSE.Views.HeaderFooterDialog.textInsert": "Invoegen", + "SSE.Views.HeaderFooterDialog.textItalic": "Cursief", + "SSE.Views.HeaderFooterDialog.textLeft": "Links", + "SSE.Views.HeaderFooterDialog.textNewColor": "Nieuwe aangepaste kleur toevoegen", + "SSE.Views.HeaderFooterDialog.textOdd": "Oneven pagina", + "SSE.Views.HeaderFooterDialog.textPageCount": "Aantal pagina's", + "SSE.Views.HeaderFooterDialog.textPageNum": "Paginanummer", + "SSE.Views.HeaderFooterDialog.textPresets": "Voorinstellingen", + "SSE.Views.HeaderFooterDialog.textRight": "Rechts", + "SSE.Views.HeaderFooterDialog.textSheet": "Bladnaam", + "SSE.Views.HeaderFooterDialog.textStrikeout": "Doorhalen", + "SSE.Views.HeaderFooterDialog.textSubscript": "Subscript", + "SSE.Views.HeaderFooterDialog.textSuperscript": "Superscript", + "SSE.Views.HeaderFooterDialog.textTime": "Tijd", + "SSE.Views.HeaderFooterDialog.textUnderline": "Onderstreept", + "SSE.Views.HeaderFooterDialog.tipFontName": "Lettertype", + "SSE.Views.HeaderFooterDialog.tipFontSize": "Tekengrootte", "SSE.Views.HyperlinkSettingsDialog.strDisplay": "Weergeven", "SSE.Views.HyperlinkSettingsDialog.strLinkTo": "Koppelen aan", "SSE.Views.HyperlinkSettingsDialog.strRange": "Bereik", "SSE.Views.HyperlinkSettingsDialog.strSheet": "Blad", + "SSE.Views.HyperlinkSettingsDialog.textCopy": "Kopiëren", "SSE.Views.HyperlinkSettingsDialog.textDefault": "Geselecteerd bereik", "SSE.Views.HyperlinkSettingsDialog.textEmptyDesc": "Bijschrift hier invoeren", "SSE.Views.HyperlinkSettingsDialog.textEmptyLink": "Koppeling hier invoeren", "SSE.Views.HyperlinkSettingsDialog.textEmptyTooltip": "Tooltip hier invoeren", "SSE.Views.HyperlinkSettingsDialog.textExternalLink": "Externe koppeling", + "SSE.Views.HyperlinkSettingsDialog.textGetLink": "Link ophalen", "SSE.Views.HyperlinkSettingsDialog.textInternalLink": "Intern gegevensbereik", "SSE.Views.HyperlinkSettingsDialog.textInvalidRange": "FOUT! Ongeldig celbereik", + "SSE.Views.HyperlinkSettingsDialog.textNames": "Gedefinieerde namen", + "SSE.Views.HyperlinkSettingsDialog.textSelectData": "Gegevens selecteren", "SSE.Views.HyperlinkSettingsDialog.textTipText": "Tekst van Scherminfo", "SSE.Views.HyperlinkSettingsDialog.textTitle": "Instellingen hyperlink", "SSE.Views.HyperlinkSettingsDialog.txtEmpty": "Dit veld is vereist", "SSE.Views.HyperlinkSettingsDialog.txtNotUrl": "Dit veld moet een URL in de notatie \"http://www.voorbeeld.com\" bevatten", "SSE.Views.ImageSettings.textAdvanced": "Geavanceerde instellingen tonen", + "SSE.Views.ImageSettings.textCrop": "Uitsnijden", + "SSE.Views.ImageSettings.textCropFill": "Vullen", + "SSE.Views.ImageSettings.textCropFit": "Aanpassen", "SSE.Views.ImageSettings.textEdit": "Bewerken", "SSE.Views.ImageSettings.textEditObject": "Object bewerken", + "SSE.Views.ImageSettings.textFlip": "Draaien", "SSE.Views.ImageSettings.textFromFile": "Van bestand", + "SSE.Views.ImageSettings.textFromStorage": "Van Opslag", "SSE.Views.ImageSettings.textFromUrl": "Van URL", "SSE.Views.ImageSettings.textHeight": "Hoogte", + "SSE.Views.ImageSettings.textHint270": "Draaien 90° linksom", + "SSE.Views.ImageSettings.textHint90": "Draaien 90° rechtsom", + "SSE.Views.ImageSettings.textHintFlipH": "Horizontaal omdraaien", + "SSE.Views.ImageSettings.textHintFlipV": "Verticaal omdraaien", "SSE.Views.ImageSettings.textInsert": "Afbeelding vervangen", "SSE.Views.ImageSettings.textKeepRatio": "Constante verhoudingen", "SSE.Views.ImageSettings.textOriginalSize": "Standaardgrootte", + "SSE.Views.ImageSettings.textRotate90": "Draaien 90°", + "SSE.Views.ImageSettings.textRotation": "Draaien", "SSE.Views.ImageSettings.textSize": "Grootte", "SSE.Views.ImageSettings.textWidth": "Breedte", "SSE.Views.ImageSettingsAdvanced.textAlt": "Alternatieve tekst", "SSE.Views.ImageSettingsAdvanced.textAltDescription": "Beschrijving", "SSE.Views.ImageSettingsAdvanced.textAltTip": "De alternatieve, op tekst gebaseerde weergave van de visuele objectinformatie. Deze wordt voorgelezen voor mensen met visuele of cognitieve handicaps om hen te helpen begrijpen welke informatie aanwezig is in de afbeelding, AutoVorm, grafiek of tabel.", "SSE.Views.ImageSettingsAdvanced.textAltTitle": "Titel", + "SSE.Views.ImageSettingsAdvanced.textAngle": "Hoek", + "SSE.Views.ImageSettingsAdvanced.textFlipped": "Gedraaid", + "SSE.Views.ImageSettingsAdvanced.textHorizontally": "Horizontaal", + "SSE.Views.ImageSettingsAdvanced.textOneCell": "Verplaats maar pas het formaat niet aan op cellen", + "SSE.Views.ImageSettingsAdvanced.textRotation": "Draaien", "SSE.Views.ImageSettingsAdvanced.textTitle": "Afbeelding - Geavanceerde instellingen", + "SSE.Views.ImageSettingsAdvanced.textTwoCell": "Verplaats en pas aan op cellen", + "SSE.Views.ImageSettingsAdvanced.textVertically": "Verticaal ", "SSE.Views.LeftMenu.tipAbout": "Over", "SSE.Views.LeftMenu.tipChat": "Chat", "SSE.Views.LeftMenu.tipComments": "Opmerkingen", "SSE.Views.LeftMenu.tipFile": "Bestand", "SSE.Views.LeftMenu.tipPlugins": "Plug-ins", "SSE.Views.LeftMenu.tipSearch": "Zoeken", + "SSE.Views.LeftMenu.tipSpellcheck": "Spellingcontrole", "SSE.Views.LeftMenu.tipSupport": "Feedback en Support", "SSE.Views.LeftMenu.txtDeveloper": "ONTWIKKELAARSMODUS", "SSE.Views.LeftMenu.txtTrial": "TEST MODUS", @@ -1314,9 +1846,11 @@ "SSE.Views.MainSettingsPrint.strMargins": "Marges", "SSE.Views.MainSettingsPrint.strPortrait": "Staand", "SSE.Views.MainSettingsPrint.strPrint": "Afdrukken", + "SSE.Views.MainSettingsPrint.strPrintTitles": "Titels afdrukken", "SSE.Views.MainSettingsPrint.strRight": "Rechts", "SSE.Views.MainSettingsPrint.strTop": "Boven", "SSE.Views.MainSettingsPrint.textActualSize": "Ware grootte", + "SSE.Views.MainSettingsPrint.textCustom": "Aangepast", "SSE.Views.MainSettingsPrint.textFitCols": "Alle kolommen passend maken voor één pagina", "SSE.Views.MainSettingsPrint.textFitPage": "Blad passend maken voor één pagina", "SSE.Views.MainSettingsPrint.textFitRows": "Alle rijen passend maken voor één pagina", @@ -1325,6 +1859,7 @@ "SSE.Views.MainSettingsPrint.textPageSize": "Paginaformaat", "SSE.Views.MainSettingsPrint.textPrintGrid": "Rasterlijnen afdrukken", "SSE.Views.MainSettingsPrint.textPrintHeadings": "Rij- en kolomkoppen afdrukken", + "SSE.Views.MainSettingsPrint.textRepeat": "Herhalen...", "SSE.Views.MainSettingsPrint.textSettings": "Instellingen voor", "SSE.Views.NamedRangeEditDlg.errorCreateDefName": "De bestaande benoemde bereiken kunnen niet worden bewerkt en de nieuwe bereiken kunnen
          op dit moment niet worden gemaakt aangezien sommige bereiken al worden bewerkt.", "SSE.Views.NamedRangeEditDlg.namePlaceholder": "Gedefinieerde naam", @@ -1363,6 +1898,11 @@ "SSE.Views.NameManagerDlg.textWorkbook": "Werkmap", "SSE.Views.NameManagerDlg.tipIsLocked": "Dit element wordt bewerkt door een andere gebruiker.", "SSE.Views.NameManagerDlg.txtTitle": "Namen beheren", + "SSE.Views.PageMarginsDialog.textBottom": "Onder", + "SSE.Views.PageMarginsDialog.textLeft": "Links", + "SSE.Views.PageMarginsDialog.textRight": "Rechts", + "SSE.Views.PageMarginsDialog.textTitle": "Marges", + "SSE.Views.PageMarginsDialog.textTop": "Boven", "SSE.Views.ParagraphSettings.strLineHeight": "Regelafstand", "SSE.Views.ParagraphSettings.strParagraphSpacing": "Afstand tussen alinea's", "SSE.Views.ParagraphSettings.strSpacingAfter": "Na", @@ -1376,19 +1916,32 @@ "SSE.Views.ParagraphSettingsAdvanced.noTabs": "De opgegeven tabbladen worden in dit veld weergegeven", "SSE.Views.ParagraphSettingsAdvanced.strAllCaps": "Allemaal hoofdletters", "SSE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Dubbel doorhalen", + "SSE.Views.ParagraphSettingsAdvanced.strIndent": "Inspringen", "SSE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Links", + "SSE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing": "Regelafstand", "SSE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Rechts", + "SSE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter": "Na", + "SSE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore": "Voor", + "SSE.Views.ParagraphSettingsAdvanced.strIndentsSpecial": "Speciaal", + "SSE.Views.ParagraphSettingsAdvanced.strIndentsSpecialBy": "Door", "SSE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Lettertype", "SSE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "Inspringingen en plaatsing", "SSE.Views.ParagraphSettingsAdvanced.strSmallCaps": "Kleine hoofdletters", + "SSE.Views.ParagraphSettingsAdvanced.strSpacing": "Afstand", "SSE.Views.ParagraphSettingsAdvanced.strStrike": "Doorhalen", "SSE.Views.ParagraphSettingsAdvanced.strSubscript": "Subscript", "SSE.Views.ParagraphSettingsAdvanced.strSuperscript": "Superscript", "SSE.Views.ParagraphSettingsAdvanced.strTabs": "Tab", "SSE.Views.ParagraphSettingsAdvanced.textAlign": "Uitlijnen", + "SSE.Views.ParagraphSettingsAdvanced.textAuto": "Meerdere", "SSE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Tekenafstand", "SSE.Views.ParagraphSettingsAdvanced.textDefault": "Standaardtabblad", "SSE.Views.ParagraphSettingsAdvanced.textEffects": "Effecten", + "SSE.Views.ParagraphSettingsAdvanced.textExact": "Exact", + "SSE.Views.ParagraphSettingsAdvanced.textFirstLine": "Eerste regel", + "SSE.Views.ParagraphSettingsAdvanced.textHanging": "Hangend", + "SSE.Views.ParagraphSettingsAdvanced.textJustified": "Uitgevuld", + "SSE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(geen)", "SSE.Views.ParagraphSettingsAdvanced.textRemove": "Verwijderen", "SSE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Alles verwijderen", "SSE.Views.ParagraphSettingsAdvanced.textSet": "Opgeven", @@ -1397,6 +1950,25 @@ "SSE.Views.ParagraphSettingsAdvanced.textTabPosition": "Tabpositie", "SSE.Views.ParagraphSettingsAdvanced.textTabRight": "Rechts", "SSE.Views.ParagraphSettingsAdvanced.textTitle": "Alinea - Geavanceerde instellingen", + "SSE.Views.ParagraphSettingsAdvanced.txtAutoText": "Automatisch", + "SSE.Views.PivotDigitalFilterDialog.capCondition1": "is gelijk", + "SSE.Views.PivotDigitalFilterDialog.capCondition10": "eindigt niet met", + "SSE.Views.PivotDigitalFilterDialog.capCondition11": "bevat", + "SSE.Views.PivotDigitalFilterDialog.capCondition12": "bevat niet", + "SSE.Views.PivotDigitalFilterDialog.capCondition13": "tussen", + "SSE.Views.PivotDigitalFilterDialog.capCondition2": "is niet gelijk", + "SSE.Views.PivotDigitalFilterDialog.capCondition3": "is groter dan", + "SSE.Views.PivotDigitalFilterDialog.capCondition4": "is groter dan of gelijk aan", + "SSE.Views.PivotDigitalFilterDialog.capCondition5": "is kleiner dan", + "SSE.Views.PivotDigitalFilterDialog.capCondition6": "is kleiner dan of gelijk aan", + "SSE.Views.PivotDigitalFilterDialog.capCondition7": "begint met", + "SSE.Views.PivotDigitalFilterDialog.capCondition8": "begint niet met", + "SSE.Views.PivotDigitalFilterDialog.capCondition9": "eindigt met", + "SSE.Views.PivotDigitalFilterDialog.textShowLabel": "Toon items waarvoor het label:", + "SSE.Views.PivotDigitalFilterDialog.textShowValue": "Toon items waarvoor:", + "SSE.Views.PivotDigitalFilterDialog.textUse1": "Gebruik ? als jokerteken voor een enkel teken", + "SSE.Views.PivotDigitalFilterDialog.textUse2": "Gebruik * als jokerteken voor een reeks tekens", + "SSE.Views.PivotDigitalFilterDialog.txtAnd": "En", "SSE.Views.PivotSettings.textAdvanced": "Geavanceerde Instellingen Tonen", "SSE.Views.PivotSettings.textColumns": "Kolommen", "SSE.Views.PivotSettings.textFields": "Selecteer velden", @@ -1417,6 +1989,20 @@ "SSE.Views.PivotSettings.txtMoveUp": "Naar boven", "SSE.Views.PivotSettings.txtMoveValues": "Naar waarden", "SSE.Views.PivotSettings.txtRemove": "Veld verwijderen", + "SSE.Views.PivotSettingsAdvanced.textAlt": "Alternatieve tekst", + "SSE.Views.PivotSettingsAdvanced.textAltDescription": "Beschrijving", + "SSE.Views.PivotSettingsAdvanced.textAltTip": "De alternatieve, op tekst gebaseerde weergave van de visuele objectinformatie. Deze wordt voorgelezen voor mensen met visuele of cognitieve handicaps om hen te helpen begrijpen welke informatie aanwezig is in de afbeelding, AutoVorm, grafiek of tabel.", + "SSE.Views.PivotSettingsAdvanced.textAltTitle": "Titel", + "SSE.Views.PivotSettingsAdvanced.textDataRange": "Gegevensbereik", + "SSE.Views.PivotSettingsAdvanced.textDataSource": "Gegevensbron", + "SSE.Views.PivotSettingsAdvanced.textGrandTotals": "Eindtotalen", + "SSE.Views.PivotSettingsAdvanced.textInvalidRange": "FOUT! Ongeldig celbereik", + "SSE.Views.PivotSettingsAdvanced.textSelectData": "Gegevens selecteren", + "SSE.Views.PivotSettingsAdvanced.textShowCols": "Toon voor kolommen", + "SSE.Views.PivotSettingsAdvanced.textShowRows": "Toon voor rijen", + "SSE.Views.PivotSettingsAdvanced.textTitle": "Draaitabel - Geavanceerde instellingen", + "SSE.Views.PivotSettingsAdvanced.txtEmpty": "Dit veld is vereist", + "SSE.Views.PivotSettingsAdvanced.txtName": "Naam", "SSE.Views.PivotTable.capBlankRows": "Lege rijen", "SSE.Views.PivotTable.capGrandTotals": "Grote totalen", "SSE.Views.PivotTable.capLayout": "Raporteer layout", @@ -1455,12 +2041,14 @@ "SSE.Views.PrintSettings.strMargins": "Marges", "SSE.Views.PrintSettings.strPortrait": "Staand", "SSE.Views.PrintSettings.strPrint": "Afdrukken", + "SSE.Views.PrintSettings.strPrintTitles": "Titels afdrukken", "SSE.Views.PrintSettings.strRight": "Rechts", "SSE.Views.PrintSettings.strShow": "Tonen", "SSE.Views.PrintSettings.strTop": "Boven", "SSE.Views.PrintSettings.textActualSize": "Ware grootte", "SSE.Views.PrintSettings.textAllSheets": "Alle werkbladen", "SSE.Views.PrintSettings.textCurrentSheet": "Huidig blad", + "SSE.Views.PrintSettings.textCustom": "Aangepast", "SSE.Views.PrintSettings.textFitCols": "Alle kolommen passend maken voor één pagina", "SSE.Views.PrintSettings.textFitPage": "Blad passend maken voor één pagina", "SSE.Views.PrintSettings.textFitRows": "Alle rijen passend maken voor één pagina", @@ -1473,6 +2061,7 @@ "SSE.Views.PrintSettings.textPrintHeadings": "Rij- en kolomkoppen afdrukken", "SSE.Views.PrintSettings.textPrintRange": "Afdrukbereik", "SSE.Views.PrintSettings.textRange": "Bereik", + "SSE.Views.PrintSettings.textRepeat": "Herhalen...", "SSE.Views.PrintSettings.textSelection": "Selectie", "SSE.Views.PrintSettings.textSettings": "Bladinstellingen", "SSE.Views.PrintSettings.textShowDetails": "Details tonen", @@ -1480,6 +2069,15 @@ "SSE.Views.PrintSettings.textShowHeadings": "Toon rij- en kolomkoppen", "SSE.Views.PrintSettings.textTitle": "Afdrukinstellingen", "SSE.Views.PrintSettings.textTitlePDF": "PDF instellingen", + "SSE.Views.PrintTitlesDialog.textFirstCol": "Eerste kolom", + "SSE.Views.PrintTitlesDialog.textInvalidRange": "FOUT! Ongeldig celbereik", + "SSE.Views.PrintTitlesDialog.textNoRepeat": "Niet herhalen", + "SSE.Views.PrintTitlesDialog.textRepeat": "Herhalen...", + "SSE.Views.PrintTitlesDialog.textTitle": "Titels afdrukken", + "SSE.Views.RemoveDuplicatesDialog.textColumns": "Kolommen", + "SSE.Views.RemoveDuplicatesDialog.textSelectAll": "Alles Selecteren", + "SSE.Views.RemoveDuplicatesDialog.txtTitle": "Verwijder duplicaten", + "SSE.Views.RightMenu.txtCellSettings": "Cel instellingen", "SSE.Views.RightMenu.txtChartSettings": "Grafiekinstellingen", "SSE.Views.RightMenu.txtImageSettings": "Afbeeldingsinstellingen", "SSE.Views.RightMenu.txtParagraphSettings": "Tekstinstellingen", @@ -1490,6 +2088,13 @@ "SSE.Views.RightMenu.txtSparklineSettings": "Instellingen sparkline", "SSE.Views.RightMenu.txtTableSettings": "Tabelinstellingen", "SSE.Views.RightMenu.txtTextArtSettings": "TextArt-instellingen", + "SSE.Views.ScaleDialog.textAuto": "Automatisch", + "SSE.Views.ScaleDialog.textFewPages": "Pagina's", + "SSE.Views.ScaleDialog.textFitTo": "Aanpassen aan", + "SSE.Views.ScaleDialog.textHeight": "Hoogte", + "SSE.Views.ScaleDialog.textManyPages": "Pagina's", + "SSE.Views.ScaleDialog.textOnePage": "Pagina", + "SSE.Views.ScaleDialog.textWidth": "Breedte", "SSE.Views.SetValueDialog.txtMaxText": "De maximumwaarde voor dit veld is {0}", "SSE.Views.SetValueDialog.txtMinText": "De minimumwaarde voor dit veld is {0}", "SSE.Views.ShapeSettings.strBackground": "Achtergrondkleur", @@ -1498,6 +2103,7 @@ "SSE.Views.ShapeSettings.strFill": "Vulling", "SSE.Views.ShapeSettings.strForeground": "Voorgrondkleur", "SSE.Views.ShapeSettings.strPattern": "Patroon", + "SSE.Views.ShapeSettings.strShadow": "Weergeef schaduw", "SSE.Views.ShapeSettings.strSize": "Grootte", "SSE.Views.ShapeSettings.strStroke": "Streek", "SSE.Views.ShapeSettings.strTransparency": "Ondoorzichtigheid", @@ -1507,16 +2113,25 @@ "SSE.Views.ShapeSettings.textColor": "Kleuropvulling", "SSE.Views.ShapeSettings.textDirection": "Richting", "SSE.Views.ShapeSettings.textEmptyPattern": "Geen patroon", + "SSE.Views.ShapeSettings.textFlip": "Draaien", "SSE.Views.ShapeSettings.textFromFile": "Van bestand", + "SSE.Views.ShapeSettings.textFromStorage": "Van Opslag", "SSE.Views.ShapeSettings.textFromUrl": "Van URL", "SSE.Views.ShapeSettings.textGradient": "Kleurovergang", "SSE.Views.ShapeSettings.textGradientFill": "Vulling met kleurovergang", + "SSE.Views.ShapeSettings.textHint270": "Draaien 90° linksom", + "SSE.Views.ShapeSettings.textHint90": "Draaien 90° rechtsom", + "SSE.Views.ShapeSettings.textHintFlipH": "Horizontaal omdraaien", + "SSE.Views.ShapeSettings.textHintFlipV": "Verticaal omdraaien", "SSE.Views.ShapeSettings.textImageTexture": "Afbeelding of textuur", "SSE.Views.ShapeSettings.textLinear": "Lineair", "SSE.Views.ShapeSettings.textNoFill": "Geen vulling", "SSE.Views.ShapeSettings.textOriginalSize": "Oorspronkelijke grootte", "SSE.Views.ShapeSettings.textPatternFill": "Patroon", "SSE.Views.ShapeSettings.textRadial": "Radiaal", + "SSE.Views.ShapeSettings.textRotate90": "Draaien 90°", + "SSE.Views.ShapeSettings.textRotation": "Draaien", + "SSE.Views.ShapeSettings.textSelectImage": "selecteer afbeelding", "SSE.Views.ShapeSettings.textSelectTexture": "Selecteren", "SSE.Views.ShapeSettings.textStretch": "Uitrekken", "SSE.Views.ShapeSettings.textStyle": "Stijl", @@ -1540,7 +2155,9 @@ "SSE.Views.ShapeSettingsAdvanced.textAltDescription": "Beschrijving", "SSE.Views.ShapeSettingsAdvanced.textAltTip": "De alternatieve, op tekst gebaseerde weergave van de visuele objectinformatie. Deze wordt voorgelezen voor mensen met visuele of cognitieve handicaps om hen te helpen begrijpen welke informatie aanwezig is in de afbeelding, AutoVorm, grafiek of tabel.", "SSE.Views.ShapeSettingsAdvanced.textAltTitle": "Titel", + "SSE.Views.ShapeSettingsAdvanced.textAngle": "Hoek", "SSE.Views.ShapeSettingsAdvanced.textArrows": "Pijlen", + "SSE.Views.ShapeSettingsAdvanced.textAutofit": "Automatisch passend maken", "SSE.Views.ShapeSettingsAdvanced.textBeginSize": "Begingrootte", "SSE.Views.ShapeSettingsAdvanced.textBeginStyle": "Beginstijl", "SSE.Views.ShapeSettingsAdvanced.textBevel": "Schuine rand", @@ -1550,19 +2167,27 @@ "SSE.Views.ShapeSettingsAdvanced.textEndSize": "Eindgrootte", "SSE.Views.ShapeSettingsAdvanced.textEndStyle": "Eindstijl", "SSE.Views.ShapeSettingsAdvanced.textFlat": "Plat", + "SSE.Views.ShapeSettingsAdvanced.textFlipped": "Gedraaid", "SSE.Views.ShapeSettingsAdvanced.textHeight": "Hoogte", + "SSE.Views.ShapeSettingsAdvanced.textHorizontally": "Horizontaal", "SSE.Views.ShapeSettingsAdvanced.textJoinType": "Type join", "SSE.Views.ShapeSettingsAdvanced.textKeepRatio": "Constante verhoudingen", "SSE.Views.ShapeSettingsAdvanced.textLeft": "Links", "SSE.Views.ShapeSettingsAdvanced.textLineStyle": "Lijnstijl", "SSE.Views.ShapeSettingsAdvanced.textMiter": "Verstek", + "SSE.Views.ShapeSettingsAdvanced.textOneCell": "Verplaats maar pas het formaat niet aan op cellen", + "SSE.Views.ShapeSettingsAdvanced.textOverflow": "Laat tekst over de vorm lopen", "SSE.Views.ShapeSettingsAdvanced.textRight": "Rechts", + "SSE.Views.ShapeSettingsAdvanced.textRotation": "Draaien", "SSE.Views.ShapeSettingsAdvanced.textRound": "Rond", "SSE.Views.ShapeSettingsAdvanced.textSize": "Grootte", "SSE.Views.ShapeSettingsAdvanced.textSpacing": "Afstand tussen kolommen", "SSE.Views.ShapeSettingsAdvanced.textSquare": "Vierkant", + "SSE.Views.ShapeSettingsAdvanced.textTextBox": "Tekstvak", "SSE.Views.ShapeSettingsAdvanced.textTitle": "Vorm - Geavanceerde instellingen", "SSE.Views.ShapeSettingsAdvanced.textTop": "Boven", + "SSE.Views.ShapeSettingsAdvanced.textTwoCell": "Verplaats en pas aan op cellen", + "SSE.Views.ShapeSettingsAdvanced.textVertically": "Verticaal ", "SSE.Views.ShapeSettingsAdvanced.textWeightArrows": "Gewichten & pijlen", "SSE.Views.ShapeSettingsAdvanced.textWidth": "Breedte", "SSE.Views.SignatureSettings.notcriticalErrorTitle": "Waarschuwing", @@ -1580,25 +2205,142 @@ "SSE.Views.SignatureSettings.txtRequestedSignatures": "Deze spreadsheet moet ondertekend worden.", "SSE.Views.SignatureSettings.txtSigned": "Geldige handtekeningen zijn toegevoegd aan het werkblad. Dit werkblad is beveiligd tegen aanpassingen.", "SSE.Views.SignatureSettings.txtSignedInvalid": "Een of meer digitale handtekeningen in het werkblad zijn ongeldig of konden niet geverifieerd worden. Dit werkblad is beveiligd tegen aanpassingen.", + "SSE.Views.SlicerAddDialog.textColumns": "Kolommen", + "SSE.Views.SlicerSettings.strShowDel": "Toon items die zijn verwijderd uit de gegevensbron", + "SSE.Views.SlicerSettings.strShowNoData": "Toon items zonder gegevens als laatste", + "SSE.Views.SlicerSettings.strSorting": "Sorteren en filteren", + "SSE.Views.SlicerSettings.textAdvanced": "Geavanceerde Instellingen Tonen", + "SSE.Views.SlicerSettings.textAsc": "Oplopend", + "SSE.Views.SlicerSettings.textAZ": "A tot Z", + "SSE.Views.SlicerSettings.textButtons": "Knoppen", + "SSE.Views.SlicerSettings.textColumns": "Kolommen", + "SSE.Views.SlicerSettings.textDesc": "Aflopend", + "SSE.Views.SlicerSettings.textHeight": "Hoogte", + "SSE.Views.SlicerSettings.textHor": "Horizontaal", + "SSE.Views.SlicerSettings.textKeepRatio": "Constante verhoudingen", + "SSE.Views.SlicerSettings.textOldNew": "Van oud naar niew", + "SSE.Views.SlicerSettings.textPosition": "Positie", + "SSE.Views.SlicerSettings.textSize": "Grootte", + "SSE.Views.SlicerSettings.textSmallLarge": "Van klein naar Groot", + "SSE.Views.SlicerSettings.textStyle": "Stijl", + "SSE.Views.SlicerSettings.textVert": "Verticaal", + "SSE.Views.SlicerSettings.textWidth": "Breedte", + "SSE.Views.SlicerSettings.textZA": "Z naar A", + "SSE.Views.SlicerSettingsAdvanced.strButtons": "Knoppen", + "SSE.Views.SlicerSettingsAdvanced.strColumns": "Kolommen", + "SSE.Views.SlicerSettingsAdvanced.strHeight": "Hoogte", + "SSE.Views.SlicerSettingsAdvanced.strReferences": "Verwijzingen", + "SSE.Views.SlicerSettingsAdvanced.strShowDel": "Toon items die zijn verwijderd uit de gegevensbron", + "SSE.Views.SlicerSettingsAdvanced.strShowNoData": "Toon items zonder gegevens als laatste", + "SSE.Views.SlicerSettingsAdvanced.strSize": "Grootte", + "SSE.Views.SlicerSettingsAdvanced.strSorting": "Sorteren & filteren", + "SSE.Views.SlicerSettingsAdvanced.strStyle": "Stijl", + "SSE.Views.SlicerSettingsAdvanced.strStyleSize": "Stijl & maat", + "SSE.Views.SlicerSettingsAdvanced.strWidth": "Breedte", + "SSE.Views.SlicerSettingsAdvanced.textAlt": "Alternatieve tekst", + "SSE.Views.SlicerSettingsAdvanced.textAltDescription": "Beschrijving", + "SSE.Views.SlicerSettingsAdvanced.textAltTip": "De alternatieve, op tekst gebaseerde weergave van de visuele objectinformatie. Deze wordt voorgelezen voor mensen met visuele of cognitieve handicaps om hen te helpen begrijpen welke informatie aanwezig is in de afbeelding, AutoVorm, grafiek of tabel.", + "SSE.Views.SlicerSettingsAdvanced.textAltTitle": "Titel", + "SSE.Views.SlicerSettingsAdvanced.textAsc": "Oplopend", + "SSE.Views.SlicerSettingsAdvanced.textAZ": "A tot Z", + "SSE.Views.SlicerSettingsAdvanced.textDesc": "Aflopend", + "SSE.Views.SlicerSettingsAdvanced.textHeader": "Koptekst", + "SSE.Views.SlicerSettingsAdvanced.textKeepRatio": "Constante verhoudingen", + "SSE.Views.SlicerSettingsAdvanced.textName": "Naam", + "SSE.Views.SlicerSettingsAdvanced.textOldNew": "Van oud naar niew", + "SSE.Views.SlicerSettingsAdvanced.textOneCell": "Verplaats maar pas het formaat niet aan op cellen", + "SSE.Views.SlicerSettingsAdvanced.textSmallLarge": "Van klein naar Groot", + "SSE.Views.SlicerSettingsAdvanced.textSort": "Sorteren", + "SSE.Views.SlicerSettingsAdvanced.textSourceName": "Bron naam", + "SSE.Views.SlicerSettingsAdvanced.textTwoCell": "Verplaats en pas aan op cellen", + "SSE.Views.SlicerSettingsAdvanced.textZA": "Z naar A", + "SSE.Views.SlicerSettingsAdvanced.txtEmpty": "Dit veld is vereist", + "SSE.Views.SortDialog.errorEmpty": "Voor alle sorteercriteria moet een kolom of rij zijn opgegeven.", + "SSE.Views.SortDialog.errorSameColumnColor": "% 1 wordt meer dan eens op dezelfde kleur gesorteerd.
          Verwijder de dubbele sorteercriteria en probeer het opnieuw.", + "SSE.Views.SortDialog.errorSameColumnValue": "% 1 wordt meer dan eens op waarden gesorteerd.
          Verwijder de dubbele sorteercriteria en probeer het opnieuw.", + "SSE.Views.SortDialog.textAdd": "Voeg niveau toe", + "SSE.Views.SortDialog.textAsc": "Oplopend", + "SSE.Views.SortDialog.textAuto": "Automatisch", + "SSE.Views.SortDialog.textAZ": "A tot Z", + "SSE.Views.SortDialog.textBelow": "Onder", + "SSE.Views.SortDialog.textCellColor": "Cel kleur", + "SSE.Views.SortDialog.textColumn": "Kolom", + "SSE.Views.SortDialog.textDesc": "Aflopend", + "SSE.Views.SortDialog.textDown": "Verplaats naar beneden", + "SSE.Views.SortDialog.textFontColor": "Tekenkleur", + "SSE.Views.SortDialog.textLeft": "Links", + "SSE.Views.SortDialog.textMoreCols": "(Meer kolommen...)", + "SSE.Views.SortDialog.textMoreRows": "(Meer rijen...)", + "SSE.Views.SortDialog.textNone": "geen", + "SSE.Views.SortDialog.textOptions": "Opties", + "SSE.Views.SortDialog.textOrder": "Order", + "SSE.Views.SortDialog.textRight": "Rechts", + "SSE.Views.SortDialog.textRow": "Rij", + "SSE.Views.SortDialog.textSort": "Sorteer op", + "SSE.Views.SortDialog.textSortBy": "Sorteren op", + "SSE.Views.SortDialog.textTop": "Boven", + "SSE.Views.SortDialog.textUp": "Verplaats naar boven", + "SSE.Views.SortDialog.textValues": "Waarden", + "SSE.Views.SortDialog.textZA": "Z naar A", + "SSE.Views.SortDialog.txtTitle": "Sorteren", + "SSE.Views.SortFilterDialog.textAsc": "Ordenen van A naar Z", + "SSE.Views.SortFilterDialog.txtTitle": "Sorteren", + "SSE.Views.SortOptionsDialog.textCase": "Hoofdlettergevoelig", + "SSE.Views.SortOptionsDialog.textLeftRight": "Sorteer van links naar rechts", + "SSE.Views.SortOptionsDialog.textOrientation": "Oriëntatie ", + "SSE.Views.SortOptionsDialog.textTitle": "Sorteer opties", + "SSE.Views.SortOptionsDialog.textTopBottom": "Sorteer van boven naar beneden", + "SSE.Views.SpecialPasteDialog.textAdd": "Toevoegen", + "SSE.Views.SpecialPasteDialog.textAll": "Alle", + "SSE.Views.SpecialPasteDialog.textBlanks": "Sla lege tabellen over", + "SSE.Views.SpecialPasteDialog.textColWidth": "Kolombreedtes", + "SSE.Views.SpecialPasteDialog.textComments": "Opmerkingen", + "SSE.Views.SpecialPasteDialog.textDiv": "Verdelen", + "SSE.Views.SpecialPasteDialog.textFormats": "Formaat", + "SSE.Views.SpecialPasteDialog.textFormulas": "Formules", + "SSE.Views.SpecialPasteDialog.textMult": "Vermenigvuldigen", + "SSE.Views.SpecialPasteDialog.textNone": "geen", + "SSE.Views.SpecialPasteDialog.textOperation": "Bewerking", + "SSE.Views.SpecialPasteDialog.textPaste": "Plakken", + "SSE.Views.SpecialPasteDialog.textSub": "Aftrekken", + "SSE.Views.SpecialPasteDialog.textTitle": "Plakken speciaal", + "SSE.Views.SpecialPasteDialog.textTranspose": "Transponeren", + "SSE.Views.SpecialPasteDialog.textValues": "Waarden", + "SSE.Views.SpecialPasteDialog.textWBorders": "Alles behalve grenzen", + "SSE.Views.Spellcheck.textChange": "Wijzigen", + "SSE.Views.Spellcheck.textChangeAll": "Alles veranderen", + "SSE.Views.Spellcheck.textIgnore": "Negeren", + "SSE.Views.Spellcheck.textIgnoreAll": "Alles negeren", + "SSE.Views.Spellcheck.txtAddToDictionary": "Toevoegen aan woordenboek", + "SSE.Views.Spellcheck.txtComplete": "De spellingcontrole is voltooid", + "SSE.Views.Spellcheck.txtDictionaryLanguage": "Woordenboek taal", + "SSE.Views.Spellcheck.txtSpelling": "Spelling", "SSE.Views.Statusbar.CopyDialog.itemCopyToEnd": "(Kopiëren naar einde)", "SSE.Views.Statusbar.CopyDialog.itemMoveToEnd": "(Verplaatsen naar einde)", "SSE.Views.Statusbar.CopyDialog.textCopyBefore": "Kopiëren vóór blad", "SSE.Views.Statusbar.CopyDialog.textMoveBefore": "Vóór blad plaatsen", "SSE.Views.Statusbar.filteredRecordsText": "{0} van {1} records gefilterd", "SSE.Views.Statusbar.filteredText": "Filtermodus", + "SSE.Views.Statusbar.itemAverage": "Gemiddeld", "SSE.Views.Statusbar.itemCopy": "Kopiëren", + "SSE.Views.Statusbar.itemCount": "AANTAL", "SSE.Views.Statusbar.itemDelete": "Verwijderen", "SSE.Views.Statusbar.itemHidden": "Verborgen", "SSE.Views.Statusbar.itemHide": "Verbergen", "SSE.Views.Statusbar.itemInsert": "Invoegen", + "SSE.Views.Statusbar.itemMaximum": "Maximum", + "SSE.Views.Statusbar.itemMinimum": "Minimum", "SSE.Views.Statusbar.itemMove": "Verplaatsen", "SSE.Views.Statusbar.itemRename": "Hernoemen", + "SSE.Views.Statusbar.itemSum": "Som", "SSE.Views.Statusbar.itemTabColor": "Tabkleur", "SSE.Views.Statusbar.RenameDialog.errNameExists": "Er bestaat al een werkblad met die naam.", "SSE.Views.Statusbar.RenameDialog.errNameWrongChar": "Een werkbladnaam mag niet de volgende tekens bevatten: \\/*?[]:", "SSE.Views.Statusbar.RenameDialog.labelSheetName": "Bladnaam", "SSE.Views.Statusbar.textAverage": "GEMIDDELD", "SSE.Views.Statusbar.textCount": "AANTAL", + "SSE.Views.Statusbar.textMax": "Max", + "SSE.Views.Statusbar.textMin": "Min", "SSE.Views.Statusbar.textNewColor": "Nieuwe aangepaste kleur toevoegen", "SSE.Views.Statusbar.textNoColor": "Geen kleur", "SSE.Views.Statusbar.textSum": "SOM", @@ -1630,6 +2372,7 @@ "SSE.Views.TableSettings.selectDataText": "Kolomgegevens selecteren", "SSE.Views.TableSettings.selectRowText": "Rij selecteren", "SSE.Views.TableSettings.selectTableText": "Tabel selecteren", + "SSE.Views.TableSettings.textActions": "Tabel acties", "SSE.Views.TableSettings.textAdvanced": "Geavanceerde instellingen tonen", "SSE.Views.TableSettings.textBanded": "Gestreept", "SSE.Views.TableSettings.textColumns": "Kolommen", @@ -1644,6 +2387,8 @@ "SSE.Views.TableSettings.textIsLocked": "Dit element wordt bewerkt door een andere gebruiker.", "SSE.Views.TableSettings.textLast": "Laatste", "SSE.Views.TableSettings.textLongOperation": "Langdurige bewerking", + "SSE.Views.TableSettings.textPivot": "Pivot tabel invoegen", + "SSE.Views.TableSettings.textRemDuplicates": "Verwijder duplicaten", "SSE.Views.TableSettings.textReservedName": "Er wordt in celformules al verwezen naar de naam die u probeert te gebruiken. Gebruik een andere naam.", "SSE.Views.TableSettings.textResize": "Tabelformaat wijzigen", "SSE.Views.TableSettings.textRows": "Rijen", @@ -1698,7 +2443,18 @@ "SSE.Views.TextArtSettings.txtNoBorders": "Geen lijn", "SSE.Views.TextArtSettings.txtPapyrus": "Papyrus", "SSE.Views.TextArtSettings.txtWood": "Hout", + "SSE.Views.Toolbar.capBtnAddComment": "Opmerking toevoegen", "SSE.Views.Toolbar.capBtnComment": "Opmerking", + "SSE.Views.Toolbar.capBtnInsHeader": "Kopteksten/voetteksten", + "SSE.Views.Toolbar.capBtnInsSymbol": "Symbool", + "SSE.Views.Toolbar.capBtnMargins": "Marges", + "SSE.Views.Toolbar.capBtnPageOrient": "Oriëntatie ", + "SSE.Views.Toolbar.capBtnPageSize": "Grootte", + "SSE.Views.Toolbar.capBtnPrintArea": "Print bereik", + "SSE.Views.Toolbar.capImgAlign": "Uitlijnen", + "SSE.Views.Toolbar.capImgBackward": "Naar Achteren Verplaatsen", + "SSE.Views.Toolbar.capImgForward": "Naar Voren Verplaatsen", + "SSE.Views.Toolbar.capImgGroup": "Groep", "SSE.Views.Toolbar.capInsertChart": "Grafiek", "SSE.Views.Toolbar.capInsertEquation": "Vergelijking", "SSE.Views.Toolbar.capInsertHyperlink": "Hyperlink", @@ -1707,7 +2463,9 @@ "SSE.Views.Toolbar.capInsertTable": "Tabel", "SSE.Views.Toolbar.capInsertText": "Tekstvak", "SSE.Views.Toolbar.mniImageFromFile": "Afbeelding uit bestand", + "SSE.Views.Toolbar.mniImageFromStorage": "Afbeelding van opslag", "SSE.Views.Toolbar.mniImageFromUrl": "Afbeelding van URL", + "SSE.Views.Toolbar.textAddPrintArea": "Toevoegen aan afdrukgebied", "SSE.Views.Toolbar.textAlignBottom": "Onder uitlijnen", "SSE.Views.Toolbar.textAlignCenter": "Midden uitlijnen", "SSE.Views.Toolbar.textAlignJust": "Uitgevuld", @@ -1716,9 +2474,11 @@ "SSE.Views.Toolbar.textAlignRight": "Rechts uitlijnen", "SSE.Views.Toolbar.textAlignTop": "Boven uitlijnen", "SSE.Views.Toolbar.textAllBorders": "Alle randen", + "SSE.Views.Toolbar.textAuto": "Automatisch", "SSE.Views.Toolbar.textBold": "Vet", "SSE.Views.Toolbar.textBordersColor": "Randkleur", "SSE.Views.Toolbar.textBordersStyle": "Stijl rand", + "SSE.Views.Toolbar.textBottom": "Onder:", "SSE.Views.Toolbar.textBottomBorders": "Onderranden", "SSE.Views.Toolbar.textCenterBorders": "Verticale binnenranden", "SSE.Views.Toolbar.textClockwise": "Rechtsom draaien", @@ -1729,34 +2489,54 @@ "SSE.Views.Toolbar.textDiagUpBorder": "Diagonale rand naar boven", "SSE.Views.Toolbar.textEntireCol": "Hele kolom", "SSE.Views.Toolbar.textEntireRow": "Hele rij", + "SSE.Views.Toolbar.textFewPages": "Pagina's", + "SSE.Views.Toolbar.textHeight": "Hoogte", "SSE.Views.Toolbar.textHorizontal": "Horizontale tekst", "SSE.Views.Toolbar.textInsDown": "Cellen naar beneden verplaatsen", "SSE.Views.Toolbar.textInsideBorders": "Binnenranden", "SSE.Views.Toolbar.textInsRight": "Cellen naar rechts verplaatsen", "SSE.Views.Toolbar.textItalic": "Cursief", + "SSE.Views.Toolbar.textLandscape": "Liggend", + "SSE.Views.Toolbar.textLeft": "Links:", "SSE.Views.Toolbar.textLeftBorders": "Linkerranden", + "SSE.Views.Toolbar.textManyPages": "Pagina's", + "SSE.Views.Toolbar.textMarginsNarrow": "Smal", + "SSE.Views.Toolbar.textMarginsNormal": "Normaal", + "SSE.Views.Toolbar.textMarginsWide": "Breed", "SSE.Views.Toolbar.textMiddleBorders": "Horizontale binnenranden", "SSE.Views.Toolbar.textMoreFormats": "Meer indelingen", + "SSE.Views.Toolbar.textMorePages": "Meer pagina's", "SSE.Views.Toolbar.textNewColor": "Nieuwe aangepaste kleur toevoegen", - "Common.UI.ColorButton.textNewColor": "Nieuwe aangepaste kleur toevoegen", "SSE.Views.Toolbar.textNoBorders": "Geen randen", + "SSE.Views.Toolbar.textOnePage": "Pagina", "SSE.Views.Toolbar.textOutBorders": "Buitenranden", + "SSE.Views.Toolbar.textPageMarginsCustom": "Aangepaste marges", + "SSE.Views.Toolbar.textPortrait": "Staand", "SSE.Views.Toolbar.textPrint": "Afdrukken", "SSE.Views.Toolbar.textPrintOptions": "Afdrukinstellingen", + "SSE.Views.Toolbar.textRight": "Rechts:", "SSE.Views.Toolbar.textRightBorders": "Rechterranden", "SSE.Views.Toolbar.textRotateDown": "Tekst omlaag draaien", "SSE.Views.Toolbar.textRotateUp": "Tekst omhoog draaien", + "SSE.Views.Toolbar.textScale": "Schaal", + "SSE.Views.Toolbar.textScaleCustom": "Aangepast", "SSE.Views.Toolbar.textStrikeout": "Doorhalen", "SSE.Views.Toolbar.textSubscript": "Subscript", "SSE.Views.Toolbar.textSubSuperscript": "Subscript/Superscript", "SSE.Views.Toolbar.textSuperscript": "Superscript", "SSE.Views.Toolbar.textTabCollaboration": "Samenwerking", + "SSE.Views.Toolbar.textTabData": "Gegevens", "SSE.Views.Toolbar.textTabFile": "Bestand", + "SSE.Views.Toolbar.textTabFormula": "Formule", "SSE.Views.Toolbar.textTabHome": "Home", "SSE.Views.Toolbar.textTabInsert": "Invoegen", + "SSE.Views.Toolbar.textTabLayout": "Pagina-indeling", "SSE.Views.Toolbar.textTabProtect": "Beveiliging", + "SSE.Views.Toolbar.textTop": "Boven:", "SSE.Views.Toolbar.textTopBorders": "Bovenranden", "SSE.Views.Toolbar.textUnderline": "Onderstrepen", + "SSE.Views.Toolbar.textVertical": "Verticale tekst", + "SSE.Views.Toolbar.textWidth": "Breedte", "SSE.Views.Toolbar.textZoom": "Zoomen", "SSE.Views.Toolbar.tipAlignBottom": "Onder uitlijnen", "SSE.Views.Toolbar.tipAlignCenter": "Midden uitlijnen", @@ -1781,9 +2561,12 @@ "SSE.Views.Toolbar.tipDigStyleCurrency": "Valutanotatie", "SSE.Views.Toolbar.tipDigStylePercent": "Procentnotatie", "SSE.Views.Toolbar.tipEditChart": "Grafiek bewerken", + "SSE.Views.Toolbar.tipEditHeader": "Koptekst of voettekst bewerken", "SSE.Views.Toolbar.tipFontColor": "Tekenkleur", "SSE.Views.Toolbar.tipFontName": "Lettertype", "SSE.Views.Toolbar.tipFontSize": "Tekengrootte", + "SSE.Views.Toolbar.tipImgAlign": "Objecten uitlijnen", + "SSE.Views.Toolbar.tipImgGroup": "Objecten groeperen", "SSE.Views.Toolbar.tipIncDecimal": "Meer decimalen", "SSE.Views.Toolbar.tipIncFont": "Tekengrootte vergroten", "SSE.Views.Toolbar.tipInsertChart": "Grafiek invoegen", @@ -1793,16 +2576,24 @@ "SSE.Views.Toolbar.tipInsertImage": "Afbeelding invoegen", "SSE.Views.Toolbar.tipInsertOpt": "Cellen invoegen", "SSE.Views.Toolbar.tipInsertShape": "AutoVorm invoegen", + "SSE.Views.Toolbar.tipInsertSymbol": "Symbool toevoegen", + "SSE.Views.Toolbar.tipInsertTable": "Tabel invoegen", "SSE.Views.Toolbar.tipInsertText": "Tekstvak invoegen", "SSE.Views.Toolbar.tipInsertTextart": "Tekst Art Invoegen", "SSE.Views.Toolbar.tipMerge": "Samenvoegen", "SSE.Views.Toolbar.tipNumFormat": "Getalnotatie", + "SSE.Views.Toolbar.tipPageMargins": "Paginamarges", + "SSE.Views.Toolbar.tipPageOrient": "Paginastand", + "SSE.Views.Toolbar.tipPageSize": "Paginaformaat", "SSE.Views.Toolbar.tipPaste": "Plakken", "SSE.Views.Toolbar.tipPrColor": "Achtergrondkleur", "SSE.Views.Toolbar.tipPrint": "Afdrukken", + "SSE.Views.Toolbar.tipPrintArea": "Print bereik", "SSE.Views.Toolbar.tipRedo": "Opnieuw", "SSE.Views.Toolbar.tipSave": "Opslaan", "SSE.Views.Toolbar.tipSaveCoauth": "Sla uw wijzigingen op zodat andere gebruikers die kunnen zien.", + "SSE.Views.Toolbar.tipSendBackward": "Naar Achteren Verplaatsen", + "SSE.Views.Toolbar.tipSendForward": "Naar Voren Verplaatsen", "SSE.Views.Toolbar.tipSynchronize": "Het document is gewijzigd door een andere gebruiker. Klik om uw wijzigingen op te slaan en de updates opnieuw te laden.", "SSE.Views.Toolbar.tipTextOrientation": "Afdrukstand", "SSE.Views.Toolbar.tipUndo": "Ongedaan maken", @@ -1810,6 +2601,7 @@ "SSE.Views.Toolbar.txtAccounting": "Boekhouding", "SSE.Views.Toolbar.txtAdditional": "Extra", "SSE.Views.Toolbar.txtAscending": "Oplopend", + "SSE.Views.Toolbar.txtAutosumTip": "Optelling", "SSE.Views.Toolbar.txtClearAll": "Alle", "SSE.Views.Toolbar.txtClearComments": "Opmerkingen", "SSE.Views.Toolbar.txtClearFilter": "Filter wissen", @@ -1877,8 +2669,33 @@ "SSE.Views.Toolbar.txtYen": "¥ Yen", "SSE.Views.Top10FilterDialog.textType": "Tonen", "SSE.Views.Top10FilterDialog.txtBottom": "Onder", + "SSE.Views.Top10FilterDialog.txtBy": "door", "SSE.Views.Top10FilterDialog.txtItems": "Artikel", "SSE.Views.Top10FilterDialog.txtPercent": "Procent", + "SSE.Views.Top10FilterDialog.txtSum": "Som", "SSE.Views.Top10FilterDialog.txtTitle": "AutoFilter top 10", - "SSE.Views.Top10FilterDialog.txtTop": "Boven" + "SSE.Views.Top10FilterDialog.txtTop": "Boven", + "SSE.Views.ValueFieldSettingsDialog.txtAverage": "Gemiddeld", + "SSE.Views.ValueFieldSettingsDialog.txtBaseField": "Basisveld", + "SSE.Views.ValueFieldSettingsDialog.txtBaseItem": "Basis item", + "SSE.Views.ValueFieldSettingsDialog.txtByField": "%1 van %2", + "SSE.Views.ValueFieldSettingsDialog.txtCount": "AANTAL", + "SSE.Views.ValueFieldSettingsDialog.txtCountNums": "Tel nummers", + "SSE.Views.ValueFieldSettingsDialog.txtIndex": "Index", + "SSE.Views.ValueFieldSettingsDialog.txtMax": "Max", + "SSE.Views.ValueFieldSettingsDialog.txtMin": "Min", + "SSE.Views.ValueFieldSettingsDialog.txtPercent": "Percentage van", + "SSE.Views.ValueFieldSettingsDialog.txtPercentDiff": "Percentage verschil van", + "SSE.Views.ValueFieldSettingsDialog.txtPercentOfCol": "Percentage van Kolom", + "SSE.Views.ValueFieldSettingsDialog.txtPercentOfRow": "Percentage van totaal", + "SSE.Views.ValueFieldSettingsDialog.txtPercentOfTotal": "Percentage van Rij", + "SSE.Views.ValueFieldSettingsDialog.txtProduct": "Product", + "SSE.Views.ValueFieldSettingsDialog.txtShowAs": "Toon waarden als", + "SSE.Views.ValueFieldSettingsDialog.txtSourceName": "Bron naam:", + "SSE.Views.ValueFieldSettingsDialog.txtStdDev": "StdDev", + "SSE.Views.ValueFieldSettingsDialog.txtStdDevp": "StdDevp", + "SSE.Views.ValueFieldSettingsDialog.txtSum": "Som", + "SSE.Views.ValueFieldSettingsDialog.txtSummarize": "Vat het waardeveld samen met", + "SSE.Views.ValueFieldSettingsDialog.txtVar": "Var", + "SSE.Views.ValueFieldSettingsDialog.txtVarp": "Varp" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/pt.json b/apps/spreadsheeteditor/main/locale/pt.json index ee891902e..3ca79cae8 100644 --- a/apps/spreadsheeteditor/main/locale/pt.json +++ b/apps/spreadsheeteditor/main/locale/pt.json @@ -762,8 +762,8 @@ "SSE.Controllers.Main.waitText": "Aguarde...", "SSE.Controllers.Main.warnBrowserIE9": "O aplicativo tem baixa capacidade no IE9. Usar IE10 ou superior", "SSE.Controllers.Main.warnBrowserZoom": "A configuração de zoom atual de seu navegador não é completamente suportada. Redefina para o zoom padrão pressionando Ctrl+0.", - "SSE.Controllers.Main.warnLicenseExp": "Sua licença expirou.
          Atualize sua licença e atualize a página.", "SSE.Controllers.Main.warnLicenseExceeded": "Você atingiu o limite de conexões simultâneas para editores %1. Este documento será aberto apenas para visualização.
          Entre em contato com seu administrador para saber mais.", + "SSE.Controllers.Main.warnLicenseExp": "Sua licença expirou.
          Atualize sua licença e atualize a página.", "SSE.Controllers.Main.warnLicenseUsersExceeded": "Você atingiu o limite de usuários para editores %1. Entre em contato com seu administrador para saber mais.", "SSE.Controllers.Main.warnNoLicense": "Você atingiu o limite de conexões simultâneas para editores %1. Este documento será aberto apenas para visualização.
          Entre em contato com a equipe de vendas da %1 para obter os termos de atualização pessoais.", "SSE.Controllers.Main.warnNoLicenseUsers": "Você atingiu o limite de usuários para editores %1.
          Entre em contato com a equipe de vendas da %1 para obter os termos de atualização pessoais.", @@ -2562,6 +2562,8 @@ "SSE.Views.Toolbar.txtTime": "Hora", "SSE.Views.Toolbar.txtUnmerge": "Desfaz a mesclagem de células", "SSE.Views.Toolbar.txtYen": "¥ Yen", + "SSE.Views.Toolbar.capBtnPrintTitles": "Imprimir títulos", + "SSE.Views.Toolbar.tipPrintTitles": "Imprimir títulos", "SSE.Views.Top10FilterDialog.textType": "Exibir", "SSE.Views.Top10FilterDialog.txtBottom": "Inferior", "SSE.Views.Top10FilterDialog.txtItems": "Item", diff --git a/apps/spreadsheeteditor/main/locale/ru.json b/apps/spreadsheeteditor/main/locale/ru.json index dba33e944..94dcbe259 100644 --- a/apps/spreadsheeteditor/main/locale/ru.json +++ b/apps/spreadsheeteditor/main/locale/ru.json @@ -15,7 +15,7 @@ "Common.define.chartData.textStock": "Биржевая", "Common.define.chartData.textSurface": "Поверхность", "Common.define.chartData.textWinLossSpark": "Выигрыш/проигрыш", - "Common.Translation.warnFileLocked": "Документ используется другим приложением. Вы можете продолжить редактирование и сохранить его как копию.", + "Common.Translation.warnFileLocked": "Файл редактируется в другом приложении. Вы можете продолжить редактирование и сохранить его как копию.", "Common.UI.ColorButton.textNewColor": "Пользовательский цвет", "Common.UI.ComboBorderSize.txtNoBorders": "Без границ", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Без границ", @@ -499,6 +499,8 @@ "SSE.Controllers.Main.errorForceSave": "При сохранении файла произошла ошибка. Используйте опцию 'Скачать как', чтобы сохранить файл на жестком диске компьютера или повторите попытку позже.", "SSE.Controllers.Main.errorFormulaName": "Ошибка во введенной формуле.
          Использовано неверное имя формулы.", "SSE.Controllers.Main.errorFormulaParsing": "Внутренняя ошибка при синтаксическом анализе формулы.", + "SSE.Controllers.Main.errorFrmlMaxLength": "Длина формулы превышает ограничение в 8192 символа.
          Отредактируйте ее и повторите попытку.", + "SSE.Controllers.Main.errorFrmlMaxReference": "Нельзя ввести эту формулу, так как она содержит слишком много значений,
          ссылок на ячейки и/или имен.", "SSE.Controllers.Main.errorFrmlMaxTextLength": "Длина текстовых значений в формулах не может превышать 255 символов.
          Используйте функцию СЦЕПИТЬ или оператор сцепления (&).", "SSE.Controllers.Main.errorFrmlWrongReferences": "Функция ссылается на лист, который не существует.
          Проверьте данные и повторите попытку.", "SSE.Controllers.Main.errorFTChangeTableRangeError": "Не удалось выполнить операцию для выбранного диапазона ячеек.
          Выделите диапазон так, чтобы первая строка таблицы находилась на той же самой строке,
          а итоговая таблица перекрывала текущую.", @@ -512,13 +514,13 @@ "SSE.Controllers.Main.errorLockedWorksheetRename": "В настоящее время лист нельзя переименовать, так как его переименовывает другой пользователь", "SSE.Controllers.Main.errorMaxPoints": "Максимальное число точек в серии для диаграммы составляет 4096.", "SSE.Controllers.Main.errorMoveRange": "Нельзя изменить часть объединенной ячейки", + "SSE.Controllers.Main.errorMoveSlicerError": "Срезы таблиц нельзя копировать из одной рабочей книги в другую.
          Попробуйте еще раз, выделив всю таблицу и срезы.", "SSE.Controllers.Main.errorMultiCellFormula": "Формулы массива с несколькими ячейками не разрешаются в таблицах.", "SSE.Controllers.Main.errorNoDataToParse": "Не выделены данные для разбора.", - "SSE.Controllers.Main.errorOpenWarning": "Длина одной из формул в файле превышала
          допустимое количество символов, и формула была удалена.", + "SSE.Controllers.Main.errorOpenWarning": "Одна из формул в файле превышает ограничение в 8192 символа.
          Формула была удалена.", "SSE.Controllers.Main.errorOperandExpected": "Синтаксис введенной функции некорректен. Проверьте, не пропущена ли одна из скобок - '(' или ')'.", "SSE.Controllers.Main.errorPasteMaxRange": "Область копирования не соответствует области вставки.
          Для вставки скопированных ячеек выделите область такого же размера или щелкните по первой ячейке в строке.", "SSE.Controllers.Main.errorPasteSlicerError": "Срезы таблиц нельзя копировать из одной рабочей книги в другую.", - "SSE.Controllers.Main.errorMoveSlicerError": "Срезы таблиц нельзя копировать из одной рабочей книги в другую.
          Попробуйте еще раз, выделив всю таблицу и срезы.", "SSE.Controllers.Main.errorPivotOverlap": "Не допускается перекрытие отчета сводной таблицы и таблицы.", "SSE.Controllers.Main.errorPrintMaxPagesCount": "К сожалению, в текущей версии программы нельзя напечатать более 1500 страниц за один раз.
          Это ограничение будет устранено в последующих версиях.", "SSE.Controllers.Main.errorProcessSaveResult": "Сбой при сохранении", @@ -826,8 +828,8 @@ "SSE.Controllers.Main.waitText": "Пожалуйста, подождите...", "SSE.Controllers.Main.warnBrowserIE9": "В IE9 приложение имеет низкую производительность. Используйте IE10 или более позднюю версию.", "SSE.Controllers.Main.warnBrowserZoom": "Текущее значение масштаба страницы в браузере поддерживается не полностью. Вернитесь к масштабу по умолчанию, нажав Ctrl+0", - "SSE.Controllers.Main.warnLicenseExp": "Истек срок действия лицензии.
          Обновите лицензию, а затем обновите страницу.", "SSE.Controllers.Main.warnLicenseExceeded": "Вы достигли лимита на одновременные подключения к редакторам %1. Этот документ будет открыт только на просмотр.
          Свяжитесь с администратором, чтобы узнать больше.", + "SSE.Controllers.Main.warnLicenseExp": "Истек срок действия лицензии.
          Обновите лицензию, а затем обновите страницу.", "SSE.Controllers.Main.warnLicenseUsersExceeded": "Вы достигли лимита на количество пользователей редакторов %1.
          Свяжитесь с администратором, чтобы узнать больше.", "SSE.Controllers.Main.warnNoLicense": "Вы достигли лимита на одновременные подключения к редакторам %1. Этот документ будет открыт на просмотр.
          Напишите в отдел продаж %1, чтобы обсудить индивидуальные условия лицензирования.", "SSE.Controllers.Main.warnNoLicenseUsers": "Вы достигли лимита на одновременные подключения к редакторам %1.
          Напишите в отдел продаж %1, чтобы обсудить индивидуальные условия лицензирования.", @@ -1803,9 +1805,16 @@ "SSE.Views.FormulaTab.txtFormulaTip": "Вставить функцию", "SSE.Views.FormulaTab.txtMore": "Другие функции", "SSE.Views.FormulaTab.txtRecent": "Последние использованные", + "SSE.Views.FormulaWizard.textAny": "любой", + "SSE.Views.FormulaWizard.textArgument": "Аргумент", "SSE.Views.FormulaWizard.textFunction": "Функция", "SSE.Views.FormulaWizard.textFunctionRes": "Результат функции", "SSE.Views.FormulaWizard.textHelp": "Справка по этой функции", + "SSE.Views.FormulaWizard.textLogical": "логическое значение", + "SSE.Views.FormulaWizard.textNoArgs": "У этой функции нет аргументов", + "SSE.Views.FormulaWizard.textNumber": "число", + "SSE.Views.FormulaWizard.textRef": "ссылка", + "SSE.Views.FormulaWizard.textText": "текст", "SSE.Views.FormulaWizard.textTitle": "Аргументы функции", "SSE.Views.FormulaWizard.textValue": "Значение", "SSE.Views.GroupDialog.textColumns": "Столбцы", @@ -2592,6 +2601,7 @@ "SSE.Views.Toolbar.capBtnPageOrient": "Ориентация", "SSE.Views.Toolbar.capBtnPageSize": "Размер", "SSE.Views.Toolbar.capBtnPrintArea": "Область печати", + "SSE.Views.Toolbar.capBtnPrintTitles": "Печатать заголовки", "SSE.Views.Toolbar.capBtnScale": "Вписать", "SSE.Views.Toolbar.capImgAlign": "Выравнивание", "SSE.Views.Toolbar.capImgBackward": "Перенести назад", @@ -2735,6 +2745,7 @@ "SSE.Views.Toolbar.tipPrColor": "Цвет фона", "SSE.Views.Toolbar.tipPrint": "Печать", "SSE.Views.Toolbar.tipPrintArea": "Область печати", + "SSE.Views.Toolbar.tipPrintTitles": "Печатать заголовки", "SSE.Views.Toolbar.tipRedo": "Повторить", "SSE.Views.Toolbar.tipSave": "Сохранить", "SSE.Views.Toolbar.tipSaveCoauth": "Сохраните свои изменения, чтобы другие пользователи их увидели.", diff --git a/apps/spreadsheeteditor/main/locale/sk.json b/apps/spreadsheeteditor/main/locale/sk.json index 8db26bcaa..b26dc19b0 100644 --- a/apps/spreadsheeteditor/main/locale/sk.json +++ b/apps/spreadsheeteditor/main/locale/sk.json @@ -4,6 +4,7 @@ "Common.Controllers.Chat.textEnterMessage": "Zadať svoju správu tu", "Common.define.chartData.textArea": "Plošný graf", "Common.define.chartData.textBar": "Pruhový graf", + "Common.define.chartData.textCharts": "Grafy", "Common.define.chartData.textColumn": "Stĺpec", "Common.define.chartData.textColumnSpark": "Stĺpec", "Common.define.chartData.textLine": "Čiara/líniový graf", @@ -14,6 +15,7 @@ "Common.define.chartData.textStock": "Akcie/burzový graf", "Common.define.chartData.textSurface": "Povrch", "Common.define.chartData.textWinLossSpark": "Zisk/strata", + "Common.UI.ColorButton.textNewColor": "Pridať novú vlastnú farbu", "Common.UI.ComboBorderSize.txtNoBorders": "Bez orámovania", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Bez orámovania", "Common.UI.ComboDataView.emptyComboText": "Žiadne štýly", @@ -56,6 +58,8 @@ "Common.Views.About.txtPoweredBy": "Poháňaný ", "Common.Views.About.txtTel": "tel.:", "Common.Views.About.txtVersion": "Verzia", + "Common.Views.AutoCorrectDialog.textBy": "Od:", + "Common.Views.AutoCorrectDialog.textTitle": "Automatická oprava", "Common.Views.Chat.textSend": "Poslať", "Common.Views.Comments.textAdd": "Pridať", "Common.Views.Comments.textAddComment": "Pridať komentár", @@ -81,23 +85,41 @@ "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.", + "Common.Views.Header.textAdvSettings": "Pokročilé nastavenia", "Common.Views.Header.textBack": "Prejsť do Dokumentov", + "Common.Views.Header.textCompactView": "Skryť panel s nástrojmi", + "Common.Views.Header.textHideLines": "Skryť pravítka", + "Common.Views.Header.textHideStatusBar": "Schovať stavový riadok", "Common.Views.Header.textSaveBegin": "Ukladanie...", "Common.Views.Header.textSaveChanged": "Modifikovaný", "Common.Views.Header.textSaveEnd": "Všetky zmeny boli uložené", "Common.Views.Header.textSaveExpander": "Všetky zmeny boli uložené", + "Common.Views.Header.textZoom": "Priblíženie", "Common.Views.Header.tipAccessRights": "Spravovať prístupové práva k dokumentom", "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.tipRedo": "Znova", + "Common.Views.Header.tipSave": "Uložiť", + "Common.Views.Header.tipUndo": "Krok späť", + "Common.Views.Header.tipViewSettings": "Zobraziť nastavenia", "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.textUrl": "Vložte URL adresu obrázka:", "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.ListSettingsDialog.txtBullet": "Odrážka", + "Common.Views.ListSettingsDialog.txtColor": "Farba", + "Common.Views.ListSettingsDialog.txtNone": "žiadny", "Common.Views.ListSettingsDialog.txtOfText": "% textu", + "Common.Views.ListSettingsDialog.txtSize": "Veľkosť", + "Common.Views.ListSettingsDialog.txtSymbol": "Symbol", + "Common.Views.ListSettingsDialog.txtType": "Typ", "Common.Views.OpenDialog.closeButtonText": "Zatvoriť súbor", + "Common.Views.OpenDialog.txtAdvanced": "Pokročilé", + "Common.Views.OpenDialog.txtColon": "Dvojbodka ", + "Common.Views.OpenDialog.txtComma": "Čiarka", "Common.Views.OpenDialog.txtDelimiter": "Oddeľovač", "Common.Views.OpenDialog.txtEncoding": "Kódovanie", "Common.Views.OpenDialog.txtIncorrectPwd": "Heslo je nesprávne.", @@ -109,6 +131,7 @@ "Common.Views.OpenDialog.txtTitle": "Vyberte %1 možností", "Common.Views.OpenDialog.txtTitleProtected": "Chránený súbor", "Common.Views.PasswordDialog.txtIncorrectPwd": "Heslá sa nezhodujú", + "Common.Views.PasswordDialog.txtPassword": "Heslo", "Common.Views.PasswordDialog.txtTitle": "Nastaviť heslo", "Common.Views.PluginDlg.textLoading": "Nahrávanie", "Common.Views.Plugins.groupCaption": "Pluginy", @@ -116,22 +139,82 @@ "Common.Views.Plugins.textLoading": "Nahrávanie", "Common.Views.Plugins.textStart": "Začať/začiatok", "Common.Views.Plugins.textStop": "Stop", + "Common.Views.Protection.hintAddPwd": "Šifrovať heslom", + "Common.Views.Protection.hintPwd": "Zmeniť alebo odstrániť heslo", + "Common.Views.Protection.hintSignature": "Pridať digitálny podpis alebo riadok na podpis", + "Common.Views.Protection.txtAddPwd": "Pridajte heslo", + "Common.Views.Protection.txtChangePwd": "Zmeniť heslo", "Common.Views.Protection.txtDeletePwd": "Odstrániť heslo", + "Common.Views.Protection.txtEncrypt": "Šifrovať", + "Common.Views.Protection.txtInvisibleSignature": "Pridajte digitálny podpis", + "Common.Views.Protection.txtSignatureLine": "Pridať riadok na podpis", "Common.Views.RenameDialog.textName": "Názov súboru", "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.strFast": "Rýchly", "Common.Views.ReviewChanges.strStrict": "Prísny", + "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.tipSharing": "Spravovať prístupové práva k dokumentom", + "Common.Views.ReviewChanges.txtAccept": "Prijať", + "Common.Views.ReviewChanges.txtAcceptAll": "Akceptovať všetky zmeny", + "Common.Views.ReviewChanges.txtAcceptChanges": "Akceptovať zmeny", + "Common.Views.ReviewChanges.txtAcceptCurrent": "Akceptovať aktuálnu zmenu", + "Common.Views.ReviewChanges.txtChat": "Rozhovor", "Common.Views.ReviewChanges.txtClose": "Zatvoriť", "Common.Views.ReviewChanges.txtCoAuthMode": "Režim spoločnej úpravy", + "Common.Views.ReviewChanges.txtCommentRemove": "Odstrániť", + "Common.Views.ReviewChanges.txtDocLang": "Jazyk", + "Common.Views.ReviewChanges.txtFinal": "Všetky zmeny prijaté (ukážka)", + "Common.Views.ReviewChanges.txtFinalCap": "Posledný", + "Common.Views.ReviewChanges.txtHistory": "História verzií", + "Common.Views.ReviewChanges.txtMarkup": "Všetky zmeny (upravovanie)", + "Common.Views.ReviewChanges.txtMarkupCap": "Vyznačenie", + "Common.Views.ReviewChanges.txtNext": "Nasledujúce", + "Common.Views.ReviewChanges.txtOriginal": "Všetky zmeny boli zamietnuté (ukážka)", + "Common.Views.ReviewChanges.txtOriginalCap": "Originál", "Common.Views.ReviewChanges.txtPrev": "Predchádzajúci", + "Common.Views.ReviewChanges.txtReject": "Odmietnuť", + "Common.Views.ReviewChanges.txtRejectAll": "Odmietnuť všetky zmeny", + "Common.Views.ReviewChanges.txtRejectChanges": "Odmietnuť zmeny", + "Common.Views.ReviewChanges.txtRejectCurrent": "Odmietnuť aktuálnu zmenu", + "Common.Views.ReviewChanges.txtTurnon": "Sledovať zmeny", "Common.Views.ReviewChanges.txtView": "Režim zobrazenia", + "Common.Views.ReviewPopover.textAdd": "Pridať", + "Common.Views.ReviewPopover.textAddReply": "Pridať odpoveď", "Common.Views.ReviewPopover.textCancel": "Zrušiť", "Common.Views.ReviewPopover.textClose": "Zatvoriť", "Common.Views.ReviewPopover.textEdit": "OK", + "Common.Views.ReviewPopover.textOpenAgain": "Znova otvoriť", + "Common.Views.ReviewPopover.textReply": "Odpovedať", + "Common.Views.SaveAsDlg.textLoading": "Načítavanie", + "Common.Views.SaveAsDlg.textTitle": "Priečinok na uloženie", + "Common.Views.SelectFileDlg.textLoading": "Načítavanie", + "Common.Views.SignDialog.textBold": "Tučné", "Common.Views.SignDialog.textCertificate": "Certifikát", + "Common.Views.SignDialog.textChange": "Zmeniť", + "Common.Views.SignDialog.textInputName": "Zadať meno signatára", "Common.Views.SignDialog.textItalic": "Kurzíva", + "Common.Views.SignDialog.textPurpose": "Účel podpisovania tohto dokumentu", "Common.Views.SignDialog.textSelect": "Vybrať", "Common.Views.SignDialog.textSelectImage": "Vybrať obrázok", + "Common.Views.SignDialog.textUseImage": "alebo kliknite na položku 'Vybrať obrázok' ak chcete použiť obrázok ako podpis", + "Common.Views.SignDialog.textValid": "Platný od %1 do %2", + "Common.Views.SignDialog.tipFontName": "Názov písma", + "Common.Views.SignDialog.tipFontSize": "Veľkosť písma", + "Common.Views.SignSettingsDialog.textAllowComment": "Povoliť podpisujúcemu pridať komentár do podpisového dialógu", + "Common.Views.SignSettingsDialog.textInfoEmail": "E-mail", + "Common.Views.SignSettingsDialog.textInfoName": "Meno", + "Common.Views.SignSettingsDialog.textInstructions": "Pokyny pre signatára", + "Common.Views.SymbolTableDialog.textCharacter": "Symbol", + "Common.Views.SymbolTableDialog.textFont": "Písmo", + "Common.Views.SymbolTableDialog.textQEmSpace": "Medzera 1/4 Em", + "Common.Views.SymbolTableDialog.textRange": "Rozsah", + "Common.Views.SymbolTableDialog.textSymbols": "Symboly", + "Common.Views.SymbolTableDialog.textTitle": "Symbol", + "SSE.Controllers.DataTab.txtExpand": "Expandovať/rozšíriť", "SSE.Controllers.DocumentHolder.alignmentText": "Zarovnanie", "SSE.Controllers.DocumentHolder.centerText": "Stred", "SSE.Controllers.DocumentHolder.deleteColumnText": "Odstrániť stĺpec", @@ -154,6 +237,7 @@ "SSE.Controllers.DocumentHolder.textInsertTop": "Vložiť hore", "SSE.Controllers.DocumentHolder.textSym": "sym", "SSE.Controllers.DocumentHolder.tipIsLocked": "Tento prvok upravuje iný používateľ.", + "SSE.Controllers.DocumentHolder.txtAboveAve": "Nadpriemer", "SSE.Controllers.DocumentHolder.txtAddBottom": "Pridať spodné orámovanie", "SSE.Controllers.DocumentHolder.txtAddFractionBar": "Pridať lištu zlomkov", "SSE.Controllers.DocumentHolder.txtAddHor": "Pridať vodorovnú čiaru", @@ -164,10 +248,15 @@ "SSE.Controllers.DocumentHolder.txtAddTop": "Pridať horné orámovanie", "SSE.Controllers.DocumentHolder.txtAddVer": "Pridať zvislú čiaru", "SSE.Controllers.DocumentHolder.txtAlignToChar": "Zarovnať na znak", + "SSE.Controllers.DocumentHolder.txtAll": "(všetko)", + "SSE.Controllers.DocumentHolder.txtAnd": "a", + "SSE.Controllers.DocumentHolder.txtBegins": "Začať s", + "SSE.Controllers.DocumentHolder.txtBelowAve": "Podpriemerný", "SSE.Controllers.DocumentHolder.txtBorderProps": "Vlastnosti orámovania", "SSE.Controllers.DocumentHolder.txtBottom": "Dole", "SSE.Controllers.DocumentHolder.txtColumn": "Stĺpec", "SSE.Controllers.DocumentHolder.txtColumnAlign": "Zarovnanie stĺpcov", + "SSE.Controllers.DocumentHolder.txtContains": "Obsahuje", "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č", @@ -176,11 +265,17 @@ "SSE.Controllers.DocumentHolder.txtDeleteEq": "Odstrániť rovnicu", "SSE.Controllers.DocumentHolder.txtDeleteGroupChar": "Odstrániť znak", "SSE.Controllers.DocumentHolder.txtDeleteRadical": "Odstrániť odmocninu", + "SSE.Controllers.DocumentHolder.txtEnds": "Končí na", + "SSE.Controllers.DocumentHolder.txtEquals": "rovná se", "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?", + "SSE.Controllers.DocumentHolder.txtFilterBottom": "Dole", + "SSE.Controllers.DocumentHolder.txtFilterTop": "Hore", "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.txtGreater": "Väčšie ako", + "SSE.Controllers.DocumentHolder.txtGreaterEquals": "Väčšie alebo rovná sa", "SSE.Controllers.DocumentHolder.txtGroupCharOver": "Zadať nad text", "SSE.Controllers.DocumentHolder.txtGroupCharUnder": "Zadať pod text", "SSE.Controllers.DocumentHolder.txtHeight": "Výška", @@ -204,12 +299,20 @@ "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.txtItems": "Položky", + "SSE.Controllers.DocumentHolder.txtKeepTextOnly": "Ponechať iba text", + "SSE.Controllers.DocumentHolder.txtLess": "Menej ako", + "SSE.Controllers.DocumentHolder.txtLessEquals": "Menej alebo rovná sa", "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", "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.txtNotContains": "Neobsahuje", + "SSE.Controllers.DocumentHolder.txtNotEnds": "Nekončí s", + "SSE.Controllers.DocumentHolder.txtNotEquals": "nerovná sa", + "SSE.Controllers.DocumentHolder.txtOr": "alebo", "SSE.Controllers.DocumentHolder.txtOverbar": "Čiara nad textom", "SSE.Controllers.DocumentHolder.txtPaste": "Vložiť", "SSE.Controllers.DocumentHolder.txtPasteBorders": "Vzorec bez hraníc", @@ -228,6 +331,7 @@ "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.txtPercent": "Percento", "SSE.Controllers.DocumentHolder.txtRemFractionBar": "Odstrániť zlomok", "SSE.Controllers.DocumentHolder.txtRemLimit": "Odstrániť limitu", "SSE.Controllers.DocumentHolder.txtRemoveAccentChar": "Odstrániť znak akcentu", @@ -250,6 +354,18 @@ "SSE.Controllers.DocumentHolder.txtTop": "Hore", "SSE.Controllers.DocumentHolder.txtUnderbar": "Čiara pod textom", "SSE.Controllers.DocumentHolder.txtWidth": "Šírka", + "SSE.Controllers.FormulaDialog.sCategoryAll": "Všetko", + "SSE.Controllers.FormulaDialog.sCategoryCube": "Kocka", + "SSE.Controllers.FormulaDialog.sCategoryDatabase": "Databáza", + "SSE.Controllers.FormulaDialog.sCategoryDateAndTime": "Dátum a čas", + "SSE.Controllers.FormulaDialog.sCategoryEngineering": "Inžinierstvo", + "SSE.Controllers.FormulaDialog.sCategoryFinancial": "Finančné", + "SSE.Controllers.FormulaDialog.sCategoryInformation": "Informácie", + "SSE.Controllers.FormulaDialog.sCategoryLast10": "10 použitých naposledy", + "SSE.Controllers.FormulaDialog.sCategoryLogical": "Logické", + "SSE.Controllers.FormulaDialog.sCategoryLookupAndReference": "Vyhľadávanie a referencie", + "SSE.Controllers.FormulaDialog.sCategoryMathematic": "Matematika a trigonometria", + "SSE.Controllers.FormulaDialog.sCategoryTextAndData": "Text a dáta", "SSE.Controllers.LeftMenu.newDocumentTitle": "Nepomenovaný zošit", "SSE.Controllers.LeftMenu.textByColumns": "Podľa stĺpcov", "SSE.Controllers.LeftMenu.textByRows": "Podľa riadkov", @@ -265,6 +381,7 @@ "SSE.Controllers.LeftMenu.textWarning": "Upozornenie", "SSE.Controllers.LeftMenu.textWithin": "V rámci", "SSE.Controllers.LeftMenu.textWorkbook": "Zošit", + "SSE.Controllers.LeftMenu.txtUntitled": "Neoznačený", "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é.", @@ -281,6 +398,7 @@ "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.errorChangeArray": "Nie je možné meniť časť poľa.", "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.", "SSE.Controllers.Main.errorCopyMultiselectArea": "Tento príkaz sa nedá použiť s viacerými výbermi.
          Vyberte jeden rozsah a skúste to znova.", @@ -288,15 +406,21 @@ "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.errorDataEncrypted": "Boli prijaté zašifrované zmeny, nemožno ich dekódovať.", "SSE.Controllers.Main.errorDataRange": "Nesprávny rozsah údajov.", "SSE.Controllers.Main.errorDefaultMessage": "Kód chyby: %1", + "SSE.Controllers.Main.errorEditingDownloadas": "Pri práci s dokumentom došlo k chybe.
          Použite voľbu \"Stiahnuť ako...\" a uložte si záložnú kópiu súboru na svoj počítač.", + "SSE.Controllers.Main.errorEditingSaveas": "Pri práci s dokumentom došlo k chybe.
          Použite voľbu \"Uložiť ako...\" a uložte si záložnú kópiu súboru na svoj počítač.", "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ť.", + "SSE.Controllers.Main.errorForceSave": "Pri ukladaní súboru sa vyskytla chyba. Ak chcete súbor uložiť na pevný disk počítača, použite možnosť 'Prevziať ako' alebo to skúste znova neskôr.", "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.", + "SSE.Controllers.Main.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.Controllers.Main.errorFTRangeIncludedOtherTables": "Operácia sa nedala dokončiť pre zvolený rozsah buniek.
          Zvoľte rozsah, ktorý nezahŕňa iné tabuľky.", "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", @@ -304,6 +428,7 @@ "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", + "SSE.Controllers.Main.errorMultiCellFormula": "V tabuľkách nie sú dovolené vzorce pre pole s viacerými bunkami", "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.", @@ -348,6 +473,7 @@ "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.scriptLoadError": "Spojenie je príliš pomalé, niektoré komponenty nemožno nahrať. Obnovte prosím stránku.", "SSE.Controllers.Main.textAnonymous": "Anonymný", "SSE.Controllers.Main.textBuyNow": "Navštíviť webovú stránku", "SSE.Controllers.Main.textClose": "Zatvoriť", @@ -357,8 +483,10 @@ "SSE.Controllers.Main.textLoadingDocument": "Načítanie zošitu", "SSE.Controllers.Main.textNo": "Nie", "SSE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE obmedzenie pripojenia", + "SSE.Controllers.Main.textPaidFeature": "Platená funkcia", "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.textRemember": "Pamätať si moju voľbu", "SSE.Controllers.Main.textShape": "Tvar", "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.", @@ -367,19 +495,77 @@ "SSE.Controllers.Main.titleRecalcFormulas": "Výpočet...", "SSE.Controllers.Main.titleServerVersion": "Editor bol aktualizovaný", "SSE.Controllers.Main.txtAccent": "Akcent", + "SSE.Controllers.Main.txtAll": "(všetko)", "SSE.Controllers.Main.txtArt": "Váš text tu", "SSE.Controllers.Main.txtBasicShapes": "Základné tvary", "SSE.Controllers.Main.txtButtons": "Tlačidlá", + "SSE.Controllers.Main.txtByField": "%1 z %2", "SSE.Controllers.Main.txtCallouts": "Popisky obrázku", "SSE.Controllers.Main.txtCharts": "Grafy", + "SSE.Controllers.Main.txtColumn": "Stĺpec", + "SSE.Controllers.Main.txtDate": "Dátum", "SSE.Controllers.Main.txtDiagramTitle": "Názov grafu", "SSE.Controllers.Main.txtEditingMode": "Nastaviť režim úprav...", "SSE.Controllers.Main.txtFiguredArrows": "Šipky", + "SSE.Controllers.Main.txtFile": "Súbor", "SSE.Controllers.Main.txtLines": "Čiary", "SSE.Controllers.Main.txtMath": "Matematika", + "SSE.Controllers.Main.txtPage": "Stránka", + "SSE.Controllers.Main.txtPageOf": "Stránka %1 z %2", + "SSE.Controllers.Main.txtPages": "Strany", "SSE.Controllers.Main.txtRectangles": "Obdĺžniky", + "SSE.Controllers.Main.txtRow": "Riadok", "SSE.Controllers.Main.txtSeries": "Rady", + "SSE.Controllers.Main.txtShape_actionButtonBackPrevious": "Tlačítko Späť alebo Predchádzajúce", + "SSE.Controllers.Main.txtShape_actionButtonBeginning": "Tlačítko Začiatok", + "SSE.Controllers.Main.txtShape_actionButtonBlank": "Prázdne tlačítko", + "SSE.Controllers.Main.txtShape_actionButtonDocument": "Tlačítko Dokument", + "SSE.Controllers.Main.txtShape_actionButtonEnd": "Tlačítko Koniec", + "SSE.Controllers.Main.txtShape_arc": "Oblúk", + "SSE.Controllers.Main.txtShape_bentArrow": "Ohnutá šípka", + "SSE.Controllers.Main.txtShape_bentUpArrow": "Šípka ohnutá hore", + "SSE.Controllers.Main.txtShape_bevel": "Skosenie", + "SSE.Controllers.Main.txtShape_blockArc": "Časť kruhu", + "SSE.Controllers.Main.txtShape_bracePair": "Dvojitá zátvorka", + "SSE.Controllers.Main.txtShape_cloud": "Cloud", + "SSE.Controllers.Main.txtShape_corner": "Roh", + "SSE.Controllers.Main.txtShape_cube": "Kocka", + "SSE.Controllers.Main.txtShape_decagon": "Desaťuhoľník", + "SSE.Controllers.Main.txtShape_doubleWave": "Dvojitá vlnovka", + "SSE.Controllers.Main.txtShape_downArrow": "Šípka dole", + "SSE.Controllers.Main.txtShape_frame": "Rámček", + "SSE.Controllers.Main.txtShape_heart": "Srdce", + "SSE.Controllers.Main.txtShape_irregularSeal1": "Výbuch 1", + "SSE.Controllers.Main.txtShape_irregularSeal2": "Výbuch 2", + "SSE.Controllers.Main.txtShape_leftArrow": "Ľavá šípka", + "SSE.Controllers.Main.txtShape_line": "Čiara", + "SSE.Controllers.Main.txtShape_lineWithArrow": "Šípka", + "SSE.Controllers.Main.txtShape_mathEqual": "Rovná sa", + "SSE.Controllers.Main.txtShape_mathMinus": "Mínus", + "SSE.Controllers.Main.txtShape_mathMultiply": "Viacnásobný", + "SSE.Controllers.Main.txtShape_mathNotEqual": "Nerovná sa", + "SSE.Controllers.Main.txtShape_mathPlus": "Plus", + "SSE.Controllers.Main.txtShape_moon": "Mesiac", "SSE.Controllers.Main.txtShape_noSmoking": "Symbol \"Nie\"", + "SSE.Controllers.Main.txtShape_parallelogram": "Rovnobežník", + "SSE.Controllers.Main.txtShape_pie": "Koláčový graf", + "SSE.Controllers.Main.txtShape_plus": "Plus", + "SSE.Controllers.Main.txtShape_rightArrow": "Pravá šípka", + "SSE.Controllers.Main.txtShape_spline": "Krivka", + "SSE.Controllers.Main.txtShape_star10": "10-cípa hviezda", + "SSE.Controllers.Main.txtShape_star12": "12-cípa hviezda", + "SSE.Controllers.Main.txtShape_star16": "16-cípa hviezda", + "SSE.Controllers.Main.txtShape_star24": "24-cípa hviezda", + "SSE.Controllers.Main.txtShape_star32": "32-cípa hviezda", + "SSE.Controllers.Main.txtShape_star4": "4-cípa hviezda", + "SSE.Controllers.Main.txtShape_star5": "5-cípa hviezda", + "SSE.Controllers.Main.txtShape_star6": "6-cípa hviezda", + "SSE.Controllers.Main.txtShape_star7": "7-cípa hviezda", + "SSE.Controllers.Main.txtShape_star8": "8-cípa hviezda", + "SSE.Controllers.Main.txtShape_sun": "Ne", + "SSE.Controllers.Main.txtShape_textRect": "Textové pole", + "SSE.Controllers.Main.txtShape_upArrow": "Šípka hore", + "SSE.Controllers.Main.txtShape_wave": "Vlnka", "SSE.Controllers.Main.txtStarsRibbons": "Hviezdy a stuhy", "SSE.Controllers.Main.txtStyle_Bad": "Zlý/chybný", "SSE.Controllers.Main.txtStyle_Calculation": "Kalkulácia", @@ -402,6 +588,10 @@ "SSE.Controllers.Main.txtStyle_Title": "Názov", "SSE.Controllers.Main.txtStyle_Total": "Celkovo", "SSE.Controllers.Main.txtStyle_Warning_Text": "Varovný text", + "SSE.Controllers.Main.txtTab": "Tabulátor", + "SSE.Controllers.Main.txtTable": "Tabuľka", + "SSE.Controllers.Main.txtTime": "Čas", + "SSE.Controllers.Main.txtValues": "Hodnoty", "SSE.Controllers.Main.txtXAxis": "Os X", "SSE.Controllers.Main.txtYAxis": "Os Y", "SSE.Controllers.Main.unknownErrorText": "Neznáma chyba.", @@ -411,13 +601,18 @@ "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.waitText": "Prosím čakajte...", "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.", "SSE.Controllers.Main.warnNoLicense": "Táto verzia aplikácie %1 editors má určité obmedzenia pre súbežné pripojenia k dokumentovému serveru.
          Ak potrebujete viac, zvážte aktualizáciu aktuálnej licencie alebo zakúpenie komerčnej.", "SSE.Controllers.Main.warnProcessRightsChange": "Bolo vám zamietnuté právo upravovať súbor.", "SSE.Controllers.Print.strAllSheets": "Všetky listy", + "SSE.Controllers.Print.textFirstCol": "Prvý stĺpec", + "SSE.Controllers.Print.textFirstRow": "Prvý riadok", + "SSE.Controllers.Print.textInvalidRange": "CHYBA! Neplatný rozsah buniek", "SSE.Controllers.Print.textWarning": "Upozornenie", + "SSE.Controllers.Print.txtCustom": "Vlastný", "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ť.", @@ -432,6 +627,7 @@ "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.textInsert": "Vložiť", "SSE.Controllers.Toolbar.textIntegral": "Integrály", "SSE.Controllers.Toolbar.textLargeOperator": "Veľké operátory", "SSE.Controllers.Toolbar.textLimitAndLog": "Limity a logaritmy", @@ -510,6 +706,7 @@ "SSE.Controllers.Toolbar.txtBracket_UppLim": "Zátvorky", "SSE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen": "Zátvorka", "SSE.Controllers.Toolbar.txtBracket_UppLim_OpenNone": "Zátvorka", + "SSE.Controllers.Toolbar.txtDeleteCells": "Odstrániť bunky", "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?", "SSE.Controllers.Toolbar.txtFractionDiagonal": "Skosený zlomok ", @@ -548,6 +745,7 @@ "SSE.Controllers.Toolbar.txtFunction_Sinh": "Funkcia hyperbolický sínus", "SSE.Controllers.Toolbar.txtFunction_Tan": "Funkcia tangens", "SSE.Controllers.Toolbar.txtFunction_Tanh": "Funkcia hyperbolický tangens", + "SSE.Controllers.Toolbar.txtInsertCells": "Vložiť bunky", "SSE.Controllers.Toolbar.txtIntegral": "Integrál", "SSE.Controllers.Toolbar.txtIntegral_dtheta": "Diferenciál theta", "SSE.Controllers.Toolbar.txtIntegral_dx": "Diferenciál x", @@ -765,6 +963,11 @@ "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ť?", "SSE.Controllers.Toolbar.warnMergeLostData": "Iba údaje z ľavej hornej bunky zostanú v zlúčenej bunke.
          Ste si istý, že chcete pokračovať?", + "SSE.Controllers.Viewport.textFreezePanes": "Ukotviť priečky", + "SSE.Controllers.Viewport.textHideFBar": "Skryť riadok vzorcov", + "SSE.Controllers.Viewport.textHideGridlines": "Skryť mriežku", + "SSE.Controllers.Viewport.textHideHeadings": "Skryť záhlavia", + "SSE.Views.AdvancedSeparatorDialog.textTitle": "Pokročilé nastavenia", "SSE.Views.AutoFilterDialog.btnCustomFilter": "Špeciálny/vlastný filter", "SSE.Views.AutoFilterDialog.textAddSelection": "Pridať aktuálny výber na filtrovanie", "SSE.Views.AutoFilterDialog.textEmptyItem": "{Blanks}", @@ -807,6 +1010,24 @@ "SSE.Views.CellRangeDialog.txtEmpty": "Toto pole sa vyžaduje", "SSE.Views.CellRangeDialog.txtInvalidRange": "CHYBA! Neplatný rozsah buniek", "SSE.Views.CellRangeDialog.txtTitle": "Vybrať rozsah údajov", + "SSE.Views.CellSettings.strWrap": "Obtekanie textu", + "SSE.Views.CellSettings.textAngle": "Uhol", + "SSE.Views.CellSettings.textBackColor": "Farba pozadia", + "SSE.Views.CellSettings.textBackground": "Farba pozadia", + "SSE.Views.CellSettings.textBorderColor": "Farba", + "SSE.Views.CellSettings.textBorders": "Štýl orámovania", + "SSE.Views.CellSettings.textColor": "Vyplniť farbou", + "SSE.Views.CellSettings.textDirection": "Smer", + "SSE.Views.CellSettings.textFill": "Vyplniť", + "SSE.Views.CellSettings.textForeground": "Farba popredia", + "SSE.Views.CellSettings.textGradient": "Prechod", + "SSE.Views.CellSettings.textGradientFill": "Výplň prechodom", + "SSE.Views.CellSettings.textLinear": "Lineárny", + "SSE.Views.CellSettings.textNoFill": "Bez výplne", + "SSE.Views.CellSettings.textOrientation": "Orientácia textu", + "SSE.Views.CellSettings.textPattern": "Vzor", + "SSE.Views.CellSettings.textPatternFill": "Vzor", + "SSE.Views.CellSettings.textRadial": "Kruhový", "SSE.Views.CellSettings.tipInnerVert": "Nastaviť len vertikálne vnútorné čiary", "SSE.Views.ChartSettings.strLineWeight": "Hrúbka čiary", "SSE.Views.ChartSettings.strSparkColor": "Farba", @@ -830,6 +1051,7 @@ "SSE.Views.ChartSettings.textStyle": "Štýl", "SSE.Views.ChartSettings.textType": "Typ", "SSE.Views.ChartSettings.textWidth": "Šírka", + "SSE.Views.ChartSettingsDlg.errorMaxPoints": "CHYBA! Najvyšší možný počet bodov za sebou v jednom grafu je 4096.", "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.", "SSE.Views.ChartSettingsDlg.textAlt": "Alternatívny text", @@ -952,6 +1174,9 @@ "SSE.Views.ChartSettingsDlg.textYAxisTitle": "Názov osi Y", "SSE.Views.ChartSettingsDlg.textZero": "Nula", "SSE.Views.ChartSettingsDlg.txtEmpty": "Toto pole sa vyžaduje", + "SSE.Views.CreatePivotDialog.textInvalidRange": "Neplatný rozsah buniek", + "SSE.Views.DataTab.capBtnGroup": "Skupina", + "SSE.Views.DataTab.capBtnUngroup": "Oddeliť", "SSE.Views.DigitalFilterDialog.capAnd": "a", "SSE.Views.DigitalFilterDialog.capCondition1": "rovná se", "SSE.Views.DigitalFilterDialog.capCondition10": "Nekončí s", @@ -990,23 +1215,47 @@ "SSE.Views.DocumentHolder.insertColumnRightText": "Stĺpec vpravo", "SSE.Views.DocumentHolder.insertRowAboveText": "Riadok nad", "SSE.Views.DocumentHolder.insertRowBelowText": "Riadok pod", + "SSE.Views.DocumentHolder.originalSizeText": "Aktuálna veľkosť", "SSE.Views.DocumentHolder.removeHyperlinkText": "Odstrániť hypertextový odkaz", "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.textAlign": "Zarovnať", + "SSE.Views.DocumentHolder.textArrange": "Upraviť/usporiadať/zarovnať", "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.textAverage": "Priemer", + "SSE.Views.DocumentHolder.textCount": "Počet", + "SSE.Views.DocumentHolder.textCrop": "Orezať", + "SSE.Views.DocumentHolder.textCropFill": "Vyplniť", + "SSE.Views.DocumentHolder.textCropFit": "Prispôsobiť", "SSE.Views.DocumentHolder.textEntriesList": "Vybrať z rolovacieho zoznamu", + "SSE.Views.DocumentHolder.textFlipH": "Prevrátiť horizontálne", + "SSE.Views.DocumentHolder.textFlipV": "Prevrátiť vertikálne", "SSE.Views.DocumentHolder.textFreezePanes": "Ukotviť priečky", "SSE.Views.DocumentHolder.textFromFile": "Zo súboru", + "SSE.Views.DocumentHolder.textFromStorage": "Z úložiska", "SSE.Views.DocumentHolder.textFromUrl": "Z URL adresy", + "SSE.Views.DocumentHolder.textMax": "Max", + "SSE.Views.DocumentHolder.textMin": "Min", + "SSE.Views.DocumentHolder.textMoreFormats": "Ďalšie formáty", "SSE.Views.DocumentHolder.textNone": "žiadny", + "SSE.Views.DocumentHolder.textReplace": "Nahradiť obrázok", + "SSE.Views.DocumentHolder.textRotate": "Otočiť", + "SSE.Views.DocumentHolder.textShapeAlignBottom": "Zarovnať dole", + "SSE.Views.DocumentHolder.textShapeAlignCenter": "Zarovnať na stred", + "SSE.Views.DocumentHolder.textShapeAlignLeft": "Zarovnať doľava", + "SSE.Views.DocumentHolder.textShapeAlignMiddle": "Zarovnať na stred", + "SSE.Views.DocumentHolder.textShapeAlignRight": "Zarovnať doprava", + "SSE.Views.DocumentHolder.textShapeAlignTop": "Zarovnať nahor", + "SSE.Views.DocumentHolder.textSum": "SÚČET", "SSE.Views.DocumentHolder.textUndo": "Krok späť", "SSE.Views.DocumentHolder.textUnFreezePanes": "Zrušiť priečky", "SSE.Views.DocumentHolder.topCellText": "Zarovnať nahor", + "SSE.Views.DocumentHolder.txtAccounting": "Účtovníctvo", "SSE.Views.DocumentHolder.txtAddComment": "Pridať komentár", "SSE.Views.DocumentHolder.txtAddNamedRange": "Definovať meno", "SSE.Views.DocumentHolder.txtArrange": "Upraviť/usporiadať/zarovnať", @@ -1024,22 +1273,31 @@ "SSE.Views.DocumentHolder.txtColumn": "Celý stĺpec", "SSE.Views.DocumentHolder.txtColumnWidth": "Nastaviť šírku stĺpca", "SSE.Views.DocumentHolder.txtCopy": "Kopírovať", + "SSE.Views.DocumentHolder.txtCurrency": "Mena", "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.txtDate": "Dátum", "SSE.Views.DocumentHolder.txtDelete": "Vymazať", "SSE.Views.DocumentHolder.txtDescending": "Zostupne", + "SSE.Views.DocumentHolder.txtDistribHor": "Rozložiť horizontálne", + "SSE.Views.DocumentHolder.txtDistribVert": "Rozložiť vertikálne", "SSE.Views.DocumentHolder.txtEditComment": "Upraviť komentár", "SSE.Views.DocumentHolder.txtFilter": "Filter", "SSE.Views.DocumentHolder.txtFilterCellColor": "Filtrovať podľa farby bunky", "SSE.Views.DocumentHolder.txtFilterFontColor": "Filtrovať podľa farby písma", "SSE.Views.DocumentHolder.txtFilterValue": "Filtrovať podľa hodnoty vybranej bunky", "SSE.Views.DocumentHolder.txtFormula": "Vložiť funkciu", + "SSE.Views.DocumentHolder.txtFraction": "Zlomok", + "SSE.Views.DocumentHolder.txtGeneral": "Všeobecné", "SSE.Views.DocumentHolder.txtGroup": "Skupina", "SSE.Views.DocumentHolder.txtHide": "Skryť", "SSE.Views.DocumentHolder.txtInsert": "Vložiť", "SSE.Views.DocumentHolder.txtInsHyperlink": "Hypertextový odkaz", + "SSE.Views.DocumentHolder.txtNumber": "Číslo", + "SSE.Views.DocumentHolder.txtNumFormat": "Formát čísla", "SSE.Views.DocumentHolder.txtPaste": "Vložiť", + "SSE.Views.DocumentHolder.txtPercentage": "Percentuálny podiel", "SSE.Views.DocumentHolder.txtReapply": "Opäť použiť", "SSE.Views.DocumentHolder.txtRow": "Celý riadok", "SSE.Views.DocumentHolder.txtRowHeight": "Nastaviť výšku riadku", @@ -1054,10 +1312,19 @@ "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.txtText": "Text", "SSE.Views.DocumentHolder.txtTextAdvanced": "Pokročilé nastavenia textu", + "SSE.Views.DocumentHolder.txtTime": "Čas", "SSE.Views.DocumentHolder.txtUngroup": "Oddeliť", "SSE.Views.DocumentHolder.txtWidth": "Šírka", "SSE.Views.DocumentHolder.vertAlignText": "Vertikálne zarovnanie", + "SSE.Views.FieldSettingsDialog.strLayout": "Rozloženie", + "SSE.Views.FieldSettingsDialog.txtAverage": "Priemer", + "SSE.Views.FieldSettingsDialog.txtCount": "Počet", + "SSE.Views.FieldSettingsDialog.txtMax": "Max", + "SSE.Views.FieldSettingsDialog.txtMin": "Min", + "SSE.Views.FieldSettingsDialog.txtProduct": "Produkt", + "SSE.Views.FieldSettingsDialog.txtSum": "SÚČET", "SSE.Views.FileMenu.btnBackCaption": "Prejsť do Dokumentov", "SSE.Views.FileMenu.btnCloseMenuCaption": "Zatvoriť menu", "SSE.Views.FileMenu.btnCreateNewCaption": "Vytvoriť nový", @@ -1065,6 +1332,7 @@ "SSE.Views.FileMenu.btnHelpCaption": "Pomoc...", "SSE.Views.FileMenu.btnInfoCaption": "Informácie o zošite...", "SSE.Views.FileMenu.btnPrintCaption": "Tlačiť", + "SSE.Views.FileMenu.btnProtectCaption": "Ochrániť", "SSE.Views.FileMenu.btnRecentFilesCaption": "Otvoriť nedávne...", "SSE.Views.FileMenu.btnRenameCaption": "Premenovať ..", "SSE.Views.FileMenu.btnReturnCaption": "Späť do zošitu", @@ -1077,11 +1345,21 @@ "SSE.Views.FileMenuPanels.CreateNew.fromTemplateText": "Zo šablóny", "SSE.Views.FileMenuPanels.CreateNew.newDescriptionText": "Vytvorte novú prázdnu tabuľku, ktorú budete môcť štýlovať a formátovať po jej vytvorení počas úpravy. Alebo si vyberte jednu zo šablón, ak chcete spustiť tabuľku určitého typu alebo účelu, kde niektoré štýly už boli predbežne aplikované.", "SSE.Views.FileMenuPanels.CreateNew.newDocumentText": "Nový zošit", + "SSE.Views.FileMenuPanels.DocumentInfo.okButtonText": "Aplikovať", + "SSE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Pridať autora", + "SSE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Pridať text", + "SSE.Views.FileMenuPanels.DocumentInfo.txtAppName": "Aplikácia", "SSE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Autor", "SSE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Zmeniť prístupové práva", + "SSE.Views.FileMenuPanels.DocumentInfo.txtComment": "Komentár", + "SSE.Views.FileMenuPanels.DocumentInfo.txtCreated": "Vytvorené", + "SSE.Views.FileMenuPanels.DocumentInfo.txtModifyBy": "Naposledy upravil(a) ", + "SSE.Views.FileMenuPanels.DocumentInfo.txtModifyDate": "Naposledy upravené", + "SSE.Views.FileMenuPanels.DocumentInfo.txtOwner": "Vlastník", "SSE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Umiestnenie", "SSE.Views.FileMenuPanels.DocumentInfo.txtRights": "Osoby s oprávneniami", "SSE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Názov zošitu", + "SSE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Nahrané", "SSE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Zmeniť prístupové práva", "SSE.Views.FileMenuPanels.DocumentRights.txtRights": "Osoby s oprávneniami", "SSE.Views.FileMenuPanels.MainSettingsGeneral.okButtonText": "Použiť", @@ -1096,6 +1374,7 @@ "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.strMacrosSettings": "Nastavenia makier", "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", @@ -1114,6 +1393,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.txtFr": "Francúzsky", "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", @@ -1121,8 +1401,18 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPl": "Poľština", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPt": "Bod", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRu": "Ruština", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRunMacros": "Povoliť všetko", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRunMacrosDesc": "Povoliť všetky makrá bez oznámenia", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStopMacros": "Zablokovať všetko", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStopMacrosDesc": "Zablokovať všetky makrá bez upozornenia", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacrosDesc": "Zablokovať všetky makrá s upozornením", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin": "ako Windows", + "SSE.Views.FileMenuPanels.MainSpellCheckSettings.okButtonText": "Aplikovať", + "SSE.Views.FileMenuPanels.MainSpellCheckSettings.txtAutoCorrect": "Možnosti automatickej opravy...", "SSE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Upozornenie", + "SSE.Views.FileMenuPanels.ProtectDoc.strSignature": "Podpis", + "SSE.Views.FileMenuPanels.ProtectDoc.txtEdit": "Upraviť zošit", + "SSE.Views.FileMenuPanels.ProtectDoc.txtView": "Zobraziť podpisy", "SSE.Views.FileMenuPanels.Settings.txtGeneral": "Všeobecné", "SSE.Views.FileMenuPanels.Settings.txtPageSettings": "Nastavenie stránky", "SSE.Views.FormatSettingsDialog.textCategory": "Kategória", @@ -1143,6 +1433,7 @@ "SSE.Views.FormatSettingsDialog.txtDate": "Dátum", "SSE.Views.FormatSettingsDialog.txtFraction": "Zlomok", "SSE.Views.FormatSettingsDialog.txtGeneral": "Všeobecné", + "SSE.Views.FormatSettingsDialog.txtNone": "žiadny", "SSE.Views.FormatSettingsDialog.txtNumber": "Číslo", "SSE.Views.FormatSettingsDialog.txtPercentage": "Percentuálny podiel", "SSE.Views.FormatSettingsDialog.txtSample": "Príklad:", @@ -1156,10 +1447,46 @@ "SSE.Views.FormulaDialog.textGroupDescription": "Vybrať skupinu funkcií", "SSE.Views.FormulaDialog.textListDescription": "Vybrať funkciu", "SSE.Views.FormulaDialog.txtTitle": "Vložiť funkciu", + "SSE.Views.FormulaTab.textAutomatic": "Automaticky", + "SSE.Views.FormulaTab.textManual": "Manuál", + "SSE.Views.FormulaTab.txtAdditional": "Ďalšie", + "SSE.Views.FormulaTab.txtAutosum": "Automatický súčet", + "SSE.Views.FormulaTab.txtAutosumTip": "Suma", + "SSE.Views.FormulaTab.txtCalculation": "Kalkulácia", + "SSE.Views.FormulaTab.txtFormula": "Funkcia", + "SSE.Views.FormulaTab.txtFormulaTip": "Vložiť funkciu", + "SSE.Views.FormulaWizard.textFunction": "Funkcia", + "SSE.Views.GroupDialog.textColumns": "Stĺpce", + "SSE.Views.GroupDialog.textRows": "Riadky", + "SSE.Views.HeaderFooterDialog.textAll": "Všetky stránky", + "SSE.Views.HeaderFooterDialog.textBold": "Tučné", + "SSE.Views.HeaderFooterDialog.textCenter": "Stred", + "SSE.Views.HeaderFooterDialog.textColor": "Farba textu", + "SSE.Views.HeaderFooterDialog.textDate": "Dátum", + "SSE.Views.HeaderFooterDialog.textDiffFirst": "Odlišná prvá stránka", + "SSE.Views.HeaderFooterDialog.textDiffOdd": "Rozdielne nepárne a párne stránky", + "SSE.Views.HeaderFooterDialog.textEven": "Párna stránka", + "SSE.Views.HeaderFooterDialog.textFileName": "Názov súboru", + "SSE.Views.HeaderFooterDialog.textFirst": "Prvá strana", + "SSE.Views.HeaderFooterDialog.textFooter": "Päta stránky", + "SSE.Views.HeaderFooterDialog.textInsert": "Vložiť", + "SSE.Views.HeaderFooterDialog.textItalic": "Kurzíva", + "SSE.Views.HeaderFooterDialog.textLeft": "Vľavo", + "SSE.Views.HeaderFooterDialog.textNewColor": "Pridať novú vlastnú farbu", + "SSE.Views.HeaderFooterDialog.textOdd": "Nepárna strana", + "SSE.Views.HeaderFooterDialog.textPageCount": "Počet stránok", + "SSE.Views.HeaderFooterDialog.textPageNum": "Číslo strany", + "SSE.Views.HeaderFooterDialog.textRight": "Vpravo", + "SSE.Views.HeaderFooterDialog.textSuperscript": "Horný index", + "SSE.Views.HeaderFooterDialog.textTime": "Čas", + "SSE.Views.HeaderFooterDialog.textUnderline": "Podčiarknuť", + "SSE.Views.HeaderFooterDialog.tipFontName": "Písmo", + "SSE.Views.HeaderFooterDialog.tipFontSize": "Veľkosť písma", "SSE.Views.HyperlinkSettingsDialog.strDisplay": "Zobraziť", "SSE.Views.HyperlinkSettingsDialog.strLinkTo": "Odkaz na", "SSE.Views.HyperlinkSettingsDialog.strRange": "Rozsah", "SSE.Views.HyperlinkSettingsDialog.strSheet": "List", + "SSE.Views.HyperlinkSettingsDialog.textCopy": "Kopírovať", "SSE.Views.HyperlinkSettingsDialog.textDefault": "Vybraný rozsah", "SSE.Views.HyperlinkSettingsDialog.textEmptyDesc": "Tu zadajte popis/nadpis", "SSE.Views.HyperlinkSettingsDialog.textEmptyLink": "Tu zadajte odkaz", @@ -1167,26 +1494,38 @@ "SSE.Views.HyperlinkSettingsDialog.textExternalLink": "Externý odkaz", "SSE.Views.HyperlinkSettingsDialog.textInternalLink": "Interný rozsah údajov", "SSE.Views.HyperlinkSettingsDialog.textInvalidRange": "CHYBA! Neplatný rozsah buniek", + "SSE.Views.HyperlinkSettingsDialog.textNames": "Definované názvy", "SSE.Views.HyperlinkSettingsDialog.textTipText": "Popis", "SSE.Views.HyperlinkSettingsDialog.textTitle": "Nastavenie hypertextového odkazu", "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.textCrop": "Orezať", + "SSE.Views.ImageSettings.textCropFill": "Vyplniť", + "SSE.Views.ImageSettings.textCropFit": "Prispôsobiť", "SSE.Views.ImageSettings.textEdit": "Upraviť", "SSE.Views.ImageSettings.textEditObject": "Upraviť objekt", + "SSE.Views.ImageSettings.textFlip": "Prevrátiť", "SSE.Views.ImageSettings.textFromFile": "Zo súboru", + "SSE.Views.ImageSettings.textFromStorage": "Z úložiska", "SSE.Views.ImageSettings.textFromUrl": "Z URL adresy ", "SSE.Views.ImageSettings.textHeight": "Výška", + "SSE.Views.ImageSettings.textHintFlipH": "Prevrátiť horizontálne", + "SSE.Views.ImageSettings.textHintFlipV": "Prevrátiť vertikálne", "SSE.Views.ImageSettings.textInsert": "Nahradiť obrázok", "SSE.Views.ImageSettings.textKeepRatio": "Konštantné rozmery", "SSE.Views.ImageSettings.textOriginalSize": "Predvolená veľkosť", + "SSE.Views.ImageSettings.textRotate90": "Otočiť o 90°", "SSE.Views.ImageSettings.textSize": "Veľkosť", "SSE.Views.ImageSettings.textWidth": "Šírka", "SSE.Views.ImageSettingsAdvanced.textAlt": "Alternatívny text", "SSE.Views.ImageSettingsAdvanced.textAltDescription": "Popis", "SSE.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. ", "SSE.Views.ImageSettingsAdvanced.textAltTitle": "Názov", + "SSE.Views.ImageSettingsAdvanced.textAngle": "Uhol", + "SSE.Views.ImageSettingsAdvanced.textFlipped": "Prevrátený", "SSE.Views.ImageSettingsAdvanced.textTitle": "Obrázok - Pokročilé nastavenia", + "SSE.Views.ImageSettingsAdvanced.textVertically": "Zvisle", "SSE.Views.LeftMenu.tipAbout": "O aplikácii", "SSE.Views.LeftMenu.tipChat": "Rozhovor", "SSE.Views.LeftMenu.tipComments": "Komentáre", @@ -1206,6 +1545,7 @@ "SSE.Views.MainSettingsPrint.strRight": "Vpravo", "SSE.Views.MainSettingsPrint.strTop": "Hore", "SSE.Views.MainSettingsPrint.textActualSize": "Aktuálna veľkosť", + "SSE.Views.MainSettingsPrint.textCustom": "Vlastný", "SSE.Views.MainSettingsPrint.textFitCols": "Prispôsobiť všetky stĺpce na jednu stránku", "SSE.Views.MainSettingsPrint.textFitPage": "Prispôsobiť list na jednu stranu", "SSE.Views.MainSettingsPrint.textFitRows": "Prispôsobiť všetky riadky na jednu stránku", @@ -1252,6 +1592,11 @@ "SSE.Views.NameManagerDlg.textWorkbook": "Zošit", "SSE.Views.NameManagerDlg.tipIsLocked": "Tento prvok upravuje iný používateľ.", "SSE.Views.NameManagerDlg.txtTitle": "Správca názvov", + "SSE.Views.PageMarginsDialog.textBottom": "Dole", + "SSE.Views.PageMarginsDialog.textLeft": "Vľavo", + "SSE.Views.PageMarginsDialog.textRight": "Vpravo", + "SSE.Views.PageMarginsDialog.textTitle": "Okraje", + "SSE.Views.PageMarginsDialog.textTop": "Hore", "SSE.Views.ParagraphSettings.strLineHeight": "Riadkovanie", "SSE.Views.ParagraphSettings.strParagraphSpacing": "Riadkovanie medzi odstavcami", "SSE.Views.ParagraphSettings.strSpacingAfter": "Za", @@ -1266,7 +1611,11 @@ "SSE.Views.ParagraphSettingsAdvanced.strAllCaps": "Všetko veľkým", "SSE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Dvojité prečiarknutie", "SSE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Vľavo", + "SSE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing": "Riadkovanie", "SSE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Vpravo", + "SSE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter": "Za", + "SSE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore": "Pred", + "SSE.Views.ParagraphSettingsAdvanced.strIndentsSpecialBy": "Od", "SSE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Písmo", "SSE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "Odsadenie a umiestnenie", "SSE.Views.ParagraphSettingsAdvanced.strSmallCaps": "Malé písmená", @@ -1275,9 +1624,13 @@ "SSE.Views.ParagraphSettingsAdvanced.strSuperscript": "Horný index", "SSE.Views.ParagraphSettingsAdvanced.strTabs": "Tabulátor", "SSE.Views.ParagraphSettingsAdvanced.textAlign": "Zarovnanie", + "SSE.Views.ParagraphSettingsAdvanced.textAuto": "Viacnásobný", "SSE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Medzery medzi písmenami", "SSE.Views.ParagraphSettingsAdvanced.textDefault": "Predvolený tabulátor", "SSE.Views.ParagraphSettingsAdvanced.textEffects": "Efekty", + "SSE.Views.ParagraphSettingsAdvanced.textExact": "presne", + "SSE.Views.ParagraphSettingsAdvanced.textFirstLine": "Prvý riadok", + "SSE.Views.ParagraphSettingsAdvanced.textJustified": "Podľa okrajov", "SSE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(žiadne)", "SSE.Views.ParagraphSettingsAdvanced.textRemove": "Odstrániť", "SSE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Odstrániť všetko", @@ -1287,7 +1640,34 @@ "SSE.Views.ParagraphSettingsAdvanced.textTabPosition": "Pozícia tabulátora", "SSE.Views.ParagraphSettingsAdvanced.textTabRight": "Vpravo", "SSE.Views.ParagraphSettingsAdvanced.textTitle": "Odsek - Pokročilé nastavenia", + "SSE.Views.ParagraphSettingsAdvanced.txtAutoText": "Automaticky", + "SSE.Views.PivotDigitalFilterDialog.capCondition1": "rovná se", + "SSE.Views.PivotDigitalFilterDialog.capCondition10": "Nekončí s", + "SSE.Views.PivotDigitalFilterDialog.capCondition11": "Obsahuje", + "SSE.Views.PivotDigitalFilterDialog.capCondition12": "Neobsahuje", + "SSE.Views.PivotDigitalFilterDialog.capCondition2": "nerovná sa", + "SSE.Views.PivotDigitalFilterDialog.capCondition3": "je väčšie ako", + "SSE.Views.PivotDigitalFilterDialog.capCondition4": "je väčšie alebo rovné ", + "SSE.Views.PivotDigitalFilterDialog.capCondition5": "Je menšie než", + "SSE.Views.PivotDigitalFilterDialog.capCondition6": "je menšie alebo rovné ", + "SSE.Views.PivotDigitalFilterDialog.capCondition7": "Začať s", + "SSE.Views.PivotDigitalFilterDialog.capCondition8": "Nezačína s", + "SSE.Views.PivotDigitalFilterDialog.capCondition9": "Končí s", + "SSE.Views.PivotDigitalFilterDialog.textUse1": "Použite ? na zobrazenie akéhokoľvek jedného znaku", + "SSE.Views.PivotDigitalFilterDialog.textUse2": "Použite * na zobrazenie ľubovoľnej série znakov", + "SSE.Views.PivotDigitalFilterDialog.txtAnd": "a", "SSE.Views.PivotSettings.textAdvanced": "Zobraziť pokročilé nastavenia", + "SSE.Views.PivotSettings.textColumns": "Stĺpce", + "SSE.Views.PivotSettings.textRows": "Riadky", + "SSE.Views.PivotSettings.textValues": "Hodnoty", + "SSE.Views.PivotSettingsAdvanced.textAlt": "Alternatívny text", + "SSE.Views.PivotSettingsAdvanced.textAltDescription": "Popis", + "SSE.Views.PivotSettingsAdvanced.textAltTitle": "Názov", + "SSE.Views.PivotSettingsAdvanced.textDataRange": "Rozsah údajov", + "SSE.Views.PivotSettingsAdvanced.textDataSource": "Dátový zdroj", + "SSE.Views.PivotSettingsAdvanced.textInvalidRange": "CHYBA! Neplatný rozsah buniek", + "SSE.Views.PivotSettingsAdvanced.txtName": "Meno", + "SSE.Views.PivotTable.txtCreate": "Vložiť tabuľku", "SSE.Views.PivotTable.txtSelect": "Vybrať", "SSE.Views.PrintSettings.btnDownload": "Uložiť a stiahnuť", "SSE.Views.PrintSettings.btnPrint": "Uložiť a vytlačiť", @@ -1303,6 +1683,7 @@ "SSE.Views.PrintSettings.textActualSize": "Aktuálna veľkosť", "SSE.Views.PrintSettings.textAllSheets": "Všetky listy", "SSE.Views.PrintSettings.textCurrentSheet": "Aktuálny list", + "SSE.Views.PrintSettings.textCustom": "Vlastný", "SSE.Views.PrintSettings.textFitCols": "Prispôsobiť všetky stĺpce na jednu stránku", "SSE.Views.PrintSettings.textFitPage": "Prispôsobiť list na jednu stranu", "SSE.Views.PrintSettings.textFitRows": "Prispôsobiť všetky riadky na jednu stránku", @@ -1314,10 +1695,16 @@ "SSE.Views.PrintSettings.textPrintGrid": "Vytlačiť mriežky", "SSE.Views.PrintSettings.textPrintHeadings": "Vytlačiť nadpisy riadkov a stĺpcov", "SSE.Views.PrintSettings.textPrintRange": "Rozsah tlače", + "SSE.Views.PrintSettings.textRange": "Rozsah", "SSE.Views.PrintSettings.textSelection": "Výber", "SSE.Views.PrintSettings.textSettings": "Nastavenie listu", "SSE.Views.PrintSettings.textShowDetails": "Zobraziť detaily", "SSE.Views.PrintSettings.textTitle": "Nastavenia tlače", + "SSE.Views.PrintSettings.textTitlePDF": "Nastavení pro PDF", + "SSE.Views.PrintTitlesDialog.textFirstCol": "Prvý stĺpec", + "SSE.Views.PrintTitlesDialog.textFirstRow": "Prvý riadok", + "SSE.Views.PrintTitlesDialog.textInvalidRange": "CHYBA! Neplatný rozsah buniek", + "SSE.Views.RemoveDuplicatesDialog.textColumns": "Stĺpce", "SSE.Views.RightMenu.txtChartSettings": "Nastavenia grafu", "SSE.Views.RightMenu.txtImageSettings": "Nastavenie obrázka", "SSE.Views.RightMenu.txtParagraphSettings": "Nastavenia textu", @@ -1326,6 +1713,12 @@ "SSE.Views.RightMenu.txtSparklineSettings": "Nastavenia Sparkline ", "SSE.Views.RightMenu.txtTableSettings": "Nastavenie tabuľky", "SSE.Views.RightMenu.txtTextArtSettings": "Nastavenie Text Art", + "SSE.Views.ScaleDialog.textAuto": "Automaticky", + "SSE.Views.ScaleDialog.textFewPages": "Strany", + "SSE.Views.ScaleDialog.textHeight": "Výška", + "SSE.Views.ScaleDialog.textManyPages": "Strany", + "SSE.Views.ScaleDialog.textOnePage": "Stránka", + "SSE.Views.ScaleDialog.textWidth": "Šírka", "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", @@ -1343,16 +1736,21 @@ "SSE.Views.ShapeSettings.textColor": "Vyplniť farbou", "SSE.Views.ShapeSettings.textDirection": "Smer", "SSE.Views.ShapeSettings.textEmptyPattern": "Bez vzoru", + "SSE.Views.ShapeSettings.textFlip": "Prevrátiť", "SSE.Views.ShapeSettings.textFromFile": "Zo súboru", + "SSE.Views.ShapeSettings.textFromStorage": "Z úložiska", "SSE.Views.ShapeSettings.textFromUrl": "Z URL adresy ", "SSE.Views.ShapeSettings.textGradient": "Prechod", "SSE.Views.ShapeSettings.textGradientFill": "Výplň prechodom", + "SSE.Views.ShapeSettings.textHintFlipH": "Prevrátiť horizontálne", + "SSE.Views.ShapeSettings.textHintFlipV": "Prevrátiť vertikálne", "SSE.Views.ShapeSettings.textImageTexture": "Obrázok alebo textúra", "SSE.Views.ShapeSettings.textLinear": "Lineárny/čiarový", "SSE.Views.ShapeSettings.textNoFill": "Bez výplne", "SSE.Views.ShapeSettings.textOriginalSize": "Pôvodná veľkosť", "SSE.Views.ShapeSettings.textPatternFill": "Vzor", "SSE.Views.ShapeSettings.textRadial": "Kruhový/hviezdicovitý", + "SSE.Views.ShapeSettings.textRotate90": "Otočiť o 90°", "SSE.Views.ShapeSettings.textSelectTexture": "Vybrať", "SSE.Views.ShapeSettings.textStretch": "Roztiahnuť", "SSE.Views.ShapeSettings.textStyle": "Štýl", @@ -1376,7 +1774,9 @@ "SSE.Views.ShapeSettingsAdvanced.textAltDescription": "Popis", "SSE.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. ", "SSE.Views.ShapeSettingsAdvanced.textAltTitle": "Názov", + "SSE.Views.ShapeSettingsAdvanced.textAngle": "Uhol", "SSE.Views.ShapeSettingsAdvanced.textArrows": "Šípky", + "SSE.Views.ShapeSettingsAdvanced.textAutofit": "Automatické prispôsobenie", "SSE.Views.ShapeSettingsAdvanced.textBeginSize": "Veľkosť začiatku", "SSE.Views.ShapeSettingsAdvanced.textBeginStyle": "Štýl začiatku", "SSE.Views.ShapeSettingsAdvanced.textBevel": "Skosenie", @@ -1386,6 +1786,7 @@ "SSE.Views.ShapeSettingsAdvanced.textEndSize": "Veľkosť konca", "SSE.Views.ShapeSettingsAdvanced.textEndStyle": "Štýl konca", "SSE.Views.ShapeSettingsAdvanced.textFlat": "Plochý", + "SSE.Views.ShapeSettingsAdvanced.textFlipped": "Prevrátený", "SSE.Views.ShapeSettingsAdvanced.textHeight": "Výška", "SSE.Views.ShapeSettingsAdvanced.textJoinType": "Typ pripojenia", "SSE.Views.ShapeSettingsAdvanced.textKeepRatio": "Konštantné rozmery", @@ -1397,30 +1798,105 @@ "SSE.Views.ShapeSettingsAdvanced.textSize": "Veľkosť", "SSE.Views.ShapeSettingsAdvanced.textSpacing": "Medzera medzi stĺpcami", "SSE.Views.ShapeSettingsAdvanced.textSquare": "Štvorec", + "SSE.Views.ShapeSettingsAdvanced.textTextBox": "Textové pole", "SSE.Views.ShapeSettingsAdvanced.textTitle": "Tvar - Pokročilé nastavenia", "SSE.Views.ShapeSettingsAdvanced.textTop": "Hore", + "SSE.Views.ShapeSettingsAdvanced.textVertically": "Zvisle", "SSE.Views.ShapeSettingsAdvanced.textWeightArrows": "Nastavenia tvaru", "SSE.Views.ShapeSettingsAdvanced.textWidth": "Šírka", "SSE.Views.SignatureSettings.notcriticalErrorTitle": "Upozornenie", + "SSE.Views.SignatureSettings.strInvalid": "Neplatné podpisy", + "SSE.Views.SignatureSettings.strValid": "Platné podpisy", + "SSE.Views.SlicerAddDialog.textColumns": "Stĺpce", + "SSE.Views.SlicerSettings.textAsc": "Vzostupne", + "SSE.Views.SlicerSettings.textAZ": "A po Z", + "SSE.Views.SlicerSettings.textButtons": "Tlačidlá", + "SSE.Views.SlicerSettings.textColumns": "Stĺpce", + "SSE.Views.SlicerSettings.textDesc": "Zostupne", + "SSE.Views.SlicerSettings.textHeight": "Výška", + "SSE.Views.SlicerSettings.textHor": "Vodorovný", + "SSE.Views.SlicerSettings.textPosition": "Pozícia", + "SSE.Views.SlicerSettings.textSize": "Veľkosť", + "SSE.Views.SlicerSettings.textVert": "Zvislý", + "SSE.Views.SlicerSettings.textWidth": "Šírka", + "SSE.Views.SlicerSettings.textZA": "Z po A", + "SSE.Views.SlicerSettingsAdvanced.strButtons": "Tlačidlá", + "SSE.Views.SlicerSettingsAdvanced.strColumns": "Stĺpce", + "SSE.Views.SlicerSettingsAdvanced.strHeight": "Výška", + "SSE.Views.SlicerSettingsAdvanced.strSize": "Veľkosť", + "SSE.Views.SlicerSettingsAdvanced.strWidth": "Šírka", + "SSE.Views.SlicerSettingsAdvanced.textAlt": "Alternatívny text", + "SSE.Views.SlicerSettingsAdvanced.textAltDescription": "Popis", + "SSE.Views.SlicerSettingsAdvanced.textAltTitle": "Názov", + "SSE.Views.SlicerSettingsAdvanced.textAsc": "Vzostupne", + "SSE.Views.SlicerSettingsAdvanced.textAZ": "A po Z", + "SSE.Views.SlicerSettingsAdvanced.textDesc": "Zostupne", + "SSE.Views.SlicerSettingsAdvanced.textKeepRatio": "Konštantné rozmery", + "SSE.Views.SlicerSettingsAdvanced.textName": "Názov", + "SSE.Views.SlicerSettingsAdvanced.textSort": "Zoradiť", + "SSE.Views.SlicerSettingsAdvanced.textZA": "Z po A", + "SSE.Views.SortDialog.textAdd": "Pridať úroveň", + "SSE.Views.SortDialog.textAsc": "Vzostupne", + "SSE.Views.SortDialog.textAuto": "Automaticky", + "SSE.Views.SortDialog.textAZ": "A po Z", + "SSE.Views.SortDialog.textBelow": "pod", + "SSE.Views.SortDialog.textColumn": "Stĺpec", + "SSE.Views.SortDialog.textDesc": "Zostupne", + "SSE.Views.SortDialog.textFontColor": "Farba písma", + "SSE.Views.SortDialog.textLeft": "Vľavo", + "SSE.Views.SortDialog.textNone": "žiadny", + "SSE.Views.SortDialog.textOptions": "Možnosti", + "SSE.Views.SortDialog.textOrder": "Objednávka", + "SSE.Views.SortDialog.textRight": "Vpravo", + "SSE.Views.SortDialog.textRow": "Riadok", + "SSE.Views.SortDialog.textSortBy": "Zoradiť podľa", + "SSE.Views.SortDialog.textTop": "Hore", + "SSE.Views.SortDialog.textValues": "Hodnoty", + "SSE.Views.SortDialog.textZA": "Z po A", + "SSE.Views.SortDialog.txtInvalidRange": "Neplatný rozsah buněk.", + "SSE.Views.SortDialog.txtTitle": "Zoradiť", + "SSE.Views.SortFilterDialog.txtTitle": "Zoradiť", + "SSE.Views.SortOptionsDialog.textOrientation": "Orientácia", + "SSE.Views.SpecialPasteDialog.textAdd": "Pridať", + "SSE.Views.SpecialPasteDialog.textAll": "Všetky", + "SSE.Views.SpecialPasteDialog.textComments": "Komentáre", + "SSE.Views.SpecialPasteDialog.textFormulas": "Vzorce", + "SSE.Views.SpecialPasteDialog.textMult": "Viacnásobný", + "SSE.Views.SpecialPasteDialog.textNone": "žiadny", + "SSE.Views.SpecialPasteDialog.textOperation": "Operácia", + "SSE.Views.SpecialPasteDialog.textPaste": "Vložiť", + "SSE.Views.SpecialPasteDialog.textTranspose": "Premiestňovať", + "SSE.Views.SpecialPasteDialog.textValues": "Hodnoty", + "SSE.Views.Spellcheck.textChange": "Zmeniť", + "SSE.Views.Spellcheck.textIgnore": "Ignorovať", + "SSE.Views.Spellcheck.textIgnoreAll": "Ignorovať všetko", + "SSE.Views.Spellcheck.txtAddToDictionary": "Pridať do slovníka", "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", "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.itemAverage": "Priemer", "SSE.Views.Statusbar.itemCopy": "Kopírovať", + "SSE.Views.Statusbar.itemCount": "Počet", "SSE.Views.Statusbar.itemDelete": "Vymazať", "SSE.Views.Statusbar.itemHidden": "Skrytý", "SSE.Views.Statusbar.itemHide": "Skryť", "SSE.Views.Statusbar.itemInsert": "Vložiť", + "SSE.Views.Statusbar.itemMaximum": "Maximum", + "SSE.Views.Statusbar.itemMinimum": "Minimum", "SSE.Views.Statusbar.itemMove": "Premiestniť", "SSE.Views.Statusbar.itemRename": "Premenovať", + "SSE.Views.Statusbar.itemSum": "SÚČET", "SSE.Views.Statusbar.itemTabColor": "Farba tabuľky/záložky", "SSE.Views.Statusbar.RenameDialog.errNameExists": "Pracovný list s takýmto názvom už existuje.", "SSE.Views.Statusbar.RenameDialog.errNameWrongChar": "Názov hárku nemôže obsahovať nasledujúce znaky: \\/*?[]:", "SSE.Views.Statusbar.RenameDialog.labelSheetName": "Názov listu", "SSE.Views.Statusbar.textAverage": "PRIEMER", "SSE.Views.Statusbar.textCount": "POČET", + "SSE.Views.Statusbar.textMax": "Max", + "SSE.Views.Statusbar.textMin": "Min", "SSE.Views.Statusbar.textNewColor": "Pridať novú vlastnú farbu", "SSE.Views.Statusbar.textNoColor": "Bez farby", "SSE.Views.Statusbar.textSum": "SÚČET", @@ -1436,6 +1912,7 @@ "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.errorMultiCellFormula": "V tabuľkách nie sú dovolené vzorce pre pole s viacerými bunkami", "SSE.Views.TableOptionsDialog.txtEmpty": "Toto pole sa vyžaduje", "SSE.Views.TableOptionsDialog.txtFormat": "Vytvoriť tabuľku", "SSE.Views.TableOptionsDialog.txtInvalidRange": "CHYBA! Neplatný rozsah buniek", @@ -1520,7 +1997,15 @@ "SSE.Views.TextArtSettings.txtNoBorders": "Bez čiary", "SSE.Views.TextArtSettings.txtPapyrus": "Papyrus", "SSE.Views.TextArtSettings.txtWood": "Drevo", + "SSE.Views.Toolbar.capBtnAddComment": "Pridať komentár", "SSE.Views.Toolbar.capBtnComment": "Komentár", + "SSE.Views.Toolbar.capBtnInsSymbol": "Symbol", + "SSE.Views.Toolbar.capBtnMargins": "Okraje", + "SSE.Views.Toolbar.capBtnPageOrient": "Orientácia", + "SSE.Views.Toolbar.capBtnPageSize": "Veľkosť", + "SSE.Views.Toolbar.capImgAlign": "Zarovnať", + "SSE.Views.Toolbar.capImgForward": "Posunúť vpred", + "SSE.Views.Toolbar.capImgGroup": "Skupina", "SSE.Views.Toolbar.capInsertChart": "Graf", "SSE.Views.Toolbar.capInsertEquation": "Rovnica", "SSE.Views.Toolbar.capInsertHyperlink": "Hypertextový odkaz", @@ -1538,9 +2023,11 @@ "SSE.Views.Toolbar.textAlignRight": "Zarovnať doprava", "SSE.Views.Toolbar.textAlignTop": "Zarovnať nahor", "SSE.Views.Toolbar.textAllBorders": "Všetky orámovania", + "SSE.Views.Toolbar.textAuto": "Automaticky", "SSE.Views.Toolbar.textBold": "Tučné", "SSE.Views.Toolbar.textBordersColor": "Farba orámovania", "SSE.Views.Toolbar.textBordersStyle": "Štýl orámovania", + "SSE.Views.Toolbar.textBottom": "Dole:", "SSE.Views.Toolbar.textBottomBorders": "Spodné orámovanie", "SSE.Views.Toolbar.textCenterBorders": "Vnútorné vertikálne orámovanie", "SSE.Views.Toolbar.textClockwise": "Otočiť v smere hodinových ručičiek", @@ -1551,30 +2038,50 @@ "SSE.Views.Toolbar.textDiagUpBorder": "Orámovanie diagonálne nahor", "SSE.Views.Toolbar.textEntireCol": "Celý stĺpec", "SSE.Views.Toolbar.textEntireRow": "Celý riadok", + "SSE.Views.Toolbar.textFewPages": "Strany", + "SSE.Views.Toolbar.textHeight": "Výška", "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.textLandscape": "Na šírku", + "SSE.Views.Toolbar.textLeft": "Vľavo:", "SSE.Views.Toolbar.textLeftBorders": "Orámovanie vľavo", + "SSE.Views.Toolbar.textManyPages": "Strany", + "SSE.Views.Toolbar.textMarginsLast": "Posledná úprava", + "SSE.Views.Toolbar.textMarginsNarrow": "Úzky", + "SSE.Views.Toolbar.textMarginsNormal": "Normálny", + "SSE.Views.Toolbar.textMarginsWide": "Široký", "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", - "Common.UI.ColorButton.textNewColor": "Pridať novú vlastnú farbu", "SSE.Views.Toolbar.textNoBorders": "Bez orámovania", + "SSE.Views.Toolbar.textOnePage": "Stránka", "SSE.Views.Toolbar.textOutBorders": "Vonkajšie orámovanie", + "SSE.Views.Toolbar.textPageMarginsCustom": "Vlastné okraje", + "SSE.Views.Toolbar.textPortrait": "Na výšku", "SSE.Views.Toolbar.textPrint": "Tlačiť", "SSE.Views.Toolbar.textPrintOptions": "Nastavenia tlače", + "SSE.Views.Toolbar.textRight": "Vpravo:", "SSE.Views.Toolbar.textRightBorders": "Orámovanie vpravo", "SSE.Views.Toolbar.textRotateDown": "Otočiť text nadol", "SSE.Views.Toolbar.textRotateUp": "Otočiť text nahor", + "SSE.Views.Toolbar.textScaleCustom": "Vlastný", "SSE.Views.Toolbar.textSubscript": "Dolný index", + "SSE.Views.Toolbar.textSuperscript": "Horný index", "SSE.Views.Toolbar.textTabCollaboration": "Spolupráca", + "SSE.Views.Toolbar.textTabData": "Dáta", "SSE.Views.Toolbar.textTabFile": "Súbor", + "SSE.Views.Toolbar.textTabFormula": "Vzorec", "SSE.Views.Toolbar.textTabHome": "Hlavná stránka", "SSE.Views.Toolbar.textTabInsert": "Vložiť", + "SSE.Views.Toolbar.textTabLayout": "Rozloženie", + "SSE.Views.Toolbar.textTabProtect": "Ochrana", + "SSE.Views.Toolbar.textTop": "Hore:", "SSE.Views.Toolbar.textTopBorders": "Horné orámovanie", "SSE.Views.Toolbar.textUnderline": "Podčiarknuť", + "SSE.Views.Toolbar.textWidth": "Šírka", "SSE.Views.Toolbar.textZoom": "Priblíženie", "SSE.Views.Toolbar.tipAlignBottom": "Zarovnať dole", "SSE.Views.Toolbar.tipAlignCenter": "Centrovať", @@ -1587,6 +2094,7 @@ "SSE.Views.Toolbar.tipBack": "Späť", "SSE.Views.Toolbar.tipBorders": "Orámovania", "SSE.Views.Toolbar.tipCellStyle": "Štýl bunky", + "SSE.Views.Toolbar.tipChangeChart": "Zmeniť typ grafu", "SSE.Views.Toolbar.tipClearStyle": "Vyčistiť", "SSE.Views.Toolbar.tipColorSchemas": "Zmeniť farebnú schému", "SSE.Views.Toolbar.tipCopy": "Kopírovať", @@ -1598,9 +2106,11 @@ "SSE.Views.Toolbar.tipDigStyleCurrency": "Formát/štýl meny", "SSE.Views.Toolbar.tipDigStylePercent": "Štýl percent", "SSE.Views.Toolbar.tipEditChart": "Upraviť graf", + "SSE.Views.Toolbar.tipEditHeader": "Upraviť hlavičku alebo pätu", "SSE.Views.Toolbar.tipFontColor": "Farba písma", "SSE.Views.Toolbar.tipFontName": "Písmo", "SSE.Views.Toolbar.tipFontSize": "Veľkosť písma", + "SSE.Views.Toolbar.tipImgAlign": "Zoradiť/usporiadať objekty", "SSE.Views.Toolbar.tipIncDecimal": "Zvýšiť počet desatinných miest", "SSE.Views.Toolbar.tipIncFont": "Zväčšiť veľkosť písma", "SSE.Views.Toolbar.tipInsertChart": "Vložiť graf", @@ -1610,16 +2120,21 @@ "SSE.Views.Toolbar.tipInsertImage": "Vložiť obrázok", "SSE.Views.Toolbar.tipInsertOpt": "Vložiť bunky", "SSE.Views.Toolbar.tipInsertShape": "Vložiť automatický tvar", + "SSE.Views.Toolbar.tipInsertTable": "Vložiť tabuľku", "SSE.Views.Toolbar.tipInsertText": "Vložiť text", "SSE.Views.Toolbar.tipInsertTextart": "Vložiť Text Art", "SSE.Views.Toolbar.tipMerge": "Zlúčiť", "SSE.Views.Toolbar.tipNumFormat": "Formát čísla", + "SSE.Views.Toolbar.tipPageMargins": "Okraje stránky", + "SSE.Views.Toolbar.tipPageOrient": "Orientácia stránky", + "SSE.Views.Toolbar.tipPageSize": "Veľkosť stránky", "SSE.Views.Toolbar.tipPaste": "Vložiť", "SSE.Views.Toolbar.tipPrColor": "Farba pozadia", "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.", + "SSE.Views.Toolbar.tipSendForward": "Posunúť vpred", "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äť", @@ -1627,6 +2142,7 @@ "SSE.Views.Toolbar.txtAccounting": "Účtovníctvo", "SSE.Views.Toolbar.txtAdditional": "Ďalšie", "SSE.Views.Toolbar.txtAscending": "Vzostupne", + "SSE.Views.Toolbar.txtAutosumTip": "Suma", "SSE.Views.Toolbar.txtClearAll": "Všetko", "SSE.Views.Toolbar.txtClearComments": "Komentáre", "SSE.Views.Toolbar.txtClearFilter": "Vyčistiť filter", @@ -1694,8 +2210,18 @@ "SSE.Views.Toolbar.txtYen": "¥ Jen", "SSE.Views.Top10FilterDialog.textType": "Zobraziť", "SSE.Views.Top10FilterDialog.txtBottom": "Dole", + "SSE.Views.Top10FilterDialog.txtBy": "od", "SSE.Views.Top10FilterDialog.txtItems": "Položka", "SSE.Views.Top10FilterDialog.txtPercent": "Percento", + "SSE.Views.Top10FilterDialog.txtSum": "SÚČET", "SSE.Views.Top10FilterDialog.txtTitle": "Top 10 automatického filtra", - "SSE.Views.Top10FilterDialog.txtTop": "Hore" + "SSE.Views.Top10FilterDialog.txtTop": "Hore", + "SSE.Views.ValueFieldSettingsDialog.txtAverage": "Priemer", + "SSE.Views.ValueFieldSettingsDialog.txtByField": "%1 z %2", + "SSE.Views.ValueFieldSettingsDialog.txtCount": "Počet", + "SSE.Views.ValueFieldSettingsDialog.txtIndex": "Index", + "SSE.Views.ValueFieldSettingsDialog.txtMax": "Max", + "SSE.Views.ValueFieldSettingsDialog.txtMin": "Min", + "SSE.Views.ValueFieldSettingsDialog.txtProduct": "Produkt", + "SSE.Views.ValueFieldSettingsDialog.txtSum": "SÚČET" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/sl.json b/apps/spreadsheeteditor/main/locale/sl.json index 51e4715b6..24b1c79ba 100644 --- a/apps/spreadsheeteditor/main/locale/sl.json +++ b/apps/spreadsheeteditor/main/locale/sl.json @@ -4,11 +4,14 @@ "Common.Controllers.Chat.textEnterMessage": "Svoje sporočilo vnesite tu", "Common.define.chartData.textArea": "Ploščinski grafikon", "Common.define.chartData.textBar": "Stolpični grafikon", + "Common.define.chartData.textCharts": "Grafi", "Common.define.chartData.textColumn": "Stolpični grafikon", + "Common.define.chartData.textColumnSpark": "Stolpec", "Common.define.chartData.textLine": "Vrstični grafikon", "Common.define.chartData.textPie": "Tortni grafikon", "Common.define.chartData.textPoint": "Točkovni grafikon", "Common.define.chartData.textStock": "Založni grafikon", + "Common.UI.ColorButton.textNewColor": "Dodaj novo barvo po meri", "Common.UI.ComboBorderSize.txtNoBorders": "Ni mej", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Ni mej", "Common.UI.ComboDataView.emptyComboText": "Ni slogov", @@ -39,6 +42,7 @@ "Common.UI.Window.textInformation": "Informacija", "Common.UI.Window.textWarning": "Opozorilo", "Common.UI.Window.yesButtonText": "Da", + "Common.Utils.Metric.txtCm": "cm", "Common.Views.About.txtAddress": "naslov:", "Common.Views.About.txtLicensee": "LICENCE", "Common.Views.About.txtLicensor": "DAJALEC LICENCE", @@ -46,6 +50,7 @@ "Common.Views.About.txtPoweredBy": "Poganja", "Common.Views.About.txtTel": "tel.: ", "Common.Views.About.txtVersion": "Različica", + "Common.Views.AutoCorrectDialog.textBy": "Od:", "Common.Views.Chat.textSend": "Pošlji", "Common.Views.Comments.textAdd": "Dodaj", "Common.Views.Comments.textAddComment": "Dodaj", @@ -57,6 +62,7 @@ "Common.Views.Comments.textComments": "Komentarji", "Common.Views.Comments.textEdit": "Uredi", "Common.Views.Comments.textEnterCommentHint": "Svoj komentar vnesite tu", + "Common.Views.Comments.textHintAddComment": "Dodaj komentar", "Common.Views.Comments.textOpenAgain": "Ponovno odpri", "Common.Views.Comments.textReply": "Odgovori", "Common.Views.Comments.textResolve": "Razreši", @@ -69,15 +75,47 @@ "Common.Views.CopyWarningDialog.textToPaste": "za Lepljenje", "Common.Views.DocumentAccessDialog.textLoading": "Nalaganje...", "Common.Views.DocumentAccessDialog.textTitle": "Nastavitve deljenja", + "Common.Views.Header.textAdvSettings": "Napredne nastavitve", "Common.Views.Header.textBack": "Pojdi v dokumente", + "Common.Views.Header.textSaveEnd": "Vse spremembe shranjene", + "Common.Views.Header.textSaveExpander": "Vse spremembe shranjene", + "Common.Views.Header.txtAccessRights": "Spremeni pravice dostopa", "Common.Views.ImageFromUrlDialog.textUrl": "Prilepi URL slike:", "Common.Views.ImageFromUrlDialog.txtEmpty": "To polje je obvezno", "Common.Views.ImageFromUrlDialog.txtNotUrl": "To polje mora biti URL v \"http://www.example.com\" formatu", + "Common.Views.ListSettingsDialog.txtColor": "Barva", + "Common.Views.ListSettingsDialog.txtOfText": "% od besedila", + "Common.Views.OpenDialog.closeButtonText": "Zapri datoteko", + "Common.Views.OpenDialog.txtAdvanced": "Napredne nastavitve", + "Common.Views.OpenDialog.txtColon": "Dvopičje", + "Common.Views.OpenDialog.txtComma": "Vejica", "Common.Views.OpenDialog.txtDelimiter": "Ločilo", "Common.Views.OpenDialog.txtEncoding": "Kodiranje", "Common.Views.OpenDialog.txtSpace": "Razmik", "Common.Views.OpenDialog.txtTab": "Zavihek", "Common.Views.OpenDialog.txtTitle": "Izberi %1 možnosti", + "Common.Views.PasswordDialog.txtIncorrectPwd": "Potrditev gesla se ne ujema", + "Common.Views.Protection.hintPwd": "Spremeni ali odstrani geslo", + "Common.Views.Protection.hintSignature": "Dodaj digitalni podpid ali podpisno črto", + "Common.Views.Protection.txtAddPwd": "Dodaj geslo", + "Common.Views.Protection.txtChangePwd": "Spremeni geslo", + "Common.Views.Protection.txtInvisibleSignature": "Dodaj digitalni podpis", + "Common.Views.Protection.txtSignatureLine": "Dodaj podpisno črto", + "Common.Views.ReviewChanges.txtAccept": "Sprejmi", + "Common.Views.ReviewChanges.txtAcceptAll": "Sprejmi vse spremembe", + "Common.Views.ReviewChanges.txtAcceptChanges": "Sprejmi spremembe", + "Common.Views.ReviewChanges.txtChat": "Pogovor", + "Common.Views.ReviewChanges.txtClose": "Zapri", + "Common.Views.ReviewChanges.txtFinal": "Vse spremembe so sprejete (Predogled)", + "Common.Views.ReviewChanges.txtOriginal": "Vse spremembe zavrnjene (Predogled)", + "Common.Views.ReviewPopover.textAdd": "Dodaj", + "Common.Views.ReviewPopover.textAddReply": "Dodaj odgovor", + "Common.Views.ReviewPopover.textCancel": "Prekliči", + "Common.Views.ReviewPopover.textClose": "Zapri", + "Common.Views.SignDialog.textBold": "Krepko", + "Common.Views.SignDialog.textCertificate": "Certifikat", + "Common.Views.SignDialog.textChange": "Spremeni", + "Common.Views.SymbolTableDialog.textCharacter": "Znak", "SSE.Controllers.DocumentHolder.guestText": "Gost", "SSE.Controllers.DocumentHolder.textChangeColumnWidth": "Širina stolpca {0} simboli ({1} pikslov)", "SSE.Controllers.DocumentHolder.textChangeRowHeight": "Višina vrste {0} točke ({1} pikslov)", @@ -85,11 +123,16 @@ "SSE.Controllers.DocumentHolder.textInsertLeft": "Insert Left", "SSE.Controllers.DocumentHolder.textInsertTop": "Insert Top", "SSE.Controllers.DocumentHolder.tipIsLocked": "Ta element ureja drug uporabnik.", + "SSE.Controllers.DocumentHolder.txtAboveAve": "Nad povprečjem", "SSE.Controllers.DocumentHolder.txtAll": "(Vse)", + "SSE.Controllers.DocumentHolder.txtAnd": "in", "SSE.Controllers.DocumentHolder.txtBlanks": "(Prazno)", + "SSE.Controllers.DocumentHolder.txtColumn": "Stolpec", + "SSE.Controllers.DocumentHolder.txtContains": "Vsebuje", "SSE.Controllers.DocumentHolder.txtHeight": "Višina", "SSE.Controllers.DocumentHolder.txtRowHeight": "Višina vrste", "SSE.Controllers.DocumentHolder.txtWidth": "Širina", + "SSE.Controllers.FormulaDialog.sCategoryAll": "Vse", "SSE.Controllers.LeftMenu.newDocumentTitle": "Neimenovana razpredelnica", "SSE.Controllers.LeftMenu.textByColumns": "Po stolpcih", "SSE.Controllers.LeftMenu.textByRows": "Po vrsticah", @@ -174,8 +217,10 @@ "SSE.Controllers.Main.saveTextText": "Shranjevanje razpredelnice...", "SSE.Controllers.Main.saveTitleText": "Shranjevanje razpredelnice", "SSE.Controllers.Main.textAnonymous": "Anonimno", + "SSE.Controllers.Main.textClose": "Zapri", "SSE.Controllers.Main.textCloseTip": "Pritisni za zapiranje namiga", "SSE.Controllers.Main.textConfirm": "Potrditev", + "SSE.Controllers.Main.textContactUs": "Kontaktirajte oddelek za prodajo", "SSE.Controllers.Main.textLoadingDocument": "Nalaganje razpredelnice", "SSE.Controllers.Main.textNo": "Ne", "SSE.Controllers.Main.textPleaseWait": "Dejanje lahko traja dlje od pričakovanja. Prosimo počakajte...", @@ -185,13 +230,16 @@ "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": "Da", "SSE.Controllers.Main.titleRecalcFormulas": "Izračunavanje...", + "SSE.Controllers.Main.txtAccent": "Preglas", "SSE.Controllers.Main.txtAll": "(Vse)", "SSE.Controllers.Main.txtArt": "Your text here", "SSE.Controllers.Main.txtBasicShapes": "Osnovne oblike", "SSE.Controllers.Main.txtBlank": "(prazno)", "SSE.Controllers.Main.txtButtons": "Gumbi", + "SSE.Controllers.Main.txtByField": "%1 od %2", "SSE.Controllers.Main.txtCallouts": "Oblački", "SSE.Controllers.Main.txtCharts": "Grafi", + "SSE.Controllers.Main.txtColumn": "Stolpec", "SSE.Controllers.Main.txtDiagramTitle": "Naslov diagrama", "SSE.Controllers.Main.txtEditingMode": "Nastavi način urejanja...", "SSE.Controllers.Main.txtFiguredArrows": "Figurirane puščice", @@ -199,11 +247,22 @@ "SSE.Controllers.Main.txtMath": "Matematika", "SSE.Controllers.Main.txtRectangles": "Pravokotniki", "SSE.Controllers.Main.txtSeries": "Serije", + "SSE.Controllers.Main.txtShape_bevel": "Stožčasti", + "SSE.Controllers.Main.txtShape_cloud": "Oblak", "SSE.Controllers.Main.txtShape_noSmoking": "\"Ni\" simbol", "SSE.Controllers.Main.txtShape_star10": "10-kraka zvezda", "SSE.Controllers.Main.txtShape_star12": "12-kraka zvezda", "SSE.Controllers.Main.txtShape_star16": "16-kraka zvezda", + "SSE.Controllers.Main.txtShape_star24": "24-kraka zvezda", + "SSE.Controllers.Main.txtShape_star4": "4-kraka zvezda", + "SSE.Controllers.Main.txtShape_star5": "5-kraka zvezda", + "SSE.Controllers.Main.txtShape_star6": "6-kraka zvezda", + "SSE.Controllers.Main.txtShape_star7": "7-kraka zvezda", + "SSE.Controllers.Main.txtShape_star8": "8-kraka zvezda", "SSE.Controllers.Main.txtStarsRibbons": "Zvezde & Trakovi", + "SSE.Controllers.Main.txtStyle_Bad": "Slabo", + "SSE.Controllers.Main.txtStyle_Check_Cell": "Preveri celico", + "SSE.Controllers.Main.txtStyle_Comma": "Vejica", "SSE.Controllers.Main.txtXAxis": "X os", "SSE.Controllers.Main.txtYAxis": "Y os", "SSE.Controllers.Main.unknownErrorText": "Neznana napaka.", @@ -225,14 +284,49 @@ "SSE.Controllers.Statusbar.warnDeleteSheet": "Delovni list morda vsebuje podatke. Ali ste prepričani, da želite nadaljevati?", "SSE.Controllers.Statusbar.zoomText": "Povečava {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.textAccent": "Naglasi", + "SSE.Controllers.Toolbar.textBracket": "Oklepaji", "SSE.Controllers.Toolbar.textFontSizeErr": "Vnesena vrednost je nepravilna.
          Prosim vnesite numerično vrednost med 1 in 409", "SSE.Controllers.Toolbar.textWarning": "Opozorilo", + "SSE.Controllers.Toolbar.txtAccent_Accent": "Akuten", + "SSE.Controllers.Toolbar.txtAccent_Check": "Obkljukaj", + "SSE.Controllers.Toolbar.txtAccent_Custom_2": "ABC z nadvrstico", + "SSE.Controllers.Toolbar.txtBracket_Angle": "Oklepaji", + "SSE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2": "Oklepaji z ločevalniki", + "SSE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3": "Oklepaji z ločevalniki", + "SSE.Controllers.Toolbar.txtBracket_Curve": "Oklepaji", + "SSE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2": "Oklepaji z ločevalniki", + "SSE.Controllers.Toolbar.txtBracket_Custom_5": "Primer primerov", + "SSE.Controllers.Toolbar.txtBracket_Line": "Oklepaji", + "SSE.Controllers.Toolbar.txtBracket_LineDouble": "Oklepaji", + "SSE.Controllers.Toolbar.txtBracket_LowLim": "Oklepaji", + "SSE.Controllers.Toolbar.txtBracket_Round": "Oklepaji", + "SSE.Controllers.Toolbar.txtBracket_Round_Delimiter_2": "Oklepaji z ločevalniki", + "SSE.Controllers.Toolbar.txtBracket_Square": "Oklepaji", + "SSE.Controllers.Toolbar.txtBracket_Square_CloseClose": "Oklepaji", + "SSE.Controllers.Toolbar.txtBracket_Square_CloseOpen": "Oklepaji", + "SSE.Controllers.Toolbar.txtBracket_Square_OpenOpen": "Oklepaji", + "SSE.Controllers.Toolbar.txtBracket_SquareDouble": "Oklepaji", + "SSE.Controllers.Toolbar.txtBracket_UppLim": "Oklepaji", "SSE.Controllers.Toolbar.txtMatrix_1_2": "1x2 prazna matrica", + "SSE.Controllers.Toolbar.txtMatrix_2_1": "2x1 prazna matrica", + "SSE.Controllers.Toolbar.txtMatrix_2_2": "2x2 prazna matrica", + "SSE.Controllers.Toolbar.txtOperator_ColonEquals": "Enak dvopičju", + "SSE.Controllers.Toolbar.txtSymbol_about": "Približno", + "SSE.Controllers.Toolbar.txtSymbol_additional": "Kompliment", + "SSE.Controllers.Toolbar.txtSymbol_alpha": "Alfa", + "SSE.Controllers.Toolbar.txtSymbol_beta": "Beta", + "SSE.Controllers.Toolbar.txtSymbol_cong": "Približno enako", + "SSE.Controllers.Toolbar.txtSymbol_ni": "Vsebuje kot član", "SSE.Controllers.Toolbar.warnMergeLostData": "Le podatki z zgornje leve celice bodo ostali v združeni celici.
          Ste prepričani, da želite nadaljevati?", + "SSE.Views.AdvancedSeparatorDialog.textTitle": "Napredne nastavitve", "SSE.Views.AutoFilterDialog.btnCustomFilter": "Filter po meri", "SSE.Views.AutoFilterDialog.textEmptyItem": "{Blanks}", "SSE.Views.AutoFilterDialog.textSelectAll": "Izberi vse", "SSE.Views.AutoFilterDialog.textWarning": "Opozorilo", + "SSE.Views.AutoFilterDialog.txtAboveAve": "Nad povprečjem", + "SSE.Views.AutoFilterDialog.txtBetween": "med ...", + "SSE.Views.AutoFilterDialog.txtContains": "Vsebuje ...", "SSE.Views.AutoFilterDialog.txtEmpty": "Vnesi celični filter", "SSE.Views.AutoFilterDialog.txtTitle": "Filter", "SSE.Views.AutoFilterDialog.warnNoSelected": "Izbrati morate vsaj eno vrednost", @@ -242,6 +336,10 @@ "SSE.Views.CellRangeDialog.txtEmpty": "To polje je obvezno", "SSE.Views.CellRangeDialog.txtInvalidRange": "NAPAKA! Neveljaven razpon celic", "SSE.Views.CellRangeDialog.txtTitle": "Izberi območje podatkov", + "SSE.Views.CellSettings.textBackColor": "Barva ozadja", + "SSE.Views.CellSettings.textBackground": "Barva ozadja", + "SSE.Views.CellSettings.textBorderColor": "Barva", + "SSE.Views.ChartSettings.strSparkColor": "Barva", "SSE.Views.ChartSettings.textAdvanced": "Prikaži napredne nastavitve", "SSE.Views.ChartSettings.textChartType": "Spremeni vrsto razpredelnice", "SSE.Views.ChartSettings.textEditData": "Uredi podatke", @@ -252,6 +350,7 @@ "SSE.Views.ChartSettings.textWidth": "Širina", "SSE.Views.ChartSettingsDlg.errorMaxRows": "NAPAKA! Maksimalno število podatkovnih serij na grafikon je 255", "SSE.Views.ChartSettingsDlg.errorStockChart": "Nepravilen vrstni red vrstic. Za izgradnjo razpredelnice delnic podatke na strani navedite v sledečem vrstnem redu:
          otvoritvena cena, maksimalna cena, minimalna cena, zaključna cena.", + "SSE.Views.ChartSettingsDlg.textAlt": "Nadomestno besedilo", "SSE.Views.ChartSettingsDlg.textAuto": "Samodejno", "SSE.Views.ChartSettingsDlg.textAxisCrosses": "Križi osi", "SSE.Views.ChartSettingsDlg.textAxisOptions": "Možnosti osi", @@ -371,20 +470,24 @@ "SSE.Views.DocumentHolder.bottomCellText": "Poravnaj dno", "SSE.Views.DocumentHolder.centerCellText": "Poravnaj središče", "SSE.Views.DocumentHolder.chartText": "Napredne nastavitve grafa", + "SSE.Views.DocumentHolder.deleteColumnText": "Stolpec", "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": "Uredi podatke", "SSE.Views.DocumentHolder.editHyperlinkText": "Uredi hiperpovezavo", + "SSE.Views.DocumentHolder.originalSizeText": "Dejanska velikost", "SSE.Views.DocumentHolder.removeHyperlinkText": "Odstrani hiperpovezavo", "SSE.Views.DocumentHolder.textArrangeBack": "Pošlji k ozadju", "SSE.Views.DocumentHolder.textArrangeBackward": "Premakni nazaj", "SSE.Views.DocumentHolder.textArrangeForward": "Premakni naprej", "SSE.Views.DocumentHolder.textArrangeFront": "Premakni v ospredje", + "SSE.Views.DocumentHolder.textAverage": "POVPREČNA", "SSE.Views.DocumentHolder.textFreezePanes": "Zamrzni plošče", "SSE.Views.DocumentHolder.textUnFreezePanes": "Unfreeze Panes", "SSE.Views.DocumentHolder.topCellText": "Poravnaj vrh", + "SSE.Views.DocumentHolder.txtAccounting": "Računovodstvo", "SSE.Views.DocumentHolder.txtAddComment": "Dodaj komentar", "SSE.Views.DocumentHolder.txtAddNamedRange": "Define Name", "SSE.Views.DocumentHolder.txtArrange": "Razporedi", @@ -420,7 +523,10 @@ "SSE.Views.DocumentHolder.txtUngroup": "Razdruži", "SSE.Views.DocumentHolder.txtWidth": "Širina", "SSE.Views.DocumentHolder.vertAlignText": "Vertikalna poravnava", + "SSE.Views.FieldSettingsDialog.txtAverage": "POVPREČNA", + "SSE.Views.FieldSettingsDialog.txtCompact": "Kompakten", "SSE.Views.FileMenu.btnBackCaption": "Pojdi v dokumente", + "SSE.Views.FileMenu.btnCloseMenuCaption": "Zapri meni", "SSE.Views.FileMenu.btnCreateNewCaption": "Ustvari nov", "SSE.Views.FileMenu.btnDownloadCaption": "Prenesi kot...", "SSE.Views.FileMenu.btnHelpCaption": "Pomoč...", @@ -437,8 +543,12 @@ "SSE.Views.FileMenuPanels.CreateNew.fromTemplateText": "Z predloge", "SSE.Views.FileMenuPanels.CreateNew.newDescriptionText": "Ustvari novo prazno razpredelnico, ki jo boste lahko med urejanjem stilizirali in formatirali, ko je ustvarjena. Ali pa izberite eno izmed predlog za ustvarjanje razpredelnice določene vrste ali namena, kjer so bili nekateri slogi določeni vnaprej.", "SSE.Views.FileMenuPanels.CreateNew.newDocumentText": "Nova razpredelnica", + "SSE.Views.FileMenuPanels.DocumentInfo.okButtonText": "Uporabi", + "SSE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Dodaj avtorja", + "SSE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Dodaj besedilo", "SSE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Avtor", "SSE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Spremeni pravice dostopa", + "SSE.Views.FileMenuPanels.DocumentInfo.txtComment": "Komentar", "SSE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Lokacija", "SSE.Views.FileMenuPanels.DocumentInfo.txtRights": "Osebe, ki imajo pravice", "SSE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Naslov razpredelnice", @@ -475,15 +585,25 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPt": "Točka", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRu": "Russian", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin": "kot Windows", + "SSE.Views.FileMenuPanels.MainSpellCheckSettings.okButtonText": "Uporabi", "SSE.Views.FileMenuPanels.Settings.txtGeneral": "Splošen", + "SSE.Views.FormatSettingsDialog.textCategory": "Kategorija", + "SSE.Views.FormatSettingsDialog.txtAccounting": "Računovodstvo", "SSE.Views.FormulaDialog.sDescription": "Opis", "SSE.Views.FormulaDialog.textGroupDescription": "Izberi skupino funkcije", "SSE.Views.FormulaDialog.textListDescription": "Izberi funkcijo", "SSE.Views.FormulaDialog.txtTitle": "Vstavi funkcijo", + "SSE.Views.FormulaTab.textAutomatic": "Samodejeno", + "SSE.Views.FormulaTab.txtAdditional": "Dodatno", + "SSE.Views.GroupDialog.textColumns": "Stolpci", + "SSE.Views.HeaderFooterDialog.textAll": "Vse strani", + "SSE.Views.HeaderFooterDialog.textBold": "Krepko", + "SSE.Views.HeaderFooterDialog.textNewColor": "Dodaj novo barvo po meri", "SSE.Views.HyperlinkSettingsDialog.strDisplay": "Zaslon", "SSE.Views.HyperlinkSettingsDialog.strLinkTo": "Povezava k", "SSE.Views.HyperlinkSettingsDialog.strRange": "Razdalja", "SSE.Views.HyperlinkSettingsDialog.strSheet": "Stran", + "SSE.Views.HyperlinkSettingsDialog.textCopy": "Kopiraj", "SSE.Views.HyperlinkSettingsDialog.textDefault": "Izbrano območje", "SSE.Views.HyperlinkSettingsDialog.textEmptyDesc": "Napis vnesite tu", "SSE.Views.HyperlinkSettingsDialog.textEmptyLink": "Povezavo vnesi tu", @@ -503,6 +623,7 @@ "SSE.Views.ImageSettings.textOriginalSize": "Privzeta velikost", "SSE.Views.ImageSettings.textSize": "Velikost", "SSE.Views.ImageSettings.textWidth": "Širina", + "SSE.Views.ImageSettingsAdvanced.textAlt": "Nadomestno besedilo", "SSE.Views.LeftMenu.tipAbout": "O programu", "SSE.Views.LeftMenu.tipChat": "Pogovor", "SSE.Views.LeftMenu.tipComments": "Komentarji", @@ -518,6 +639,7 @@ "SSE.Views.MainSettingsPrint.strPrint": "Natisni", "SSE.Views.MainSettingsPrint.strRight": "Desno", "SSE.Views.MainSettingsPrint.strTop": "Vrh", + "SSE.Views.MainSettingsPrint.textActualSize": "Dejanska velikost", "SSE.Views.MainSettingsPrint.textPageOrientation": "Orientacija strani", "SSE.Views.MainSettingsPrint.textPageSize": "Velikost strani", "SSE.Views.MainSettingsPrint.textPrintGrid": "Natisni mrežne črte", @@ -575,6 +697,7 @@ "SSE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Dvojno prečrtanje", "SSE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Levo", "SSE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Desno", + "SSE.Views.ParagraphSettingsAdvanced.strIndentsSpecialBy": "Od", "SSE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Pisava", "SSE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "Zamiki & Postavitev", "SSE.Views.ParagraphSettingsAdvanced.strSmallCaps": "mali pokrovčki", @@ -586,6 +709,7 @@ "SSE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Razmak znaka", "SSE.Views.ParagraphSettingsAdvanced.textDefault": "Prevzeti zavihek", "SSE.Views.ParagraphSettingsAdvanced.textEffects": "Učinki", + "SSE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(nič)", "SSE.Views.ParagraphSettingsAdvanced.textRemove": "Odstrani", "SSE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Odstrani vse", "SSE.Views.ParagraphSettingsAdvanced.textSet": "Določite", @@ -594,6 +718,12 @@ "SSE.Views.ParagraphSettingsAdvanced.textTabPosition": "Položaj zavihka", "SSE.Views.ParagraphSettingsAdvanced.textTabRight": "Desno", "SSE.Views.ParagraphSettingsAdvanced.textTitle": "Odstavek - Napredne nastavitve", + "SSE.Views.ParagraphSettingsAdvanced.txtAutoText": "Samodejno", + "SSE.Views.PivotDigitalFilterDialog.capCondition11": "vsebuje", + "SSE.Views.PivotDigitalFilterDialog.capCondition13": "med", + "SSE.Views.PivotDigitalFilterDialog.txtAnd": "in", + "SSE.Views.PivotSettings.textColumns": "Stolpci", + "SSE.Views.PivotSettingsAdvanced.textAlt": "Nadomestno besedilo", "SSE.Views.PrintSettings.btnPrint": "Shrani & Natisni", "SSE.Views.PrintSettings.strBottom": "Dno", "SSE.Views.PrintSettings.strLandscape": "Krajina", @@ -616,12 +746,15 @@ "SSE.Views.PrintSettings.textSelection": "Izbira", "SSE.Views.PrintSettings.textShowDetails": "Podrobnosti", "SSE.Views.PrintSettings.textTitle": "Natisni nastavitve", + "SSE.Views.RemoveDuplicatesDialog.textColumns": "Stolpci", + "SSE.Views.RightMenu.txtCellSettings": "Nastavitve celice", "SSE.Views.RightMenu.txtChartSettings": "Nastavitve grafa", "SSE.Views.RightMenu.txtImageSettings": "Nastavitve slike", "SSE.Views.RightMenu.txtParagraphSettings": "Nastavitve besedila", "SSE.Views.RightMenu.txtSettings": "Pogoste nastavitve", "SSE.Views.RightMenu.txtShapeSettings": "Nastavitve oblike", "SSE.Views.RightMenu.txtTextArtSettings": "Text Art Settings", + "SSE.Views.ScaleDialog.textAuto": "Samodejno", "SSE.Views.SetValueDialog.txtMaxText": "Maksimalna vrednost za to polje je {0}", "SSE.Views.SetValueDialog.txtMinText": "Minimalna vrednost za to polje je {0}", "SSE.Views.ShapeSettings.strBackground": "Barva ozadja", @@ -665,7 +798,9 @@ "SSE.Views.ShapeSettings.txtNoBorders": "Ni črte", "SSE.Views.ShapeSettings.txtPapyrus": "Papirus", "SSE.Views.ShapeSettings.txtWood": "Les", + "SSE.Views.ShapeSettingsAdvanced.strColumns": "Stolpci", "SSE.Views.ShapeSettingsAdvanced.strMargins": "Oblazinjenje besedila", + "SSE.Views.ShapeSettingsAdvanced.textAlt": "Nadomestno besedilo", "SSE.Views.ShapeSettingsAdvanced.textArrows": "Puščice", "SSE.Views.ShapeSettingsAdvanced.textBeginSize": "Začetna velikost", "SSE.Views.ShapeSettingsAdvanced.textBeginStyle": "Začetni stil", @@ -689,10 +824,28 @@ "SSE.Views.ShapeSettingsAdvanced.textTop": "Vrh", "SSE.Views.ShapeSettingsAdvanced.textWeightArrows": "Uteži & puščice", "SSE.Views.ShapeSettingsAdvanced.textWidth": "Širina", + "SSE.Views.SlicerAddDialog.textColumns": "Stolpci", + "SSE.Views.SlicerSettings.textAZ": "A do Ž", + "SSE.Views.SlicerSettings.textColumns": "Stolpci", + "SSE.Views.SlicerSettingsAdvanced.strColumns": "Stolpci", + "SSE.Views.SlicerSettingsAdvanced.textAlt": "Nadomestno besedilo", + "SSE.Views.SlicerSettingsAdvanced.textAZ": "A do Ž", + "SSE.Views.SortDialog.textAuto": "Samodejeno", + "SSE.Views.SortDialog.textAZ": "A do Ž", + "SSE.Views.SortDialog.textCellColor": "Barva celice", + "SSE.Views.SortDialog.textColumn": "Stolpec", + "SSE.Views.SortDialog.textMoreCols": "(Več stolpcev ...)", + "SSE.Views.SortDialog.textMoreRows": "(Več vrstic ...)", + "SSE.Views.SpecialPasteDialog.textAdd": "Dodaj", + "SSE.Views.SpecialPasteDialog.textAll": "Vse", + "SSE.Views.SpecialPasteDialog.textComments": "Komentarji", + "SSE.Views.Spellcheck.textChange": "Spremeni", + "SSE.Views.Spellcheck.textChangeAll": "Spremeni vse", "SSE.Views.Statusbar.CopyDialog.itemCopyToEnd": "(kopiraj na konec)", "SSE.Views.Statusbar.CopyDialog.itemMoveToEnd": "(Premakni na konec)", "SSE.Views.Statusbar.CopyDialog.textCopyBefore": "Kopiraj pred stran", "SSE.Views.Statusbar.CopyDialog.textMoveBefore": "Premakni pred stran", + "SSE.Views.Statusbar.itemAverage": "POVPREČNA", "SSE.Views.Statusbar.itemCopy": "Kopiraj", "SSE.Views.Statusbar.itemDelete": "Izbriši", "SSE.Views.Statusbar.itemHidden": "Skrito", @@ -723,6 +876,8 @@ "SSE.Views.TableOptionsDialog.txtFormat": "Ustvari tabelo", "SSE.Views.TableOptionsDialog.txtInvalidRange": "NAPAKA! Neveljaven razpon celic", "SSE.Views.TableOptionsDialog.txtTitle": "Naslov", + "SSE.Views.TableSettings.textColumns": "Stolpci", + "SSE.Views.TableSettingsAdvanced.textAlt": "Nadomestno besedilo", "SSE.Views.TextArtSettings.strBackground": "Background color", "SSE.Views.TextArtSettings.strColor": "Color", "SSE.Views.TextArtSettings.strFill": "Fill", @@ -763,6 +918,10 @@ "SSE.Views.TextArtSettings.txtNoBorders": "No Line", "SSE.Views.TextArtSettings.txtPapyrus": "Papyrus", "SSE.Views.TextArtSettings.txtWood": "Wood", + "SSE.Views.Toolbar.capBtnAddComment": "Dodaj komentar", + "SSE.Views.Toolbar.capBtnComment": "Komentar", + "SSE.Views.Toolbar.capImgForward": "Premakni naprej", + "SSE.Views.Toolbar.capInsertChart": "Graf", "SSE.Views.Toolbar.mniImageFromFile": "Slika z datoteke", "SSE.Views.Toolbar.mniImageFromUrl": "Slika z URL", "SSE.Views.Toolbar.textAlignBottom": "Poravnaj dno", @@ -773,6 +932,7 @@ "SSE.Views.Toolbar.textAlignRight": "Poravnaj desno", "SSE.Views.Toolbar.textAlignTop": "Poravnaj vrh", "SSE.Views.Toolbar.textAllBorders": "Vse meje", + "SSE.Views.Toolbar.textAuto": "Samodejno", "SSE.Views.Toolbar.textBold": "Krepko", "SSE.Views.Toolbar.textBordersColor": "Barva obrobe", "SSE.Views.Toolbar.textBottomBorders": "Meje na dnu", @@ -793,7 +953,6 @@ "SSE.Views.Toolbar.textLeftBorders": "Leve meje", "SSE.Views.Toolbar.textMiddleBorders": "Notranje horizontalne meje", "SSE.Views.Toolbar.textNewColor": "Dodaj novo barvo po meri", - "Common.UI.ColorButton.textNewColor": "Dodaj novo barvo po meri", "SSE.Views.Toolbar.textNoBorders": "Ni mej", "SSE.Views.Toolbar.textOutBorders": "Zunanje meje", "SSE.Views.Toolbar.textPrint": "Natisni", @@ -801,6 +960,7 @@ "SSE.Views.Toolbar.textRightBorders": "Desne meje", "SSE.Views.Toolbar.textRotateDown": "Besedilo zavrti dol", "SSE.Views.Toolbar.textRotateUp": "Besedilo zavrti gor", + "SSE.Views.Toolbar.textTabCollaboration": "Skupinsko delo", "SSE.Views.Toolbar.textTopBorders": "Vrhnje meje", "SSE.Views.Toolbar.textUnderline": "Podčrtaj", "SSE.Views.Toolbar.textZoom": "Povečava", @@ -845,6 +1005,7 @@ "SSE.Views.Toolbar.tipRedo": "Ponovite", "SSE.Views.Toolbar.tipSave": "Shrani", "SSE.Views.Toolbar.tipSaveCoauth": "Shranite svoje spremembe, da jih drugi uporabniki lahko vidijo.", + "SSE.Views.Toolbar.tipSendForward": "Premakni naprej", "SSE.Views.Toolbar.tipSynchronize": "Dokument je spremenil drug uporabnik. Prosim pritisnite za shranjevanje svojih sprememb in osvežitev posodobitev.", "SSE.Views.Toolbar.tipTextOrientation": "Orientacija", "SSE.Views.Toolbar.tipUndo": "Razveljavi", @@ -916,5 +1077,8 @@ "SSE.Views.Toolbar.txtText": "Besedilo", "SSE.Views.Toolbar.txtTime": "Čas", "SSE.Views.Toolbar.txtUnmerge": "Razdruži celice", - "SSE.Views.Toolbar.txtYen": "¥ Jen" + "SSE.Views.Toolbar.txtYen": "¥ Jen", + "SSE.Views.Top10FilterDialog.txtBy": "od", + "SSE.Views.ValueFieldSettingsDialog.txtAverage": "POVPREČNA", + "SSE.Views.ValueFieldSettingsDialog.txtByField": "%1 od %2" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/sv.json b/apps/spreadsheeteditor/main/locale/sv.json index ff6fb6ee6..a76a73323 100644 --- a/apps/spreadsheeteditor/main/locale/sv.json +++ b/apps/spreadsheeteditor/main/locale/sv.json @@ -2251,6 +2251,8 @@ "SSE.Views.Toolbar.txtText": "Text", "SSE.Views.Toolbar.txtTime": "Tid", "SSE.Views.Toolbar.txtYen": "¥ Yen", + "SSE.Views.Toolbar.capBtnPrintTitles": "Skriv ut titlar", + "SSE.Views.Toolbar.tipPrintTitles": "Skriv ut titlar", "SSE.Views.Top10FilterDialog.textType": "Visa", "SSE.Views.Top10FilterDialog.txtBottom": "Botten", "SSE.Views.Top10FilterDialog.txtItems": "Element", diff --git a/apps/spreadsheeteditor/main/locale/zh.json b/apps/spreadsheeteditor/main/locale/zh.json index 2c3bd6fb5..b380dcdfc 100644 --- a/apps/spreadsheeteditor/main/locale/zh.json +++ b/apps/spreadsheeteditor/main/locale/zh.json @@ -15,6 +15,7 @@ "Common.define.chartData.textStock": "股票", "Common.define.chartData.textSurface": "平面", "Common.define.chartData.textWinLossSpark": "赢/输", + "Common.UI.ColorButton.textNewColor": "添加新的自定义颜色", "Common.UI.ComboBorderSize.txtNoBorders": "没有边框", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "没有边框", "Common.UI.ComboDataView.emptyComboText": "没有风格", @@ -57,6 +58,10 @@ "Common.Views.About.txtPoweredBy": "技术支持", "Common.Views.About.txtTel": "电话:", "Common.Views.About.txtVersion": "版本", + "Common.Views.AutoCorrectDialog.textBy": "依据", + "Common.Views.AutoCorrectDialog.textMathCorrect": "数学自动修正", + "Common.Views.AutoCorrectDialog.textReplace": "替换:", + "Common.Views.AutoCorrectDialog.textTitle": "自动修正", "Common.Views.Chat.textSend": "发送", "Common.Views.Comments.textAdd": "添加", "Common.Views.Comments.textAddComment": "发表评论", @@ -107,12 +112,19 @@ "Common.Views.ImageFromUrlDialog.textUrl": "粘贴图片网址:", "Common.Views.ImageFromUrlDialog.txtEmpty": "这是必填栏", "Common.Views.ImageFromUrlDialog.txtNotUrl": "该字段应该是“http://www.example.com”格式的URL", + "Common.Views.ListSettingsDialog.textBulleted": "已添加项目点", + "Common.Views.ListSettingsDialog.textNumbering": "标号", + "Common.Views.ListSettingsDialog.tipChange": "修改项目点", + "Common.Views.ListSettingsDialog.txtBullet": "项目点", "Common.Views.ListSettingsDialog.txtColor": "颜色", + "Common.Views.ListSettingsDialog.txtNewBullet": "添加一个新的项目点", + "Common.Views.ListSettingsDialog.txtNone": "无", "Common.Views.ListSettingsDialog.txtOfText": "文本的%", "Common.Views.ListSettingsDialog.txtSize": "大小", "Common.Views.ListSettingsDialog.txtStart": "开始", "Common.Views.ListSettingsDialog.txtTitle": "列表设置", "Common.Views.OpenDialog.closeButtonText": "关闭文件", + "Common.Views.OpenDialog.txtAdvanced": "进阶", "Common.Views.OpenDialog.txtColon": "冒号", "Common.Views.OpenDialog.txtComma": "逗号", "Common.Views.OpenDialog.txtDelimiter": "字段分隔符", @@ -234,12 +246,30 @@ "Common.Views.SignSettingsDialog.textShowDate": "在签名行中显示签名日期", "Common.Views.SignSettingsDialog.textTitle": "签名设置", "Common.Views.SignSettingsDialog.txtEmpty": "这是必填栏", + "Common.Views.SymbolTableDialog.textCharacter": "字符", "Common.Views.SymbolTableDialog.textCode": "Unicode十六进制值", + "Common.Views.SymbolTableDialog.textCopyright": "版权所有标识", + "Common.Views.SymbolTableDialog.textDCQuote": "后双引号", + "Common.Views.SymbolTableDialog.textDOQuote": "前双引号", + "Common.Views.SymbolTableDialog.textEllipsis": "横向省略号", + "Common.Views.SymbolTableDialog.textEmDash": "破折号", + "Common.Views.SymbolTableDialog.textEnDash": "半破折号", "Common.Views.SymbolTableDialog.textFont": "字体 ", + "Common.Views.SymbolTableDialog.textNBHyphen": "不换行连词符", + "Common.Views.SymbolTableDialog.textNBSpace": "不换行空格", + "Common.Views.SymbolTableDialog.textPilcrow": "段落标识", "Common.Views.SymbolTableDialog.textRange": "范围", "Common.Views.SymbolTableDialog.textRecent": "最近使用的符号", + "Common.Views.SymbolTableDialog.textRegistered": "注册商标标识", + "Common.Views.SymbolTableDialog.textSCQuote": "后单引号", + "Common.Views.SymbolTableDialog.textSection": "章节标识", + "Common.Views.SymbolTableDialog.textShortcut": "快捷键", + "Common.Views.SymbolTableDialog.textSOQuote": "前单引号", "Common.Views.SymbolTableDialog.textTitle": "符号", "SSE.Controllers.DataTab.textWizard": "文本分列向导", + "SSE.Controllers.DataTab.txtExpand": "扩大", + "SSE.Controllers.DataTab.txtRemDuplicates": "移除多次出现的元素", + "SSE.Controllers.DataTab.txtRemSelected": "移除选定的", "SSE.Controllers.DocumentHolder.alignmentText": "校准", "SSE.Controllers.DocumentHolder.centerText": "中心", "SSE.Controllers.DocumentHolder.deleteColumnText": "删除列", @@ -260,6 +290,7 @@ "SSE.Controllers.DocumentHolder.textCtrlClick": "单击链接打开,或单击并按住鼠标选择单元格。", "SSE.Controllers.DocumentHolder.textInsertLeft": "向左插入", "SSE.Controllers.DocumentHolder.textInsertTop": "插入顶部", + "SSE.Controllers.DocumentHolder.textPasteSpecial": "特殊粘贴", "SSE.Controllers.DocumentHolder.textSym": "符号", "SSE.Controllers.DocumentHolder.tipIsLocked": "此元素正在被其他用户编辑。", "SSE.Controllers.DocumentHolder.txtAboveAve": "平均水平以上", @@ -338,7 +369,7 @@ "SSE.Controllers.DocumentHolder.txtMatchBrackets": "匹配括号到参数高度", "SSE.Controllers.DocumentHolder.txtMatrixAlign": "矩阵对齐", "SSE.Controllers.DocumentHolder.txtNoChoices": "填充单元格没有选择。
          只能选择列中的文本值进行替换。", - "SSE.Controllers.DocumentHolder.txtNotBegins": "不开始", + "SSE.Controllers.DocumentHolder.txtNotBegins": "不起始于", "SSE.Controllers.DocumentHolder.txtNotContains": "不含", "SSE.Controllers.DocumentHolder.txtNotEnds": "不结束于", "SSE.Controllers.DocumentHolder.txtNotEquals": "不等于", @@ -425,6 +456,7 @@ "SSE.Controllers.Main.downloadErrorText": "下载失败", "SSE.Controllers.Main.downloadTextText": "正在下载试算表...", "SSE.Controllers.Main.downloadTitleText": "下载电子表格", + "SSE.Controllers.Main.errNoDuplicates": "未找到重复的数值", "SSE.Controllers.Main.errorAccessDeny": "您正在尝试执行您没有权限的操作。
          请联系您的文档服务器管理员.", "SSE.Controllers.Main.errorArgsRange": "一个错误的输入公式。< br >使用不正确的参数范围。", "SSE.Controllers.Main.errorAutoFilterChange": "不允许操作,因为它正在尝试在工作表上的表格中移动单元格。", @@ -458,6 +490,8 @@ "SSE.Controllers.Main.errorFormulaParsing": "解析公式时出现内部错误。", "SSE.Controllers.Main.errorFrmlMaxTextLength": "公式中的文本值限制为255个字符。
          使用连接函数或连接运算符(&)。", "SSE.Controllers.Main.errorFrmlWrongReferences": "该功能是指不存在的工作表。
          请检查数据,然后重试。", + "SSE.Controllers.Main.errorFTChangeTableRangeError": "所选单元格范围无法完成操作。
          选择一个范围,使第一个表行位于同一行
          上,并将生成的表与当前的列重叠。", + "SSE.Controllers.Main.errorFTRangeIncludedOtherTables": "所选单元格范围无法完成操作。
          选择不包括其他表格的范围。", "SSE.Controllers.Main.errorInvalidRef": "输入选择的正确名称或有效参考。", "SSE.Controllers.Main.errorKeyEncrypt": "未知密钥描述", "SSE.Controllers.Main.errorKeyExpire": "密钥过期", @@ -489,6 +523,7 @@ "SSE.Controllers.Main.errorViewerDisconnect": "连接丢失。您仍然可以查看文档
          ,但在连接恢复之前无法下载或打印。", "SSE.Controllers.Main.errorWrongBracketsCount": "一个错误的输入公式。< br >用括号打错了。", "SSE.Controllers.Main.errorWrongOperator": "公式输入发生错误。操作不当,请改正!", + "SSE.Controllers.Main.errRemDuplicates": "发现多次出现的值: {0}, 已经删除。 只留下惟一的值: {1}.", "SSE.Controllers.Main.leavePageText": "您在本电子表格中有未保存的更改。点击“留在这个页面”,然后点击“保存”保存。点击“离开此页面”,放弃所有未保存的更改。", "SSE.Controllers.Main.loadFontsTextText": "数据加载中…", "SSE.Controllers.Main.loadFontsTitleText": "数据加载中", @@ -528,6 +563,7 @@ "SSE.Controllers.Main.textPaidFeature": "付费功能", "SSE.Controllers.Main.textPleaseWait": "该操作可能需要比预期的更多的时间。请稍候...", "SSE.Controllers.Main.textRecalcFormulas": "计算公式...", + "SSE.Controllers.Main.textRemember": "记住我的选择", "SSE.Controllers.Main.textShape": "形状", "SSE.Controllers.Main.textStrict": "严格模式", "SSE.Controllers.Main.textTryUndoRedo": "对于快速的协同编辑模式,取消/重做功能是禁用的。< br >单击“严格模式”按钮切换到严格co-editing模式编辑该文件没有其他用户干扰和发送您的更改只后你拯救他们。您可以使用编辑器高级设置在编辑模式之间切换。", @@ -543,6 +579,8 @@ "SSE.Controllers.Main.txtByField": "%1/%2", "SSE.Controllers.Main.txtCallouts": "标注", "SSE.Controllers.Main.txtCharts": "图表", + "SSE.Controllers.Main.txtClearFilter": "清除过滤器 (Alt+C)", + "SSE.Controllers.Main.txtColLbls": "列标签", "SSE.Controllers.Main.txtColumn": "列", "SSE.Controllers.Main.txtConfidential": "机密", "SSE.Controllers.Main.txtDate": "日期", @@ -550,8 +588,10 @@ "SSE.Controllers.Main.txtEditingMode": "设置编辑模式..", "SSE.Controllers.Main.txtFiguredArrows": "图形箭头", "SSE.Controllers.Main.txtFile": "文件", + "SSE.Controllers.Main.txtGrandTotal": "合计", "SSE.Controllers.Main.txtLines": "行", "SSE.Controllers.Main.txtMath": "数学", + "SSE.Controllers.Main.txtMultiSelect": "多选模式 (Alt+S)", "SSE.Controllers.Main.txtPage": "页面", "SSE.Controllers.Main.txtPageOf": "第%1页,共%2页", "SSE.Controllers.Main.txtPages": "页面", @@ -559,6 +599,7 @@ "SSE.Controllers.Main.txtPrintArea": "Print_Area", "SSE.Controllers.Main.txtRectangles": "矩形", "SSE.Controllers.Main.txtRow": "行", + "SSE.Controllers.Main.txtRowLbls": "行标签", "SSE.Controllers.Main.txtSeries": "系列", "SSE.Controllers.Main.txtShape_accentBorderCallout1": "线形标注1(边框和强调线)", "SSE.Controllers.Main.txtShape_accentBorderCallout2": "线形标注2(边框和强调线)", @@ -775,6 +816,14 @@ "SSE.Controllers.Main.warnNoLicenseUsers": "此版本的 %1 编辑软件对并发用户数量有一定的限制。
          如果需要更多,请考虑购买商用许可证。", "SSE.Controllers.Main.warnProcessRightsChange": "您被拒绝编辑文件的权限。", "SSE.Controllers.Print.strAllSheets": "所有表格", + "SSE.Controllers.Print.textFirstCol": "第一列", + "SSE.Controllers.Print.textFirstRow": "第一行", + "SSE.Controllers.Print.textFrozenCols": "固定列", + "SSE.Controllers.Print.textFrozenRows": "固定行", + "SSE.Controllers.Print.textInvalidRange": "失败!单元格范围无效", + "SSE.Controllers.Print.textNoRepeat": "不重复", + "SSE.Controllers.Print.textRepeat": "重复...", + "SSE.Controllers.Print.textSelectRange": "选取范围", "SSE.Controllers.Print.textWarning": "警告", "SSE.Controllers.Print.txtCustom": "自定义", "SSE.Controllers.Print.warnCheckMargings": "边距不正确", @@ -871,6 +920,7 @@ "SSE.Controllers.Toolbar.txtBracket_UppLim": "括号", "SSE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen": "单支架", "SSE.Controllers.Toolbar.txtBracket_UppLim_OpenNone": "单支架", + "SSE.Controllers.Toolbar.txtDeleteCells": "删除单元格", "SSE.Controllers.Toolbar.txtExpand": "展开和排序", "SSE.Controllers.Toolbar.txtExpandSort": "选择旁边的数据将不会被排序。要扩展选择以包括相邻数据还是继续排序当前选定的单元格?", "SSE.Controllers.Toolbar.txtFractionDiagonal": "倾斜分数", @@ -909,6 +959,7 @@ "SSE.Controllers.Toolbar.txtFunction_Sinh": "双曲正弦函数", "SSE.Controllers.Toolbar.txtFunction_Tan": "切线功能", "SSE.Controllers.Toolbar.txtFunction_Tanh": "双曲正切函数", + "SSE.Controllers.Toolbar.txtInsertCells": "插入单元格", "SSE.Controllers.Toolbar.txtIntegral": "积分", "SSE.Controllers.Toolbar.txtIntegral_dtheta": "差分θ", "SSE.Controllers.Toolbar.txtIntegral_dx": "差分x", @@ -1133,6 +1184,9 @@ "SSE.Controllers.Viewport.textHideFBar": "隐藏编辑栏", "SSE.Controllers.Viewport.textHideGridlines": "隐藏网格线", "SSE.Controllers.Viewport.textHideHeadings": "隐藏标题", + "SSE.Views.AdvancedSeparatorDialog.strDecimalSeparator": "小数分隔符", + "SSE.Views.AdvancedSeparatorDialog.textLabel": "用于识别数值数据的设置", + "SSE.Views.AdvancedSeparatorDialog.textTitle": "进阶设置", "SSE.Views.AutoFilterDialog.btnCustomFilter": "自定义过滤器", "SSE.Views.AutoFilterDialog.textAddSelection": "添加最新的选择到筛选依据中", "SSE.Views.AutoFilterDialog.textEmptyItem": "空白", @@ -1152,9 +1206,11 @@ "SSE.Views.AutoFilterDialog.txtFilterFontColor": "按字体颜色过滤", "SSE.Views.AutoFilterDialog.txtGreater": "比...更棒...", "SSE.Views.AutoFilterDialog.txtGreaterEquals": "大于或等于...", + "SSE.Views.AutoFilterDialog.txtLabelFilter": "标签过滤器", "SSE.Views.AutoFilterDialog.txtLess": "少于...", "SSE.Views.AutoFilterDialog.txtLessEquals": "小于或等于", "SSE.Views.AutoFilterDialog.txtNotBegins": "不是从...开始", + "SSE.Views.AutoFilterDialog.txtNotBetween": "不介于...", "SSE.Views.AutoFilterDialog.txtNotContains": "不含...", "SSE.Views.AutoFilterDialog.txtNotEnds": "不是以...结束", "SSE.Views.AutoFilterDialog.txtNotEquals": "不等于...", @@ -1164,6 +1220,7 @@ "SSE.Views.AutoFilterDialog.txtSortFontColor": "按字体颜色排序", "SSE.Views.AutoFilterDialog.txtSortHigh2Low": "排序最高到最低", "SSE.Views.AutoFilterDialog.txtSortLow2High": "排序最低到最高", + "SSE.Views.AutoFilterDialog.txtSortOption": "其它排序选项...", "SSE.Views.AutoFilterDialog.txtTextFilter": "文字过滤器", "SSE.Views.AutoFilterDialog.txtTitle": "过滤", "SSE.Views.AutoFilterDialog.txtTop10": "前十位", @@ -1354,8 +1411,15 @@ "SSE.Views.ChartSettingsDlg.textYAxisTitle": "Y轴标题", "SSE.Views.ChartSettingsDlg.textZero": "零", "SSE.Views.ChartSettingsDlg.txtEmpty": "这是必填栏", + "SSE.Views.CreatePivotDialog.textDestination": "选择安放表格的位置", + "SSE.Views.CreatePivotDialog.textExist": "已有的工作表", + "SSE.Views.CreatePivotDialog.textInvalidRange": "无效的单元格范围", + "SSE.Views.CreatePivotDialog.textNew": "新建工作表", + "SSE.Views.CreatePivotDialog.textSelectData": "选择数据", + "SSE.Views.CreatePivotDialog.textTitle": "创建表", "SSE.Views.DataTab.capBtnGroup": "分组", "SSE.Views.DataTab.capBtnTextCustomSort": "自定义排序", + "SSE.Views.DataTab.capBtnTextRemDuplicates": "移除多次出现的元素", "SSE.Views.DataTab.capBtnTextToCol": "文本分列向导", "SSE.Views.DataTab.capBtnUngroup": "取消组合", "SSE.Views.DataTab.textBelow": "详细信息下的摘要行", @@ -1367,6 +1431,7 @@ "SSE.Views.DataTab.textRows": "取消行分组", "SSE.Views.DataTab.tipCustomSort": "自定义排序", "SSE.Views.DataTab.tipGroup": "单元组范围", + "SSE.Views.DataTab.tipRemDuplicates": "从表单中移除多次出现的行", "SSE.Views.DataTab.tipToColumns": "将单元格文本分隔成列", "SSE.Views.DataTab.tipUngroup": "取消单元格范围分组", "SSE.Views.DigitalFilterDialog.capAnd": "和", @@ -1380,7 +1445,7 @@ "SSE.Views.DigitalFilterDialog.capCondition5": "小于", "SSE.Views.DigitalFilterDialog.capCondition6": "小于或等于", "SSE.Views.DigitalFilterDialog.capCondition7": "以......开始", - "SSE.Views.DigitalFilterDialog.capCondition8": "不开始", + "SSE.Views.DigitalFilterDialog.capCondition8": "不起始于", "SSE.Views.DigitalFilterDialog.capCondition9": "结束", "SSE.Views.DigitalFilterDialog.capOr": "或", "SSE.Views.DigitalFilterDialog.textNoFilter": "没有过滤器", @@ -1423,6 +1488,8 @@ "SSE.Views.DocumentHolder.textArrangeBackward": "向后移动", "SSE.Views.DocumentHolder.textArrangeForward": "向前移动", "SSE.Views.DocumentHolder.textArrangeFront": "放到最上面", + "SSE.Views.DocumentHolder.textAverage": "平均值", + "SSE.Views.DocumentHolder.textCount": "计数", "SSE.Views.DocumentHolder.textCrop": "裁剪", "SSE.Views.DocumentHolder.textCropFill": "填满", "SSE.Views.DocumentHolder.textCropFit": "最佳", @@ -1431,8 +1498,12 @@ "SSE.Views.DocumentHolder.textFlipV": "垂直翻转", "SSE.Views.DocumentHolder.textFreezePanes": "冻结面板", "SSE.Views.DocumentHolder.textFromFile": "从文件导入", + "SSE.Views.DocumentHolder.textFromStorage": "来自存储设备", "SSE.Views.DocumentHolder.textFromUrl": "从URL", "SSE.Views.DocumentHolder.textListSettings": "列表设置", + "SSE.Views.DocumentHolder.textMax": "最大值", + "SSE.Views.DocumentHolder.textMin": "最小值", + "SSE.Views.DocumentHolder.textMore": "其他函数", "SSE.Views.DocumentHolder.textMoreFormats": "更多格式", "SSE.Views.DocumentHolder.textNone": "没有", "SSE.Views.DocumentHolder.textReplace": "替换图像", @@ -1452,7 +1523,7 @@ "SSE.Views.DocumentHolder.txtAddComment": "添加注释", "SSE.Views.DocumentHolder.txtAddNamedRange": "定义名称", "SSE.Views.DocumentHolder.txtArrange": "安排", - "SSE.Views.DocumentHolder.txtAscending": "上升的", + "SSE.Views.DocumentHolder.txtAscending": "升序", "SSE.Views.DocumentHolder.txtAutoColumnWidth": "自动调整列宽", "SSE.Views.DocumentHolder.txtAutoRowHeight": "自动调整行距", "SSE.Views.DocumentHolder.txtClear": "清除", @@ -1512,6 +1583,23 @@ "SSE.Views.DocumentHolder.txtUngroup": "取消组合", "SSE.Views.DocumentHolder.txtWidth": "宽度", "SSE.Views.DocumentHolder.vertAlignText": "垂直对齐", + "SSE.Views.FieldSettingsDialog.strLayout": "布局", + "SSE.Views.FieldSettingsDialog.textReport": "报告", + "SSE.Views.FieldSettingsDialog.textTitle": "域设置", + "SSE.Views.FieldSettingsDialog.txtAverage": "平均值", + "SSE.Views.FieldSettingsDialog.txtBlank": "在每一项后面插入一个空行", + "SSE.Views.FieldSettingsDialog.txtBottom": "在群组底部显示", + "SSE.Views.FieldSettingsDialog.txtCompact": "紧致", + "SSE.Views.FieldSettingsDialog.txtCount": "计数", + "SSE.Views.FieldSettingsDialog.txtCountNums": "计数", + "SSE.Views.FieldSettingsDialog.txtCustomName": "自定义名称", + "SSE.Views.FieldSettingsDialog.txtMax": "最大值", + "SSE.Views.FieldSettingsDialog.txtMin": "最小值", + "SSE.Views.FieldSettingsDialog.txtOutline": "大纲", + "SSE.Views.FieldSettingsDialog.txtProduct": "产品", + "SSE.Views.FieldSettingsDialog.txtRepeat": "在每行重复标记项目", + "SSE.Views.FieldSettingsDialog.txtSummarize": "用于小计的函数", + "SSE.Views.FieldSettingsDialog.txtTop": "在群组顶部显示", "SSE.Views.FileMenu.btnBackCaption": "打开文件所在位置", "SSE.Views.FileMenu.btnCloseMenuCaption": "关闭菜单", "SSE.Views.FileMenu.btnCreateNewCaption": "新建", @@ -1564,6 +1652,8 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocale": "公式语言", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocaleEx": "例:SUM; MIN; MAX; COUNT", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strLiveComment": "打开评论的显示", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strMacrosSettings": "宏设置", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPaste": "剪切、拷贝、黏贴", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strR1C1": "打开R1C1风格", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettings": "区域设置", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettingsEx": "例: ", @@ -1598,11 +1688,18 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPl": "抛光", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPt": "点", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRu": "俄语", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRunMacros": "启动所有项目", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRunMacrosDesc": "启动所有不带通知的宏", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStopMacros": "解除所有项目", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStopMacrosDesc": "解除所有不带通知的宏", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacrosDesc": "解除所有带通知的宏", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin": "作为Windows", "SSE.Views.FileMenuPanels.MainSpellCheckSettings.okButtonText": "应用", "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strDictionaryLanguage": "词典语言", "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strIgnoreWordsInUPPERCASE": "忽略大写单词", "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strIgnoreWordsWithNumbers": "忽略带数字的单词", + "SSE.Views.FileMenuPanels.MainSpellCheckSettings.txtAutoCorrect": "自动修正选项...", + "SSE.Views.FileMenuPanels.MainSpellCheckSettings.txtProofing": "审订", "SSE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "警告", "SSE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "使用密码", "SSE.Views.FileMenuPanels.ProtectDoc.strProtect": "保护电子表格", @@ -1648,6 +1745,8 @@ "SSE.Views.FormulaDialog.sDescription": "描述", "SSE.Views.FormulaDialog.textGroupDescription": "选择功能分组", "SSE.Views.FormulaDialog.textListDescription": "选择功能", + "SSE.Views.FormulaDialog.txtRecommended": "推荐", + "SSE.Views.FormulaDialog.txtSearch": "搜索", "SSE.Views.FormulaDialog.txtTitle": "插入功能", "SSE.Views.FormulaTab.textAutomatic": "自动", "SSE.Views.FormulaTab.textCalculateCurrentSheet": "计算当前工作表", @@ -1663,6 +1762,11 @@ "SSE.Views.FormulaTab.txtFormulaTip": "插入功能", "SSE.Views.FormulaTab.txtMore": "更多功能", "SSE.Views.FormulaTab.txtRecent": "最近使用的", + "SSE.Views.FormulaWizard.textFunction": "函数", + "SSE.Views.FormulaWizard.textFunctionRes": "函数值", + "SSE.Views.FormulaWizard.textHelp": "关于此函数的帮助", + "SSE.Views.FormulaWizard.textTitle": "函数输入值", + "SSE.Views.FormulaWizard.textValue": "公式结果", "SSE.Views.GroupDialog.textColumns": "列", "SSE.Views.GroupDialog.textRows": "行", "SSE.Views.HeaderFooterDialog.textAlign": "与页边距对齐", @@ -1702,13 +1806,18 @@ "SSE.Views.HyperlinkSettingsDialog.strLinkTo": "链接到", "SSE.Views.HyperlinkSettingsDialog.strRange": "范围", "SSE.Views.HyperlinkSettingsDialog.strSheet": "表格", + "SSE.Views.HyperlinkSettingsDialog.textCopy": "拷贝", "SSE.Views.HyperlinkSettingsDialog.textDefault": "选择范围", "SSE.Views.HyperlinkSettingsDialog.textEmptyDesc": "在这里输入标题", "SSE.Views.HyperlinkSettingsDialog.textEmptyLink": "在这里输入链接", "SSE.Views.HyperlinkSettingsDialog.textEmptyTooltip": "在这里输入工具提示", "SSE.Views.HyperlinkSettingsDialog.textExternalLink": "外部链接", + "SSE.Views.HyperlinkSettingsDialog.textGetLink": "获取链接", "SSE.Views.HyperlinkSettingsDialog.textInternalLink": "内部数据范围", "SSE.Views.HyperlinkSettingsDialog.textInvalidRange": "错误!无效的单元格范围", + "SSE.Views.HyperlinkSettingsDialog.textNames": "已定义名称", + "SSE.Views.HyperlinkSettingsDialog.textSelectData": "选择数据", + "SSE.Views.HyperlinkSettingsDialog.textSheets": "表单", "SSE.Views.HyperlinkSettingsDialog.textTipText": "屏幕提示文字", "SSE.Views.HyperlinkSettingsDialog.textTitle": "超链接设置", "SSE.Views.HyperlinkSettingsDialog.txtEmpty": "这是必填栏", @@ -1721,6 +1830,7 @@ "SSE.Views.ImageSettings.textEditObject": "编辑对象", "SSE.Views.ImageSettings.textFlip": "翻转", "SSE.Views.ImageSettings.textFromFile": "从文件导入", + "SSE.Views.ImageSettings.textFromStorage": "来自存储设备", "SSE.Views.ImageSettings.textFromUrl": "从URL", "SSE.Views.ImageSettings.textHeight": "高低", "SSE.Views.ImageSettings.textHint270": "逆时针旋转90°", @@ -1765,6 +1875,7 @@ "SSE.Views.MainSettingsPrint.strMargins": "边距", "SSE.Views.MainSettingsPrint.strPortrait": "肖像", "SSE.Views.MainSettingsPrint.strPrint": "打印", + "SSE.Views.MainSettingsPrint.strPrintTitles": "打印标题", "SSE.Views.MainSettingsPrint.strRight": "右", "SSE.Views.MainSettingsPrint.strTop": "顶部", "SSE.Views.MainSettingsPrint.textActualSize": "实际大小", @@ -1778,6 +1889,9 @@ "SSE.Views.MainSettingsPrint.textPageSize": "页面大小", "SSE.Views.MainSettingsPrint.textPrintGrid": "打印网格线", "SSE.Views.MainSettingsPrint.textPrintHeadings": "打印行和列标题", + "SSE.Views.MainSettingsPrint.textRepeat": "重复...", + "SSE.Views.MainSettingsPrint.textRepeatLeft": "移除左侧的列", + "SSE.Views.MainSettingsPrint.textRepeatTop": "在顶部重复一行", "SSE.Views.MainSettingsPrint.textSettings": "设置", "SSE.Views.NamedRangeEditDlg.errorCreateDefName": "无法编辑现有的命名范围,因此无法在其中编辑新的范围。", "SSE.Views.NamedRangeEditDlg.namePlaceholder": "定义名称", @@ -1857,6 +1971,7 @@ "SSE.Views.ParagraphSettingsAdvanced.textEffects": "效果", "SSE.Views.ParagraphSettingsAdvanced.textExact": "精确", "SSE.Views.ParagraphSettingsAdvanced.textFirstLine": "第一行", + "SSE.Views.ParagraphSettingsAdvanced.textHanging": "悬挂", "SSE.Views.ParagraphSettingsAdvanced.textJustified": "正当", "SSE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(无)", "SSE.Views.ParagraphSettingsAdvanced.textRemove": "删除", @@ -1868,6 +1983,22 @@ "SSE.Views.ParagraphSettingsAdvanced.textTabRight": "右", "SSE.Views.ParagraphSettingsAdvanced.textTitle": "段落 - 高级设置", "SSE.Views.ParagraphSettingsAdvanced.txtAutoText": "自动", + "SSE.Views.PivotDigitalFilterDialog.capCondition1": "等于", + "SSE.Views.PivotDigitalFilterDialog.capCondition10": "不结束于", + "SSE.Views.PivotDigitalFilterDialog.capCondition11": "包含", + "SSE.Views.PivotDigitalFilterDialog.capCondition12": "不含", + "SSE.Views.PivotDigitalFilterDialog.capCondition13": "介于", + "SSE.Views.PivotDigitalFilterDialog.capCondition14": "不介于", + "SSE.Views.PivotDigitalFilterDialog.capCondition2": "不等于", + "SSE.Views.PivotDigitalFilterDialog.capCondition3": "大于", + "SSE.Views.PivotDigitalFilterDialog.capCondition4": "大于或等于", + "SSE.Views.PivotDigitalFilterDialog.capCondition5": "小于", + "SSE.Views.PivotDigitalFilterDialog.capCondition6": "小于或等于", + "SSE.Views.PivotDigitalFilterDialog.capCondition7": "开头为", + "SSE.Views.PivotDigitalFilterDialog.capCondition8": "不起始于", + "SSE.Views.PivotDigitalFilterDialog.capCondition9": "结束于", + "SSE.Views.PivotDigitalFilterDialog.txtAnd": "且", + "SSE.Views.PivotDigitalFilterDialog.txtTitleLabel": "标签过滤器", "SSE.Views.PivotSettings.textAdvanced": "显示高级设置", "SSE.Views.PivotSettings.textColumns": "列", "SSE.Views.PivotSettings.textFields": "选择字段", @@ -1888,6 +2019,22 @@ "SSE.Views.PivotSettings.txtMoveUp": "上移", "SSE.Views.PivotSettings.txtMoveValues": "移至值", "SSE.Views.PivotSettings.txtRemove": "删除字段", + "SSE.Views.PivotSettingsAdvanced.strLayout": "名称与布局", + "SSE.Views.PivotSettingsAdvanced.textAlt": "备选文本", + "SSE.Views.PivotSettingsAdvanced.textAltDescription": "说明", + "SSE.Views.PivotSettingsAdvanced.textDataRange": "数据范围", + "SSE.Views.PivotSettingsAdvanced.textDataSource": "数据来源", + "SSE.Views.PivotSettingsAdvanced.textDisplayFields": "解除过滤器位置的域", + "SSE.Views.PivotSettingsAdvanced.textDown": "先下再上", + "SSE.Views.PivotSettingsAdvanced.textGrandTotals": "总计", + "SSE.Views.PivotSettingsAdvanced.textHeaders": "域的题头", + "SSE.Views.PivotSettingsAdvanced.textInvalidRange": "失败!单元格范围无效", + "SSE.Views.PivotSettingsAdvanced.textOver": "先上再下", + "SSE.Views.PivotSettingsAdvanced.textSelectData": "选择数据", + "SSE.Views.PivotSettingsAdvanced.textTitle": "数据透视表 - 进阶设定", + "SSE.Views.PivotSettingsAdvanced.textWrapCol": "报告每列的过滤域", + "SSE.Views.PivotSettingsAdvanced.textWrapRow": "报告每行的过滤域", + "SSE.Views.PivotSettingsAdvanced.txtName": "名称", "SSE.Views.PivotTable.capBlankRows": "空白行", "SSE.Views.PivotTable.capGrandTotals": "总计", "SSE.Views.PivotTable.capLayout": "报告版式", @@ -1926,6 +2073,7 @@ "SSE.Views.PrintSettings.strMargins": "边距", "SSE.Views.PrintSettings.strPortrait": "肖像", "SSE.Views.PrintSettings.strPrint": "打印", + "SSE.Views.PrintSettings.strPrintTitles": "打印标题", "SSE.Views.PrintSettings.strRight": "右", "SSE.Views.PrintSettings.strShow": "显示", "SSE.Views.PrintSettings.strTop": "顶部", @@ -1947,6 +2095,9 @@ "SSE.Views.PrintSettings.textPrintHeadings": "打印行和列标题", "SSE.Views.PrintSettings.textPrintRange": "打印范围", "SSE.Views.PrintSettings.textRange": "范围", + "SSE.Views.PrintSettings.textRepeat": "重复...", + "SSE.Views.PrintSettings.textRepeatLeft": "移除左侧的列", + "SSE.Views.PrintSettings.textRepeatTop": "在顶部重复一行", "SSE.Views.PrintSettings.textSelection": "选择", "SSE.Views.PrintSettings.textSettings": "工作表设置", "SSE.Views.PrintSettings.textShowDetails": "显示详细资料", @@ -1954,6 +2105,21 @@ "SSE.Views.PrintSettings.textShowHeadings": "显示行和列标题", "SSE.Views.PrintSettings.textTitle": "打印设置", "SSE.Views.PrintSettings.textTitlePDF": "PDF设置", + "SSE.Views.PrintTitlesDialog.textFirstCol": "第一列", + "SSE.Views.PrintTitlesDialog.textFirstRow": "第一行", + "SSE.Views.PrintTitlesDialog.textFrozenCols": "固定列", + "SSE.Views.PrintTitlesDialog.textFrozenRows": "固定行", + "SSE.Views.PrintTitlesDialog.textInvalidRange": "失败!单元格范围无效", + "SSE.Views.PrintTitlesDialog.textLeft": "在左侧重复一列", + "SSE.Views.PrintTitlesDialog.textNoRepeat": "不重复", + "SSE.Views.PrintTitlesDialog.textRepeat": "重复...", + "SSE.Views.PrintTitlesDialog.textSelectRange": "选取范围", + "SSE.Views.PrintTitlesDialog.textTitle": "打印标题", + "SSE.Views.PrintTitlesDialog.textTop": "在顶部重复一行", + "SSE.Views.RemoveDuplicatesDialog.textColumns": "列", + "SSE.Views.RemoveDuplicatesDialog.textHeaders": "我的数据有题头", + "SSE.Views.RemoveDuplicatesDialog.textSelectAll": "全选", + "SSE.Views.RemoveDuplicatesDialog.txtTitle": "移除多次出现的元素", "SSE.Views.RightMenu.txtCellSettings": "单元格设置", "SSE.Views.RightMenu.txtChartSettings": "图表设置", "SSE.Views.RightMenu.txtImageSettings": "图像设置", @@ -1968,6 +2134,7 @@ "SSE.Views.ScaleDialog.textAuto": "自动", "SSE.Views.ScaleDialog.textError": "输入的值不正确。", "SSE.Views.ScaleDialog.textFewPages": "页面", + "SSE.Views.ScaleDialog.textFitTo": "适应于", "SSE.Views.ScaleDialog.textHeight": "高度", "SSE.Views.ScaleDialog.textManyPages": "页面", "SSE.Views.ScaleDialog.textOnePage": "页面", @@ -1994,6 +2161,7 @@ "SSE.Views.ShapeSettings.textEmptyPattern": "无图案", "SSE.Views.ShapeSettings.textFlip": "翻转", "SSE.Views.ShapeSettings.textFromFile": "从文件导入", + "SSE.Views.ShapeSettings.textFromStorage": "来自存储设备", "SSE.Views.ShapeSettings.textFromUrl": "从URL", "SSE.Views.ShapeSettings.textGradient": "渐变", "SSE.Views.ShapeSettings.textGradientFill": "渐变填充", @@ -2009,6 +2177,7 @@ "SSE.Views.ShapeSettings.textRadial": "径向", "SSE.Views.ShapeSettings.textRotate90": "旋转90°", "SSE.Views.ShapeSettings.textRotation": "旋转", + "SSE.Views.ShapeSettings.textSelectImage": "选取图片", "SSE.Views.ShapeSettings.textSelectTexture": "选择", "SSE.Views.ShapeSettings.textStretch": "伸展", "SSE.Views.ShapeSettings.textStyle": "类型", @@ -2035,6 +2204,7 @@ "SSE.Views.ShapeSettingsAdvanced.textAltTitle": "标题", "SSE.Views.ShapeSettingsAdvanced.textAngle": "角度", "SSE.Views.ShapeSettingsAdvanced.textArrows": "箭头", + "SSE.Views.ShapeSettingsAdvanced.textAutofit": "自动适应", "SSE.Views.ShapeSettingsAdvanced.textBeginSize": "初始大小", "SSE.Views.ShapeSettingsAdvanced.textBeginStyle": "初始风格", "SSE.Views.ShapeSettingsAdvanced.textBevel": "斜角", @@ -2053,6 +2223,8 @@ "SSE.Views.ShapeSettingsAdvanced.textLineStyle": "线样式", "SSE.Views.ShapeSettingsAdvanced.textMiter": "米特", "SSE.Views.ShapeSettingsAdvanced.textOneCell": "移动但不按单元格大小调整", + "SSE.Views.ShapeSettingsAdvanced.textOverflow": "允许文本压上图形", + "SSE.Views.ShapeSettingsAdvanced.textResizeFit": "调整形状以适应文本", "SSE.Views.ShapeSettingsAdvanced.textRight": "右", "SSE.Views.ShapeSettingsAdvanced.textRotation": "旋转", "SSE.Views.ShapeSettingsAdvanced.textRound": "圆", @@ -2081,6 +2253,45 @@ "SSE.Views.SignatureSettings.txtRequestedSignatures": "此电子表格需要签名。", "SSE.Views.SignatureSettings.txtSigned": "有效签名已添加到电子表格中。该电子表格已限制编辑。", "SSE.Views.SignatureSettings.txtSignedInvalid": "电子表格中的某些数字签名无效或无法验证。该电子表格已限制编辑。", + "SSE.Views.SlicerAddDialog.textColumns": "列", + "SSE.Views.SlicerAddDialog.txtTitle": "插入分法", + "SSE.Views.SlicerSettings.strHideNoData": "隐藏没有数据的项目", + "SSE.Views.SlicerSettings.textAdvanced": "显示高级设置", + "SSE.Views.SlicerSettings.textAsc": "升序", + "SSE.Views.SlicerSettings.textAZ": "A到Z", + "SSE.Views.SlicerSettings.textButtons": "按钮", + "SSE.Views.SlicerSettings.textColumns": "列", + "SSE.Views.SlicerSettings.textDesc": "降序", + "SSE.Views.SlicerSettings.textHeight": "高度", + "SSE.Views.SlicerSettings.textHor": "横向的", + "SSE.Views.SlicerSettings.textKeepRatio": "恒同比例", + "SSE.Views.SlicerSettings.textLargeSmall": "由大到小", + "SSE.Views.SlicerSettings.textLock": "解除移动或改变大小的功能", + "SSE.Views.SlicerSettings.textNewOld": "由新到旧", + "SSE.Views.SlicerSettings.textOldNew": "由旧到新", + "SSE.Views.SlicerSettings.textPosition": "位置", + "SSE.Views.SlicerSettingsAdvanced.strButtons": "按钮", + "SSE.Views.SlicerSettingsAdvanced.strColumns": "列", + "SSE.Views.SlicerSettingsAdvanced.strHeight": "高度", + "SSE.Views.SlicerSettingsAdvanced.strHideNoData": "隐藏没有数据的项目", + "SSE.Views.SlicerSettingsAdvanced.strReferences": "参考", + "SSE.Views.SlicerSettingsAdvanced.strShowHeader": "显示题头", + "SSE.Views.SlicerSettingsAdvanced.textAbsolute": "不要移动或调整单元格大小", + "SSE.Views.SlicerSettingsAdvanced.textAlt": "备选文本", + "SSE.Views.SlicerSettingsAdvanced.textAltDescription": "说明", + "SSE.Views.SlicerSettingsAdvanced.textAsc": "升序", + "SSE.Views.SlicerSettingsAdvanced.textAZ": "A到Z", + "SSE.Views.SlicerSettingsAdvanced.textDesc": "降序", + "SSE.Views.SlicerSettingsAdvanced.textFormulaName": "用在公式里的名称", + "SSE.Views.SlicerSettingsAdvanced.textHeader": "题头", + "SSE.Views.SlicerSettingsAdvanced.textKeepRatio": "恒同比例", + "SSE.Views.SlicerSettingsAdvanced.textLargeSmall": "由大到小", + "SSE.Views.SlicerSettingsAdvanced.textName": "名称", + "SSE.Views.SlicerSettingsAdvanced.textNewOld": "由新到旧", + "SSE.Views.SlicerSettingsAdvanced.textOldNew": "由旧到新", + "SSE.Views.SlicerSettingsAdvanced.textOneCell": "移动但不按单元格大小调整", + "SSE.Views.SlicerSettingsAdvanced.textSnap": "单元捕捉", + "SSE.Views.SlicerSettingsAdvanced.textTwoCell": "随单元格移动和调整大小", "SSE.Views.SortDialog.errorEmpty": "所有排序条件都必须指定列或行。", "SSE.Views.SortDialog.errorMoreOneCol": "选择了多个列。", "SSE.Views.SortDialog.errorMoreOneRow": "选择了多行。", @@ -2089,7 +2300,7 @@ "SSE.Views.SortDialog.errorSameColumnColor": "%1多次按同一颜色排序。
          删除重复的排序条件,然后重试。", "SSE.Views.SortDialog.errorSameColumnValue": "%1多次按值排序。
          删除重复的排序条件,然后重试。", "SSE.Views.SortDialog.textAdd": "添加级别", - "SSE.Views.SortDialog.textAsc": "上升的", + "SSE.Views.SortDialog.textAsc": "升序", "SSE.Views.SortDialog.textAuto": "自动", "SSE.Views.SortDialog.textAZ": "A到Z", "SSE.Views.SortDialog.textBelow": "下面", @@ -2117,12 +2328,30 @@ "SSE.Views.SortDialog.textZA": "Z到A", "SSE.Views.SortDialog.txtInvalidRange": "无效的单元格区域。", "SSE.Views.SortDialog.txtTitle": "分类", + "SSE.Views.SortFilterDialog.textAsc": "升序 (A 到 Z) 依据", + "SSE.Views.SortFilterDialog.textDesc": "降序 (Z 到 A) 依据", "SSE.Views.SortOptionsDialog.textCase": "区分大小写", "SSE.Views.SortOptionsDialog.textHeaders": "我的数据有页眉", "SSE.Views.SortOptionsDialog.textLeftRight": "从左到右排序", "SSE.Views.SortOptionsDialog.textOrientation": "方向", "SSE.Views.SortOptionsDialog.textTitle": "排序选项", "SSE.Views.SortOptionsDialog.textTopBottom": "从上到下排序", + "SSE.Views.SpecialPasteDialog.textAdd": "添加", + "SSE.Views.SpecialPasteDialog.textAll": "所有", + "SSE.Views.SpecialPasteDialog.textColWidth": "列宽度", + "SSE.Views.SpecialPasteDialog.textComments": "评论", + "SSE.Views.SpecialPasteDialog.textDiv": "分开", + "SSE.Views.SpecialPasteDialog.textFFormat": "公式 & 排版", + "SSE.Views.SpecialPasteDialog.textFNFormat": "公式 & 编号格式", + "SSE.Views.SpecialPasteDialog.textFormats": "格式", + "SSE.Views.SpecialPasteDialog.textFormulas": "公式", + "SSE.Views.SpecialPasteDialog.textFWidth": "公式 & 列宽度", + "SSE.Views.SpecialPasteDialog.textMult": "乘", + "SSE.Views.SpecialPasteDialog.textNone": "无", + "SSE.Views.SpecialPasteDialog.textOperation": "操作", + "SSE.Views.SpecialPasteDialog.textPaste": "粘贴", + "SSE.Views.SpecialPasteDialog.textTitle": "特殊粘贴", + "SSE.Views.SpecialPasteDialog.textWBorders": "除边框外的所有元素", "SSE.Views.Spellcheck.noSuggestions": "没有拼写建议", "SSE.Views.Spellcheck.textChange": "修改", "SSE.Views.Spellcheck.textChangeAll": "全部更改", @@ -2139,11 +2368,15 @@ "SSE.Views.Statusbar.CopyDialog.textMoveBefore": "在纸张之前移动", "SSE.Views.Statusbar.filteredRecordsText": "{0}个记录的{1}已过滤", "SSE.Views.Statusbar.filteredText": "过滤器模式", + "SSE.Views.Statusbar.itemAverage": "平均值", "SSE.Views.Statusbar.itemCopy": "复制", + "SSE.Views.Statusbar.itemCount": "计数", "SSE.Views.Statusbar.itemDelete": "删除", "SSE.Views.Statusbar.itemHidden": "隐蔽", "SSE.Views.Statusbar.itemHide": "隐藏", "SSE.Views.Statusbar.itemInsert": "插入", + "SSE.Views.Statusbar.itemMaximum": "最大值", + "SSE.Views.Statusbar.itemMinimum": "最小值", "SSE.Views.Statusbar.itemMove": "移动", "SSE.Views.Statusbar.itemRename": "重命名", "SSE.Views.Statusbar.itemTabColor": "标签颜色", @@ -2202,10 +2435,13 @@ "SSE.Views.TableSettings.textIsLocked": "此元素正在被其他用户编辑。", "SSE.Views.TableSettings.textLast": "最后", "SSE.Views.TableSettings.textLongOperation": "长操作", + "SSE.Views.TableSettings.textPivot": "插入透视表", + "SSE.Views.TableSettings.textRemDuplicates": "移除多次出现的元素", "SSE.Views.TableSettings.textReservedName": "您尝试使用的名称已在单元格公式中引用。请使用其他名称。", "SSE.Views.TableSettings.textResize": "调整表大小", "SSE.Views.TableSettings.textRows": "行", "SSE.Views.TableSettings.textSelectData": "选择数据", + "SSE.Views.TableSettings.textSlicer": "插入分法", "SSE.Views.TableSettings.textTableName": "表名称", "SSE.Views.TableSettings.textTemplate": "从模板中选择", "SSE.Views.TableSettings.textTotal": "总计", @@ -2323,7 +2559,6 @@ "SSE.Views.Toolbar.textMoreFormats": "更多格式", "SSE.Views.Toolbar.textMorePages": "更多页", "SSE.Views.Toolbar.textNewColor": "添加新的自定义颜色", - "Common.UI.ColorButton.textNewColor": "添加新的自定义颜色", "SSE.Views.Toolbar.textNoBorders": "没有边框", "SSE.Views.Toolbar.textOnePage": "页面", "SSE.Views.Toolbar.textOutBorders": "境外", @@ -2393,6 +2628,7 @@ "SSE.Views.Toolbar.tipInsertImage": "插入图片", "SSE.Views.Toolbar.tipInsertOpt": "插入单元格", "SSE.Views.Toolbar.tipInsertShape": "自动插入形状", + "SSE.Views.Toolbar.tipInsertSlicer": "插入分法", "SSE.Views.Toolbar.tipInsertSymbol": "插入符号", "SSE.Views.Toolbar.tipInsertTable": "插入表", "SSE.Views.Toolbar.tipInsertText": "插入文字", @@ -2418,7 +2654,7 @@ "SSE.Views.Toolbar.tipWrap": "文字换行", "SSE.Views.Toolbar.txtAccounting": "统计", "SSE.Views.Toolbar.txtAdditional": "另外", - "SSE.Views.Toolbar.txtAscending": "上升的", + "SSE.Views.Toolbar.txtAscending": "升序", "SSE.Views.Toolbar.txtAutosumTip": "总和", "SSE.Views.Toolbar.txtClearAll": "所有", "SSE.Views.Toolbar.txtClearComments": "评论", @@ -2487,8 +2723,27 @@ "SSE.Views.Toolbar.txtYen": "日元", "SSE.Views.Top10FilterDialog.textType": "显示", "SSE.Views.Top10FilterDialog.txtBottom": "底部", + "SSE.Views.Top10FilterDialog.txtBy": "依据", "SSE.Views.Top10FilterDialog.txtItems": "项目", "SSE.Views.Top10FilterDialog.txtPercent": "百分", "SSE.Views.Top10FilterDialog.txtTitle": "前十位自动过滤", - "SSE.Views.Top10FilterDialog.txtTop": "顶部" + "SSE.Views.Top10FilterDialog.txtTop": "顶部", + "SSE.Views.ValueFieldSettingsDialog.txtAverage": "平均值", + "SSE.Views.ValueFieldSettingsDialog.txtBaseField": "基域", + "SSE.Views.ValueFieldSettingsDialog.txtBaseItem": "基本项目", + "SSE.Views.ValueFieldSettingsDialog.txtByField": "%2的%1 ", + "SSE.Views.ValueFieldSettingsDialog.txtCount": "计数", + "SSE.Views.ValueFieldSettingsDialog.txtCountNums": "计数", + "SSE.Views.ValueFieldSettingsDialog.txtCustomName": "自定义名称", + "SSE.Views.ValueFieldSettingsDialog.txtIndex": "索引", + "SSE.Views.ValueFieldSettingsDialog.txtMax": "最大值", + "SSE.Views.ValueFieldSettingsDialog.txtMin": "最小值", + "SSE.Views.ValueFieldSettingsDialog.txtNormal": "没有计算", + "SSE.Views.ValueFieldSettingsDialog.txtPercent": "百分比", + "SSE.Views.ValueFieldSettingsDialog.txtPercentDiff": "百分差", + "SSE.Views.ValueFieldSettingsDialog.txtPercentOfCol": "占所有列的百分比", + "SSE.Views.ValueFieldSettingsDialog.txtPercentOfRow": "占所有的百分比", + "SSE.Views.ValueFieldSettingsDialog.txtPercentOfTotal": "占所有行的百分比", + "SSE.Views.ValueFieldSettingsDialog.txtProduct": "产品", + "SSE.Views.ValueFieldSettingsDialog.txtRunTotal": "总运行" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/de.json b/apps/spreadsheeteditor/main/resources/formula-lang/de.json index 587b04798..2d68627c1 100644 --- a/apps/spreadsheeteditor/main/resources/formula-lang/de.json +++ b/apps/spreadsheeteditor/main/resources/formula-lang/de.json @@ -197,6 +197,7 @@ "INTERCEPT": "ACHSENABSCHNITT", "KURT": "KURT", "LARGE": "KGRÖSSTE", + "LINEST": "RGP", "LOGINV": "LOGINV", "LOGNORM.DIST": "LOGNORM.VERT", "LOGNORM.INV": "LOGNORM.INV", @@ -421,6 +422,7 @@ "ROWS": "ZEILEN", "TRANSPOSE": "MTRANS", "VLOOKUP": "SVERWEIS", + "CELL": "ZELLE", "ERROR.TYPE": "FEHLER.TYP", "ISBLANK": "ISTLEER", "ISERR": "ISTFEHL", diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/de_desc.json b/apps/spreadsheeteditor/main/resources/formula-lang/de_desc.json index e5cd9c1e6..276a6265c 100644 --- a/apps/spreadsheeteditor/main/resources/formula-lang/de_desc.json +++ b/apps/spreadsheeteditor/main/resources/formula-lang/de_desc.json @@ -779,6 +779,10 @@ "a": "(Matrix;k)", "d": "Statistische Funktion - gibt den k-größten Wert eines Datensatzes in einem bestimmten Zellbereich zurück" }, + "LINEST": { + "a": "( known_y's, [known_x's], [const], [stats] )", + "d": "Statistische Funktion - berechnet die Statistik für eine Linie nach der Methode der kleinsten Quadrate, um eine gerade Linie zu berechnen, die am besten an die Daten angepasst ist, und gibt dann eine Matrix zurück, die die Linie beschreibt; da diese Funktion eine Matrix von Werten zurückgibt, muss die Formel als Matrixformel eingegeben werden" + }, "LOGINV": { "a": "(x;Mittelwert;Standabwn)", "d": "Statistische Funktion - gibt Quantile der Lognormalverteilung von Wahrsch zurück, wobei ln(x) mit den Parametern Mittelwert und Standabwn normal verteilt ist" @@ -1687,6 +1691,10 @@ "a": "(Suchkriterium; Matrix; Spaltenindex; [Bereich_Verweis])", "d": "Nachschlage- und Verweisfunktion - führt eine vertikale Suche nach einem Wert in der linken Spalte einer Tabelle oder eines Arrays aus und gibt den Wert in derselben Zeile basierend auf einer angegebenen Spaltenindexnummer zurück" }, + "CELL": { + "a": "(info_type; [reference])", + "d": "Informationsfunktion - werden Informationen zur Formatierung, zur Position oder zum Inhalt einer Zelle zurückgegeben" + }, "ERROR.TYPE": { "a": "(Wert)", "d": "Informationsfunktion - gibt die numerische Darstellung von einem der vorhandenen Fehler zurück" diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/en.json b/apps/spreadsheeteditor/main/resources/formula-lang/en.json index 29491b684..750499087 100644 --- a/apps/spreadsheeteditor/main/resources/formula-lang/en.json +++ b/apps/spreadsheeteditor/main/resources/formula-lang/en.json @@ -197,6 +197,7 @@ "INTERCEPT": "INTERCEPT", "KURT": "KURT", "LARGE": "LARGE", + "LINEST": "LINEST", "LOGINV": "LOGINV", "LOGNORM.DIST": "LOGNORM.DIST", "LOGNORM.INV": "LOGNORM.INV", @@ -421,6 +422,7 @@ "ROWS": "ROWS", "TRANSPOSE": "TRANSPOSE", "VLOOKUP": "VLOOKUP", + "CELL": "CELL", "ERROR.TYPE": "ERROR.TYPE", "ISBLANK": "ISBLANK", "ISERR": "ISERR", diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/en_desc.json b/apps/spreadsheeteditor/main/resources/formula-lang/en_desc.json index cf18dc4c9..3ff0d7372 100644 --- a/apps/spreadsheeteditor/main/resources/formula-lang/en_desc.json +++ b/apps/spreadsheeteditor/main/resources/formula-lang/en_desc.json @@ -779,6 +779,10 @@ "a": "( array , k )", "d": "Statistical function used to analyze the range of cells and return the k-th largest value" }, + "LINEST": { + "a": "( known_y's, [known_x's], [const], [stats] )", + "d": "Statistical function used to calculate the statistics for a line by using the least squares method to calculate a straight line that best fits your data, and then returns an array that describes the line; because this function returns an array of values, it must be entered as an array formula" + }, "LOGINV": { "a": "( x , mean , standard-deviation )", "d": "Statistical function used to return the inverse of the lognormal cumulative distribution function of the given x value with the specified parameters" @@ -1687,6 +1691,10 @@ "a": "( lookup-value , table-array , col-index-num [ , [ range-lookup-flag ] ] )", "d": "Lookup and reference function used to perform the vertical search for a value in the left-most column of a table or an array and return the value in the same row based on a specified column index number" }, + "CELL": { + "a": "(info_type, [reference])", + "d": "Information function used to return information about the formatting, location, or contents of a cell" + }, "ERROR.TYPE": { "a": "(value)", "d": "Information function used to return the numeric representation of one of the existing errors" diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/es.json b/apps/spreadsheeteditor/main/resources/formula-lang/es.json index 7d846c469..654d40d2b 100644 --- a/apps/spreadsheeteditor/main/resources/formula-lang/es.json +++ b/apps/spreadsheeteditor/main/resources/formula-lang/es.json @@ -197,6 +197,7 @@ "INTERCEPT": "INTERSECCION.EJE", "KURT": "CURTOSIS", "LARGE": "K.ESIMO.MAYOR", + "LINEST": "ESTIMACION.LINEAL", "LOGINV": "DISTR.LOG.INV", "LOGNORM.DIST": "DISTR.LOGNORM", "LOGNORM.INV": "INV.LOGNORM", @@ -421,6 +422,7 @@ "ROWS": "FILAS", "TRANSPOSE": "TRANSPONER", "VLOOKUP": "BUSCARV", + "CELL": "CELDA", "ERROR.TYPE": "TIPO.DE.ERROR", "ISBLANK": "ESBLANCO", "ISERR": "ESERR", diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/es_desc.json b/apps/spreadsheeteditor/main/resources/formula-lang/es_desc.json index 27adc8e03..d47c20e49 100644 --- a/apps/spreadsheeteditor/main/resources/formula-lang/es_desc.json +++ b/apps/spreadsheeteditor/main/resources/formula-lang/es_desc.json @@ -779,6 +779,10 @@ "a": "( conjunto , k )", "d": "Función estadística utilizada para analizar el rango de celdas y devolver el mayor valor" }, + "LINEST": { + "a": "( known_y's, [known_x's], [const], [stats] )", + "d": "Función estadística utilizada para calcula las estadísticas de una línea con el método de los 'mínimos cuadrados' para calcular la línea recta que mejor se ajuste a los datos y después devuelve una matriz que describe la línea; debido a que esta función devuelve una matriz de valores, debe ser especificada como fórmula de matriz" + }, "LOGINV": { "a": "(x, media, desviación-estándar)", "d": "Función estadística utilizada para devolver el inverso de la función de distribución acumulativa logarítmica del valor x dado con los parámetros especificados" @@ -1687,6 +1691,10 @@ "a": "(valor-buscar, tabla-conjunto, col-índice-núm[, [rango-buscar-marcador]])", "d": "Función de búsqueda y referencia utilizada para realizar la búsqueda vertical de un valor en la columna de la izquierda de una tabla o conjunto y devolver el valor en la misma fila basado en un número de índice de columna especificado." }, + "CELL": { + "a": "(info_type, [reference])", + "d": "Función de información utilizada para devuelve información sobre el formato, la ubicación o el contenido de una celda" + }, "ERROR.TYPE": { "a": "(valor)", "d": "Función de información utilizada para devolver la representación numérica de uno de los errores existentes" diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/fr.json b/apps/spreadsheeteditor/main/resources/formula-lang/fr.json index 908564786..27e4d86f0 100644 --- a/apps/spreadsheeteditor/main/resources/formula-lang/fr.json +++ b/apps/spreadsheeteditor/main/resources/formula-lang/fr.json @@ -197,6 +197,7 @@ "INTERCEPT": "ORDONNEE.ORIGINE", "KURT": "KURTOSIS", "LARGE": "GRANDE.VALEUR", + "LINEST": "DROITEREG", "LOGINV": "LOI.LOGNORMALE.INVERSE", "LOGNORM.DIST": "LOI.LOGNORMALE.N", "LOGNORM.INV": "LOI.LOGNORMALE.INVERSE.N", @@ -421,6 +422,7 @@ "ROWS": "LIGNES", "TRANSPOSE": "TRANSPOSE", "VLOOKUP": "RECHERCHEV", + "CELL": "CELLULE", "ERROR.TYPE": "TYPE.ERREUR", "ISBLANK": "ESTVIDE", "ISERR": "ESTERR", diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/fr_desc.json b/apps/spreadsheeteditor/main/resources/formula-lang/fr_desc.json index 0a1ec7cad..ec4d915e4 100644 --- a/apps/spreadsheeteditor/main/resources/formula-lang/fr_desc.json +++ b/apps/spreadsheeteditor/main/resources/formula-lang/fr_desc.json @@ -779,6 +779,10 @@ "a": "(matrice , k)", "d": "Fonction statistique utilisée pour analyser une plage de cellules et renvoyer la k-ième plus grande valeur." }, + "LINEST": { + "a": "( known_y's, [known_x's], [const], [stats] )", + "d": "Fonction statistique utilisée pour calcule les statistiques d’une droite par la méthode des moindres carrés afin de calculer une droite s’ajustant au plus près de vos données, puis renvoie une matrice qui décrit cette droite; dans la mesure où cette fonction renvoie une matrice de valeurs, elle doit être tapée sous la forme d’une formule matricielle" + }, "LOGINV": { "a": "(x, moyenne, écart_type)", "d": "Fonction statistique utilisée pour renvoyer l'inverse de la fonction de distribution de x suivant une loi lognormale cumulée en utilisant les paramètres spécifiés" @@ -1687,6 +1691,10 @@ "a": "(valeur_cherchée, table_matrice, no_index_col[, [valeur_proche]])", "d": "Fonction de recherche et référence utilisée pour effectuer la recherche verticale d'une valeur dans la première colonne à gauche d'un tableau et retourner la valeur qui se trouve dans la même ligne à la base d'un numéro d'index de colonne spécifié" }, + "CELL": { + "a": "(info_type, [reference])", + "d": "Fonction d’information utilisée pour renvoie des informations sur la mise en forme, l’emplacement ou le contenu d’une cellule" + }, "ERROR.TYPE": { "a": "(valeur)", "d": "Fonction d’information utilisée pour renvoyer un nombre correspondant à un type d'erreur" diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/it.json b/apps/spreadsheeteditor/main/resources/formula-lang/it.json index 9265e2906..49c97be18 100644 --- a/apps/spreadsheeteditor/main/resources/formula-lang/it.json +++ b/apps/spreadsheeteditor/main/resources/formula-lang/it.json @@ -190,6 +190,7 @@ "INTERCEPT": "INTERCETTA", "KURT": "CURTOSI", "LARGE": "GRANDE", + "LINEST": "REGR.LIN", "LOGINV": "INV.LOGNORM", "LOGNORM.DIST": "DISTRIB.LOGNORM.N", "LOGNORM.INV": "INV.LOGNORM.N", @@ -412,6 +413,7 @@ "ROWS": "RIGHE", "TRANSPOSE": "MATR.TRASPOSTA", "VLOOKUP": "CERCA.VERT", + "CELL": "CELLA", "ERROR.TYPE": "ERRORE.TIPO", "ISBLANK": "VAL.VUOTO", "ISERR": "VAL.ERR", diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/it_desc.json b/apps/spreadsheeteditor/main/resources/formula-lang/it_desc.json index 7c8e0c019..c02793ced 100644 --- a/apps/spreadsheeteditor/main/resources/formula-lang/it_desc.json +++ b/apps/spreadsheeteditor/main/resources/formula-lang/it_desc.json @@ -763,6 +763,10 @@ "a": "(matrice , k)", "d": "Restituisce il k-esimo valore più grande in un set di dati." }, + "LINEST": { + "a": "( known_y's, [known_x's], [const], [stats] )", + "d": "Questa funzione è disponibile per calcola le statistiche per una linea utilizzando il metodo dei minimi quadrati per calcolare la retta che meglio rappresenta i dati e restituisce una matrice che descrive la retta; dal momento che questa funzione restituisce una matrice di valori, deve essere immessa come formula in forma di matrice" + }, "LOGINV": { "a": "(x , media , dev_standard)", "d": "Questa funzione è disponibile per consentire la compatibilità con Excel 2007 e precedenti. Restituisce l'inversa della distribuzione lognormale di x, in cui ln(x) è distribuito normalmente con i parametri Media e Dev_standard" @@ -1651,6 +1655,10 @@ "a": "(val , matrice , indice_col [ , [ intervallo ] ])", "d": "Ricerca il valore in verticale nell'indice" }, + "CELL": { + "a": "(info_type, [reference])", + "d": "Restituisce informazioni sulla formattazione, la posizione o il contenuto di una cella" + }, "ERROR.TYPE": { "a": "(val)", "d": "Restituisce un numero corrispondente a uno dei valori di errore" diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/pl.json b/apps/spreadsheeteditor/main/resources/formula-lang/pl.json index e13c3cf32..04efaff24 100644 --- a/apps/spreadsheeteditor/main/resources/formula-lang/pl.json +++ b/apps/spreadsheeteditor/main/resources/formula-lang/pl.json @@ -197,6 +197,7 @@ "INTERCEPT": "ODCIĘTA", "KURT": "KURTOZA", "LARGE": "MAX.K", + "LINEST": "REGLINP", "LOGINV": "ROZKŁAD.LOG.ODW", "LOGNORM.DIST": "ROZKŁ.LOG", "LOGNORM.INV": "ROZKŁ.LOG.ODWR", @@ -421,6 +422,7 @@ "ROWS": "ILE.WIERSZY", "TRANSPOSE": "TRANSPONUJ", "VLOOKUP": "WYSZUKAJ.PIONOWO", + "CELL": "KOMÓRKA", "ERROR.TYPE": "NR.BŁĘDU", "ISBLANK": "CZY.PUSTA", "ISERR": "CZY.BŁ", diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/ru.json b/apps/spreadsheeteditor/main/resources/formula-lang/ru.json index 05c464d66..02bd0c29a 100644 --- a/apps/spreadsheeteditor/main/resources/formula-lang/ru.json +++ b/apps/spreadsheeteditor/main/resources/formula-lang/ru.json @@ -197,6 +197,7 @@ "INTERCEPT": "ОТРЕЗОК", "KURT": "ЭКСЦЕСС", "LARGE": "НАИБОЛЬШИЙ", + "LINEST": "ЛИНЕЙН", "LOGINV": "ЛОГНОРМОБР", "LOGNORM.DIST": "ЛОГНОРМ.РАСП", "LOGNORM.INV": "ЛОГНОРМ.ОБР", @@ -421,6 +422,7 @@ "ROWS": "ЧСТРОК", "TRANSPOSE": "ТРАНСП", "VLOOKUP": "ВПР", + "CELL": "ЯЧЕЙКА", "ERROR.TYPE": "ТИП.ОШИБКИ", "ISBLANK": "ЕПУСТО", "ISERR": "ЕОШ", diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/ru_desc.json b/apps/spreadsheeteditor/main/resources/formula-lang/ru_desc.json index 5d80d01b2..8587bf7ef 100644 --- a/apps/spreadsheeteditor/main/resources/formula-lang/ru_desc.json +++ b/apps/spreadsheeteditor/main/resources/formula-lang/ru_desc.json @@ -779,6 +779,10 @@ "a": "(массив;k)", "d": "Статистическая функция, анализирует диапазон ячеек и возвращает k-ое по величине значение" }, + "LINEST": { + "a": "( known_y's, [known_x's], [const], [stats] )", + "d": "Статистическая функция, рассчитывает статистику для ряда с применением метода наименьших квадратов, чтобы вычислить прямую линию, которая наилучшим образом аппроксимирует имеющиеся данные и затем возвращает массив, который описывает полученную прямую; поскольку возвращается массив значений, функция должна задаваться в виде формулы массива" + }, "LOGINV": { "a": "(x;среднее;стандартное_отклонение)", "d": "Статистическая функция, возвращает обратное логарифмическое нормальное распределение для заданного значения x с указанными параметрами" @@ -1687,6 +1691,10 @@ "a": "(искомое_значение;таблица;номер_столбца;[интервальный_просмотр])", "d": "Поисковая функция, используется для выполнения вертикального поиска значения в крайнем левом столбце таблицы или массива и возвращает значение, которое находится в той же самой строке в столбце с заданным номером" }, + "CELL": { + "a": "(info_type, [reference])", + "d": "Информационная функция, возвращает сведения о форматировании, расположении или содержимом ячейки" + }, "ERROR.TYPE": { "a": "(значение)", "d": "Информационная функция, возвращает числовое представление одной из существующих ошибок" diff --git a/apps/spreadsheeteditor/main/resources/help/en/Contents.json b/apps/spreadsheeteditor/main/resources/help/en/Contents.json index 284381b41..e48149da1 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Contents.json +++ b/apps/spreadsheeteditor/main/resources/help/en/Contents.json @@ -22,9 +22,13 @@ {"src": "UsageInstructions/MergeCells.htm", "name": "Merge cells" }, {"src": "UsageInstructions/ChangeNumberFormat.htm", "name": "Change number format" }, {"src": "UsageInstructions/InsertDeleteCells.htm", "name": "Manage cells, rows, and columns", "headername": "Editing rows/columns" }, - {"src": "UsageInstructions/SortData.htm", "name": "Sort and filter data" }, - { "src": "UsageInstructions/PivotTables.htm", "name": "Edit pivot tables" }, - {"src": "UsageInstructions/GroupData.htm", "name": "Group data" }, + { "src": "UsageInstructions/SortData.htm", "name": "Sort and filter data" }, + { "src": "UsageInstructions/FormattedTables.htm", "name": "Use formatted tables" }, + {"src": "UsageInstructions/Slicers.htm", "name": "Create slicers for formatted tables" }, + { "src": "UsageInstructions/PivotTables.htm", "name": "Create and edit pivot tables" }, + { "src": "UsageInstructions/GroupData.htm", "name": "Group data" }, + { "src": "UsageInstructions/RemoveDuplicates.htm", "name": "Remove duplicates" }, + {"src": "UsageInstructions/ConditionalFormatting.htm", "name": "Conditional Formatting" }, {"src": "UsageInstructions/InsertFunction.htm", "name": "Insert function", "headername": "Work with functions"}, {"src": "UsageInstructions/UseNamedRanges.htm", "name": "Use named ranges"}, {"src": "UsageInstructions/InsertImages.htm", "name": "Insert images", "headername": "Operations on objects"}, @@ -33,7 +37,8 @@ { "src": "UsageInstructions/InsertTextObjects.htm", "name": "Insert text objects" }, { "src": "UsageInstructions/InsertSymbols.htm", "name": "Insert symbols and characters" }, {"src": "UsageInstructions/ManipulateObjects.htm", "name": "Manipulate objects" }, - {"src": "UsageInstructions/InsertEquation.htm", "name": "Insert equations", "headername": "Math equations"}, + { "src": "UsageInstructions/InsertEquation.htm", "name": "Insert equations", "headername": "Math equations" }, + {"src": "UsageInstructions/MathAutoCorrect.htm", "name": "Use Math AutoCorrect" }, {"src": "HelpfulHints/CollaborativeEditing.htm", "name": "Collaborative spreadsheet editing", "headername": "Spreadsheet co-editing"}, { "src": "UsageInstructions/ViewDocInfo.htm", "name": "View file information", "headername": "Tools and settings" }, {"src": "UsageInstructions/ScaleToFit.htm", "name": "Scale a worksheet"}, diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/amorintm.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/amorintm.htm new file mode 100644 index 000000000..53d530654 --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/amorintm.htm @@ -0,0 +1,44 @@ + + + + FV Function + + + + + + + +
          +
          + +
          +

          FV Function

          +

          The FV function is one of the financial functions. It is used to calculate the future value of an investment based on a specified interest rate and a constant payment schedule.

          +

          The FV function syntax is:

          +

          FV(rate, nper, pmt [, [pv] [,[type]]])

          +

          where

          +

          rate is the interest rate for the investment.

          +

          nper is a number of payments.

          +

          pmt is a payment amount.

          +

          pv is a present value of the payments. It is an optional argument. If it is omitted, the function will assume pv to be 0.

          +

          type is a period when the payments are due. It is an optional argument. If it is set to 0 or omitted, the function will assume the payments to be due at the end of the period. If type is set to 1, the payments are due at the beginning of the period.

          +

          Note: cash paid out (such as deposits to savings) is represented by negative numbers; cash received (such as dividend checks) is represented by positive numbers.

          +

          The numeric values can be entered manually or included into the cell you make reference to.

          +

          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, +
            or right-click 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 FV 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.

          +

          FV Function

          +
          + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/averageif.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/averageif.htm index bcd113f21..5a567cf7d 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/averageif.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/averageif.htm @@ -21,7 +21,7 @@

          cell-range is the selected range of cells to apply the criterion to.

          selection-criteria is the criterion you wish to apply, a value entered manually or included into the cell you make reference to.

          average-range is the selected range of cells you need to find the average in.

          -

          Note: average-range is an optional argument. If it is omitted, the function will find the average in cell-range. +

          Note: average-range is an optional argument. If it is omitted, the function will find the average in cell-range.

          To apply the AVERAGEIF function,

          1. select the cell where you wish to display the result,
          2. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/cell.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/cell.htm new file mode 100644 index 000000000..71e70fdc6 --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/cell.htm @@ -0,0 +1,188 @@ + + + + CELL Function + + + + + + + +
            +
            + +
            +

            CELL Function

            +

            The CELL function is one of the information functions. It is used to return information about the formatting, location, or contents of a cell.

            +

            The CELL function syntax is:

            +

            CELL(info_type, [reference])

            +

            where:

            +

            info_type is a text value that specifies which information about the cell you want to get. This is the required argument. The available values are listed in the table below.

            +

            [reference] is a cell that you want to get information about. If it is omitted, the information is returned for the last changed cell. If the reference argument is specified as a range of cells, the function returns the information for the upper left cell of the range.

            + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
            Text valueType of the information
            "address"Returns the reference to the cell.
            "col"Returns the column number where the cell is located.
            "color"Returns 1 if the cell is formatted in color for negative values; otherwise returns 0.
            "contents"Returns the value that the cell contains.
            "filename"Returns the filename of the file that contains the cell.
            "format"Returns a text value corresponding to the number format of the cell. The text values are listed in the table below.
            "parentheses"Returns 1 if the cell is formatted with parentheses for positive or all values; otherwise returns 0.
            "prefix"Returns the single quotation mark (') if the text in the cell is left aligned, the double quotation mark (") if the text is right aligned, the caret (^) if the text is centered, and an empty text ("") if the cell contains anything else.
            "protect"Returns 0 if the cell is not locked; returns 1 if the cell is locked.
            "row"Returns the row number where the cell is located.
            "type"Returns "b" for an empty cell, "l" for a text value, and "v" for any other value in the cell.
            "width"Returns the width of the cell, rounded off to an integer.
            +

            Below you can see the text values which the function returns for the "format" argument

            + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
            Number formatReturned text value
            GeneralG
            0F0
            #,##0,0
            0.00F2
            #,##0.00,2
            $#,##0_);($#,##0)C0
            $#,##0_);[Red]($#,##0)C0-
            $#,##0.00_);($#,##0.00)C2
            $#,##0.00_);[Red]($#,##0.00)C2-
            0%P0
            0.00%P2
            0.00E+00S2
            # ?/? or # ??/??G
            m/d/yy or m/d/yy h:mm or mm/dd/yyD4
            d-mmm-yy or dd-mmm-yyD1
            d-mmm or dd-mmmD2
            mmm-yyD3
            mm/ddD5
            h:mm AM/PMD7
            h:mm:ss AM/PMD6
            h:mmD9
            h:mm:ssD8
            +

            To apply the CELL function,

            +
              +
            1. select 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 CELL function,
            8. +
            9. enter the required argument,
            10. +
            11. press the Enter button.
            12. +
            +

            The result will be displayed in the selected cell.

            +

            CELL Function

            +
            + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/linest.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/linest.htm new file mode 100644 index 000000000..fa5f0fcf4 --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/linest.htm @@ -0,0 +1,43 @@ + + + + LINEST Function + + + + + + + +
            +
            + +
            +

            LINEST Function

            +

            The LINEST function is one of the statistical functions. It is used to calculate the statistics for a line by using the least squares method to calculate a straight line that best fits your data, and then returns an array that describes the line; because this function returns an array of values, it must be entered as an array formula.

            +

            The LINEST function syntax is:

            +

            LINEST( known_y's, [known_x's], [const], [stats] )

            +

            where:

            +

            known_y's is a known range of y values in the equation y = mx + b. This is the required argument.

            +

            known_x's is a known range of x values in the equation y = mx + b. This is an optional argument. If it is omitted, known_x's is assumed to be the array {1,2,3,...} with the same number of values as known_y's.

            +

            const is a logical value that specifies if you want to set b equal to 0. This is an optional argument. If it is set to TRUE or omitted, b is calculated normally. If it is set to FALSE, b is set equal to 0.

            +

            stats is a logical value that specifies if you want to return additional regression statistics. This is an optional argument. If it is set to TRUE, the function returns the additional regression statistics. If it is set to FALSE or omitted, the function does not return the additional regression statistics.

            +

            To apply the LINEST function,

            +
              +
            1. select 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 LINEST 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 first value of the resulting array will be displayed in the selected cell.

            +

            LINEST 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 9b1e9604f..a5b8ff54b 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/HelpfulHints/AdvancedSettings.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/HelpfulHints/AdvancedSettings.htm @@ -15,7 +15,7 @@

            Advanced Settings of the Spreadsheet Editor

            The Spreadsheet Editor allows you to change its general advanced settings. To access them, open the File tab on the top toolbar and select the Advanced Settings... option. You can also click the View settings View settings icon icon on the right side of the editor header and select the Advanced settings option.

            -

            The general advanced settings are:

            +

            The General advanced settings are:

            • Commenting Display is used to turn on/off the live commenting option: @@ -63,6 +63,15 @@
            • Formula Language is used to select the language for displaying and entering formula names.
            • Regional Settings is used to select the default display format for currency and date and time.
            • Separator is used to specify the characters that you want to use as separators for decimals and thousands. The Use separators based on regional settings option is selected by default. If you want to use custom separators, uncheck this box and enter the necessary characters in the Decimal separator and Thousands separator fields below.
            • +
            • Cut, copy and paste - used to show the Paste Options button when content is pasted. Check the box to enable this feature.
            • +
            • + Macros Settings - used to set macros display with a notification. +
                +
              • Choose Disable all to disable all macros within the spreadsheet;
              • +
              • Show notification to receive notifications about macros within the spreadsheet;
              • +
              • Enable all to automatically run all macros within the spreadsheet.
              • +
              +

            To save the changes you made, click the Apply button.

            diff --git a/apps/spreadsheeteditor/main/resources/help/en/HelpfulHints/KeyboardShortcuts.htm b/apps/spreadsheeteditor/main/resources/help/en/HelpfulHints/KeyboardShortcuts.htm index 246a6e3bb..b33a9f3aa 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/HelpfulHints/KeyboardShortcuts.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/HelpfulHints/KeyboardShortcuts.htm @@ -107,6 +107,12 @@ ⇧ Shift+F10 ⇧ Shift+F10 Open the contextual menu of the selected element. + + + Reset the ‘Zoom’ parameter + Ctrl+0 + ^ Ctrl+0 or ⌘ Cmd+0 + Reset the ‘Zoom’ parameter of the current spreadsheet to a default 100%. Navigation @@ -446,11 +452,47 @@ ⇧ Shift+↹ Tab ⇧ Shift+↹ Tab Complete a cell entry in the selected cell or the formula bar and move to the cell on the left . + + + Insert cells + Ctrl+⇧ Shift+= + Ctrl+⇧ Shift+= + Open the dialog box for inserting new cells within current spreadsheet with an added parameter of a shift to the right, a shift down, inserting an entire row or an entire column. + + + Delete cells + Ctrl+⇧ Shift+- + Ctrl+⇧ Shift+- + Open the dialog box for deleting cells within current spreadsheet with an added parameter of a shift to the left, a shift up, deleting an entire row or an entire column. + + + Insert the current date + Ctrl+; + Ctrl+; + Insert the today date within an active cell. + + + Insert the current time + Ctrl+⇧ Shift+; + Ctrl+⇧ Shift+; + Insert the current time within an active cell. + + + Insert the current date and time + Ctrl+; then ␣ Spacebar then Ctrl+⇧ Shift+; + Ctrl+; then ␣ Spacebar then Ctrl+⇧ Shift+; + Insert the current date and time within an active cell. Functions - + + Insert function + ⇧ Shift+F3 + ⇧ Shift+F3 + Open the dialog box for inserting a new function by choosing from the provided list. + + SUM function Alt+= ⌥ Option+= diff --git a/apps/spreadsheeteditor/main/resources/help/en/HelpfulHints/SpellChecking.htm b/apps/spreadsheeteditor/main/resources/help/en/HelpfulHints/SpellChecking.htm index 2480a20ce..8a7e3655c 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/HelpfulHints/SpellChecking.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/HelpfulHints/SpellChecking.htm @@ -46,6 +46,7 @@
          3. Dictionary language - select one of the available languages from the list. The Dictionary Language on the spell-checking panel will be changed correspondingly.
          4. Ignore words in UPPERCASE - check this option to ignore words written in capital letters, e.g. acronyms like SMB.
          5. Ignore words with numbers - check this option to ignore words containing numbers, e.g. acronyms like B2B.
          6. +
          7. Proofing - used to automatically replace word or symbol typed in the Replace: box or chosen from the list by a new word or symbol displayed in the By: box.

        To save the changes you made, click the Apply button.

        diff --git a/apps/spreadsheeteditor/main/resources/help/en/ProgramInterface/DataTab.htm b/apps/spreadsheeteditor/main/resources/help/en/ProgramInterface/DataTab.htm index 7f63b5105..5f0f04d43 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/ProgramInterface/DataTab.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/ProgramInterface/DataTab.htm @@ -27,6 +27,7 @@ diff --git a/apps/spreadsheeteditor/main/resources/help/en/ProgramInterface/FormulaTab.htm b/apps/spreadsheeteditor/main/resources/help/en/ProgramInterface/FormulaTab.htm index 2ce6d9b80..663357d7e 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/ProgramInterface/FormulaTab.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/ProgramInterface/FormulaTab.htm @@ -29,6 +29,7 @@
      25. quickly access Autosum formulas,
      26. access 10 recently used formulas,
      27. work with formulas classified into categories,
      28. +
      29. work with named ranges,
      30. use the calculation options: calculate the entire workbook, or the current worksheet only.
      31. diff --git a/apps/spreadsheeteditor/main/resources/help/en/ProgramInterface/InsertTab.htm b/apps/spreadsheeteditor/main/resources/help/en/ProgramInterface/InsertTab.htm index 5bc016cc3..e3df354dd 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/ProgramInterface/InsertTab.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/ProgramInterface/InsertTab.htm @@ -25,11 +25,12 @@

        Using this tab, you can:

        diff --git a/apps/spreadsheeteditor/main/resources/help/en/ProgramInterface/LayoutTab.htm b/apps/spreadsheeteditor/main/resources/help/en/ProgramInterface/LayoutTab.htm index 09f85a404..acc1f3c49 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/ProgramInterface/LayoutTab.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/ProgramInterface/LayoutTab.htm @@ -29,6 +29,7 @@
      32. specify a print area,
      33. insert headers or footers,
      34. scale a worksheet,
      35. +
      36. specify if you want to print titles,
      37. align and arrange objects (images, charts, shapes).
      38. diff --git a/apps/spreadsheeteditor/main/resources/help/en/ProgramInterface/PivotTableTab.htm b/apps/spreadsheeteditor/main/resources/help/en/ProgramInterface/PivotTableTab.htm index 586b7fb09..4c4f7abcd 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/ProgramInterface/PivotTableTab.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/ProgramInterface/PivotTableTab.htm @@ -14,12 +14,14 @@

        Pivot Table tab

        -

        Note: this option is available in the online version only.

        -

        The Pivot Table tab allows changing the appearance of an existing pivot table.

        +

        The Pivot Table tab allows creating and editing pivot tables.

        The corresponding window of the Online Spreadsheet Editor:

        Pivot Table tab

        Using this tab, you can:

          +
        • create a new pivot table,
        • +
        • choose the necessary layout for your pivot table,
        • +
        • update the pivot table if you change the data in your source data set,
        • select an entire pivot table with a single click,
        • highlight certain rows/columns by applying a specific formatting style to them,
        • choose one of the predefined tables styles.
        • diff --git a/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/AddBorders.htm b/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/AddBorders.htm index 8fd16e010..141b61650 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/AddBorders.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/AddBorders.htm @@ -28,7 +28,17 @@
        • Color Fill - select this option to specify the solid color you want to fill the selected cells with.

          Color Fill

          -

          Click the colored box below and select one of the theme colors, or standard colors in the palette, or specify a custom color.

          +

          Click the colored box below and select one of the following palettes:

          +

          Palette

          +
            +
          • Theme Colors - the colors that correspond to the selected color scheme of the spreadsheet.
          • +
          • Standard Colors - a set of default colors. The selected color scheme does not affect them.
          • +
          • + Custom Color - click this caption if the required color is missing among the available palettes. Select the required colors range moving the vertical color slider and set a specific color dragging the color picker within the large square color field. Once you select a color with the color picker, the appropriate RGB and sRGB color values will be displayed in the fields on the right. You can also define a color on the base of the RGB color model by entering the corresponding numeric values into the R, G, B (red, green, blue) fields or enter the sRGB hexadecimal code into the field marked with the # sign. The selected color appears in the New preview box. If the object was previously filled with any custom color, this color is displayed in the Current box so you can compare the original and modified colors. When the color is defined, click the Add button: +

            Palette - Custom Color

            +

            The custom color will be applied to the selected element and added to the Custom color palette.

            +
          • +
        • Gradient Fill - fill the selected cells with two colors which smoothly change from one to the other. diff --git a/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/AddHyperlinks.htm b/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/AddHyperlinks.htm index c639cae43..48c93b1dc 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/AddHyperlinks.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/AddHyperlinks.htm @@ -24,7 +24,8 @@
        • Select the required link type:

          Use the External Link option and enter a URL in the format http://www.example.com in the Link to field below if you need to add a hyperlink leading to an external website.

          Hyperlink Settings window

          -

          Use the Internal Data Range option and select a worksheet and a cell range in the fields below if you need to add a hyperlink leading to a certain cell range in the same spreadsheet.

          +

          Use the Internal Data Range option, select a worksheet and a cell range in the fields below, or a previously Named range if you need to add a hyperlink leading to a certain cell range in the same spreadsheet.

          +

          You can also generate an external link which will lead to a particular cell or a range of cells by clicking the Get Link button.

          Hyperlink Settings window

        • Display - enter a text that will become clickable and lead to the web address specified in the upper field. diff --git a/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/AlignText.htm b/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/AlignText.htm index 9d07a8313..8fe2034d3 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/AlignText.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/AlignText.htm @@ -36,15 +36,17 @@
        • use the Horizontal Text Horizontal Text icon option to place the text horizontally (default option),
        • use the Angle Counterclockwise Angle Counterclockwise option to place the text from the bottom left corner to the top right corner of a cell,
        • use the Angle Clockwise Angle Clockwise option to place the text from the top left corner to the bottom right corner of a cell,
        • +
        • use the Vertical text Rotate Text Up option to place the text from vertically,
        • use the Rotate Text Up Rotate Text Up option to place the text from bottom to top of a cell,
        • use the Rotate Text Down Rotate Text Down option to place the text from top to bottom of a cell.

          To rotate the text by an exactly specified angle, click the Cell settings Cell settings icon icon on the right sidebar and use the Orientation. Enter the necessary value measured in degrees into the Angle field or adjust it using the arrows on the right.

        -
      39. Fit your data to the column width clicking the Wrap text Wrap text icon icon. +
      40. Fit your data to the column width by clicking the Wrap text Wrap text icon icon on the Home tab of the top toolbar or by checking the Wrap text checkbox on the right sidebar.

        Note: if you change the column width, data wrapping adjusts automatically.

      41. +
      42. Fit your data to the cell width by checking the Shrink to fit on the right sidebar. Using this function, the contents of the cell will be reduced in size to such an extent that it can fit in it.
      43. diff --git a/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/ConditionalFormatting.htm b/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/ConditionalFormatting.htm new file mode 100644 index 000000000..fa91d9d12 --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/ConditionalFormatting.htm @@ -0,0 +1,72 @@ + + + + Conditional Formatting + + + + + + + +
        +
        + +
        +

        Conditional Formatting

        +

        Note: the ONLYOFFICE Spreadsheet Editor currently does not support creating and editing conditional formatting rules.

        +

        Conditional formatting allows you to apply various formatting styles (color, font, decoration, gradient) to cells to work with data on the spreadsheet: highlight or sort through and display the data that meets the needed criteria. The criteria are defined by a number of rule types. The ONLYOFFICE Spreadsheet Editor currently does not support creating and editing conditional formatting rules.

        +

        Rule types supported in the ONLYOFFICE Spreadsheet Editor View mode are cell value (+formula), top/bottom and above/below average value, unique values and duplicates, icon sets, data bars, gradient (color scale) and formula-based rules.

        +
          +
        • Cell value is used to find needed numbers, dates, and text within the spreadsheet. For example, you need to see sales for the current month (pink highlight), products named “Grain” (yellow highlight), and product sales amounting to less than $500 (blue highlight). +

          Cell value

          +
        • +
        • Cell value with a formula is used to display a dynamically changed number or text value within the spreadsheet. For example, you need to find products named “Grain”, “Produce”, or “Dairy” (yellow highlight), or product sales amounting to a value between $100 and $500 (blue highlight). +

          Cell value with a formula

          +
        • +
        • Top and bottom value / Above and below average value is used to find and display the top and bottom values as well as above and below average values within the spreadsheet. For example, you need to see top values for fees in the cities you visited (orange highlight), the cities where the attendance was above average (green highlight) and bottom values for cities where you sold a small quantity of books (blue highlight). +

          Top and bottom value / Above and below average value

          +
        • +
        • Unique and duplicates is used to display duplicate values within the spreadsheet and the cell range defined by the conditional formatting. For example, you need to find duplicate contacts. Enter the drop-down menu. The number of duplicates is shown to the right of the contact name. If you check the box, only the duplicates will be shown in the list. +

          Unique and duplicates

          +
        • +
        • Icon set is used to show the data by displaying a corresponding icon in the cell that meets the criteria. The Spreadsheet Editor supports various icon sets. Below you will find examples for the most common icon set conditional formatting cases. +
            +
          • Instead of numbers and percent values you see formatted cells with corresponding arrows showing you revenue achievement in the “Status” column and the dynamics for trends in the future in the “Trend” column. +

            Icon set

            +
          • +
          • Instead of cells with rating numbers ranging from 1 to 5, the conditional formatting tool displays corresponding icons from the legend map at the top for each bike in the rating list. +

            Icon set

            +
          • +
          • Instead of manually comparing monthly profit dynamics data, the formatted cells have a corresponding red or green arrow. +

            Icon set

            +
          • +
          • Use the traffic lights system (red, yellow, and green circles) to visualize sales dynamics. +

            Icon set

            +
          • +
          +
        • +
        • + Data bars are used to compare values in the form of a diagram bar. For example, compare mountain heights by displaying their default value in meters (green bar) and the same value in 0 to 100 percent range (yellow bar); percentile when extreme values slant the data (light blue bar); bars only instead of numbers (blue bar); two-column data analysis to see both numbers and bars (red bar). +

          Data bars

          +
        • +
        • + Gradient, or color scale, is used to highlight values within the spreadsheet through a gradient scale. The columns from “Dairy” through “Beverage” display data via a two color scale with variation from yellow to red; the “Total Sales” column displays data via a three color scale from the smallest amount in red to the largest amount in blue. +

          Gradient

          +
        • +
        • + Formula-based formatting uses various formulas to filter data as per specific needs. For example, you can shade alternate rows, +

          Formula-based

          +

          compare with a reference value (here it is $55) and show if it is higher (green) or lower (red),

          +

          Formula-based

          +

          highlight the rows that meet the needed criteria (see what goals you shall achieve this month, in this case it is October),

          +

          Formula-based

          +

          and highlight unique rows only

          +

          Formula-based

          +
        • +
        +

        Please note that this guide contains graphic information from the Microsoft Office Conditional Formatting Samples and guidelines workbook. Try the aforementioned rules display by downloading the workbook and opening it in the Spreadsheet Editor.

        + +
        + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/CopyPasteData.htm b/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/CopyPasteData.htm index 513789b5a..b35cdf1e7 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/CopyPasteData.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/CopyPasteData.htm @@ -29,6 +29,7 @@
      44. Ctrl+V key combination for pasting.
      45. Note: instead of cutting and pasting data within the same worksheet you can select the required cell/cell range, hover the mouse cursor over the selection border so that it turns into the Arrow Arrow icon icon and drag and drop the selection to the necessary position.

        +

        To enable / disable the automatic appearance of the Paste Special button after pasting, go to the File tab > Advanced Settings... and check / uncheck the Cut, copy and paste checkbox.

        Use the Paste Special feature

        Once the copied data is pasted, the Paste Special Paste Special button appears next to the lower right corner of the inserted cell/cell range. Click this button to select the necessary paste option.

        When pasting a cell/cell range with formatted data, the following options are available:

        @@ -77,7 +78,10 @@
      46. Select the necessary cell or column that contains data with delimiters.
      47. Switch to the Data tab.
      48. Click the Text to columns button on the top toolbar. The Text to Columns Wizard opens.
      49. -
      50. In the Delimiter drop-down list, select the delimiter used in the delimited data, preview the result in the field below and click OK.
      51. +
      52. In the Delimiter drop-down list, select the delimiter used in the delimited data.
      53. +
      54. Click the Advanced button to open the Advanced Settings window in which you can specify the Decimal and Thousands separators. +

        Separator settings window

      55. +
      56. Preview the result in the field below and click OK.

      After that, each text value separated by the delimiter will be located in a separate cell.

      If there is some data in the cells to the right of the column you want to split, the data will be overwritten.

      diff --git a/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/FormattedTables.htm b/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/FormattedTables.htm new file mode 100644 index 000000000..5d915ad0e --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/FormattedTables.htm @@ -0,0 +1,83 @@ + + + + Use formatted tables + + + + + + + +
      +
      + +
      +

      Use formatted tables

      +

      Create a new formatted table

      +

      To make it easier for you to work with data, the Spreadsheet Editor allows you to apply a table template to the selected cell range and automatically enable 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 on the Home tab of the top toolbar.
      4. +
      5. select the required template in the gallery,
      6. +
      7. in the opened pop-up window, check the cell range to be formatted as a table,
      8. +
      9. check the Title if you wish the table headers to be included in the selected cell range, otherwise the header row will be added at the top while the selected cell range will be moved one row down,
      10. +
      11. click the OK button to apply the selected template.
      12. +
      +

      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.

      +

      It's also possible to insert a formatted table using the Table button on the Insert tab. In this case, the default table template is applied.

      +

      Note: once you create a new formatted table, the 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.

      +

      If you enter a new value in the cell below the last row of the table (if the table does not have the Total row) or in the cell to the right of the last column of the table, the formatted table will be automatically extended to include a new row or column. If you do not want to expand the table, click the Paste special Paste Special button that will appear and select the Undo table autoexpansion option. Once you undo this action, the Redo table autoexpansion option will be available in this menu.

      +

      Undo table autoexpansion

      +

      Select rows and columns

      +

      To select an entire row in the formatted table, move the mouse cursor over the left border of the table row until it turns into the black arrow Select row, then left-click.

      +

      Select row

      +

      To select an entire column in the formatted table, move the mouse cursor over the top edge of the column header until it turns into the black arrow Select column, then left-click. If you click once, the column data will be selected (as it is shown on the image below); if you click twice, the entire column including the header will be selected.

      +

      Select column

      +

      To select an entire formatted table, move the mouse cursor over the upper left corner of the formatted table until it turns into the diagonal black arrow Select table, then left-click.

      +

      Select table

      +

      Edit formatted tables

      +

      Some of the table settings can be changed using the Table settings tab of the right sidebar that will open 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 specific formatting to them, or highlight different rows/columns with different background colors to clearly distinguish them. The following options are available:

      +
        +
      • Header - allows you to display the header row.
      • +
      • Total - adds the Summary row at the bottom of the table. +

        Note: if this option is selected, you can also select a function to calculate the summary values. Once you select a cell in the Summary row, the Drop-Down Arrow button will be available to the right of the cell. Click it and choose the necessary function from the list: Average, Count, Max, Min, Sum, StdDev, or Var. The More functions option allows you to open the Insert Function window and choose any other function. If you choose the None option, the currently selected cell in the Summary row will not display a summary value for this column.

        +

        Summary

        +
      • +
      • Banded - enables the background color alternation for odd and even rows.
      • +
      • Filter button - allows you to display the drop-down arrows Drop-Down Arrow in each cell of the header row. This option is only available when the Header option is selected.
      • +
      • First - emphasizes the leftmost column in the table with special formatting.
      • +
      • Last - emphasizes the rightmost column in the table with special formatting.
      • +
      • Banded - enables the background color alternation for odd and even columns.
      • +
      +

      + The Select From Template section allows you to choose one of the predefined tables styles. Each template combines certain formatting parameters, such as a background color, border style, row/column banding, etc. + Depending on the options checked in the Rows and/or Columns sections above, the templates set will be displayed differently. For example, if you've checked the Header option in the Rows section and the Banded option in the Columns section, the displayed templates list will include only templates with the header row and banded columns enabled: +

      +

      Templates list

      +

      If you want to remove the current table style (background color, borders, etc.) without removing the table itself, apply the None template from the template list:

      +

      None templates

      +

      The Resize table section allows you to change the cell range which the table formatting is applied to. Click the Select Data button - a new pop-up window will open. Change the link to the cell range in the entry field or select the necessary cell range in the worksheet with the mouse and click the OK button.

      +

      Note: The headers must remain in the same row, and the resulting table range must overlap the original table range.

      +

      Resize table

      +

      The Rows & Columns Rows & Columns section allows you to perform the following operations:

      +
        +
      • Select a row, column, all columns data excluding the header row, or the entire table including the header row.
      • +
      • Insert a new row above or below the selected one as well as a new column to the left or to the right of the selected one.
      • +
      • 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 Remove duplicates Remove duplicates option can be used if you want to remove duplicate values from the formatted table. For more details on removing duplicates, please refer to this page.

      +

      The Convert to range Convert to range option 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 on the right sidebar will be unavailable.

      +

      The Insert slicer Insert slicer option is used to create a slicer for the formatted table. For more details on working with slicers, please refer to this page.

      +

      The Insert pivot table Insert pivot table option is used to create a pivot table on the base of the formatted table. For more details on working with pivot tables, please refer to this page.

      +

      Adjust formatted table advanced settings

      +

      To change the advanced table properties, use the Show advanced settings link on the right sidebar. The 'Table - Advanced Settings' window will open:

      +

      Table - Advanced Settings

      +

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

      + +
      + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/InsertAutoshapes.htm b/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/InsertAutoshapes.htm index d9ba3a7b3..67a00b091 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/InsertAutoshapes.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/InsertAutoshapes.htm @@ -50,7 +50,7 @@
    19. Picture or Texture - select this option to use an image or a predefined texture as the shape background.

      Picture or Texture Fill

        -
      • If you wish to use an image as the shape background, you can add an image From File selecting it on the hard disc drive of your computer or From URL inserting the appropriate URL address into the opened window.
      • +
      • If you wish to use an image as the shape background, you can click the Select Picture button and add an image From File selecting it on the hard disc drive of your computer, From Storage using your ONLYOFFICE file manager, or From URL inserting the appropriate URL address into the opened window.
      • If you wish to use a texture as the shape background, open the From Texture menu and select the necessary texture preset.

        Currently, the following textures are available: canvas, carton, dark fabric, grain, granite, grey paper, knit, leather, brown paper, papyrus, wood.

      • @@ -133,7 +133,7 @@
      • Arrows - this option group is available if a shape from the Lines shape group is selected. It allows you to set the arrow Start and End Style and Size by selecting the appropriate option from the dropdown lists.

      Shape - Advanced Settings

      -

      The Text Padding tab allows you to change the Top, Bottom, Left and Right internal margins of the autoshape (i.e. the distance between the text within the shape and the autoshape borders).

      +

      The Text Box tab allows you to Resize shape to fit text, Allow text to overflow shape or change the Top, Bottom, Left and Right internal margins of the autoshape (i.e. the distance between the text within the shape and the autoshape borders).

      Note: this tab is only available if text is added within the autoshape, otherwise the tab is disabled.

      Shape Properties - Columns tab

      The Columns tab allows you to add columns of text within the autoshape specifying the necessary Number of columns (up to 16) and Spacing between columns. Once you click OK, the text that already exists or any other text you enter within the autoshape will appear in columns and will flow from one column to another one.

      @@ -141,7 +141,7 @@

      The Cell Snapping tab contains the following parameters:

      • Move and size with cells - this option allows you to snap the shape to the cell behind it. If the cell moves (e.g. if you insert or delete some rows/columns), the shape will be moved together with the cell. If you increase or decrease the width or height of the cell, the shape will change its size as well.
      • -
      • Move but don't size with cells - this option allows you to snap the shape of the cell behind it preventing the image from being resized. If the cell moves, the shape will be moved together with the cell, but if you change the cell size, the shape dimensions remain unchanged.
      • +
      • Move but don't size with cells - this option allows you to snap the shape to the cell behind it preventing the shape from being resized. If the cell moves, the shape will be moved together with the cell, but if you change the cell size, the shape dimensions remain unchanged.
      • Don't move or size with cells - this option allows you to prevent the shape from being moved or resized if the cell position or size was changed.

      Shape - Advanced Settings: Alternative Text

      diff --git a/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/InsertChart.htm b/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/InsertChart.htm index 54ff85682..d43fa9a7b 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/InsertChart.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/InsertChart.htm @@ -43,11 +43,14 @@
    20. in the opened Chart - Advanced Settings window make all the necessary changes,
    21. click the OK button to apply the changes and close the window.
    -

    The description of the chart settings that can be edited using the Chart - Advanced Settings window you can find below.

    +

    Below you can find the description of the chart settings that can be edited using the Chart - Advanced Settings window.

    The Type & Data tab allows you to change the chart type as well as the data you wish to use to create a chart.

    Chart - Advanced Settings

    @@ -180,7 +183,7 @@

    The Cell Snapping tab contains the following parameters:

    Chart - Advanced Settings: Cell Snapping

    @@ -196,6 +199,10 @@ When you select a vertical or horizontal axis or gridlines, the stroke settings are only available on the Shape Settings tab: color, width and type. For more details on how to work with shape colors, fills and stroke, please refer to this page.

    Note: the Show shadow option is also available on the Shape settings tab, but it is disabled for chart elements.

    +

    If you need to resize chart elements, left-click to select the needed element and drag one of 8 white squares Square icon located along the perimeter of the element.

    +

    Resize chart elements

    +

    To change the position of the element, left-click on it, make sure your cursor changed to Arrow, hold the left mouse button and drag the element to the needed position.

    +

    Move chart elements

    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. Drag the cursor without releasing the mouse button to change the 3D chart orientation.

    3D chart

    diff --git a/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/InsertDeleteCells.htm b/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/InsertDeleteCells.htm index d5cb9e4b3..05c5031b6 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/InsertDeleteCells.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/InsertDeleteCells.htm @@ -19,13 +19,13 @@

    To insert a blank cell to the left of the selected cell:

    1. right-click the cell to the left of which you wish to insert a new one,
    2. -
    3. click the Insert cells Insert cells icon icon situated at the Home tab of the top toolbar or select the Insert item from the right-click menu and use the Shift cells right option.
    4. +
    5. click the Insert cells Insert cells icon icon situated at the Home tab of the top toolbar or select the Insert item from the right-click menu and use the Shift Cells Right option.

    The program will shift the selected cell to the right to insert a blank one.

    To insert a blank cell above the selected cell:

    1. right-click the cell above which you wish to insert a new one,
    2. -
    3. click the Insert cells Insert cells icon icon situated on the Home tab of the top toolbar or select the Insert item from the right-click menu and use the Shift cells down option.
    4. +
    5. click the Insert cells Insert cells icon icon situated on the Home tab of the top toolbar or select the Insert item from the right-click menu and use the Shift Cells Down option.

    The program will shift the selected cell down to insert a blank one.

    To insert an entire row:

    @@ -34,7 +34,7 @@

    Note: to insert multiple rows, select the required number of rows.

  • click the Insert cells Insert cells icon icon situated on the Home tab of the top toolbar and use the Entire row option, -
    or right-click the selected cell, select the Insert item from the right-click menu, then choose the Entire row option, +
    or right-click the selected cell, select the Insert item from the right-click menu, then choose the Entire Row option,
    or right-click the selected row(s) and use the Insert Top option from the right-click menu.
  • @@ -45,11 +45,13 @@

    Note: to insert multiple columns, select the required number of columns.

  • click the Insert cells Insert cells icon icon situated on the Home tab of the top toolbar and use the Entire column option, -
    or right-click the selected cell, select the Insert item from the right-click menu, then choose the Entire column option, +
    or right-click the selected cell, select the Insert item from the right-click menu, then choose the Entire Column option,
    or right-click the selected column(s) and use the Insert Left option from the right-click menu.
  • The program will shift the selected column to the right to insert a blank one.

    +

    You can also use the Ctrl+Shift+= keyboard shortcut to open the dialog box for inserting new cells, select the Shift Cells Right, Shift Cells Down, Entire Row, or Entire Column option and click OK.

    +

    Insert cells window

    Hide and show rows and columns

    To hide a row or column:

      @@ -94,12 +96,14 @@
      1. select cells, rows, or columns you wish to delete,
      2. click the Delete cells Delete cells icon icon situated on the Home tab of the top toolbar or select the Delete item from the right-click menu and select the appropriate option: -
        if you use the Shift cells left option, a cell to the right of the deleted one will be moved to the left; -
        if you use the Shift cells up option, a cell below the deleted one will be moved up; -
        if you use the Entire row option, a row below the selected one will be moved up; -
        if you use the Entire column option, a column to the right of the deleted one will be moved to the left; +
        if you use the Shift Cells Left option, a cell to the right of the deleted one will be moved to the left; +
        if you use the Shift Cells Up option, a cell below the deleted one will be moved up; +
        if you use the Entire Row option, a row below the selected one will be moved up; +
        if you use the Entire Column option, a column to the right of the deleted one will be moved to the left;
      +

      You can also use the Ctrl+Shift+- keyboard shortcut to open the dialog box for deleting cells, select the Shift Cells Left, Shift Cells Up, Entire Row, or Entire Column option and click OK.

      +

      Delete cells window

      You can always restore the deleted data using the Undo Undo icon icon on the top toolbar.

      diff --git a/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/InsertEquation.htm b/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/InsertEquation.htm index 298f804f3..e2ea635e3 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/InsertEquation.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/InsertEquation.htm @@ -33,7 +33,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 Equation icon Equation menu on the Insert tab of the top toolbar,
      • +
      • insert a special character using the Symbols palette from the Equation icon Equation menu on the Insert tab of the top toolbar or typing them from the keyboard (see the Math AutoСorrect option description),
      • 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.

      diff --git a/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/InsertFunction.htm b/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/InsertFunction.htm index b46096c27..88599862c 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/InsertFunction.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/InsertFunction.htm @@ -22,53 +22,61 @@
    1. Max is used to analyze the range of data and find the largest number.
    2. Sum is used to add all the numbers in the selected range ignoring the empty cells or those contaning text.
    3. -

      The results of these calculations are displayed in the right lower corner on the status bar.

      +

      The results of these calculations are displayed in the right lower corner on the status bar. You can manage the status bar by right-clicking on it and choosing only those functions to display that you need.

      Basic Calculations

      To perform any other calculations, you can insert the required formula manually using the common mathematical operators or insert a predefined formula - Function.

      -

      The abilities to work with Functions are accessible from both the Home and Formula tab. On the Home tab, you can use the Insert function Insert function icon button to add one of the most commonly used functions (SUM, MIN, MAX, COUNT) or open the Insert Function window that contains all the available functions classified by category.

      -

      Formula tab

      +

      The abilities to work with Functions are accessible from both the Home and Formula tab or by pressing Shift+F3 key combination. On the Home tab, you can use the Insert function Insert function icon button to add one of the most commonly used functions (SUM, AVERAGE, MIN, MAX, COUNT) or open the Insert Function window that contains all the available functions classified by category. Use the search box to find the exact function by its name.

      +

      Insert Function

      On the Formula tab you can use the following buttons:

      +

      Formula tab

      • Function - to open the Insert Function window that contains all the available functions classified by category.
      • Autosum - to quickly access the SUM, MIN, MAX, COUNT functions. When you select a functions from this group, it automatically performs calculations for all cells in the column above the selected cell so that you don't need to enter arguments.
      • Recently used - to quickly access 10 recently used functions.
      • Financial, Logical, Text and data, Date and time, Lookup and references, Math and trigonometry - to quickly access functions that belongs to the corresponding categories.
      • More functions - to access the functions from the following groups: Database, Engineering, Information and Statistical.
      • +
      • Named ranges - to open the Name Manager, or define a new name, or paste a name as a function argument. For more details, you can refer to this page.
      • Calculation - to force the program to recalculate functions.
      -

      To insert a function,

      +

      To insert a function,

        -
      1. select a cell where you wish to insert a function,
      2. -
      3. proceed in one of the following ways: +
      4. Select a cell where you wish to insert a function.
      5. +
      6. Proceed in one of the following ways:
          -
        • switch to the Formula tab and use the buttons available on the top toolbar to access a function from a specific group, or use the Additional option from the menu to open the Insert Function window;
        • -
        • switch to the Home tab, click the Insert function Insert function icon icon, select one of the commonly used functions (SUM, MIN, MAX, COUNT) or click the Additional option,
        • -
        • right-click within the selected cell and select the Insert Function option from the contextual menu,
        • -
        • click the Function icon icon before the formula bar,
        • +
        • switch to the Formula tab and use the buttons available on the top toolbar to access a function from a specific group, then click the necessary function to open the Function Arguments wizard. You can also use the Additional option from the menu or click the Function icon Function button on the top toolbar to open the Insert Function window.
        • +
        • switch to the Home tab, click the Insert function Insert function icon icon, select one of the commonly used functions (SUM, AVERAGE, MIN, MAX, COUNT) or click the Additional option to open the Insert Function window.
        • +
        • right-click within the selected cell and select the Insert Function option from the contextual menu.
        • +
        • click the Function icon icon before the formula bar.
      7. -
      8. in the opened Insert Function window, select the necessary function group, then choose the required function from the list and click OK.
      9. -
      10. enter the function arguments either manually or by dragging to select a cell range to be included as an argument. If the function requires several arguments, they must be separated by commas. -

        Note: generally, numeric values, logical values (TRUE, FALSE), text values (must be quoted), cell references, cell range references, names assigned to ranges and other functions can be used as function arguments.

        +
      11. In the opened Insert Function window, enter its name in the search box or select the necessary function group, then choose the required function from the list and click OK. +

        Once you click the necessary function, the Function Arguments window will open:

        +

        Function Arguments

      12. -
      13. Press the Enter key.
      14. +
      15. + In the opened Function Arguments window, enter the necessary values of each argument. +

        You can enter the function arguments either manually or by clicking the Source data range icon icon and selecting a cell or cell range to be included as an argument.

        +

        Note: generally, numeric values, logical values (TRUE, FALSE), text values (must be quoted), cell references, cell range references, names assigned to ranges and other functions can be used as function arguments.

        +

        The function result will be displayed below.

        +
      16. +
      17. When all the agruments are specified, click the OK button in the Function Arguments window.

      To enter a function manually using the keyboard,

        -
      1. select a cell,
      2. -
      3. enter the equal sign (=) +
      4. Select a cell.
      5. +
      6. Enter the equal sign (=).

        Each formula must begin with the equal sign (=).

      7. -
      8. enter the function name +
      9. Enter the function name.

        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. If you hover the mouse pointer over a formula, a tooltip with the formula description will be displayed. You can select the necessary formula from the list and insert it by clicking it or pressing the Tab key.

      10. -
      11. enter the function arguments +
      12. Enter the function arguments either manually or by dragging to select a cell range to be included as an argument. If the function requires several arguments, they must be separated by commas.

        Arguments must be enclosed into parentheses. The opening parenthesis '(' is added automatically if you select a function from the list. When you enter arguments, a tooltip that contains the formula syntax is also displayed.

        Function tooltip -

        +

      13. -
      14. when all the agruments are specified, enter the closing parenthesis ')' and press Enter.
      15. +
      16. When all the agruments are specified, enter the closing parenthesis ')' and press Enter.

      If you enter new data or change the values used as arguments, recalculation of functions is performed automatically by default. You can force the program to recalculate functions by using the Calculation button on the Formula tab. Click the Calculation icon Calculation button to recalculate the entire workbook, or click the arrow below the button and choose the necessary option from the menu: Calculate workbook or Calculate current sheet.

      You can also use the following key combinations: F9 to recalculate the workbook, Shift +F9 to recalculate the current worksheet.

      @@ -87,7 +95,7 @@ Statistical Functions Used to analyze data: finding the average value, the largest or smallest values in a cell range. - AVEDEV; AVERAGE; AVERAGEA; AVERAGEIF; AVERAGEIFS; BETADIST; BETA.DIST; BETA.INV; BETAINV; BINOMDIST; BINOM.DIST; BINOM.DIST.RANGE; BINOM.INV; CHIDIST; CHIINV; CHISQ.DIST; CHISQ.DIST.RT; CHISQ.INV; CHISQ.INV.RT; CHITEST; CHISQ.TEST; CONFIDENCE; CONFIDENCE.NORM; CONFIDENCE.T; CORREL; COUNT; COUNTA; COUNBLANK; COUNTIF; COUNTIFS; COVAR; COVARIANCE.P; COVARIANCE.S; CRITBINOM; DEVSQ; EXPON.DIST; EXPONDIST; F.DIST; FDIST; F.DIST.RT; F.INV; FINV; F.INV.RT; FISHER; FISHERINV; FORECAST; FORECAST.ETS; FORECAST.ETS.CONFINT; FORECAST.ETS.SEASONALITY; FORECAST.ETS.STAT; FORECAST.LINEAR; FREQUENCY; FTEST; F.TEST; GAMMA; GAMMA.DIST; GAMMADIST; GAMMA.INV; GAMMAINV; GAMMALN; GAMMALN.PRECISE; GAUSS; GEOMEAN; HARMEAN; HYPGEOMDIST; HYPGEOM.DIST; INTERCEPT; KURT; LARGE; LOGINV; LOGNORM.DIST; LOGNORM.INV; LOGNORMDIST; MAX; MAXA; MAXIFS; MEDIAN; MIN; MINA; MINIFS; MODE; MODE.MULT; MODE.SNGL; NEGBINOMDIST; NEGBINOM.DIST; NORMDIST; NORM.DIST; NORMINV; NORM.INV; NORMSDIST; NORM.S.DIST; NORMSINV; NORM.S.INV; PEARSON; PERCENTILE; PERCENTILE.EXC; PERCENTILE.INC; PERCENTRANK; PERCENTRANK.EXC; PERCENTRANK.INC; PERMUT; PERMUTATIONA; PHI; POISSON; POISSON.DIST; PROB; QUARTILE; QUARTILE.EXC; QUARTILE.INC; RANK; RANK.AVG; RANK.EQ; RSQ; SKEW; SKEW.P; SLOPE; SMALL; STANDARDIZE; STDEV; STDEV.S; STDEVA; STDEVP; STDEV.P; STDEVPA; STEYX; TDIST; T.DIST; T.DIST.2T; T.DIST.RT; T.INV; T.INV.2T; TINV; TRIMMEAN; TTEST; T.TEST; VAR; VARA; VARP; VAR.P; VAR.S; VARPA; WEIBULL; WEIBULL.DIST; ZTEST; Z.TEST + AVEDEV; AVERAGE; AVERAGEA; AVERAGEIF; AVERAGEIFS; BETADIST; BETA.DIST; BETA.INV; BETAINV; BINOMDIST; BINOM.DIST; BINOM.DIST.RANGE; BINOM.INV; CHIDIST; CHIINV; CHISQ.DIST; CHISQ.DIST.RT; CHISQ.INV; CHISQ.INV.RT; CHITEST; CHISQ.TEST; CONFIDENCE; CONFIDENCE.NORM; CONFIDENCE.T; CORREL; COUNT; COUNTA; COUNBLANK; COUNTIF; COUNTIFS; COVAR; COVARIANCE.P; COVARIANCE.S; CRITBINOM; DEVSQ; EXPON.DIST; EXPONDIST; F.DIST; FDIST; F.DIST.RT; F.INV; FINV; F.INV.RT; FISHER; FISHERINV; FORECAST; FORECAST.ETS; FORECAST.ETS.CONFINT; FORECAST.ETS.SEASONALITY; FORECAST.ETS.STAT; FORECAST.LINEAR; FREQUENCY; FTEST; F.TEST; GAMMA; GAMMA.DIST; GAMMADIST; GAMMA.INV; GAMMAINV; GAMMALN; GAMMALN.PRECISE; GAUSS; GEOMEAN; HARMEAN; HYPGEOMDIST; HYPGEOM.DIST; INTERCEPT; KURT; LARGE; LINEST; LOGINV; LOGNORM.DIST; LOGNORM.INV; LOGNORMDIST; MAX; MAXA; MAXIFS; MEDIAN; MIN; MINA; MINIFS; MODE; MODE.MULT; MODE.SNGL; NEGBINOMDIST; NEGBINOM.DIST; NORMDIST; NORM.DIST; NORMINV; NORM.INV; NORMSDIST; NORM.S.DIST; NORMSINV; NORM.S.INV; PEARSON; PERCENTILE; PERCENTILE.EXC; PERCENTILE.INC; PERCENTRANK; PERCENTRANK.EXC; PERCENTRANK.INC; PERMUT; PERMUTATIONA; PHI; POISSON; POISSON.DIST; PROB; QUARTILE; QUARTILE.EXC; QUARTILE.INC; RANK; RANK.AVG; RANK.EQ; RSQ; SKEW; SKEW.P; SLOPE; SMALL; STANDARDIZE; STDEV; STDEV.S; STDEVA; STDEVP; STDEV.P; STDEVPA; STEYX; TDIST; T.DIST; T.DIST.2T; T.DIST.RT; T.INV; T.INV.2T; TINV; TRIMMEAN; TTEST; T.TEST; VAR; VARA; VARP; VAR.P; VAR.S; VARPA; WEIBULL; WEIBULL.DIST; ZTEST; Z.TEST Math and Trigonometry Functions @@ -122,7 +130,7 @@ Information Functions Used to provide information about the data in the selected cell or cell range. - ERROR.TYPE; ISBLANK; ISERR; ISERROR; ISEVEN; ISFORMULA; ISLOGICAL; ISNA; ISNONTEXT; ISNUMBER; ISODD; ISREF; ISTEXT; N; NA; SHEET; SHEETS; TYPE + CELL; ERROR.TYPE; ISBLANK; ISERR; ISERROR; ISEVEN; ISFORMULA; ISLOGICAL; ISNA; ISNONTEXT; ISNUMBER; ISODD; ISREF; ISTEXT; N; NA; SHEET; SHEETS; TYPE Logical Functions diff --git a/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/InsertImages.htm b/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/InsertImages.htm index 6c719ec09..e71c70730 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/InsertImages.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/InsertImages.htm @@ -75,8 +75,9 @@
      1. select the required image with the mouse,
      2. click the Image settings Image settings icon icon on the right sidebar,
      3. +
      4. click the Replace Image button,
      5. - in the Replace Image section click the button you need: From File or From URL and select the desired image. + choose the necessary option: From File, From Storage, or From URL and select the desired image.

        Note: alternatively, you can right-click the image and use the Replace image option from the contextual menu.

      diff --git a/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/InsertSymbols.htm b/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/InsertSymbols.htm index dfe99f90a..b8a618fd3 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/InsertSymbols.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/InsertSymbols.htm @@ -14,12 +14,12 @@

      Insert symbols and characters

      -

      When working, you may need to insert a symbol which is not on your keyboard. To insert such symbols into your document, use the Symbol table iconInsert symbol option and follow these simple steps:

      +

      When working, you may need to insert a symbol which is not on your keyboard. To insert such symbols into your document, use the Symbol table icon Insert symbol option and follow these simple steps:

      • place the cursor at the location where a special symbol should be inserted,
      • switch to the Insert tab of the top toolbar,
      • - click the Symbol table iconSymbol, + click the Symbol table icon Symbol,

        Insert symbol sidebar

      • The Symbol dialog box will appear and you will be able to select the appropriate symbol,
      • @@ -27,6 +27,8 @@

        use the Range section to quickly find the nesessary symbol. All symbols are divided into specific groups, for example, select 'Currency Symbols' if you want to insert a currency character.

        If this character is not in the set, select a different font. Many of them also have characters which differ from the standard set.

        Or enter the Unicode hex value of the required symbol in the Unicode hex value field. This code can be found in the Character map.

        +

        You can also use the Special characters tab to choose a special character from the list.

        +

        Insert symbol sidebar

        The previously used symbols are also displayed in the Recently used symbols field,

      • click Insert. The selected character will be added to the document.
      • diff --git a/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/InsertTextObjects.htm b/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/InsertTextObjects.htm index cbe09900e..d8e8db468 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/InsertTextObjects.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/InsertTextObjects.htm @@ -53,14 +53,14 @@
      • 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

        -

        The List Settings option allows you to open the List Settings window. The bulleted list settings window looks like this:

        +

        The List Settings option allows you to open the List Settings window where you can adjust the settings for a corresponding list type:

        Bulleted list settings

        -

        The numbered list settings window looks like this:

        +

        Type (bulleted) - allows you to select the necessary character for the bulleted list. When you click on the New bullet field, the Symbol window will open, and you will be able to choose one of the available characters. To learn more on how to work with symbols, please refer to this article.

        Numbered list settings

        +

        Type (numbered) - allows you to select the necessary format for the numbered list.

        • Size - allows you to select the necessary bullet/number size depending on the current size of the text. The value can vary from 25% up to 400%.
        • Color - allows you to select the necessary bullet/number color. You can select one of the theme colors, or standard colors on the palette, or specify a custom color.
        • -
        • Bullet - allows you to select the necessary character for the bulleted list. When you click on the Change bullet field, the Symbol window will open, and you will be able to choose one of the available characters. To learn more on how to work with symbols, please refer to this article.
        • Start at - allows you to set the necessary numeric value you want to start numbering with.
      • diff --git a/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/ManageSheets.htm b/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/ManageSheets.htm index 3d00f32e5..e94f63ee0 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/ManageSheets.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/ManageSheets.htm @@ -52,6 +52,7 @@
      • click the OK button to confirm your choice.

    Or simply drag the necessary sheet tab and drop it to a new location. The selected sheet will be moved.

    +

    You can also manualy drag'n'drop a sheet tab from one spreadsheet to another. In this case, the sheet from the original spreadsheet will be deleted.

    If you have a lot of sheets, you can hide some of them you don't need to facilitate your work. To do that,

    1. right-click the sheet tab you wish to hide,
    2. diff --git a/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/MathAutoCorrect.htm b/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/MathAutoCorrect.htm new file mode 100644 index 000000000..effb8b67c --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/MathAutoCorrect.htm @@ -0,0 +1,2506 @@ + + + + Use Math AutoCorrect + + + + + + + +
      +
      + +
      +

      Use Math AutoCorrect

      +

      When working with equations, you can insert a lot of symbols, accents and mathematical operation signs typing them on the keyboard instead of choosing a template from the gallery.

      +

      In the equation editor, place the insertion point within the necessary placeholder, type a math autocorrect code, then press Spacebar. The entered code will be converted into the corresponding symbol, and the space will be eliminated.

      +

      Note: The codes are case sensitive.

      +

      The table below contains all the currently supported codes available in the Spreadsheet Editor. The full list of the supported codes can also be found on the File tab in the Advanced Settings... -> Spell checking -> Proofing section.

      +

      AutoCorrect window

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      CodeSymbolCategory
      !!Double factorialSymbols
      ...Horizontal ellipsisDots
      ::Double colonOperators
      :=Colon equalOperators
      /<Not less thanRelational operators
      />Not greater thanRelational operators
      /=Not equalRelational operators
      \aboveSymbolAbove/Below scripts
      \acuteSymbolAccents
      \alephSymbolHebrew letters
      \alphaSymbolGreek letters
      \AlphaSymbolGreek letters
      \amalgSymbolBinary operators
      \angleSymbolGeometry notation
      \aointSymbolIntegrals
      \approxSymbolRelational operators
      \asmashSymbolArrows
      \astAsteriskBinary operators
      \asympSymbolRelational operators
      \atopSymbolOperators
      \barSymbolOver/Underbar
      \BarSymbolAccents
      \becauseSymbolRelational operators
      \beginSymbolDelimiters
      \belowSymbolAbove/Below scripts
      \betSymbolHebrew letters
      \betaSymbolGreek letters
      \BetaSymbolGreek letters
      \bethSymbolHebrew letters
      \bigcapSymbolLarge operators
      \bigcupSymbolLarge operators
      \bigodotSymbolLarge operators
      \bigoplusSymbolLarge operators
      \bigotimesSymbolLarge operators
      \bigsqcupSymbolLarge operators
      \biguplusSymbolLarge operators
      \bigveeSymbolLarge operators
      \bigwedgeSymbolLarge operators
      \binomialSymbolEquations
      \botSymbolLogic notation
      \bowtieSymbolRelational operators
      \boxSymbolSymbols
      \boxdotSymbolBinary operators
      \boxminusSymbolBinary operators
      \boxplusSymbolBinary operators
      \braSymbolDelimiters
      \breakSymbolSymbols
      \breveSymbolAccents
      \bulletSymbolBinary operators
      \capSymbolBinary operators
      \cbrtSymbolSquare roots and radicals
      \casesSymbolSymbols
      \cdotSymbolBinary operators
      \cdotsSymbolDots
      \checkSymbolAccents
      \chiSymbolGreek letters
      \ChiSymbolGreek letters
      \circSymbolBinary operators
      \closeSymbolDelimiters
      \clubsuitSymbolSymbols
      \cointSymbolIntegrals
      \congSymbolRelational operators
      \coprodSymbolMath operators
      \cupSymbolBinary operators
      \daletSymbolHebrew letters
      \dalethSymbolHebrew letters
      \dashvSymbolRelational operators
      \ddSymbolDouble-struck letters
      \DdSymbolDouble-struck letters
      \ddddotSymbolAccents
      \dddotSymbolAccents
      \ddotSymbolAccents
      \ddotsSymbolDots
      \defeqSymbolRelational operators
      \degcSymbolSymbols
      \degfSymbolSymbols
      \degreeSymbolSymbols
      \deltaSymbolGreek letters
      \DeltaSymbolGreek letters
      \DeltaeqSymbolOperators
      \diamondSymbolBinary operators
      \diamondsuitSymbolSymbols
      \divSymbolBinary operators
      \dotSymbolAccents
      \doteqSymbolRelational operators
      \dotsSymbolDots
      \doubleaSymbolDouble-struck letters
      \doubleASymbolDouble-struck letters
      \doublebSymbolDouble-struck letters
      \doubleBSymbolDouble-struck letters
      \doublecSymbolDouble-struck letters
      \doubleCSymbolDouble-struck letters
      \doubledSymbolDouble-struck letters
      \doubleDSymbolDouble-struck letters
      \doubleeSymbolDouble-struck letters
      \doubleESymbolDouble-struck letters
      \doublefSymbolDouble-struck letters
      \doubleFSymbolDouble-struck letters
      \doublegSymbolDouble-struck letters
      \doubleGSymbolDouble-struck letters
      \doublehSymbolDouble-struck letters
      \doubleHSymbolDouble-struck letters
      \doubleiSymbolDouble-struck letters
      \doubleISymbolDouble-struck letters
      \doublejSymbolDouble-struck letters
      \doubleJSymbolDouble-struck letters
      \doublekSymbolDouble-struck letters
      \doubleKSymbolDouble-struck letters
      \doublelSymbolDouble-struck letters
      \doubleLSymbolDouble-struck letters
      \doublemSymbolDouble-struck letters
      \doubleMSymbolDouble-struck letters
      \doublenSymbolDouble-struck letters
      \doubleNSymbolDouble-struck letters
      \doubleoSymbolDouble-struck letters
      \doubleOSymbolDouble-struck letters
      \doublepSymbolDouble-struck letters
      \doublePSymbolDouble-struck letters
      \doubleqSymbolDouble-struck letters
      \doubleQSymbolDouble-struck letters
      \doublerSymbolDouble-struck letters
      \doubleRSymbolDouble-struck letters
      \doublesSymbolDouble-struck letters
      \doubleSSymbolDouble-struck letters
      \doubletSymbolDouble-struck letters
      \doubleTSymbolDouble-struck letters
      \doubleuSymbolDouble-struck letters
      \doubleUSymbolDouble-struck letters
      \doublevSymbolDouble-struck letters
      \doubleVSymbolDouble-struck letters
      \doublewSymbolDouble-struck letters
      \doubleWSymbolDouble-struck letters
      \doublexSymbolDouble-struck letters
      \doubleXSymbolDouble-struck letters
      \doubleySymbolDouble-struck letters
      \doubleYSymbolDouble-struck letters
      \doublezSymbolDouble-struck letters
      \doubleZSymbolDouble-struck letters
      \downarrowSymbolArrows
      \DownarrowSymbolArrows
      \dsmashSymbolArrows
      \eeSymbolDouble-struck letters
      \ellSymbolSymbols
      \emptysetSymbolSet notations
      \emspSpace characters
      \endSymbolDelimiters
      \enspSpace characters
      \epsilonSymbolGreek letters
      \EpsilonSymbolGreek letters
      \eqarraySymbolSymbols
      \equivSymbolRelational operators
      \etaSymbolGreek letters
      \EtaSymbolGreek letters
      \existsSymbolLogic notations
      \forallSymbolLogic notations
      \frakturaSymbolFraktur letters
      \frakturASymbolFraktur letters
      \frakturbSymbolFraktur letters
      \frakturBSymbolFraktur letters
      \frakturcSymbolFraktur letters
      \frakturCSymbolFraktur letters
      \frakturdSymbolFraktur letters
      \frakturDSymbolFraktur letters
      \fraktureSymbolFraktur letters
      \frakturESymbolFraktur letters
      \frakturfSymbolFraktur letters
      \frakturFSymbolFraktur letters
      \frakturgSymbolFraktur letters
      \frakturGSymbolFraktur letters
      \frakturhSymbolFraktur letters
      \frakturHSymbolFraktur letters
      \frakturiSymbolFraktur letters
      \frakturISymbolFraktur letters
      \frakturkSymbolFraktur letters
      \frakturKSymbolFraktur letters
      \frakturlSymbolFraktur letters
      \frakturLSymbolFraktur letters
      \frakturmSymbolFraktur letters
      \frakturMSymbolFraktur letters
      \frakturnSymbolFraktur letters
      \frakturNSymbolFraktur letters
      \frakturoSymbolFraktur letters
      \frakturOSymbolFraktur letters
      \frakturpSymbolFraktur letters
      \frakturPSymbolFraktur letters
      \frakturqSymbolFraktur letters
      \frakturQSymbolFraktur letters
      \frakturrSymbolFraktur letters
      \frakturRSymbolFraktur letters
      \fraktursSymbolFraktur letters
      \frakturSSymbolFraktur letters
      \frakturtSymbolFraktur letters
      \frakturTSymbolFraktur letters
      \frakturuSymbolFraktur letters
      \frakturUSymbolFraktur letters
      \frakturvSymbolFraktur letters
      \frakturVSymbolFraktur letters
      \frakturwSymbolFraktur letters
      \frakturWSymbolFraktur letters
      \frakturxSymbolFraktur letters
      \frakturXSymbolFraktur letters
      \frakturySymbolFraktur letters
      \frakturYSymbolFraktur letters
      \frakturzSymbolFraktur letters
      \frakturZSymbolFraktur letters
      \frownSymbolRelational operators
      \funcapplyBinary operators
      \GSymbolGreek letters
      \gammaSymbolGreek letters
      \GammaSymbolGreek letters
      \geSymbolRelational operators
      \geqSymbolRelational operators
      \getsSymbolArrows
      \ggSymbolRelational operators
      \gimelSymbolHebrew letters
      \graveSymbolAccents
      \hairspSpace characters
      \hatSymbolAccents
      \hbarSymbolSymbols
      \heartsuitSymbolSymbols
      \hookleftarrowSymbolArrows
      \hookrightarrowSymbolArrows
      \hphantomSymbolArrows
      \hsmashSymbolArrows
      \hvecSymbolAccents
      \identitymatrixSymbolMatrices
      \iiSymbolDouble-struck letters
      \iiintSymbolIntegrals
      \iintSymbolIntegrals
      \iiiintSymbolIntegrals
      \ImSymbolSymbols
      \imathSymbolSymbols
      \inSymbolRelational operators
      \incSymbolSymbols
      \inftySymbolSymbols
      \intSymbolIntegrals
      \integralSymbolIntegrals
      \iotaSymbolGreek letters
      \IotaSymbolGreek letters
      \itimesMath operators
      \jSymbolSymbols
      \jjSymbolDouble-struck letters
      \jmathSymbolSymbols
      \kappaSymbolGreek letters
      \KappaSymbolGreek letters
      \ketSymbolDelimiters
      \lambdaSymbolGreek letters
      \LambdaSymbolGreek letters
      \langleSymbolDelimiters
      \lbbrackSymbolDelimiters
      \lbraceSymbolDelimiters
      \lbrackSymbolDelimiters
      \lceilSymbolDelimiters
      \ldivSymbolFraction slashes
      \ldivideSymbolFraction slashes
      \ldotsSymbolDots
      \leSymbolRelational operators
      \leftSymbolDelimiters
      \leftarrowSymbolArrows
      \LeftarrowSymbolArrows
      \leftharpoondownSymbolArrows
      \leftharpoonupSymbolArrows
      \leftrightarrowSymbolArrows
      \LeftrightarrowSymbolArrows
      \leqSymbolRelational operators
      \lfloorSymbolDelimiters
      \lhvecSymbolAccents
      \limitSymbolLimits
      \llSymbolRelational operators
      \lmoustSymbolDelimiters
      \LongleftarrowSymbolArrows
      \LongleftrightarrowSymbolArrows
      \LongrightarrowSymbolArrows
      \lrharSymbolArrows
      \lvecSymbolAccents
      \mapstoSymbolArrows
      \matrixSymbolMatrices
      \medspSpace characters
      \midSymbolRelational operators
      \middleSymbolSymbols
      \modelsSymbolRelational operators
      \mpSymbolBinary operators
      \muSymbolGreek letters
      \MuSymbolGreek letters
      \nablaSymbolSymbols
      \naryandSymbolOperators
      \nbspSpace characters
      \neSymbolRelational operators
      \nearrowSymbolArrows
      \neqSymbolRelational operators
      \niSymbolRelational operators
      \normSymbolDelimiters
      \notcontainSymbolRelational operators
      \notelementSymbolRelational operators
      \notinSymbolRelational operators
      \nuSymbolGreek letters
      \NuSymbolGreek letters
      \nwarrowSymbolArrows
      \oSymbolGreek letters
      \OSymbolGreek letters
      \odotSymbolBinary operators
      \ofSymbolOperators
      \oiiintSymbolIntegrals
      \oiintSymbolIntegrals
      \ointSymbolIntegrals
      \omegaSymbolGreek letters
      \OmegaSymbolGreek letters
      \ominusSymbolBinary operators
      \openSymbolDelimiters
      \oplusSymbolBinary operators
      \otimesSymbolBinary operators
      \overSymbolDelimiters
      \overbarSymbolAccents
      \overbraceSymbolAccents
      \overbracketSymbolAccents
      \overlineSymbolAccents
      \overparenSymbolAccents
      \overshellSymbolAccents
      \parallelSymbolGeometry notation
      \partialSymbolSymbols
      \pmatrixSymbolMatrices
      \perpSymbolGeometry notation
      \phantomSymbolSymbols
      \phiSymbolGreek letters
      \PhiSymbolGreek letters
      \piSymbolGreek letters
      \PiSymbolGreek letters
      \pmSymbolBinary operators
      \pppprimeSymbolPrimes
      \ppprimeSymbolPrimes
      \pprimeSymbolPrimes
      \precSymbolRelational operators
      \preceqSymbolRelational operators
      \primeSymbolPrimes
      \prodSymbolMath operators
      \proptoSymbolRelational operators
      \psiSymbolGreek letters
      \PsiSymbolGreek letters
      \qdrtSymbolSquare roots and radicals
      \quadraticSymbolSquare roots and radicals
      \rangleSymbolDelimiters
      \RangleSymbolDelimiters
      \ratioSymbolRelational operators
      \rbraceSymbolDelimiters
      \rbrackSymbolDelimiters
      \RbrackSymbolDelimiters
      \rceilSymbolDelimiters
      \rddotsSymbolDots
      \ReSymbolSymbols
      \rectSymbolSymbols
      \rfloorSymbolDelimiters
      \rhoSymbolGreek letters
      \RhoSymbolGreek letters
      \rhvecSymbolAccents
      \rightSymbolDelimiters
      \rightarrowSymbolArrows
      \RightarrowSymbolArrows
      \rightharpoondownSymbolArrows
      \rightharpoonupSymbolArrows
      \rmoustSymbolDelimiters
      \rootSymbolSymbols
      \scriptaSymbolScripts
      \scriptASymbolScripts
      \scriptbSymbolScripts
      \scriptBSymbolScripts
      \scriptcSymbolScripts
      \scriptCSymbolScripts
      \scriptdSymbolScripts
      \scriptDSymbolScripts
      \scripteSymbolScripts
      \scriptESymbolScripts
      \scriptfSymbolScripts
      \scriptFSymbolScripts
      \scriptgSymbolScripts
      \scriptGSymbolScripts
      \scripthSymbolScripts
      \scriptHSymbolScripts
      \scriptiSymbolScripts
      \scriptISymbolScripts
      \scriptkSymbolScripts
      \scriptKSymbolScripts
      \scriptlSymbolScripts
      \scriptLSymbolScripts
      \scriptmSymbolScripts
      \scriptMSymbolScripts
      \scriptnSymbolScripts
      \scriptNSymbolScripts
      \scriptoSymbolScripts
      \scriptOSymbolScripts
      \scriptpSymbolScripts
      \scriptPSymbolScripts
      \scriptqSymbolScripts
      \scriptQSymbolScripts
      \scriptrSymbolScripts
      \scriptRSymbolScripts
      \scriptsSymbolScripts
      \scriptSSymbolScripts
      \scripttSymbolScripts
      \scriptTSymbolScripts
      \scriptuSymbolScripts
      \scriptUSymbolScripts
      \scriptvSymbolScripts
      \scriptVSymbolScripts
      \scriptwSymbolScripts
      \scriptWSymbolScripts
      \scriptxSymbolScripts
      \scriptXSymbolScripts
      \scriptySymbolScripts
      \scriptYSymbolScripts
      \scriptzSymbolScripts
      \scriptZSymbolScripts
      \sdivSymbolFraction slashes
      \sdivideSymbolFraction slashes
      \searrowSymbolArrows
      \setminusSymbolBinary operators
      \sigmaSymbolGreek letters
      \SigmaSymbolGreek letters
      \simSymbolRelational operators
      \simeqSymbolRelational operators
      \smashSymbolArrows
      \smileSymbolRelational operators
      \spadesuitSymbolSymbols
      \sqcapSymbolBinary operators
      \sqcupSymbolBinary operators
      \sqrtSymbolSquare roots and radicals
      \sqsubseteqSymbolSet notation
      \sqsuperseteqSymbolSet notation
      \starSymbolBinary operators
      \subsetSymbolSet notation
      \subseteqSymbolSet notation
      \succSymbolRelational operators
      \succeqSymbolRelational operators
      \sumSymbolMath operators
      \supersetSymbolSet notation
      \superseteqSymbolSet notation
      \swarrowSymbolArrows
      \tauSymbolGreek letters
      \TauSymbolGreek letters
      \thereforeSymbolRelational operators
      \thetaSymbolGreek letters
      \ThetaSymbolGreek letters
      \thickspSpace characters
      \thinspSpace characters
      \tildeSymbolAccents
      \timesSymbolBinary operators
      \toSymbolArrows
      \topSymbolLogic notation
      \tvecSymbolArrows
      \ubarSymbolAccents
      \UbarSymbolAccents
      \underbarSymbolAccents
      \underbraceSymbolAccents
      \underbracketSymbolAccents
      \underlineSymbolAccents
      \underparenSymbolAccents
      \uparrowSymbolArrows
      \UparrowSymbolArrows
      \updownarrowSymbolArrows
      \UpdownarrowSymbolArrows
      \uplusSymbolBinary operators
      \upsilonSymbolGreek letters
      \UpsilonSymbolGreek letters
      \varepsilonSymbolGreek letters
      \varphiSymbolGreek letters
      \varpiSymbolGreek letters
      \varrhoSymbolGreek letters
      \varsigmaSymbolGreek letters
      \varthetaSymbolGreek letters
      \vbarSymbolDelimiters
      \vdashSymbolRelational operators
      \vdotsSymbolDots
      \vecSymbolAccents
      \veeSymbolBinary operators
      \vertSymbolDelimiters
      \VertSymbolDelimiters
      \VmatrixSymbolMatrices
      \vphantomSymbolArrows
      \vthickspSpace characters
      \wedgeSymbolBinary operators
      \wpSymbolSymbols
      \wrSymbolBinary operators
      \xiSymbolGreek letters
      \XiSymbolGreek letters
      \zetaSymbolGreek letters
      \ZetaSymbolGreek letters
      \zwnjSpace characters
      \zwspSpace characters
      ~=Is congruent toRelational operators
      -+Minus or plusBinary operators
      +-Plus or minusBinary operators
      <<SymbolRelational operators
      <=Less than or equal toRelational operators
      ->SymbolArrows
      >=Greater than or equal toRelational operators
      >>SymbolRelational operators
      +
      + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/PivotTables.htm b/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/PivotTables.htm index a3c791447..578904400 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/PivotTables.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/PivotTables.htm @@ -1,9 +1,9 @@  - Edit pivot tables + Create and edit pivot tables - + @@ -13,23 +13,250 @@
      -

      Edit pivot tables

      -

      Note: this option is available in the online version only.

      -

      You can change the appearance of existing pivot tables in a spreadsheet using the editing tools available on the Pivot Table tab of the top toolbar.

      -

      Select at least one cell within the pivot table with the mouse to activate the editing tools on the top toolbar.

      -

      Pivot Table tab

      -

      The Select Pivot Table icon Select button allows you to select the entire pivot table.

      -

      The rows and columns options 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:

      +

      Create and edit pivot tables

      +

      Pivot tables allow you to group and arrange data of large data sets to get summarized information. You can reorganize data in many different ways to display only the necessary information and focus on important aspects.

      +

      Create a new pivot table

      +

      To create a pivot table,

      +
        +
      1. Prepare the source data set you want to use for creating a pivot table. It should include column headers. The data set should not contain empty rows or columns.
      2. +
      3. Select any cell within the source data range.
      4. +
      5. Switch to the Pivot Table tab of the top toolbar and click the Insert Table Insert Table icon icon. +

        If you want to create a pivot table on the base of a formatted table, you can also use the Insert pivot table Insert pivot table option on the Table settings tab of the right sidebar.

        +
      6. +
      7. The Create Pivot Table window will appear. +

        Create Pivot Table window

        +
          +
        • The Source data range is already specified. In this case, all data from the source data range will be used. If you want to change the data range (e.g. to include only a part of source data), click the Select data icon icon. In the Select Data Range window, enter the necessary data range in the following format: Sheet1!$A$1:$E$10. You can also select the necessary cell range on the sheet using the mouse. When ready, click OK. +
        • +
        • Specify where you want to place the pivot table. +
            +
          • The New worksheet option is selected by default. It allows you to place the pivot table in a new worksheet.
          • +
          • You can also select the Existing worksheet option and choose a certain cell. In this case, the selected cell will be the upper right cell of the created pivot table. To select a cell, click the Select data icon icon. +

            Select Data Range window

            +

            In the Select Data Range window, enter the cell address in the following format: Sheet1!$G$2. You can also click the necessary cell in the sheet. When ready, click OK.

            +
          • +
          +
        • +
        • When you select the pivot table location, click OK in the Create Table window.
        • +
        +
      8. +
      +

      An empty pivot table will be inserted in the selected location.

      +

      The Pivot table settings tab on the right sidebar will be opened. You can hide or display this tab by clicking the Pivot table settings icon icon.

      +

      Pivot table settings tab

      + +

      Select fields to display

      +

      The Select Fields section contains the fields named according to the column headers in your source data set. Each field contains values from the corresponding column of the source table. The following four sections are available below: Filters, Columns, Rows and Values.

      +

      Check the fields you want to display in the pivot table. When you check a field, it will be added to one of the available sections on the right sidebar depending on the data type and will be displayed in the pivot table. Fields containing text values will be added to the Rows section; fields containing numeric values will be added to the Values section.

      +

      You can simply drag fields to the necessary section as well as drag the fields between sections to quickly reorganize your pivot table. To remove a field from the current section, drag it out of this section.

      +

      In order to add a field to the necessary section, it's also possible to click the black arrow to the right of a field in the Select Fields section and choose the necessary option from the menu: Add to Filters, Add to Rows, Add to Columns, Add to Values.

      +

      Pivot table settings tab

      +

      Below you can see some examples of using the Filters, Columns, Rows and Values sections.

        -
      • Row Headers - allows you to highlight the row headers with a special formatting.
      • -
      • Column Headers - allows you to highlight the column headers with a special formatting.
      • +
      • If you add a field to the Filters section, a separate filter will be added above the pivot table. It will be applied to the entire pivot table. If you click the drop-down arrow Drop-Down Arrow in the added filter, you'll see the values from the selected field. When you uncheck some values in the filter option window and click OK, the unchecked values will not be displayed in the pivot table. +

        Pivot Filters

        +
      • +
      • If you add a field to the Columns section, the pivot table will contain a number of columns equal to the number of values from the selected field. The Grand Total column will also be added. +

        Pivot Columns

        +
      • +
      • If you add a field to the Rows section, the pivot table will contain a number of rows equal to the number of values from the selected field. The Grand Total row will also be added. +

        Pivot Rows

        +
      • +
      • If you add a field to the Values section, the pivot table will display the summation value for all numeric values from the selected field. If the field contains text values, the count of values will be displayed. The function used to calculate the summation value can be changed in the field settings. +

        Pivot Values

        +
      • +
      + +

      Rearrange fields and adjust their properties

      +

      Once the fields are added to the necessary sections, you can manage them to change the layout and format of the pivot table. Click the black arrow to the right of a field within the Filters, Columns, Rows or Values sections to access the field context menu.

      +

      Pivot table menu

      +

      It allows you to:

      +
        +
      • Move the selected field Up, Down, to the Beginning, or to the End of the current section if you have added more than one field to the current section.
      • +
      • Move the selected field to a different section - to Filters, Columns, Rows, or Values. The option that corresponds to the current section will be disabled.
      • +
      • Remove the selected field from the current section.
      • +
      • Adjust the selected field settings.
      • +
      +

      The Filters, Columns and Rows field settings look similarly:

      +

      Pivot table Filters field settings

      +

      The Layout tab contains the following options:

      +
        +
      • The Source name option allows you to view the field name corresponding to the column header from the source data set.
      • +
      • The Custom name option allows you to change the name of the selected field displayed in the pivot table.
      • +
      • The Report Form section allows you to change the way the selected field is displayed in the pivot table: +
          +
        • Choose the necessary layout for the selected field in the pivot table: +
            +
          • The Tabular form displays one column for each field and provides space for field headers. + +
          • +
          • The Outline form displays one column for each field and provides space for field headers. It also allows you to display subtotals at the top of groups. + +
          • +
          • The Compact form displays items from different row section fields in a single column. + +
          • +
          +
        • +
        • The Repeat items labels at each row option allows you to visually group rows or columns together if you have multiple fields in the tabular form.
        • +
        • The Insert blank rows after each item option allows you to add blank lines after items of the selected field.
        • +
        • The Show subtotals option allows you to choose if you want to display subtotals for the selected field. You can select one of the options: Show at top of group or Show at bottom of group.
        • +
        • The Show items with no data option allows you to show or hide blank items in the selected field.
        • +
        +
      • +
      +

      Pivot table Filters field settings

      +

      The Subtotals tab allows you to choose Functions for Subtotals. Check the necessary functions in the list: Sum, Count, Average, Max, Min, Product, Count Numbers, StdDev, StdDevp, Var, Varp.

      +

      Values field settings

      +

      Pivot table Values field settings

      +
        +
      • The Source name option allows you to view the field name corresponding to the column header from the source data set.
      • +
      • The Custom name option allows you to change the name of the selected field displayed in the pivot table.
      • +
      • The Summarize value field by list allows you to choose the function used to calculate the summation value for all values from this field. By default, Sum is used for numeric values, Count is used for text values. The available functions are Sum, Count, Average, Max, Min, Product.
      • +
      + +

      Change the appearance of pivot tables

      +

      You can use options available on the top toolbar to adjust the way your pivot table is displayed. These options are applied to the entire pivot table.

      +

      Select at least one cell within the pivot table with the mouse to activate the editing tools on the top toolbar.

      +

      Pivot table toop toolbar

      +
        +
      • The Report Layout drop-down list allows you to choose the necessary layout for your pivot table: +
          +
        • Show in Compact Form - allows you to display items from different row section fields in a single column. +

          Pivot table Compact form

          +
        • +
        • Show in Outline Form - allows you to display the pivot table in the classic pivot table style. It displays one column for each field and provides space for field headers. It also allows you to display subtotals at the top of groups. +

          Pivot table Outline form

          +
        • +
        • Show in Tabular Form - allows you to display the pivot table in a traditional table format. It displays one column for each field and provides space for field headers. +

          Pivot table Tabular form

          +
        • +
        • Repeat All Item Labels - allows you to visually group rows or columns together if you have multiple fields in the tabular form.
        • +
        • Don't Repeat All Item Labels - allows you to hide item labels if you have multiple fields in the tabular form.
        • +
        +
      • +
      • + The Blank Rows drop-down list allows you to choose if you want to display blank lines after items: +
          +
        • Insert Blank Line after Each Item - allows you to add blank lines after items.
        • +
        • Remove Blank Line after Each Item - allows you to remove the added blank lines.
        • +
        +
      • +
      • + The Subtotals drop-down list allows you to choose if you want to display subtotals in the pivot table: +
          +
        • Don't Show Subtotals - allows you to hide subtotals for all items.
        • +
        • Show all Subtotals at Bottom of Group - allows you to display subtotals below the subtotaled rows.
        • +
        • Show all Subtotals at Top of Group - allows you to display subtotals above the subtotaled rows.
        • +
        +
      • +
      • + The Grand Totals drop-down list allows you to choose if you want to display grand totals in the pivot table: +
          +
        • Off for Rows and Columns - allows you to hide grand totals for both rows and columns.
        • +
        • On for Rows and Columns - allows you to display grand totals for both rows and columns.
        • +
        • On for Rows Only - allows you to display grand totals for rows only.
        • +
        • On for Columns Only - allows you to display grand totals for columns only.
        • +
        +

        Note: the similar settings are also available in the pivot table advanced settings window in the Grand Totals section of the Name and Layout tab.

        +
      • +
      +

      The Select Pivot Table icon Select button allows you to select the entire pivot table.

      +

      If you change the data in your source data set, select the pivot table and click the Refresh Pivot Table icon Refresh button to update the pivot table.

      + +

      Change the style of pivot tables

      +

      You can change the appearance of pivot tables in a spreadsheet using the style editing tools available on the top toolbar.

      +

      Select at least one cell within the pivot table with the mouse to activate the editing tools on the top toolbar.

      +

      Pivot Table tab

      +

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

      +
        +
      • Row Headers - allows you to highlight the row headers with special formatting.
      • +
      • Column Headers - allows you to highlight the column headers with special formatting.
      • Banded Rows - enables the background color alternation for odd and even rows.
      • -
      • Banded Columns - enables the background color alternation for odd and even columns.
      • +
      • Banded Columns - enables the background color alternation for odd and even columns.

      - The template list allows you to choose one of the predefined pivot table styles. Each template combines certain formatting parameters, such as a background color, border style, row/column banding etc. + The template list allows you to choose one of the predefined pivot table styles. Each template combines certain formatting parameters, such as a background color, border style, row/column banding, etc. Depending on the options checked for rows and columns, the templates set will be displayed differently. For example, if you've checked the Row Headers and Banded Columns options, the displayed templates list will include only templates with the row headers highlighted and banded columns enabled.

      + +

      Filter and sort pivot tables

      +

      You can filter pivot tables by labels or values and use the additional sort parameters.

      +

      Filtering

      +

      Click the drop-down arrow Drop-Down Arrow in the Row Labels or Column Labels of the pivot table. The Filter option list will open:

      +

      Filter window

      +

      Adjust the filter parameters. You can proceed in one of the following ways: select the data to display or filter the data by certain criteria.

      +
        +
      • + Select the data to display +

        Uncheck the boxes near the data you need to hide. For your convenience, all the data within the Filter option list are sorted in ascending order.

        +

        Note: the (blank) check box corresponds to the empty cells. It is available if the selected cell range contains at least one empty cell.

        +

        To facilitate the process, make use of the search field on the top. Enter your query, entirely or partially, in the field - the values that include these characters will be displayed in the list below. The following two options will be also available:

        +
          +
        • Select All Search Results - is checked by default. It allows selecting all the values that correspond to your query in the list.
        • +
        • Add current selection to filter - if you check this box, the selected values will not be hidden when you apply the filter.
        • +
        +

        After you select all the necessary data, click the OK button in the Filter option list to apply the filter.

        +
      • +
      • + Filter data by certain criteria +

        You can choose either the Label filter or the Value filter option on the right side of the Filter options list, and then select one of the options from the submenu:

        +
          +
        • + For the Label filter the following options are available: +
            +
          • For texts: Equals..., Does not equal..., Begins with..., Does not begin with..., Ends with..., Does not end with..., Contains..., Does not contain....
          • +
          • For numbers: Greater than..., Greater than or equal to..., Less than..., Less than or equal to..., Between, Not between.
          • +
          +
        • +
        • For the Value filter the following options are available: Equals..., Does not equal..., Greater than..., Greater than or equal to..., Less than..., Less than or equal to..., Between, Not between, Top 10.
        • +
        +

        After you select one of the above options (apart from Top 10), the Label/Value Filter window will open. The corresponding field and criterion will be selected in the first and second drop-down lists. Enter the necessary value in the field on the right.

        +

        Click OK to apply the filter.

        +

        Value Filter window

        +

        If you choose the Top 10 option from the Value filter option list, a new window will open:

        +

        Top 10 AutoFilter window

        +

        The first drop-down list allows choosing if you wish to display the highest (Top) or the lowest (Bottom) values. The second field allows specifying how many entries from the list or which percent of the overall entries number you want to display (you can enter a number from 1 to 500). The third drop-down list allows setting the units of measure: Item or Percent. The fourth drop-down list displays the selected field name. Once the necessary parameters are set, click OK to apply the filter.

        +
      • +
      +

      The Filter Filter button button will appear in the Row Labels or Column Labels of the pivot table. It means that the filter is applied.

      + +

      Sorting

      +

      You can sort your pivot table data using the sort options. Click the drop-down arrow Drop-Down Arrow in the Row Labels or Column Labels of the pivot table and then select Sort Lowest to Highest or Sort Highest to Lowest option from the submenu.

      +

      The More Sort Options option allows you to open the Sort window where you can select the necessary sorting order - Ascending or Descending - and then select a certain field you want to sort.

      +

      Pivot table sort options

      + +

      Adjust pivot table advanced settings

      +

      To change the advanced settings of the pivot table, use the Show advanced settings link on the right sidebar. The 'Pivot Table - Advanced Settings' window will open:

      +

      Pivot table advanced settings

      +

      The Name and Layout tab allows you to change the pivot table common properties.

      +
        +
      • The Name option allows you to change the pivot table name.
      • +
      • The Grand Totals section allows you to choose if you want to display grand totals in the pivot table. The Show for rows and Show for columns options are checked by default. You can uncheck either one of them or both these options to hide the corresponding grand totals from your pivot table. +

        Note: the similar settings are available on the top toolbar in the Grand Totals menu.

        +
      • +
      • The Display fields in report filter area section allows you to adjust the report filters which appear when you add fields to the Filters section: +
          +
        • The Down, then over option is used for column arrangement. It allows you to show the report filters across the column.
        • +
        • The Over, then down option is used for row arrangement. It allows you to show the report filters across the row.
        • +
        • The Report filter fields per column option allows you to select the number of filters to go in each column. The default value is set to 0. You can set the necessary numeric value.
        • +
        +
      • +
      • The Field Headers section allows you to choose if you want to display field headers in your pivot table. The Show field headers for rows and columns option is selected by default. Uncheck it to hide field headers from your pivot table.
      • +
      +

      Pivot table advanced settings

      +

      The Data Source tab allows you to change the data you wish to use to create the pivot table.

      +

      Check the selected Data Range and modify it, if necessary. To do that, click the Source data range icon icon.

      +

      Select Data Range window

      +

      In the Select Data Range window, enter the necessary data range in the following format: Sheet1!$A$1:$E$10. You can also select the necessary cell range in the sheet using the mouse. When ready, click OK.

      +

      Pivot table advanced settings

      +

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

      +

      Delete a pivot table

      +

      To delete a pivot table,

      +
        +
      1. Select the entire pivot table using the Select Pivot Table icon Select button on the top toolbar.
      2. +
      3. Press the Delete key.
      4. +
      \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/RemoveDuplicates.htm b/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/RemoveDuplicates.htm new file mode 100644 index 000000000..b735a4de0 --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/RemoveDuplicates.htm @@ -0,0 +1,42 @@ + + + + Remove duplicates + + + + + + + +
      +
      + +
      +

      Remove duplicates

      +

      You can remove duplicate values from the selected data range or a formatted table.

      +

      To remove duplicates:

      +
        +
      1. Select the necessary cell range containing duplicate values.
      2. +
      3. Switch to the Data tab and click the Remove Duplicates Remove Duplicates button on the top toolbar. +

        If you want to remove duplicates from a formatted table, you can also use the Remove duplicates Remove duplicates option on the right sidebar.

        +

        If you select a certain part of the data range, a warning window will appear where you will be asked if you want to expand the selection to include the entire data range or proceed with the currently selected data. Click the Expand or Remove in selected button. If you choose the Remove in selected option, duplicate values in cells adjacent to the selected range will not be removed.

        +

        Remove Duplicates warning

        +

        The Remove Duplicates window will open:

        +

        Remove Duplicates

        +
      4. +
      5. Check the necessary options in the Remove Duplicates window: +
          +
        • My data has headers - check this box to exclude column headers from the selection.
        • +
        • Columns - leave the Select All option selected by default or uncheck it and select the necessary columns only.
        • +
        +
      6. +
      7. Click the OK button.
      8. +
      +

      The duplicate values from the selected data range will be removed, and you will see the window that contains the information on how many duplicate values have been removed and how many unique values have been left:

      +

      Removed duplicates

      +

      If you want to restore the removed data right after deletion, use the Undo Undo icon icon on the top toolbar or the Ctrl+Z key combination.

      + +
      + + \ 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 8c708adce..2d2cd6d32 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/SavePrintDownload.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/SavePrintDownload.htm @@ -76,6 +76,7 @@
    3. Scale To: allows you to enlarge or reduce the scale of the worksheet to fit printed pages by manually specifying the percentage of normal size.
    +
  • Print titles - if you want to print row or column titles on every page, use Repeat rows at top or Repeat columns at left and select one of the available options from the drop-down list: repeat elements in the selected range, maintain frozen rows, repeat the first row/column only.
  • Margins - specify the distance between the worksheet data and the edges of the printed page changing the default sizes in the Top, Bottom, Left and Right fields,
  • Print - specify the worksheet elements to print by checking the corresponding boxes: Print Gridlines and Print Row and Column Headings.
  • diff --git a/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/Slicers.htm b/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/Slicers.htm new file mode 100644 index 000000000..203e13206 --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/Slicers.htm @@ -0,0 +1,111 @@ + + + + Create slicers for formatted tables + + + + + + + +
    +
    + +
    +

    Create slicers for formatted tables

    +

    Create a new slicer

    +

    Once you create a new formatted table, you can create slicers to quickly filter the data. To do that,

    +
      +
    1. select at least one cell within the formatted table with the mouse and click the Table settings Table settings icon icon on the right.
    2. +
    3. click the Insert slicer Insert slicer option on the Table settings tab of the right sidebar. Alternatively, you can switch to the Insert tab of the top toolbar and click the Insert slicer Slicer button. The Insert Slicers window will be opened: +

      Insert Slicers

      +
    4. +
    5. check the required columns in the Insert Slicers window.
    6. +
    7. click the OK button.
    8. +
    +

    A slicer will be added for each of the selected columns. If you add several slicers, they will overlap each other. Once the slicer is added, you can change its size and position as well as its settings.

    +

    Slicer

    +

    A slicer contains buttons that you can click to filter the formatted table. The buttons corresponding to empty cells are marked with the (blank) label. When you click a slicer button, other buttons will be unselected, and the corresponding column in the source table will be filtered to only display the selected item:

    +

    Slicer

    +

    If you have added several slicers, the changes made in one slicer can affect the items from another slicer. When one or more filters are applied to a slicer, items with no data can appear in a different slicer (with a lighter color):

    +

    Slicer - items with no data

    +

    You can adjust the way to display items with no data in the slicer settings.

    +

    To select multiple slicer buttons, use the Multi-Select icon Multi-Select icon in the upper right corner of the slicer or press Alt+S. Select necessary slicer buttons clicking them one by one.

    +

    To clear the slicer filter, use the Clear Filter icon Clear Filter icon in the upper right corner of the slicer or press Alt+C.

    + +

    Edit slicers

    +

    Some of the slicer settings can be changed using the Slicer settings tab of the right sidebar that will open if you select the slicer with the mouse.

    +

    You can hide or display this tab by clicking the Slicer settings icon icon on the right.

    +

    Slicer settings tab

    +

    Change the slicer size and position

    +

    The Width and Height options allow you to change the width and/or height of the slicer. 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 slicer aspect ratio.

    +

    The Position section allows you to change the Horizontal and/or Vertical slicer position.

    +

    The Disable resizing or moving option allows you to prevent the slicer from being moved or resized. When this option is checked, the Width, Height, Position and Buttons options are disabled.

    +

    Change the slicer layout and style

    +

    The Buttons section allows you to specify the necessary number of Columns and set the Width and Height of the buttons. By default, a slicer contains one column. If your items contain short text, you can change the column number to 2 or more:

    +

    Slicer - two columns

    +

    If you increase the button width, the slicer width will change correspondingly. If you increase the button height, the scroll bar will be added to the slicer:

    +

    Slicer - scroll bar

    +

    The Style section allows you to choose one of the predefined slicer styles.

    + +

    Apply sorting and filtering parameters

    +
      +
    • Ascending (A to Z) is used to sort the data in ascending order - from A to Z alphabetically or from the smallest to the largest number for numerical data.
    • +
    • Descending (Z to A) is used to sort the data in descending order - from Z to A alphabetically or from the largest to the smallest for numerical data.
    • +
    +

    The Hide items with no data option allows you to hide items with no data from the slicer. When this option is checked, the Visually indicate items with no data and Show items with no data last options are disabled.

    +

    When the Hide items with no data option is unchecked, you can use the following options:

    +
      +
    • The Visually indicate items with no data option allows you to display items with no data with different formatting (with a lighter color). If you uncheck this options, all items will be displayed with the same formatting.
    • +
    • The Show items with no data last option allows you to display items with no data at the end of the list. If you uncheck this options, all items will be displayed in the same order like in the source table.
    • +
    + +

    Adjust advanced slicer settings

    +

    To change the advanced slicer properties, use the Show advanced settings link on the right sidebar. The 'Slicer - Advanced Settings' window will open:

    +

    Slicer - Advanced Settings

    +

    The Style & Size tab contains the following parameters:

    +
      +
    • The Header option allows you to change the slicer header. Uncheck the Display header option if you do not want to display the slicer header.
    • +
    • The Style section allows you to choose one of the predefined slicer styles.
    • +
    • The Width and Height options allow you to change the width and/or height of the slicer. 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 slicer aspect ratio.
    • +
    • The Buttons section allows you to specify the necessary number of Columns and set the Height of the buttons.
    • +
    +

    Slicer - Advanced Settings

    +

    The Sorting & Filtering tab contains the following parameters:

    +
      +
    • Ascending (A to Z) is used to sort the data in ascending order - from A to Z alphabetically or from the smallest to the largest number for numerical data.
    • +
    • Descending (Z to A) is used to sort the data in descending order - from Z to A alphabetically or from the largest to the smallest for numerical data.
    • +
    +

    The Hide items with no data option allows you to hide items with no data from the slicer. When this option is checked, the Visually indicate items with no data and Show items with no data last options are disabled.

    +

    When the Hide items with no data option is unchecked, you can use the following options:

    +
      +
    • The Visually indicate items with no data option allows you to display items with no data with different formatting (with a lighter color).
    • +
    • The Show items with no data last option allows you to display items with no data at the end of the list.
    • +
    +

    Slicer - Advanced Settings

    +

    The References tab contains the following parameters:

    +
      +
    • The Source name option allows you to view the field name corresponding to the column header from the source data set.
    • +
    • The Name to use in formulas option allows you to view the slicer name which is displayed in the Name manager.
    • +
    • The Name option allows you to set a custom name for a slicer to make it more meaningful and understandable.
    • +
    +

    Slicer - Advanced Settings

    +

    The Cell Snapping tab contains the following parameters:

    +
      +
    • Move and size with cells - this option allows you to snap the slicer to the cell behind it. If the cell moves (e.g. if you insert or delete some rows/columns), the slicer will be moved together with the cell. If you increase or decrease the width or height of the cell, the slicer will change its size as well.
    • +
    • Move but don't size with cells - this option allows you to snap the slicer to the cell behind it preventing the slicer from being resized. If the cell moves, the slicer will be moved together with the cell, but if you change the cell size, the slicer dimensions remain unchanged.
    • +
    • Don't move or size with cells - this option allows you to prevent the slicer from being moved or resized if the cell position or size was changed.
    • +
    +

    Slicer - Advanced Settings

    +

    The Alternative Text tab allows you to specify the Title and the Description which will be read to people with vision or cognitive impairments to help them better understand what information the slicer contains.

    + +

    Delete a slicer

    +

    To delete a slicer,

    +
      +
    1. Select the slicer by clicking it.
    2. +
    3. Press the Delete key.
    4. +
    +
    + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/SortData.htm b/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/SortData.htm index 255b07549..95b67e7e4 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/SortData.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/SortData.htm @@ -60,14 +60,14 @@
    1. Click the drop-down arrow Drop-Down Arrow. The Filter option list will open:

      Filter window

      -

      Note: you can adjust the sizr of the filter window by dragging its right border to the right or to the left to display the data as convenient as possible.

      +

      Note: you can adjust the size of the filter window by dragging its right border to the right or to the left to display the data as convenient as possible.

    2. Adjust the filter parameters. You can proceed in one of the following ways: select the data to display, filter the data by certain criteria or filter data by color.

      • Select the data to display -

        Uncheck the boxes near the data you need to hide. For your convenience, all the data wintin the Filter option list are sorted in ascending order.

        +

        Uncheck the boxes near the data you need to hide. For your convenience, all the data within the Filter option list are sorted in ascending order.

        The number of unique values in the filtered range is displayed to the right of each value within the filter window.

        Note: the {Blanks} check box corresponds to the empty cells. It is available if the selected cell range contains at least one empty cell.

        To facilitate the process, make use of the search field on the top. Enter your query, entirely or partially, in the field - the values that include these characters will be displayed in the list below. The following two options will be also available:

        @@ -84,7 +84,7 @@
      • For the Number filter the following options are available: Equals..., Does not equal..., Greater than..., Greater than or equal to..., Less than..., Less than or equal to..., Between, Top 10, Above Average, Below Average, Custom Filter....
      • For the Text filter the following options are available: Equals..., Does not equal..., Begins with..., Does not begin with..., Ends with..., Does not end with..., Contains..., Does not contain..., Custom Filter....
      -

      After you select one of the above options (apart from the Top 10 and Above/Below Average ones), the Custom Filter window will open. The corresponding criterion will be selected in the upper drop-down list. Enter the necessary value in the field on the right.

      +

      After you select one of the above options (apart from Top 10 and Above/Below Average), the Custom Filter window will open. The corresponding criterion will be selected in the upper drop-down list. Enter the necessary value in the field on the right.

      To add one more criterion, use the And radiobutton if you need the data to satisfy both criteria or click the Or radiobutton if either or both criteria can be satisfied. Then select the second criterion from the lower drop-down list and enter the necessary value on the right.

      Click OK to apply the filter.

      Custom Filter window

      @@ -152,43 +152,7 @@
    3. check the Title if you wish the table headers to be included in the selected cell range, otherwise the header row will be added at the top while the selected cell range will be moved one row down,
    4. click the OK button to apply the selected template.
    -

    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.

    -

    It's also possible to insert a formatted table using the Table button on the Insert tab. In this case, the default table template is applied.

    -

    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.

    -

    If you enter a new value in a cell below the last row of the table (if the table does not have the Total row) or in a cell to the right of the last column of the table, the formatted table will be automatically extended to include a new row or column. If you do not want to expand the table, click the Paste special Paste Special button that will appear and select the Undo table autoexpansion option. Once you undo this action, the Redo table autoexpansion option will be available in this menu.

    -

    Undo table autoexpansion

    -

    Some of the table settings can be changed using the Table settings tab of the right sidebar that will open 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:

    - -

    - The Select From Template section allows you to choose one of the predefined tables styles. Each template combines certain formatting parameters, such as a background color, border style, row/column banding etc. - Depending on the options checked in the Rows and/or Columns sections above, the templates set will be displayed differently. For example, if you've checked the Header option in the Rows section and the Banded option in the Columns section, the displayed templates list will include only templates with the header row and banded columns enabled: -

    -

    Templates list

    -

    If you want to remove the current table style (background color, borders etc.) without removing the table itself, apply the None template from the template list:

    -

    None templates

    -

    The Resize table section allows you to change the cell range which the table formatting is applied to. Click the Select Data button - a new pop-up window will open. Change the link to the cell range in the entry field or select the necessary cell range in the worksheet with the mouse and click the OK button.

    -

    Resize table

    -

    The Rows & Columns Rows & Columns section allows you to perform the following operations:

    - -

    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 on the right sidebar will be unavailable.

    -

    To change the advanced table properties, use the Show advanced settings link on the right sidebar. The table properties window will open:

    -

    Table - Advanced Settings

    -

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

    +

    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. To learn more on working with formatted tables, please refer to this page.

    Reapply Filter

    If the filtered data has been changed, you can refresh the filter to display an up-to-date result:

      diff --git a/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/UseNamedRanges.htm b/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/UseNamedRanges.htm index 7582084c5..938ba4682 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/UseNamedRanges.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/UseNamedRanges.htm @@ -18,8 +18,9 @@

      There are two types of names that can be used:

      • Defined name – an arbitrary name that you can specify for a certain cell range. Defined names also include the names created automatically when setting up print areas.
      • -
      • Table name – a default name that is automatically assigned to a new formatted table (Table1, Table2 etc.). You can edit such a name later.
      • +
      • Table name – a default name that is automatically assigned to a new formatted table (Table1, Table2 etc.). You can edit this name later.
      +

      If you have created a slicer for a formatted table, an automatically assigned slicer name will also be displayed in the Name Manager (Slicer_Column1, Slicer_Column2 etc. This name consists of the Slicer_ part and the field name corresponding to the column header from the source data set). You can edit this name later.

      Names are also classified by Scope, i.e. the location where a name is recognized. A name can be scoped to the whole workbook (it will be recognized for any worksheet within this workbook) or to a separate worksheet (it will be recognized for the specified worksheet only). Each name must be unique within a single scope, the same names can be used within different scopes.

      Create new names

      To create a new defined name for a selection:

      @@ -28,7 +29,8 @@
    1. 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 on the Home tab of the top toolbar and select the New name option from the menu.
      • +
      • or click the Named ranges Named ranges icon icon on the Home tab of the top toolbar and select the Define Name option from the menu.
      • +
      • or click the Named ranges icon Named ranges button on the Formula tab of the top toolbar and select the Name manager option from the menu. Choose option New in the opened window.

      The New Name window will open:

      New Name window

      @@ -37,7 +39,7 @@

      Note: a name cannot start with a number, contain spaces or punctuation marks. Underscores (_) are allowed. Case does not matter.

    2. Specify the name Scope. The Workbook scope is selected by default, but you can specify an individual worksheet selecting it from the list.
    3. -
    4. Check the selected Data Range address. If necessary, you can change it. Click the Select Data button - the Select Data Range window will open. +
    5. Check the selected Data Range address. If necessary, you can change it. Click the Source data range icon icon - the Select Data Range window will open.

      Select Data Range window

      Change the link to the cell range in the entry field or select a new range on the worksheet with the mouse and click OK.

    6. @@ -70,7 +72,7 @@
    7. Place the insertion point where you need to add a name.
    8. Make one of the following steps:
        -
      • 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.
      • +
      • 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 defined name or table 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 on 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

        @@ -79,6 +81,15 @@

    Note: the Paste Name window displays the defined names and table names scoped to the current worksheet and to the whole workbook.

    + +
      +
    1. Place the insertion point where you need to add a hyperlink.
    2. +
    3. Go to the Insert tab and click the Hyperlink icon Hyperlink button.
    4. +
    5. In the opened Hyperlink Settings window, select the Internal Data Range tab and define the sheet and the name. +

      Hyperlink Settings

      +
    6. +
    7. Click OK.
    8. +
    \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/basiccalculations.png b/apps/spreadsheeteditor/main/resources/help/en/images/basiccalculations.png index 26b568375..f2bf24017 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/bulletedlistsettings.png b/apps/spreadsheeteditor/main/resources/help/en/images/bulletedlistsettings.png index 30f5350fd..91d301d4e 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/en/images/bulletedlistsettings.png and b/apps/spreadsheeteditor/main/resources/help/en/images/bulletedlistsettings.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/cell.png b/apps/spreadsheeteditor/main/resources/help/en/images/cell.png new file mode 100644 index 000000000..cab81f64e Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/cell.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/cell_fill_color.png b/apps/spreadsheeteditor/main/resources/help/en/images/cell_fill_color.png index 107ebe462..5a0f453e4 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/en/images/cell_fill_color.png and b/apps/spreadsheeteditor/main/resources/help/en/images/cell_fill_color.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/cell_fill_gradient.png b/apps/spreadsheeteditor/main/resources/help/en/images/cell_fill_gradient.png index 99918595a..7fe17028c 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/en/images/cell_fill_gradient.png and b/apps/spreadsheeteditor/main/resources/help/en/images/cell_fill_gradient.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/cell_fill_pattern.png b/apps/spreadsheeteditor/main/resources/help/en/images/cell_fill_pattern.png index 26370075d..616778255 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/en/images/cell_fill_pattern.png and b/apps/spreadsheeteditor/main/resources/help/en/images/cell_fill_pattern.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/cellsettingstab.png b/apps/spreadsheeteditor/main/resources/help/en/images/cellsettingstab.png index 15335a97f..565fe3f96 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/en/images/cellsettingstab.png and b/apps/spreadsheeteditor/main/resources/help/en/images/cellsettingstab.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/changerange.png b/apps/spreadsheeteditor/main/resources/help/en/images/changerange.png new file mode 100644 index 000000000..17df78932 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/changerange.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/chartsettings.png b/apps/spreadsheeteditor/main/resources/help/en/images/chartsettings.png index 4fea9543f..a9695d52f 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/en/images/chartsettings.png and b/apps/spreadsheeteditor/main/resources/help/en/images/chartsettings.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/chartwindow.png b/apps/spreadsheeteditor/main/resources/help/en/images/chartwindow.png index 2365daddf..4ae0d1bf9 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/en/images/chartwindow.png and b/apps/spreadsheeteditor/main/resources/help/en/images/chartwindow.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/conditionalformatting/cellvalue.png b/apps/spreadsheeteditor/main/resources/help/en/images/conditionalformatting/cellvalue.png new file mode 100644 index 000000000..f8ad1152a Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/conditionalformatting/cellvalue.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/conditionalformatting/cellvalueformula.gif b/apps/spreadsheeteditor/main/resources/help/en/images/conditionalformatting/cellvalueformula.gif new file mode 100644 index 000000000..c4e9643eb Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/conditionalformatting/cellvalueformula.gif differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/conditionalformatting/comparison.png b/apps/spreadsheeteditor/main/resources/help/en/images/conditionalformatting/comparison.png new file mode 100644 index 000000000..20f2396d7 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/conditionalformatting/comparison.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/conditionalformatting/databars.png b/apps/spreadsheeteditor/main/resources/help/en/images/conditionalformatting/databars.png new file mode 100644 index 000000000..ac2c4bdaa Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/conditionalformatting/databars.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/conditionalformatting/gradient.png b/apps/spreadsheeteditor/main/resources/help/en/images/conditionalformatting/gradient.png new file mode 100644 index 000000000..ead647421 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/conditionalformatting/gradient.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/conditionalformatting/iconsetbikerating.png b/apps/spreadsheeteditor/main/resources/help/en/images/conditionalformatting/iconsetbikerating.png new file mode 100644 index 000000000..7251111c2 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/conditionalformatting/iconsetbikerating.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/conditionalformatting/iconsetrevenue.png b/apps/spreadsheeteditor/main/resources/help/en/images/conditionalformatting/iconsetrevenue.png new file mode 100644 index 000000000..945ce676c Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/conditionalformatting/iconsetrevenue.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/conditionalformatting/iconsettrafficlights.png b/apps/spreadsheeteditor/main/resources/help/en/images/conditionalformatting/iconsettrafficlights.png new file mode 100644 index 000000000..b8750b92a Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/conditionalformatting/iconsettrafficlights.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/conditionalformatting/iconsettrends.png b/apps/spreadsheeteditor/main/resources/help/en/images/conditionalformatting/iconsettrends.png new file mode 100644 index 000000000..1099f2ef0 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/conditionalformatting/iconsettrends.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/conditionalformatting/shaderows.png b/apps/spreadsheeteditor/main/resources/help/en/images/conditionalformatting/shaderows.png new file mode 100644 index 000000000..4d7dad68d Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/conditionalformatting/shaderows.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/conditionalformatting/shadeunique.png b/apps/spreadsheeteditor/main/resources/help/en/images/conditionalformatting/shadeunique.png new file mode 100644 index 000000000..ca29d106c Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/conditionalformatting/shadeunique.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/conditionalformatting/shading.png b/apps/spreadsheeteditor/main/resources/help/en/images/conditionalformatting/shading.png new file mode 100644 index 000000000..0d52b6144 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/conditionalformatting/shading.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/conditionalformatting/topbottomvalue.png b/apps/spreadsheeteditor/main/resources/help/en/images/conditionalformatting/topbottomvalue.png new file mode 100644 index 000000000..1678d2236 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/conditionalformatting/topbottomvalue.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/conditionalformatting/uniqueduplicates.gif b/apps/spreadsheeteditor/main/resources/help/en/images/conditionalformatting/uniqueduplicates.gif new file mode 100644 index 000000000..e20c2f50d Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/conditionalformatting/uniqueduplicates.gif differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/converttorange.png b/apps/spreadsheeteditor/main/resources/help/en/images/converttorange.png new file mode 100644 index 000000000..5e07ac2e4 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/converttorange.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/create_pivot.png b/apps/spreadsheeteditor/main/resources/help/en/images/create_pivot.png new file mode 100644 index 000000000..91b7f1c17 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/create_pivot.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/deletecellwindow.png b/apps/spreadsheeteditor/main/resources/help/en/images/deletecellwindow.png new file mode 100644 index 000000000..6bfbb28f5 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/deletecellwindow.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/editnamewindow.png b/apps/spreadsheeteditor/main/resources/help/en/images/editnamewindow.png index 115bf8373..fa4eee716 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/en/images/editnamewindow.png and b/apps/spreadsheeteditor/main/resources/help/en/images/editnamewindow.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/fill_color.png b/apps/spreadsheeteditor/main/resources/help/en/images/fill_color.png index 3a91cb024..303f0c8c0 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/en/images/fill_color.png and b/apps/spreadsheeteditor/main/resources/help/en/images/fill_color.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/fill_gradient.png b/apps/spreadsheeteditor/main/resources/help/en/images/fill_gradient.png index 5e82e62a9..27fc960f8 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/en/images/fill_gradient.png and b/apps/spreadsheeteditor/main/resources/help/en/images/fill_gradient.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/fill_pattern.png b/apps/spreadsheeteditor/main/resources/help/en/images/fill_pattern.png index cbd2140dc..f3f352962 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/en/images/fill_pattern.png and b/apps/spreadsheeteditor/main/resources/help/en/images/fill_pattern.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/fill_picture.png b/apps/spreadsheeteditor/main/resources/help/en/images/fill_picture.png index f8b3df2f6..23b48397c 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/en/images/fill_picture.png and b/apps/spreadsheeteditor/main/resources/help/en/images/fill_picture.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/formulatabtoptoolbar.png b/apps/spreadsheeteditor/main/resources/help/en/images/formulatabtoptoolbar.png index 0e8440a69..936f9a414 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/en/images/formulatabtoptoolbar.png and b/apps/spreadsheeteditor/main/resources/help/en/images/formulatabtoptoolbar.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/functionarguments.png b/apps/spreadsheeteditor/main/resources/help/en/images/functionarguments.png new file mode 100644 index 000000000..a9c1572fa Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/functionarguments.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/functionicon.png b/apps/spreadsheeteditor/main/resources/help/en/images/functionicon.png new file mode 100644 index 000000000..c1ad545f8 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/functionicon.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/imagesettings.png b/apps/spreadsheeteditor/main/resources/help/en/images/imagesettings.png index 2f38a516b..820bccbdb 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/en/images/imagesettings.png and b/apps/spreadsheeteditor/main/resources/help/en/images/imagesettings.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/insert_pivot.png b/apps/spreadsheeteditor/main/resources/help/en/images/insert_pivot.png new file mode 100644 index 000000000..852443f44 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/insert_pivot.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/insert_symbol_window.png b/apps/spreadsheeteditor/main/resources/help/en/images/insert_symbol_window.png index bca61c903..81058ed69 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/en/images/insert_symbol_window.png and b/apps/spreadsheeteditor/main/resources/help/en/images/insert_symbol_window.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/insert_symbol_window2.png b/apps/spreadsheeteditor/main/resources/help/en/images/insert_symbol_window2.png new file mode 100644 index 000000000..daf40846e Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/insert_symbol_window2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/insertcellwindow.png b/apps/spreadsheeteditor/main/resources/help/en/images/insertcellwindow.png new file mode 100644 index 000000000..ef3dcace6 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/insertcellwindow.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/insertfunctionwindow.png b/apps/spreadsheeteditor/main/resources/help/en/images/insertfunctionwindow.png new file mode 100644 index 000000000..bdb76fb97 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/insertfunctionwindow.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/insertpivot.png b/apps/spreadsheeteditor/main/resources/help/en/images/insertpivot.png new file mode 100644 index 000000000..6582b2c9b Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/insertpivot.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/insertslicer.png b/apps/spreadsheeteditor/main/resources/help/en/images/insertslicer.png new file mode 100644 index 000000000..099bc6907 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/insertslicer.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/insertslicer_window.png b/apps/spreadsheeteditor/main/resources/help/en/images/insertslicer_window.png new file mode 100644 index 000000000..c69fb1d80 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/insertslicer_window.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/interface/datatab.png b/apps/spreadsheeteditor/main/resources/help/en/images/interface/datatab.png index d76bf408d..d10cc9a2f 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/en/images/interface/datatab.png and b/apps/spreadsheeteditor/main/resources/help/en/images/interface/datatab.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/interface/desktop_datatab.png b/apps/spreadsheeteditor/main/resources/help/en/images/interface/desktop_datatab.png index aab568962..c78b172f5 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/en/images/interface/desktop_datatab.png and b/apps/spreadsheeteditor/main/resources/help/en/images/interface/desktop_datatab.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/interface/desktop_formulatab.png b/apps/spreadsheeteditor/main/resources/help/en/images/interface/desktop_formulatab.png index e01fccf6d..b509ef4d7 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/en/images/interface/desktop_formulatab.png and b/apps/spreadsheeteditor/main/resources/help/en/images/interface/desktop_formulatab.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/interface/desktop_hometab.png b/apps/spreadsheeteditor/main/resources/help/en/images/interface/desktop_hometab.png index 2edeb1fc1..bd0899af4 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/en/images/interface/desktop_hometab.png and b/apps/spreadsheeteditor/main/resources/help/en/images/interface/desktop_hometab.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/interface/desktop_inserttab.png b/apps/spreadsheeteditor/main/resources/help/en/images/interface/desktop_inserttab.png index e5b407265..befaafb51 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/en/images/interface/desktop_inserttab.png and b/apps/spreadsheeteditor/main/resources/help/en/images/interface/desktop_inserttab.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/interface/desktop_layouttab.png b/apps/spreadsheeteditor/main/resources/help/en/images/interface/desktop_layouttab.png index dd9e0946f..075d409a9 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/en/images/interface/desktop_layouttab.png and b/apps/spreadsheeteditor/main/resources/help/en/images/interface/desktop_layouttab.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/interface/formulatab.png b/apps/spreadsheeteditor/main/resources/help/en/images/interface/formulatab.png index 05edab72f..4b9acc7c5 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/en/images/interface/formulatab.png and b/apps/spreadsheeteditor/main/resources/help/en/images/interface/formulatab.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/interface/hometab.png b/apps/spreadsheeteditor/main/resources/help/en/images/interface/hometab.png index 79d41e84d..80aed5f32 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/en/images/interface/hometab.png and b/apps/spreadsheeteditor/main/resources/help/en/images/interface/hometab.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/interface/inserttab.png b/apps/spreadsheeteditor/main/resources/help/en/images/interface/inserttab.png index d7e4e1e51..de094bfd6 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/en/images/interface/inserttab.png and b/apps/spreadsheeteditor/main/resources/help/en/images/interface/inserttab.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/interface/layouttab.png b/apps/spreadsheeteditor/main/resources/help/en/images/interface/layouttab.png index 7a7433530..55c24743e 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/en/images/interface/layouttab.png and b/apps/spreadsheeteditor/main/resources/help/en/images/interface/layouttab.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/interface/pivottabletab.png b/apps/spreadsheeteditor/main/resources/help/en/images/interface/pivottabletab.png index 40d13a762..e7914f2df 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/en/images/interface/pivottabletab.png and b/apps/spreadsheeteditor/main/resources/help/en/images/interface/pivottabletab.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/internallink.png b/apps/spreadsheeteditor/main/resources/help/en/images/internallink.png index 779d2a30d..0bc4180f0 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/en/images/internallink.png and b/apps/spreadsheeteditor/main/resources/help/en/images/internallink.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/linest.png b/apps/spreadsheeteditor/main/resources/help/en/images/linest.png new file mode 100644 index 000000000..d596856d3 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/linest.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/moveelement.png b/apps/spreadsheeteditor/main/resources/help/en/images/moveelement.png new file mode 100644 index 000000000..74ead64a8 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/moveelement.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/multiselect.png b/apps/spreadsheeteditor/main/resources/help/en/images/multiselect.png new file mode 100644 index 000000000..b9b75a987 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/multiselect.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/name_hyperlink.png b/apps/spreadsheeteditor/main/resources/help/en/images/name_hyperlink.png new file mode 100644 index 000000000..31a2a155f Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/name_hyperlink.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/namedranges.png b/apps/spreadsheeteditor/main/resources/help/en/images/namedranges.png index 9c371c17e..700dd0e07 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/en/images/namedranges.png and b/apps/spreadsheeteditor/main/resources/help/en/images/namedranges.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/namedrangesicon.png b/apps/spreadsheeteditor/main/resources/help/en/images/namedrangesicon.png new file mode 100644 index 000000000..47e318c47 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/namedrangesicon.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/newnamewindow.png b/apps/spreadsheeteditor/main/resources/help/en/images/newnamewindow.png index 0993353ff..b11794745 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/en/images/newnamewindow.png and b/apps/spreadsheeteditor/main/resources/help/en/images/newnamewindow.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/numberedlistsettings.png b/apps/spreadsheeteditor/main/resources/help/en/images/numberedlistsettings.png index 667bd205b..0009284a1 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/en/images/numberedlistsettings.png and b/apps/spreadsheeteditor/main/resources/help/en/images/numberedlistsettings.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/pivot_advanced.png b/apps/spreadsheeteditor/main/resources/help/en/images/pivot_advanced.png new file mode 100644 index 000000000..134092516 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/pivot_advanced.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/pivot_advanced2.png b/apps/spreadsheeteditor/main/resources/help/en/images/pivot_advanced2.png new file mode 100644 index 000000000..cda47bcfd Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/pivot_advanced2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/pivot_advanced3.png b/apps/spreadsheeteditor/main/resources/help/en/images/pivot_advanced3.png new file mode 100644 index 000000000..2b5f61192 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/pivot_advanced3.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/pivot_columns.png b/apps/spreadsheeteditor/main/resources/help/en/images/pivot_columns.png new file mode 100644 index 000000000..6c36b4576 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/pivot_columns.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/pivot_compact.png b/apps/spreadsheeteditor/main/resources/help/en/images/pivot_compact.png new file mode 100644 index 000000000..86ddc460c Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/pivot_compact.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/pivot_filter.png b/apps/spreadsheeteditor/main/resources/help/en/images/pivot_filter.png new file mode 100644 index 000000000..4fd944d5a Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/pivot_filter.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/pivot_filter_field.png b/apps/spreadsheeteditor/main/resources/help/en/images/pivot_filter_field.png new file mode 100644 index 000000000..19992d9db Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/pivot_filter_field.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/pivot_filter_field_layout.png b/apps/spreadsheeteditor/main/resources/help/en/images/pivot_filter_field_layout.png new file mode 100644 index 000000000..c25d04606 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/pivot_filter_field_layout.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/pivot_filter_field_subtotals.png b/apps/spreadsheeteditor/main/resources/help/en/images/pivot_filter_field_subtotals.png new file mode 100644 index 000000000..5b2aad727 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/pivot_filter_field_subtotals.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/pivot_filterwindow.png b/apps/spreadsheeteditor/main/resources/help/en/images/pivot_filterwindow.png new file mode 100644 index 000000000..95b98b34b Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/pivot_filterwindow.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/pivot_menu.png b/apps/spreadsheeteditor/main/resources/help/en/images/pivot_menu.png new file mode 100644 index 000000000..7b4e4a642 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/pivot_menu.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/pivot_outline.png b/apps/spreadsheeteditor/main/resources/help/en/images/pivot_outline.png new file mode 100644 index 000000000..e91376212 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/pivot_outline.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/pivot_refresh.png b/apps/spreadsheeteditor/main/resources/help/en/images/pivot_refresh.png new file mode 100644 index 000000000..83d92f93f Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/pivot_refresh.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/pivot_rows.png b/apps/spreadsheeteditor/main/resources/help/en/images/pivot_rows.png new file mode 100644 index 000000000..d6af3c21a Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/pivot_rows.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/pivot_selectdata.png b/apps/spreadsheeteditor/main/resources/help/en/images/pivot_selectdata.png new file mode 100644 index 000000000..02804456b Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/pivot_selectdata.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/pivot_selectdata2.png b/apps/spreadsheeteditor/main/resources/help/en/images/pivot_selectdata2.png new file mode 100644 index 000000000..52a877711 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/pivot_selectdata2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/pivot_selectfields.png b/apps/spreadsheeteditor/main/resources/help/en/images/pivot_selectfields.png new file mode 100644 index 000000000..a26edc95d Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/pivot_selectfields.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/pivot_settings.png b/apps/spreadsheeteditor/main/resources/help/en/images/pivot_settings.png new file mode 100644 index 000000000..74df7c91e Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/pivot_settings.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/pivot_sort.png b/apps/spreadsheeteditor/main/resources/help/en/images/pivot_sort.png new file mode 100644 index 000000000..cade19878 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/pivot_sort.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/pivot_tabular.png b/apps/spreadsheeteditor/main/resources/help/en/images/pivot_tabular.png new file mode 100644 index 000000000..a82328efb Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/pivot_tabular.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/pivot_top.png b/apps/spreadsheeteditor/main/resources/help/en/images/pivot_top.png new file mode 100644 index 000000000..4a9154d6d Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/pivot_top.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/pivot_topten.png b/apps/spreadsheeteditor/main/resources/help/en/images/pivot_topten.png new file mode 100644 index 000000000..7d5d46bc1 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/pivot_topten.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/pivot_values.png b/apps/spreadsheeteditor/main/resources/help/en/images/pivot_values.png new file mode 100644 index 000000000..52443ce82 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/pivot_values.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/pivot_values_field_settings.png b/apps/spreadsheeteditor/main/resources/help/en/images/pivot_values_field_settings.png new file mode 100644 index 000000000..6b3dbc6f6 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/pivot_values_field_settings.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/pivottoptoolbar.png b/apps/spreadsheeteditor/main/resources/help/en/images/pivottoptoolbar.png index c1b44e055..8e6374912 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/en/images/pivottoptoolbar.png and b/apps/spreadsheeteditor/main/resources/help/en/images/pivottoptoolbar.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/printsettingswindow.png b/apps/spreadsheeteditor/main/resources/help/en/images/printsettingswindow.png index 725ac985e..70ee482c7 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/en/images/printsettingswindow.png and b/apps/spreadsheeteditor/main/resources/help/en/images/printsettingswindow.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/proofing.png b/apps/spreadsheeteditor/main/resources/help/en/images/proofing.png new file mode 100644 index 000000000..1ddcd38fe Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/proofing.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/removeduplicates.png b/apps/spreadsheeteditor/main/resources/help/en/images/removeduplicates.png new file mode 100644 index 000000000..acdb32e0c Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/removeduplicates.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/removeduplicates_icon.png b/apps/spreadsheeteditor/main/resources/help/en/images/removeduplicates_icon.png new file mode 100644 index 000000000..8d966c77b Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/removeduplicates_icon.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/removeduplicates_result.png b/apps/spreadsheeteditor/main/resources/help/en/images/removeduplicates_result.png new file mode 100644 index 000000000..c8cf2acb5 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/removeduplicates_result.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/removeduplicates_warning.png b/apps/spreadsheeteditor/main/resources/help/en/images/removeduplicates_warning.png new file mode 100644 index 000000000..085487e96 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/removeduplicates_warning.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/removeduplicates_window.png b/apps/spreadsheeteditor/main/resources/help/en/images/removeduplicates_window.png new file mode 100644 index 000000000..f17ffb7e4 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/removeduplicates_window.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/resizeelement.png b/apps/spreadsheeteditor/main/resources/help/en/images/resizeelement.png new file mode 100644 index 000000000..206959166 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/resizeelement.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/resizetable.png b/apps/spreadsheeteditor/main/resources/help/en/images/resizetable.png index c44162aca..a1c15d63f 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/en/images/resizetable.png and b/apps/spreadsheeteditor/main/resources/help/en/images/resizetable.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/right_image_shape.png b/apps/spreadsheeteditor/main/resources/help/en/images/right_image_shape.png index 76e87371a..0361b7781 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/en/images/right_image_shape.png and b/apps/spreadsheeteditor/main/resources/help/en/images/right_image_shape.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/right_pivot.png b/apps/spreadsheeteditor/main/resources/help/en/images/right_pivot.png new file mode 100644 index 000000000..a24245707 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/right_pivot.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/right_slicer.png b/apps/spreadsheeteditor/main/resources/help/en/images/right_slicer.png new file mode 100644 index 000000000..b778c4652 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/right_slicer.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/right_sparkline.png b/apps/spreadsheeteditor/main/resources/help/en/images/right_sparkline.png index 1b0871c2a..946633e92 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/en/images/right_sparkline.png and b/apps/spreadsheeteditor/main/resources/help/en/images/right_sparkline.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/right_textart.png b/apps/spreadsheeteditor/main/resources/help/en/images/right_textart.png index 5c4d7605e..8e24194d0 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/en/images/right_textart.png and b/apps/spreadsheeteditor/main/resources/help/en/images/right_textart.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/selectcolumn.png b/apps/spreadsheeteditor/main/resources/help/en/images/selectcolumn.png new file mode 100644 index 000000000..bf2e03387 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/selectcolumn.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/selectcolumn_cursor.png b/apps/spreadsheeteditor/main/resources/help/en/images/selectcolumn_cursor.png new file mode 100644 index 000000000..3123de7f2 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/selectcolumn_cursor.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/selectrow.png b/apps/spreadsheeteditor/main/resources/help/en/images/selectrow.png new file mode 100644 index 000000000..dd67f664c Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/selectrow.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/selectrow_cursor.png b/apps/spreadsheeteditor/main/resources/help/en/images/selectrow_cursor.png new file mode 100644 index 000000000..9f640d274 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/selectrow_cursor.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/selecttable.png b/apps/spreadsheeteditor/main/resources/help/en/images/selecttable.png new file mode 100644 index 000000000..9ccfe3731 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/selecttable.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/selecttable_cursor.png b/apps/spreadsheeteditor/main/resources/help/en/images/selecttable_cursor.png new file mode 100644 index 000000000..9db1659a5 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/selecttable_cursor.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/separator.png b/apps/spreadsheeteditor/main/resources/help/en/images/separator.png new file mode 100644 index 000000000..738a4122f Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/separator.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/shape_properties.png b/apps/spreadsheeteditor/main/resources/help/en/images/shape_properties.png index a767058e0..49fe37135 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/en/images/shape_properties.png and b/apps/spreadsheeteditor/main/resources/help/en/images/shape_properties.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/shape_properties_1.png b/apps/spreadsheeteditor/main/resources/help/en/images/shape_properties_1.png index 5ba4ffaf2..f5c65a7c1 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/en/images/shape_properties_1.png and b/apps/spreadsheeteditor/main/resources/help/en/images/shape_properties_1.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/shape_properties_2.png b/apps/spreadsheeteditor/main/resources/help/en/images/shape_properties_2.png index b35f9ed87..e63fe0cb3 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/en/images/shape_properties_2.png and b/apps/spreadsheeteditor/main/resources/help/en/images/shape_properties_2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/shape_properties_3.png b/apps/spreadsheeteditor/main/resources/help/en/images/shape_properties_3.png index c79cea4a4..ab861c69b 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/en/images/shape_properties_3.png and b/apps/spreadsheeteditor/main/resources/help/en/images/shape_properties_3.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/shape_properties_4.png b/apps/spreadsheeteditor/main/resources/help/en/images/shape_properties_4.png index 494352544..5f537460f 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/en/images/shape_properties_4.png and b/apps/spreadsheeteditor/main/resources/help/en/images/shape_properties_4.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/shape_properties_5.png b/apps/spreadsheeteditor/main/resources/help/en/images/shape_properties_5.png index 50572fc92..a459078c7 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/en/images/shape_properties_5.png and b/apps/spreadsheeteditor/main/resources/help/en/images/shape_properties_5.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/shape_properties_6.png b/apps/spreadsheeteditor/main/resources/help/en/images/shape_properties_6.png index 591b8c476..ef0b11618 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/en/images/shape_properties_6.png and b/apps/spreadsheeteditor/main/resources/help/en/images/shape_properties_6.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/slicer.png b/apps/spreadsheeteditor/main/resources/help/en/images/slicer.png new file mode 100644 index 000000000..ac2b809d0 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/slicer.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/slicer_clearfilter.png b/apps/spreadsheeteditor/main/resources/help/en/images/slicer_clearfilter.png new file mode 100644 index 000000000..eb08729e8 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/slicer_clearfilter.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/slicer_columns.png b/apps/spreadsheeteditor/main/resources/help/en/images/slicer_columns.png new file mode 100644 index 000000000..b970ba519 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/slicer_columns.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/slicer_filter.png b/apps/spreadsheeteditor/main/resources/help/en/images/slicer_filter.png new file mode 100644 index 000000000..554379054 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/slicer_filter.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/slicer_icon.png b/apps/spreadsheeteditor/main/resources/help/en/images/slicer_icon.png new file mode 100644 index 000000000..c170a8eef Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/slicer_icon.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/slicer_nodata.png b/apps/spreadsheeteditor/main/resources/help/en/images/slicer_nodata.png new file mode 100644 index 000000000..8c4a08987 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/slicer_nodata.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/slicer_properties.png b/apps/spreadsheeteditor/main/resources/help/en/images/slicer_properties.png new file mode 100644 index 000000000..cdf094158 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/slicer_properties.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/slicer_properties2.png b/apps/spreadsheeteditor/main/resources/help/en/images/slicer_properties2.png new file mode 100644 index 000000000..2dea912f3 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/slicer_properties2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/slicer_properties3.png b/apps/spreadsheeteditor/main/resources/help/en/images/slicer_properties3.png new file mode 100644 index 000000000..777237c4a Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/slicer_properties3.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/slicer_properties4.png b/apps/spreadsheeteditor/main/resources/help/en/images/slicer_properties4.png new file mode 100644 index 000000000..77a59ca3c Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/slicer_properties4.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/slicer_properties5.png b/apps/spreadsheeteditor/main/resources/help/en/images/slicer_properties5.png new file mode 100644 index 000000000..1ef046f11 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/slicer_properties5.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/slicer_scroll.png b/apps/spreadsheeteditor/main/resources/help/en/images/slicer_scroll.png new file mode 100644 index 000000000..a8e0fe942 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/slicer_scroll.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/slicer_settings.png b/apps/spreadsheeteditor/main/resources/help/en/images/slicer_settings.png new file mode 100644 index 000000000..099bc6907 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/slicer_settings.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/spellchecking_settings.png b/apps/spreadsheeteditor/main/resources/help/en/images/spellchecking_settings.png index dcfd73aa7..745f124d4 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/en/images/spellchecking_settings.png and b/apps/spreadsheeteditor/main/resources/help/en/images/spellchecking_settings.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/summary.png b/apps/spreadsheeteditor/main/resources/help/en/images/summary.png new file mode 100644 index 000000000..cb5568664 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/summary.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/above.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/above.png new file mode 100644 index 000000000..97f2005e7 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/above.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/acute.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/acute.png new file mode 100644 index 000000000..12d62abab Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/acute.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/aleph.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/aleph.png new file mode 100644 index 000000000..a7355dba4 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/aleph.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/alpha.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/alpha.png new file mode 100644 index 000000000..ca68e0fe0 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/alpha.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/alpha2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/alpha2.png new file mode 100644 index 000000000..ea3a6aac4 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/alpha2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/amalg.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/amalg.png new file mode 100644 index 000000000..b66c134d5 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/amalg.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/angle.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/angle.png new file mode 100644 index 000000000..de11fe22d Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/angle.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/aoint.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/aoint.png new file mode 100644 index 000000000..35a228fb4 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/aoint.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/approx.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/approx.png new file mode 100644 index 000000000..67b770f72 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/approx.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/arrow.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/arrow.png new file mode 100644 index 000000000..0df492f97 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/arrow.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/asmash.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/asmash.png new file mode 100644 index 000000000..df40f9f2c Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/asmash.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/ast.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/ast.png new file mode 100644 index 000000000..33be7687a Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/ast.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/asymp.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/asymp.png new file mode 100644 index 000000000..a7d21a268 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/asymp.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/atop.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/atop.png new file mode 100644 index 000000000..3d4395beb Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/atop.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/bar.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/bar.png new file mode 100644 index 000000000..774a06eb3 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/bar.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/bar2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/bar2.png new file mode 100644 index 000000000..5321fe5b6 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/bar2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/because.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/because.png new file mode 100644 index 000000000..3456d38c9 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/because.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/begin.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/begin.png new file mode 100644 index 000000000..7bd50e8ed Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/begin.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/below.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/below.png new file mode 100644 index 000000000..8acb835b0 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/below.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/bet.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/bet.png new file mode 100644 index 000000000..c219ee423 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/bet.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/beta.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/beta.png new file mode 100644 index 000000000..748f2b1be Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/beta.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/beta2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/beta2.png new file mode 100644 index 000000000..5c1ccb707 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/beta2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/beth.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/beth.png new file mode 100644 index 000000000..c219ee423 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/beth.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/bigcap.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/bigcap.png new file mode 100644 index 000000000..af7e48ad8 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/bigcap.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/bigcup.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/bigcup.png new file mode 100644 index 000000000..1e27fb3bb Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/bigcup.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/bigodot.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/bigodot.png new file mode 100644 index 000000000..0ebddf66c Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/bigodot.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/bigoplus.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/bigoplus.png new file mode 100644 index 000000000..f555afb0f Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/bigoplus.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/bigotimes.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/bigotimes.png new file mode 100644 index 000000000..43457dc4b Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/bigotimes.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/bigsqcup.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/bigsqcup.png new file mode 100644 index 000000000..614264a01 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/bigsqcup.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/biguplus.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/biguplus.png new file mode 100644 index 000000000..6ec39889f Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/biguplus.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/bigvee.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/bigvee.png new file mode 100644 index 000000000..57851a676 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/bigvee.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/bigwedge.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/bigwedge.png new file mode 100644 index 000000000..0c7cac1e1 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/bigwedge.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/binomial.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/binomial.png new file mode 100644 index 000000000..72bc36e68 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/binomial.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/bot.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/bot.png new file mode 100644 index 000000000..2ded03e82 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/bot.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/bowtie.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/bowtie.png new file mode 100644 index 000000000..2ddfa28c3 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/bowtie.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/box.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/box.png new file mode 100644 index 000000000..20d4a835b Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/box.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/boxdot.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/boxdot.png new file mode 100644 index 000000000..222e1c7c3 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/boxdot.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/boxminus.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/boxminus.png new file mode 100644 index 000000000..caf1ddddb Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/boxminus.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/boxplus.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/boxplus.png new file mode 100644 index 000000000..e1ee49522 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/boxplus.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/bra.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/bra.png new file mode 100644 index 000000000..a3c8b4c83 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/bra.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/break.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/break.png new file mode 100644 index 000000000..859fbf8b4 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/break.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/breve.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/breve.png new file mode 100644 index 000000000..b2392724b Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/breve.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/bullet.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/bullet.png new file mode 100644 index 000000000..05e268132 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/bullet.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/cap.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/cap.png new file mode 100644 index 000000000..76139f161 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/cap.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/cases.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/cases.png new file mode 100644 index 000000000..c5a1d5ffe Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/cases.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/cbrt.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/cbrt.png new file mode 100644 index 000000000..580d0d0d6 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/cbrt.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/cdot.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/cdot.png new file mode 100644 index 000000000..199773081 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/cdot.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/cdots.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/cdots.png new file mode 100644 index 000000000..6246a1f0d Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/cdots.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/check.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/check.png new file mode 100644 index 000000000..9d57528ec Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/check.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/chi.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/chi.png new file mode 100644 index 000000000..1ee801d17 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/chi.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/chi2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/chi2.png new file mode 100644 index 000000000..a27cce57e Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/chi2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/circ.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/circ.png new file mode 100644 index 000000000..9a6aa27c3 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/circ.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/close.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/close.png new file mode 100644 index 000000000..7438a6f0b Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/close.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/clubsuit.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/clubsuit.png new file mode 100644 index 000000000..0ecec4509 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/clubsuit.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/coint.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/coint.png new file mode 100644 index 000000000..f2f305a81 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/coint.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/colonequal.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/colonequal.png new file mode 100644 index 000000000..79fb3a795 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/colonequal.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/cong.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/cong.png new file mode 100644 index 000000000..7d48ef05a Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/cong.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/coprod.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/coprod.png new file mode 100644 index 000000000..d90054fb5 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/coprod.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/cup.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/cup.png new file mode 100644 index 000000000..7b3915395 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/cup.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/dalet.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/dalet.png new file mode 100644 index 000000000..0dea5332b Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/dalet.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/daleth.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/daleth.png new file mode 100644 index 000000000..0dea5332b Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/daleth.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/dashv.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/dashv.png new file mode 100644 index 000000000..0a07ecf03 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/dashv.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/dd.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/dd.png new file mode 100644 index 000000000..b96137d73 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/dd.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/dd2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/dd2.png new file mode 100644 index 000000000..51e50c6ec Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/dd2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/ddddot.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/ddddot.png new file mode 100644 index 000000000..e2512dd96 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/ddddot.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/dddot.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/dddot.png new file mode 100644 index 000000000..8c261bdec Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/dddot.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/ddot.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/ddot.png new file mode 100644 index 000000000..fc158338d Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/ddot.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/ddots.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/ddots.png new file mode 100644 index 000000000..1b15677a9 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/ddots.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/defeq.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/defeq.png new file mode 100644 index 000000000..e4728e579 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/defeq.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/degc.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/degc.png new file mode 100644 index 000000000..f8512ce6d Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/degc.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/degf.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/degf.png new file mode 100644 index 000000000..9d5b4f234 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/degf.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/degree.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/degree.png new file mode 100644 index 000000000..42881ff13 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/degree.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/delta.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/delta.png new file mode 100644 index 000000000..14d5d2386 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/delta.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/delta2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/delta2.png new file mode 100644 index 000000000..6541350c6 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/delta2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/deltaeq.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/deltaeq.png new file mode 100644 index 000000000..1dac99daf Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/deltaeq.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/diamond.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/diamond.png new file mode 100644 index 000000000..9e692a462 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/diamond.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/diamondsuit.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/diamondsuit.png new file mode 100644 index 000000000..bff5edf92 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/diamondsuit.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/div.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/div.png new file mode 100644 index 000000000..059758d9c Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/div.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/dot.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/dot.png new file mode 100644 index 000000000..c0d4f093f Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/dot.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doteq.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doteq.png new file mode 100644 index 000000000..ddef5eb4d Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doteq.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/dots.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/dots.png new file mode 100644 index 000000000..abf33d47a Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/dots.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublea.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublea.png new file mode 100644 index 000000000..b9cb5ed78 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublea.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublea2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublea2.png new file mode 100644 index 000000000..eee509760 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublea2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doubleb.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doubleb.png new file mode 100644 index 000000000..3d98b1da6 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doubleb.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doubleb2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doubleb2.png new file mode 100644 index 000000000..3cdc8d687 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doubleb2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublec.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublec.png new file mode 100644 index 000000000..b4e564fdc Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublec.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublec2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublec2.png new file mode 100644 index 000000000..b3e5ccc8a Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublec2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublecolon.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublecolon.png new file mode 100644 index 000000000..56cfcafd4 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublecolon.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doubled.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doubled.png new file mode 100644 index 000000000..bca050ea8 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doubled.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doubled2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doubled2.png new file mode 100644 index 000000000..6e222d501 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doubled2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublee.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublee.png new file mode 100644 index 000000000..e03f999a8 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublee.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublee2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublee2.png new file mode 100644 index 000000000..6627ded4f Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublee2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublef.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublef.png new file mode 100644 index 000000000..c99ee88a5 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublef.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublef2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublef2.png new file mode 100644 index 000000000..f97effdec Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublef2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublefactorial.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublefactorial.png new file mode 100644 index 000000000..81a4360f2 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublefactorial.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doubleg.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doubleg.png new file mode 100644 index 000000000..97ff9ceed Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doubleg.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doubleg2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doubleg2.png new file mode 100644 index 000000000..19f3727f8 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doubleg2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doubleh.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doubleh.png new file mode 100644 index 000000000..9ca4f14ca Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doubleh.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doubleh2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doubleh2.png new file mode 100644 index 000000000..ea40b9965 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doubleh2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublei.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublei.png new file mode 100644 index 000000000..bb4d100de Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublei.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublei2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublei2.png new file mode 100644 index 000000000..313453e56 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublei2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublej.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublej.png new file mode 100644 index 000000000..43de921d9 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublej.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublej2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublej2.png new file mode 100644 index 000000000..55063df14 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublej2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublek.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublek.png new file mode 100644 index 000000000..6dc9ee87c Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublek.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublek2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublek2.png new file mode 100644 index 000000000..aee85567c Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublek2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublel.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublel.png new file mode 100644 index 000000000..4e4aad8c8 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublel.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublel2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublel2.png new file mode 100644 index 000000000..7382f3652 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublel2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublem.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublem.png new file mode 100644 index 000000000..8f6d8538d Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublem.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublem2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublem2.png new file mode 100644 index 000000000..100097a98 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublem2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublen.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublen.png new file mode 100644 index 000000000..2f1373128 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublen.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublen2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublen2.png new file mode 100644 index 000000000..5ef2738aa Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublen2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doubleo.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doubleo.png new file mode 100644 index 000000000..a13023552 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doubleo.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doubleo2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doubleo2.png new file mode 100644 index 000000000..468459457 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doubleo2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublep.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublep.png new file mode 100644 index 000000000..8db731325 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublep.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublep2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublep2.png new file mode 100644 index 000000000..18bfb16ad Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublep2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doubleq.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doubleq.png new file mode 100644 index 000000000..fc4b77c78 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doubleq.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doubleq2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doubleq2.png new file mode 100644 index 000000000..25b230947 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doubleq2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doubler.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doubler.png new file mode 100644 index 000000000..8f0e988a3 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doubler.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doubler2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doubler2.png new file mode 100644 index 000000000..bb6e40f2a Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doubler2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doubles.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doubles.png new file mode 100644 index 000000000..c05d7f9cd Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doubles.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doubles2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doubles2.png new file mode 100644 index 000000000..d24cb2f27 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doubles2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublet.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublet.png new file mode 100644 index 000000000..c27fe3875 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublet.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublet2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublet2.png new file mode 100644 index 000000000..32f2294a7 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublet2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doubleu.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doubleu.png new file mode 100644 index 000000000..a0f54d440 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doubleu.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doubleu2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doubleu2.png new file mode 100644 index 000000000..3ce700d2f Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doubleu2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublev.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublev.png new file mode 100644 index 000000000..a5b0cb2be Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublev.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublev2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublev2.png new file mode 100644 index 000000000..da1089327 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublev2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublew.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublew.png new file mode 100644 index 000000000..0400ddbed Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublew.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublew2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublew2.png new file mode 100644 index 000000000..a151c1777 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublew2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublex.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublex.png new file mode 100644 index 000000000..648ce4467 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublex.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublex2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublex2.png new file mode 100644 index 000000000..4c2a1de43 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublex2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doubley.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doubley.png new file mode 100644 index 000000000..6ed589d6d Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doubley.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doubley2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doubley2.png new file mode 100644 index 000000000..6e2733f6d Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doubley2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublez.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublez.png new file mode 100644 index 000000000..3d1061f6c Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublez.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublez2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublez2.png new file mode 100644 index 000000000..f12b3eebb Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/doublez2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/downarrow.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/downarrow.png new file mode 100644 index 000000000..71146333a Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/downarrow.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/downarrow2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/downarrow2.png new file mode 100644 index 000000000..7f20d8728 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/downarrow2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/dsmash.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/dsmash.png new file mode 100644 index 000000000..49e2e5855 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/dsmash.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/ee.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/ee.png new file mode 100644 index 000000000..d1c8f6b16 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/ee.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/ell.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/ell.png new file mode 100644 index 000000000..e28155e01 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/ell.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/emptyset.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/emptyset.png new file mode 100644 index 000000000..28b0f75d5 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/emptyset.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/end.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/end.png new file mode 100644 index 000000000..33d901831 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/end.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/epsilon.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/epsilon.png new file mode 100644 index 000000000..c7a53ad49 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/epsilon.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/epsilon2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/epsilon2.png new file mode 100644 index 000000000..dd54bb471 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/epsilon2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/eqarray.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/eqarray.png new file mode 100644 index 000000000..2dbb07eff Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/eqarray.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/equiv.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/equiv.png new file mode 100644 index 000000000..ac3c147eb Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/equiv.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/eta.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/eta.png new file mode 100644 index 000000000..bb6c37c23 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/eta.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/eta2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/eta2.png new file mode 100644 index 000000000..93a5f8f3e Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/eta2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/exists.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/exists.png new file mode 100644 index 000000000..f2e078f08 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/exists.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/forall.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/forall.png new file mode 100644 index 000000000..5c58ecb41 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/forall.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/fraktura.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/fraktura.png new file mode 100644 index 000000000..8570b166c Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/fraktura.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/fraktura2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/fraktura2.png new file mode 100644 index 000000000..b3db328e2 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/fraktura2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturb.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturb.png new file mode 100644 index 000000000..e682b9c49 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturb.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturb2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturb2.png new file mode 100644 index 000000000..570b7daad Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturb2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturc.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturc.png new file mode 100644 index 000000000..3296e1bf7 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturc.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturc2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturc2.png new file mode 100644 index 000000000..9e1c9065f Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturc2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturd.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturd.png new file mode 100644 index 000000000..0c29587e2 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturd.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturd2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturd2.png new file mode 100644 index 000000000..f5afeeb59 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturd2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakture.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakture.png new file mode 100644 index 000000000..a56e7c5a2 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakture.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakture2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakture2.png new file mode 100644 index 000000000..3c9236af6 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakture2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturf.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturf.png new file mode 100644 index 000000000..8a460b206 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturf.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturf2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturf2.png new file mode 100644 index 000000000..f59cc1a49 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturf2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturg.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturg.png new file mode 100644 index 000000000..f9c71a7f9 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturg.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturg2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturg2.png new file mode 100644 index 000000000..1a96d7939 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturg2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturh.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturh.png new file mode 100644 index 000000000..afff96507 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturh.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturh2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturh2.png new file mode 100644 index 000000000..c77ddc227 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturh2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturi.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturi.png new file mode 100644 index 000000000..b690840e0 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturi.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturi2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturi2.png new file mode 100644 index 000000000..93494c9f1 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturi2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturk.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturk.png new file mode 100644 index 000000000..f6ec69273 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturk.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturk2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturk2.png new file mode 100644 index 000000000..88b5d5dd8 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturk2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturl.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturl.png new file mode 100644 index 000000000..4719aa67a Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturl.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturl2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturl2.png new file mode 100644 index 000000000..73365c050 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturl2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturm.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturm.png new file mode 100644 index 000000000..a8d412077 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturm.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturm2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturm2.png new file mode 100644 index 000000000..6823b765f Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturm2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturn.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturn.png new file mode 100644 index 000000000..7562b1587 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturn.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturn2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturn2.png new file mode 100644 index 000000000..5817d5af7 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturn2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturo.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturo.png new file mode 100644 index 000000000..ed9ee60d6 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturo.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturo2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturo2.png new file mode 100644 index 000000000..6becfb0d4 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturo2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturp.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturp.png new file mode 100644 index 000000000..d9c2ef5ed Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturp.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturp2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturp2.png new file mode 100644 index 000000000..1fbe142a9 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturp2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturq.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturq.png new file mode 100644 index 000000000..aac2cafe2 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturq.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturq2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturq2.png new file mode 100644 index 000000000..7026dc172 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturq2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturr.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturr.png new file mode 100644 index 000000000..c14dc2aee Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturr.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturr2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturr2.png new file mode 100644 index 000000000..ad6eb3a2a Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturr2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturs.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturs.png new file mode 100644 index 000000000..b68a51481 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturs.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturs2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturs2.png new file mode 100644 index 000000000..be9bce9ed Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturs2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturt.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturt.png new file mode 100644 index 000000000..8a274312f Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturt.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturt2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturt2.png new file mode 100644 index 000000000..ff4ffbad5 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturt2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturu.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturu.png new file mode 100644 index 000000000..e3835c5e6 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturu.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturu2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturu2.png new file mode 100644 index 000000000..b7c2dfce0 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturu2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturv.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturv.png new file mode 100644 index 000000000..3ae44b0d8 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturv.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturv2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturv2.png new file mode 100644 index 000000000..06951ec52 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturv2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturw.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturw.png new file mode 100644 index 000000000..20e492dd2 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturw.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturw2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturw2.png new file mode 100644 index 000000000..c08b19614 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturw2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturx.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturx.png new file mode 100644 index 000000000..7af677f4d Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturx.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturx2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturx2.png new file mode 100644 index 000000000..9dd4eefc0 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturx2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/fraktury.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/fraktury.png new file mode 100644 index 000000000..ea98c092d Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/fraktury.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/fraktury2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/fraktury2.png new file mode 100644 index 000000000..4cf8f1fb3 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/fraktury2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturz.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturz.png new file mode 100644 index 000000000..b44487f74 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturz.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturz2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturz2.png new file mode 100644 index 000000000..afd922249 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frakturz2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frown.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frown.png new file mode 100644 index 000000000..2fcd6e3a2 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/frown.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/g.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/g.png new file mode 100644 index 000000000..3aa30aaa0 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/g.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/gamma.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/gamma.png new file mode 100644 index 000000000..9f088aa79 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/gamma.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/gamma2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/gamma2.png new file mode 100644 index 000000000..3aa30aaa0 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/gamma2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/ge.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/ge.png new file mode 100644 index 000000000..fe22252f5 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/ge.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/geq.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/geq.png new file mode 100644 index 000000000..fe22252f5 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/geq.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/gets.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/gets.png new file mode 100644 index 000000000..6ab7c9df5 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/gets.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/gg.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/gg.png new file mode 100644 index 000000000..c2b964579 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/gg.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/gimel.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/gimel.png new file mode 100644 index 000000000..4e6cccb60 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/gimel.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/grave.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/grave.png new file mode 100644 index 000000000..fcda94a6c Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/grave.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/greaterthanorequalto.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/greaterthanorequalto.png new file mode 100644 index 000000000..fe22252f5 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/greaterthanorequalto.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/hat.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/hat.png new file mode 100644 index 000000000..e3be83a4c Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/hat.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/hbar.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/hbar.png new file mode 100644 index 000000000..e6025b5d7 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/hbar.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/heartsuit.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/heartsuit.png new file mode 100644 index 000000000..8b26f4fe3 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/heartsuit.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/hookleftarrow.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/hookleftarrow.png new file mode 100644 index 000000000..14f255fb0 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/hookleftarrow.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/hookrightarrow.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/hookrightarrow.png new file mode 100644 index 000000000..b22e5b07a Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/hookrightarrow.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/horizontalellipsis.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/horizontalellipsis.png new file mode 100644 index 000000000..bc8f0fa47 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/horizontalellipsis.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/hphantom.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/hphantom.png new file mode 100644 index 000000000..fb072eee0 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/hphantom.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/hsmash.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/hsmash.png new file mode 100644 index 000000000..ce90638d4 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/hsmash.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/hvec.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/hvec.png new file mode 100644 index 000000000..38fddae5b Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/hvec.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/identitymatrix.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/identitymatrix.png new file mode 100644 index 000000000..3531cd2fc Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/identitymatrix.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/ii.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/ii.png new file mode 100644 index 000000000..e064923e7 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/ii.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/iiiint.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/iiiint.png new file mode 100644 index 000000000..b7b9990d1 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/iiiint.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/iiint.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/iiint.png new file mode 100644 index 000000000..f56aff057 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/iiint.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/iint.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/iint.png new file mode 100644 index 000000000..e73f05c2d Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/iint.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/im.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/im.png new file mode 100644 index 000000000..1470295b3 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/im.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/imath.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/imath.png new file mode 100644 index 000000000..e6493cfef Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/imath.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/in.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/in.png new file mode 100644 index 000000000..ca1f84e4d Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/in.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/inc.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/inc.png new file mode 100644 index 000000000..3ac8c1bcd Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/inc.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/infty.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/infty.png new file mode 100644 index 000000000..1fa3570fa Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/infty.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/int.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/int.png new file mode 100644 index 000000000..0f296cc46 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/int.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/integral.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/integral.png new file mode 100644 index 000000000..65e56f23b Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/integral.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/iota.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/iota.png new file mode 100644 index 000000000..0aefb684e Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/iota.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/iota2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/iota2.png new file mode 100644 index 000000000..b4341851a Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/iota2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/j.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/j.png new file mode 100644 index 000000000..004b30b69 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/j.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/jj.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/jj.png new file mode 100644 index 000000000..5a1e11920 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/jj.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/jmath.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/jmath.png new file mode 100644 index 000000000..9409b6d2e Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/jmath.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/kappa.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/kappa.png new file mode 100644 index 000000000..788d84c11 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/kappa.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/kappa2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/kappa2.png new file mode 100644 index 000000000..fae000a00 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/kappa2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/ket.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/ket.png new file mode 100644 index 000000000..913b1b3fe Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/ket.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/lambda.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/lambda.png new file mode 100644 index 000000000..f98af8017 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/lambda.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/lambda2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/lambda2.png new file mode 100644 index 000000000..3016c6ece Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/lambda2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/langle.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/langle.png new file mode 100644 index 000000000..73ccafba9 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/langle.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/lbbrack.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/lbbrack.png new file mode 100644 index 000000000..9dbb14049 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/lbbrack.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/lbrace.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/lbrace.png new file mode 100644 index 000000000..004d22d05 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/lbrace.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/lbrack.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/lbrack.png new file mode 100644 index 000000000..0cf789daa Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/lbrack.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/lceil.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/lceil.png new file mode 100644 index 000000000..48d4f69b1 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/lceil.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/ldiv.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/ldiv.png new file mode 100644 index 000000000..ba17e3ae6 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/ldiv.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/ldivide.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/ldivide.png new file mode 100644 index 000000000..e1071483b Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/ldivide.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/ldots.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/ldots.png new file mode 100644 index 000000000..abf33d47a Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/ldots.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/le.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/le.png new file mode 100644 index 000000000..d839ba35d Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/le.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/left.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/left.png new file mode 100644 index 000000000..9f27f6310 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/left.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/leftarrow.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/leftarrow.png new file mode 100644 index 000000000..bafaf636c Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/leftarrow.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/leftarrow2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/leftarrow2.png new file mode 100644 index 000000000..60f405f7e Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/leftarrow2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/leftharpoondown.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/leftharpoondown.png new file mode 100644 index 000000000..d15921dc9 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/leftharpoondown.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/leftharpoonup.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/leftharpoonup.png new file mode 100644 index 000000000..d02cea5c4 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/leftharpoonup.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/leftrightarrow.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/leftrightarrow.png new file mode 100644 index 000000000..2c0305093 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/leftrightarrow.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/leftrightarrow2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/leftrightarrow2.png new file mode 100644 index 000000000..923152c61 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/leftrightarrow2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/leq.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/leq.png new file mode 100644 index 000000000..d839ba35d Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/leq.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/lessthanorequalto.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/lessthanorequalto.png new file mode 100644 index 000000000..d839ba35d Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/lessthanorequalto.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/lfloor.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/lfloor.png new file mode 100644 index 000000000..fc34c4345 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/lfloor.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/lhvec.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/lhvec.png new file mode 100644 index 000000000..10407df0f Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/lhvec.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/limit.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/limit.png new file mode 100644 index 000000000..f5669a329 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/limit.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/ll.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/ll.png new file mode 100644 index 000000000..6e31ee790 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/ll.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/lmoust.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/lmoust.png new file mode 100644 index 000000000..3547706a8 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/lmoust.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/longleftarrow.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/longleftarrow.png new file mode 100644 index 000000000..c9647da6b Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/longleftarrow.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/longleftrightarrow.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/longleftrightarrow.png new file mode 100644 index 000000000..8e0e50d6d Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/longleftrightarrow.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/longrightarrow.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/longrightarrow.png new file mode 100644 index 000000000..5bed54fe7 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/longrightarrow.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/lrhar.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/lrhar.png new file mode 100644 index 000000000..9a54ae201 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/lrhar.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/lvec.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/lvec.png new file mode 100644 index 000000000..b6ab35fac Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/lvec.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/mapsto.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/mapsto.png new file mode 100644 index 000000000..11e8e411a Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/mapsto.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/matrix.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/matrix.png new file mode 100644 index 000000000..36dd9f3ef Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/matrix.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/mid.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/mid.png new file mode 100644 index 000000000..21fca0ac1 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/mid.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/middle.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/middle.png new file mode 100644 index 000000000..e47884724 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/middle.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/models.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/models.png new file mode 100644 index 000000000..a87cdc82e Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/models.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/mp.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/mp.png new file mode 100644 index 000000000..2f295f402 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/mp.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/mu.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/mu.png new file mode 100644 index 000000000..6a4698faf Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/mu.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/mu2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/mu2.png new file mode 100644 index 000000000..96d5b82b7 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/mu2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/nabla.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/nabla.png new file mode 100644 index 000000000..9c4283a5a Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/nabla.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/naryand.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/naryand.png new file mode 100644 index 000000000..c43d7a980 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/naryand.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/ne.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/ne.png new file mode 100644 index 000000000..e55862cde Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/ne.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/nearrow.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/nearrow.png new file mode 100644 index 000000000..5e95d358a Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/nearrow.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/neq.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/neq.png new file mode 100644 index 000000000..e55862cde Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/neq.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/ni.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/ni.png new file mode 100644 index 000000000..b09ce8864 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/ni.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/norm.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/norm.png new file mode 100644 index 000000000..915abac55 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/norm.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/notcontain.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/notcontain.png new file mode 100644 index 000000000..2b6ac81ce Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/notcontain.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/notelement.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/notelement.png new file mode 100644 index 000000000..7c5d182db Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/notelement.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/notequal.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/notequal.png new file mode 100644 index 000000000..e55862cde Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/notequal.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/notgreaterthan.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/notgreaterthan.png new file mode 100644 index 000000000..2a8af203d Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/notgreaterthan.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/notin.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/notin.png new file mode 100644 index 000000000..7f2abe531 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/notin.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/notlessthan.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/notlessthan.png new file mode 100644 index 000000000..2e9fc8ef2 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/notlessthan.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/nu.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/nu.png new file mode 100644 index 000000000..b32087c3d Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/nu.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/nu2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/nu2.png new file mode 100644 index 000000000..6e0f14582 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/nu2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/nwarrow.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/nwarrow.png new file mode 100644 index 000000000..35ad2ee95 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/nwarrow.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/o.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/o.png new file mode 100644 index 000000000..1cbbaaf6f Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/o.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/o2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/o2.png new file mode 100644 index 000000000..86a488451 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/o2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/odot.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/odot.png new file mode 100644 index 000000000..afbd0f8b9 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/odot.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/of.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/of.png new file mode 100644 index 000000000..d8a2567c7 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/of.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/oiiint.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/oiiint.png new file mode 100644 index 000000000..c66dc2947 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/oiiint.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/oiint.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/oiint.png new file mode 100644 index 000000000..5587f29d5 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/oiint.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/oint.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/oint.png new file mode 100644 index 000000000..30b5bbab3 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/oint.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/omega.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/omega.png new file mode 100644 index 000000000..a3224bcc5 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/omega.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/omega2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/omega2.png new file mode 100644 index 000000000..6689087de Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/omega2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/ominus.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/ominus.png new file mode 100644 index 000000000..5a07e9ce7 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/ominus.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/open.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/open.png new file mode 100644 index 000000000..2874320d3 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/open.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/oplus.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/oplus.png new file mode 100644 index 000000000..6ab9c8d22 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/oplus.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/otimes.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/otimes.png new file mode 100644 index 000000000..6a2de09e2 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/otimes.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/over.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/over.png new file mode 100644 index 000000000..de78bfdde Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/over.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/overbar.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/overbar.png new file mode 100644 index 000000000..5b3896815 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/overbar.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/overbrace.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/overbrace.png new file mode 100644 index 000000000..71c7d4729 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/overbrace.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/overbracket.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/overbracket.png new file mode 100644 index 000000000..cbd4f3598 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/overbracket.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/overline.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/overline.png new file mode 100644 index 000000000..5b3896815 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/overline.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/overparen.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/overparen.png new file mode 100644 index 000000000..645d88650 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/overparen.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/overshell.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/overshell.png new file mode 100644 index 000000000..907e993d3 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/overshell.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/parallel.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/parallel.png new file mode 100644 index 000000000..3b42a5958 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/parallel.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/partial.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/partial.png new file mode 100644 index 000000000..bb198b44d Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/partial.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/perp.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/perp.png new file mode 100644 index 000000000..ecc490ff4 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/perp.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/phantom.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/phantom.png new file mode 100644 index 000000000..f3a11e75a Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/phantom.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/phi.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/phi.png new file mode 100644 index 000000000..a42a2bdea Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/phi.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/phi2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/phi2.png new file mode 100644 index 000000000..d9f811dab Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/phi2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/pi.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/pi.png new file mode 100644 index 000000000..d6c5da9c4 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/pi.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/pi2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/pi2.png new file mode 100644 index 000000000..11486a83b Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/pi2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/pm.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/pm.png new file mode 100644 index 000000000..13cccaad2 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/pm.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/pmatrix.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/pmatrix.png new file mode 100644 index 000000000..37b0ed5ac Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/pmatrix.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/pppprime.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/pppprime.png new file mode 100644 index 000000000..4aec7dd87 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/pppprime.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/ppprime.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/ppprime.png new file mode 100644 index 000000000..460f07d5d Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/ppprime.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/pprime.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/pprime.png new file mode 100644 index 000000000..8c60382c1 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/pprime.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/prec.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/prec.png new file mode 100644 index 000000000..fc174cb73 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/prec.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/preceq.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/preceq.png new file mode 100644 index 000000000..185576937 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/preceq.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/prime.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/prime.png new file mode 100644 index 000000000..2144d9f2a Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/prime.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/prod.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/prod.png new file mode 100644 index 000000000..9fbe6e266 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/prod.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/propto.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/propto.png new file mode 100644 index 000000000..11a52f90b Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/propto.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/psi.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/psi.png new file mode 100644 index 000000000..b09ce71e3 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/psi.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/psi2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/psi2.png new file mode 100644 index 000000000..71faedd0b Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/psi2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/qdrt.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/qdrt.png new file mode 100644 index 000000000..f2b8a5518 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/qdrt.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/quadratic.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/quadratic.png new file mode 100644 index 000000000..26116211c Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/quadratic.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/rangle.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/rangle.png new file mode 100644 index 000000000..913b1b3fe Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/rangle.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/rangle2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/rangle2.png new file mode 100644 index 000000000..5fd0b87a0 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/rangle2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/ratio.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/ratio.png new file mode 100644 index 000000000..d480fe90c Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/ratio.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/rbrace.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/rbrace.png new file mode 100644 index 000000000..31decded8 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/rbrace.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/rbrack.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/rbrack.png new file mode 100644 index 000000000..772a722da Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/rbrack.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/rbrack2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/rbrack2.png new file mode 100644 index 000000000..5aa46c098 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/rbrack2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/rceil.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/rceil.png new file mode 100644 index 000000000..c96575404 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/rceil.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/rddots.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/rddots.png new file mode 100644 index 000000000..17f60c0bc Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/rddots.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/re.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/re.png new file mode 100644 index 000000000..36ffb2a8e Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/re.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/rect.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/rect.png new file mode 100644 index 000000000..b7942dbe1 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/rect.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/rfloor.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/rfloor.png new file mode 100644 index 000000000..0303da681 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/rfloor.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/rho.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/rho.png new file mode 100644 index 000000000..c6020c1f1 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/rho.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/rho2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/rho2.png new file mode 100644 index 000000000..7242001a4 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/rho2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/rhvec.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/rhvec.png new file mode 100644 index 000000000..38fddae5b Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/rhvec.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/right.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/right.png new file mode 100644 index 000000000..cc933121f Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/right.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/rightarrow.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/rightarrow.png new file mode 100644 index 000000000..0df492f97 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/rightarrow.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/rightarrow2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/rightarrow2.png new file mode 100644 index 000000000..62d8b7b90 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/rightarrow2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/rightharpoondown.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/rightharpoondown.png new file mode 100644 index 000000000..c25b921a2 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/rightharpoondown.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/rightharpoonup.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/rightharpoonup.png new file mode 100644 index 000000000..a33c56ea0 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/rightharpoonup.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/rmoust.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/rmoust.png new file mode 100644 index 000000000..e85cdefb9 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/rmoust.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/root.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/root.png new file mode 100644 index 000000000..8bdcb3d60 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/root.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scripta.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scripta.png new file mode 100644 index 000000000..b4305bc75 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scripta.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scripta2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scripta2.png new file mode 100644 index 000000000..4df4c10ea Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scripta2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptb.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptb.png new file mode 100644 index 000000000..16801f863 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptb.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptb2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptb2.png new file mode 100644 index 000000000..3f395bf2e Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptb2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptc.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptc.png new file mode 100644 index 000000000..292f64223 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptc.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptc2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptc2.png new file mode 100644 index 000000000..f7d64e076 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptc2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptd.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptd.png new file mode 100644 index 000000000..4a52adbda Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptd.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptd2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptd2.png new file mode 100644 index 000000000..db75ffaee Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptd2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scripte.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scripte.png new file mode 100644 index 000000000..e9cea6589 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scripte.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scripte2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scripte2.png new file mode 100644 index 000000000..908b98abf Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scripte2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptf.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptf.png new file mode 100644 index 000000000..16b2839e3 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptf.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptf2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptf2.png new file mode 100644 index 000000000..0fc78029f Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptf2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptg.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptg.png new file mode 100644 index 000000000..7e2b4e5c7 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptg.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptg2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptg2.png new file mode 100644 index 000000000..83ecfa7c3 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptg2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scripth.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scripth.png new file mode 100644 index 000000000..ce9052e49 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scripth.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scripth2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scripth2.png new file mode 100644 index 000000000..b669be42d Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scripth2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scripti.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scripti.png new file mode 100644 index 000000000..8650af640 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scripti.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scripti2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scripti2.png new file mode 100644 index 000000000..35253e28d Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scripti2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptj.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptj.png new file mode 100644 index 000000000..23a0b18d7 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptj.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptj2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptj2.png new file mode 100644 index 000000000..964ca2f83 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptj2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptk.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptk.png new file mode 100644 index 000000000..605b16e12 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptk.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptk2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptk2.png new file mode 100644 index 000000000..c34227b6a Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptk2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptl.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptl.png new file mode 100644 index 000000000..e28155e01 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptl.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptl2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptl2.png new file mode 100644 index 000000000..20327fde5 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptl2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptm.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptm.png new file mode 100644 index 000000000..5cdd4bc43 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptm.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptm2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptm2.png new file mode 100644 index 000000000..b257e5e69 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptm2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptn.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptn.png new file mode 100644 index 000000000..22b214f97 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptn.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptn2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptn2.png new file mode 100644 index 000000000..3cd942d5b Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptn2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scripto.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scripto.png new file mode 100644 index 000000000..64efc9545 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scripto.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scripto2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scripto2.png new file mode 100644 index 000000000..8f8bdc904 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scripto2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptp.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptp.png new file mode 100644 index 000000000..ec9874130 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptp.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptp2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptp2.png new file mode 100644 index 000000000..2df092612 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptp2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptq.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptq.png new file mode 100644 index 000000000..f9c07bbff Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptq.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptq2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptq2.png new file mode 100644 index 000000000..1eb2e1182 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptq2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptr.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptr.png new file mode 100644 index 000000000..49b85ae2d Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptr.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptr2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptr2.png new file mode 100644 index 000000000..46dea0796 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptr2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scripts.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scripts.png new file mode 100644 index 000000000..74caee45b Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scripts.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scripts2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scripts2.png new file mode 100644 index 000000000..0acf23f10 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scripts2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptt.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptt.png new file mode 100644 index 000000000..cb6ace16a Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptt.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptt2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptt2.png new file mode 100644 index 000000000..9407b3372 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptt2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptu.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptu.png new file mode 100644 index 000000000..cffb832bc Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptu.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptu2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptu2.png new file mode 100644 index 000000000..5f85cd60c Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptu2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptv.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptv.png new file mode 100644 index 000000000..d6e628a61 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptv.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptv2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptv2.png new file mode 100644 index 000000000..346dd8c56 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptv2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptw.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptw.png new file mode 100644 index 000000000..9e5d381db Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptw.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptw2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptw2.png new file mode 100644 index 000000000..953ee2de5 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptw2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptx.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptx.png new file mode 100644 index 000000000..db732c630 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptx.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptx2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptx2.png new file mode 100644 index 000000000..166c889a3 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptx2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scripty.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scripty.png new file mode 100644 index 000000000..7784bb149 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scripty.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scripty2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scripty2.png new file mode 100644 index 000000000..f3003ade0 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scripty2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptz.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptz.png new file mode 100644 index 000000000..e8d5a0cde Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptz.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptz2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptz2.png new file mode 100644 index 000000000..8197fe515 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/scriptz2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/sdiv.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/sdiv.png new file mode 100644 index 000000000..0109428ac Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/sdiv.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/sdivide.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/sdivide.png new file mode 100644 index 000000000..0109428ac Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/sdivide.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/searrow.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/searrow.png new file mode 100644 index 000000000..8a7f64b14 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/searrow.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/setminus.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/setminus.png new file mode 100644 index 000000000..fa6c2cfee Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/setminus.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/sigma.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/sigma.png new file mode 100644 index 000000000..2cb2bb178 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/sigma.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/sigma2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/sigma2.png new file mode 100644 index 000000000..20e9f5ee7 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/sigma2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/sim.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/sim.png new file mode 100644 index 000000000..6a056eda0 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/sim.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/simeq.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/simeq.png new file mode 100644 index 000000000..eade7ebc9 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/simeq.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/smash.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/smash.png new file mode 100644 index 000000000..90896057d Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/smash.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/smile.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/smile.png new file mode 100644 index 000000000..83b716c6c Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/smile.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/spadesuit.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/spadesuit.png new file mode 100644 index 000000000..3bdec8945 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/spadesuit.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/sqcap.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/sqcap.png new file mode 100644 index 000000000..4cf43990e Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/sqcap.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/sqcup.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/sqcup.png new file mode 100644 index 000000000..426d02fdc Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/sqcup.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/sqrt.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/sqrt.png new file mode 100644 index 000000000..0acfaa8ed Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/sqrt.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/sqsubseteq.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/sqsubseteq.png new file mode 100644 index 000000000..14365cc02 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/sqsubseteq.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/sqsuperseteq.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/sqsuperseteq.png new file mode 100644 index 000000000..6db6d42fb Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/sqsuperseteq.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/star.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/star.png new file mode 100644 index 000000000..1f15f019f Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/star.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/subset.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/subset.png new file mode 100644 index 000000000..f23368a90 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/subset.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/subseteq.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/subseteq.png new file mode 100644 index 000000000..d867e2df0 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/subseteq.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/succ.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/succ.png new file mode 100644 index 000000000..6b7c0526b Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/succ.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/succeq.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/succeq.png new file mode 100644 index 000000000..22eff46c6 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/succeq.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/sum.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/sum.png new file mode 100644 index 000000000..44106f72f Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/sum.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/superset.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/superset.png new file mode 100644 index 000000000..67f46e1ad Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/superset.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/superseteq.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/superseteq.png new file mode 100644 index 000000000..89521782c Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/superseteq.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/swarrow.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/swarrow.png new file mode 100644 index 000000000..66df3fa2a Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/swarrow.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/tau.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/tau.png new file mode 100644 index 000000000..abd5bf872 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/tau.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/tau2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/tau2.png new file mode 100644 index 000000000..f15d8e443 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/tau2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/therefore.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/therefore.png new file mode 100644 index 000000000..d3f02aba3 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/therefore.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/theta.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/theta.png new file mode 100644 index 000000000..d2d89e82b Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/theta.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/theta2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/theta2.png new file mode 100644 index 000000000..13f05f84f Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/theta2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/tilde.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/tilde.png new file mode 100644 index 000000000..1b08ef3a8 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/tilde.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/times.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/times.png new file mode 100644 index 000000000..da3afaf8b Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/times.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/to.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/to.png new file mode 100644 index 000000000..0df492f97 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/to.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/top.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/top.png new file mode 100644 index 000000000..afbe5b832 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/top.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/tvec.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/tvec.png new file mode 100644 index 000000000..ee71f7105 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/tvec.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/ubar.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/ubar.png new file mode 100644 index 000000000..e27b66816 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/ubar.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/ubar2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/ubar2.png new file mode 100644 index 000000000..63c20216a Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/ubar2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/underbar.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/underbar.png new file mode 100644 index 000000000..938c658e5 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/underbar.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/underbrace.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/underbrace.png new file mode 100644 index 000000000..f2c080b58 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/underbrace.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/underbracket.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/underbracket.png new file mode 100644 index 000000000..a78aa1cdc Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/underbracket.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/underline.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/underline.png new file mode 100644 index 000000000..b55100731 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/underline.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/underparen.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/underparen.png new file mode 100644 index 000000000..ccaac1590 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/underparen.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/uparrow.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/uparrow.png new file mode 100644 index 000000000..eccaa488d Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/uparrow.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/uparrow2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/uparrow2.png new file mode 100644 index 000000000..3cff2b9de Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/uparrow2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/updownarrow.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/updownarrow.png new file mode 100644 index 000000000..65ea76252 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/updownarrow.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/updownarrow2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/updownarrow2.png new file mode 100644 index 000000000..c10bc8fef Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/updownarrow2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/uplus.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/uplus.png new file mode 100644 index 000000000..39109a95b Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/uplus.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/upsilon.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/upsilon.png new file mode 100644 index 000000000..e69b7226c Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/upsilon.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/upsilon2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/upsilon2.png new file mode 100644 index 000000000..2012f0408 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/upsilon2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/varepsilon.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/varepsilon.png new file mode 100644 index 000000000..1788b80e9 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/varepsilon.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/varphi.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/varphi.png new file mode 100644 index 000000000..ebcb44f39 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/varphi.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/varpi.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/varpi.png new file mode 100644 index 000000000..82e5e48bd Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/varpi.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/varrho.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/varrho.png new file mode 100644 index 000000000..d719b4e0c Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/varrho.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/varsigma.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/varsigma.png new file mode 100644 index 000000000..b154dede3 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/varsigma.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/vartheta.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/vartheta.png new file mode 100644 index 000000000..5e49bc074 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/vartheta.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/vbar.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/vbar.png new file mode 100644 index 000000000..197c22ee5 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/vbar.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/vdash.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/vdash.png new file mode 100644 index 000000000..2387c2d76 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/vdash.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/vdots.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/vdots.png new file mode 100644 index 000000000..1220d68b5 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/vdots.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/vec.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/vec.png new file mode 100644 index 000000000..0a50d9fe6 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/vec.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/vee.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/vee.png new file mode 100644 index 000000000..be2573ef8 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/vee.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/vert.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/vert.png new file mode 100644 index 000000000..adc50b15c Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/vert.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/vert2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/vert2.png new file mode 100644 index 000000000..915abac55 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/vert2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/vmatrix.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/vmatrix.png new file mode 100644 index 000000000..e8dba6fd2 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/vmatrix.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/vphantom.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/vphantom.png new file mode 100644 index 000000000..fd8194604 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/vphantom.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/wedge.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/wedge.png new file mode 100644 index 000000000..34e02a584 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/wedge.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/wp.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/wp.png new file mode 100644 index 000000000..00c630d38 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/wp.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/wr.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/wr.png new file mode 100644 index 000000000..bceef6f19 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/wr.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/xi.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/xi.png new file mode 100644 index 000000000..f83b1dfd2 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/xi.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/xi2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/xi2.png new file mode 100644 index 000000000..4c59fd3e2 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/xi2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/zeta.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/zeta.png new file mode 100644 index 000000000..aaf47b628 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/zeta.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/symbols/zeta2.png b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/zeta2.png new file mode 100644 index 000000000..fb04db0ab Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/symbols/zeta2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/table_settings_icon.png b/apps/spreadsheeteditor/main/resources/help/en/images/table_settings_icon.png index f650f83e0..19b5b37fb 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/en/images/table_settings_icon.png and b/apps/spreadsheeteditor/main/resources/help/en/images/table_settings_icon.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/tablesettingstab.png b/apps/spreadsheeteditor/main/resources/help/en/images/tablesettingstab.png index 7b2762ead..8433a2c1f 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/en/images/tablesettingstab.png and b/apps/spreadsheeteditor/main/resources/help/en/images/tablesettingstab.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/tabletemplate.png b/apps/spreadsheeteditor/main/resources/help/en/images/tabletemplate.png index e0178d43a..698e80591 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/en/images/tabletemplate.png and b/apps/spreadsheeteditor/main/resources/help/en/images/tabletemplate.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/templateslist.png b/apps/spreadsheeteditor/main/resources/help/en/images/templateslist.png index a65c38f12..01aceb8be 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/en/images/templateslist.png and b/apps/spreadsheeteditor/main/resources/help/en/images/templateslist.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/textimportwizard.png b/apps/spreadsheeteditor/main/resources/help/en/images/textimportwizard.png index dbd7492ae..14c8abfb5 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/en/images/textimportwizard.png and b/apps/spreadsheeteditor/main/resources/help/en/images/textimportwizard.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/undoautoexpansion.png b/apps/spreadsheeteditor/main/resources/help/en/images/undoautoexpansion.png index a91cbb8bc..2ff86f803 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/en/images/undoautoexpansion.png and b/apps/spreadsheeteditor/main/resources/help/en/images/undoautoexpansion.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/verticaltext.png b/apps/spreadsheeteditor/main/resources/help/en/images/verticaltext.png new file mode 100644 index 000000000..dd84e8654 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/verticaltext.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/search/indexes.js b/apps/spreadsheeteditor/main/resources/help/en/search/indexes.js index 569e63247..8e4b63f5e 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/search/indexes.js +++ b/apps/spreadsheeteditor/main/resources/help/en/search/indexes.js @@ -50,6 +50,11 @@ var indexes = "title": "AMORDEGRC Function", "body": "The AMORDEGRC function is one of the financial functions. It is used to calculate the depreciation of an asset for each accounting period using a degressive depreciation method. The AMORDEGRC function syntax is: AMORDEGRC(cost, date-purchased, first-period, salvage, period, rate[, [basis]]) where cost is the cost of the asset. date-purchased is the date when asset is purchased. first-period is the date when the first period ends. salvage is the salvage value of the asset at the end of its lifetime. period is the period you wish to calculate depreciation for. rate is the rate of depreciation. basis is the day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. It can be one of the following: Numeric value Count basis 0 US (NASD) 30/360 1 Actual/actual 2 Actual/360 3 Actual/365 4 European 30/360 Note: dates must be entered by using the DATE function. The values can be entered manually or included into the cell you make reference to. To apply the AMORDEGRC function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Financial function group from the list, click the AMORDEGRC function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." }, + { + "id": "Functions/amorintm.htm", + "title": "FV Function", + "body": "The FV function is one of the financial functions. It is used to calculate the future value of an investment based on a specified interest rate and a constant payment schedule. The FV function syntax is: FV(rate, nper, pmt [, [pv] [,[type]]]) where rate is the interest rate for the investment. nper is a number of payments. pmt is a payment amount. pv is a present value of the payments. It is an optional argument. If it is omitted, the function will assume pv to be 0. type is a period when the payments are due. It is an optional argument. If it is set to 0 or omitted, the function will assume the payments to be due at the end of the period. If type is set to 1, the payments are due at the beginning of the period. Note: cash paid out (such as deposits to savings) is represented by negative numbers; cash received (such as dividend checks) is represented by positive numbers. The numeric values can be entered manually or included into the cell you make reference to. To apply the FV function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Financial function group from the list, click the FV function, enter the required arguments separating them by commas, press the Enter button. The result will be displayed in the selected cell." + }, { "id": "Functions/amorlinc.htm", "title": "AMORLINC Function", @@ -240,6 +245,11 @@ var indexes = "title": "CEILING Function", "body": "The CEILING function is one of the math and trigonometry functions. It is used to round the number up to the nearest multiple of significance. The CEILING function syntax is: 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. Note: if the values of x and significance have different signs, the function returns the #NUM! error. To apply the CEILING function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Math and trigonometry function group from the list, click the CEILING function, enter the required arguments separating them by comma, press the Enter button. The result will be displayed in the selected cell." }, + { + "id": "Functions/cell.htm", + "title": "CELL Function", + "body": "The CELL function is one of the information functions. It is used to return information about the formatting, location, or contents of a cell. The CELL function syntax is: CELL(info_type, [reference]) where: info_type is a text value that specifies which information about the cell you want to get. This is the required argument. The available values are listed in the table below. [reference] is a cell that you want to get information about. If it is omitted, the information is returned for the last changed cell. If the reference argument is specified as a range of cells, the function returns the information for the upper left cell of the range. Text value Type of the information \"address\" Returns the reference to the cell. \"col\" Returns the column number where the cell is located. \"color\" Returns 1 if the cell is formatted in color for negative values; otherwise returns 0. \"contents\" Returns the value that the cell contains. \"filename\" Returns the filename of the file that contains the cell. \"format\" Returns a text value corresponding to the number format of the cell. The text values are listed in the table below. \"parentheses\" Returns 1 if the cell is formatted with parentheses for positive or all values; otherwise returns 0. \"prefix\" Returns the single quotation mark (') if the text in the cell is left aligned, the double quotation mark (\") if the text is right aligned, the caret (^) if the text is centered, and an empty text (\"\") if the cell contains anything else. \"protect\" Returns 0 if the cell is not locked; returns 1 if the cell is locked. \"row\" Returns the row number where the cell is located. \"type\" Returns \"b\" for an empty cell, \"l\" for a text value, and \"v\" for any other value in the cell. \"width\" Returns the width of the cell, rounded off to an integer. Below you can see the text values which the function returns for the \"format\" argument Number format Returned text value General G 0 F0 #,##0 ,0 0.00 F2 #,##0.00 ,2 $#,##0_);($#,##0) C0 $#,##0_);[Red]($#,##0) C0- $#,##0.00_);($#,##0.00) C2 $#,##0.00_);[Red]($#,##0.00) C2- 0% P0 0.00% P2 0.00E+00 S2 # ?/? or # ??/?? G m/d/yy or m/d/yy h:mm or mm/dd/yy D4 d-mmm-yy or dd-mmm-yy D1 d-mmm or dd-mmm D2 mmm-yy D3 mm/dd D5 h:mm AM/PM D7 h:mm:ss AM/PM D6 h:mm D9 h:mm:ss D8 To apply the CELL function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Information function group from the list, click the CELL function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." + }, { "id": "Functions/char.htm", "title": "CHAR Function", @@ -1240,6 +1250,11 @@ var indexes = "title": "LEN/LENB Function", "body": "The LEN/LENB function is one of the text and data functions. Is used to analyse the specified string and return the number of characters it contains. The LEN function is intended for languages that use the single-byte character set (SBCS), while LENB - for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc. The LEN/LENB function syntax is: LEN(string) LENB(string) where string is a data entered manually or included into the cell you make reference to. To apply the LEN/LENB function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Text and data function group from the list, click the LEN/LENB function, enter the required argument, press the Enter button. The result will be displayed in the selected cell." }, + { + "id": "Functions/linest.htm", + "title": "LINEST Function", + "body": "The LINEST function is one of the statistical functions. It is used to calculate the statistics for a line by using the least squares method to calculate a straight line that best fits your data, and then returns an array that describes the line; because this function returns an array of values, it must be entered as an array formula. The LINEST function syntax is: LINEST( known_y's, [known_x's], [const], [stats] ) where: known_y's is a known range of y values in the equation y = mx + b. This is the required argument. known_x's is a known range of x values in the equation y = mx + b. This is an optional argument. If it is omitted, known_x's is assumed to be the array {1,2,3,...} with the same number of values as known_y's. const is a logical value that specifies if you want to set b equal to 0. This is an optional argument. If it is set to TRUE or omitted, b is calculated normally. If it is set to FALSE, b is set equal to 0. stats is a logical value that specifies if you want to return additional regression statistics. This is an optional argument. If it is set to TRUE, the function returns the additional regression statistics. If it is set to FALSE or omitted, the function does not return the additional regression statistics. To apply the LINEST function, select the cell where you wish to display the result, click the Insert function icon situated at the top toolbar, or right-click within a selected cell and select the Insert Function option from the menu, or click the icon situated at the formula bar, select the Statistical function group from the list, click the LINEST function, enter the required arguments separating them by commas or select a range of cells with the mouse, press the Enter button. The first value of the resulting array will be displayed in the selected cell." + }, { "id": "Functions/ln.htm", "title": "LN Function", @@ -2258,231 +2273,256 @@ var indexes = { "id": "HelpfulHints/About.htm", "title": "About Spreadsheet Editor", - "body": "Spreadsheet Editor is an online application that lets you edit your spreadsheets directly in your browser . Using Spreadsheet Editor, you can perform various editing operations like in any desktop editor, print the edited spreadsheets keeping all the formatting details or download them onto your computer hard disk drive as XLSX, PDF, ODS, CSV, XLTX, PDF/A, OTS file. To view the current software version and licensor details in the online version, click the icon at the left sidebar. To view the current software version and licensor details in the desktop version, select the About menu item at the left sidebar of the main program window." + "body": "The Spreadsheet Editor is an online application that allows you to edit spreadsheets directly in your browser . Using the Spreadsheet Editor, you can perform various editing operations like in any desktop editor, print the edited spreadsheets keeping all the formatting details or download them onto your computer hard disk drive as XLSX, PDF, ODS, CSV, XLTX, PDF/A, OTS file. To view the current version of the software and licensor details in the online version, click the About icon on the left sidebar. To view the current version of the software and licensor details in the desktop version, select the About menu item on the left sidebar of the main program window." }, { "id": "HelpfulHints/AdvancedSettings.htm", - "title": "Advanced Settings of Spreadsheet Editor", - "body": "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 click the View settings icon on the right side of the editor header and select the Advanced settings option. The general advanced settings are: Commenting Display is used to turn on/off the live commenting option: Turn on display of the comments - if you disable this feature, the commented cells will be marked on the sheet only if you click the Comments icon at the left sidebar. Turn on display of the resolved comments - this feature is disabled by default so that the resolved comments were hidden on the sheet. You can view such comments only if you click the Comments icon at the left sidebar. Enable this option if you want to display resolved comments on the sheet. Autosave is used in the online version to turn on/off automatic saving of changes you make while editing. Autorecover - is used in the desktop version to turn on/off the option that allows to automatically recover spreadsheets in case of the unexpected program closing. Reference Style is used to turn on/off the R1C1 reference style. By default, this option is disabled and the A1 reference style is used. When the A1 reference style is used, columns are designated by letters, and rows are designated by numbers. If you select the cell located in row 3 and column 2, its address displayed in the box to the left of the the formula bar looks like this: B3. If the R1C1 reference style is enabled, both rows and columns are designated by numbers. If you select the cell at the intersection of row 3 and column 2, its address will look like this: R3C2. Letter R indicates the row number and letter C indicates the column number. In case you refer to other cells using the R1C1 reference style, the reference to a target cell is formed based on the distance from an active cell. For example, when you select the cell in row 5 and column 1 and refer to the cell in row 3 and column 2, the reference is R[-2]C[1]. Numbers in square brackets designate the position of the cell you refer to relative to the current cell position, i.e. the target cell is 2 rows up and 1 column to the right of the active cell. If you select the cell in row 1 and column 2 and refer to the same cell in row 3 and column 2, the reference is R[2]C, i.e. the target cell is 2 rows down from the active cell and in the same column. Co-editing Mode is used to select the display of the changes made during the co-editing: By default the Fast mode is selected, the users who take part in the document co-editing will see the changes in real time once they are made by other users. If you prefer not to see other user changes (so that they do not disturb you, or for some other reason), select the Strict mode and all the changes will be shown only after you click the Save icon notifying you that there are changes from other users. Default Zoom Value is used to set the default zoom value selecting it in the list of available options from 50% to 200%. Font Hinting is used to select the type a font is displayed in Spreadsheet Editor: Choose As Windows if you like the way fonts are usually displayed on Windows, i.e. using Windows font hinting. Choose As OS X if you like the way fonts are usually displayed on a Mac, i.e. without any font hinting at all. Choose Native if you want your text to be displayed with the hinting embedded into font files. Default cache mode - used to select the cache mode for the font characters. It’s not recommended to switch it without any reason. It can be helpful in some cases only, for example, when an issue in the Google Chrome browser with the enabled hardware acceleration occurs. Spreadsheet Editor has two cache modes: In the first cache mode, each letter is cached as a separate picture. In the second cache mode, a picture of a certain size is selected where letters are placed dynamically and a mechanism of allocating/removing memory in this picture is also implemented. If there is not enough memory, a second picture is created, etc. The Default cache mode setting applies two above mentioned cache modes separately for different browsers: When the Default cache mode setting is enabled, Internet Explorer (v. 9, 10, 11) uses the second cache mode, other browsers use the first cache mode. When the Default cache mode setting is disabled, Internet Explorer (v. 9, 10, 11) uses the first cache mode, other browsers use the second cache mode. Unit of Measurement is used to specify what units are used for measuring elements parameters such as width, height, spacing, margins etc. You can select the Centimeter, Point, or Inch option. Formula Language is used to select the language for displaying and entering formula names. Regional Settings is used to select the default display format for currency and date and time. Separator is used to specify the characters that you want to use as separators for decimals and thousands. The Use separators based on regional settings option is selected by default. If you want to use custom separators, uncheck this box and enter the necessary characters in the Decimal separator and Thousands separator fields below. To save the changes you made, click the Apply button." + "title": "Advanced Settings of the Spreadsheet Editor", + "body": "The Spreadsheet Editor allows you to change its general advanced settings. To access them, open the File tab on the top toolbar and select the Advanced Settings... option. You can also click the View settings icon on the right side of the editor header and select the Advanced settings option. The General advanced settings are: Commenting Display is used to turn on/off the live commenting option: Turn on display of the comments - if you disable this feature, the commented cells will be marked in the sheet only if you click the Comments icon on the left sidebar. Turn on display of the resolved comments - this feature is disabled by default to hide the resolved comments in the sheet. You can view such comments only if you click the Comments icon on the left sidebar. Enable this option if you want to display the resolved comments in the sheet. Autosave is used in the online version to turn on/off automatic saving of changes made during the editing process. Autorecover - is used in the desktop version to turn on/off the option that allows you to automatically recover spreadsheets if the program closes unexpectedly. Reference Style is used to turn on/off the R1C1 reference style. By default, this option is disabled and the A1 reference style is used. When the A1 reference style is used, columns are designated by letters, and rows are designated by numbers. If you select the cell located in row 3 and column 2, its address displayed in the box to the left of the the formula bar looks like this: B3. If the R1C1 reference style is enabled, both rows and columns are designated by numbers. If you select the cell at the intersection of row 3 and column 2, its address will look like this: R3C2. Letter R indicates the row number and letter C indicates the column number. In case you refer to other cells using the R1C1 reference style, the reference to a target cell is formed based on the distance from an active cell. For example, when you select the cell in row 5 and column 1 and refer to the cell in row 3 and column 2, the reference is R[-2]C[1]. The numbers in square brackets designate the position of the cell relative to the current cell position, i.e. the target cell is 2 rows up and 1 column to the right of the active cell. If you select the cell in row 1 and column 2 and refer to the same cell in row 3 and column 2, the reference is R[2]C, i.e. the target cell is 2 rows down from the active cell and in the same column. Co-editing Mode is used to select how the changes made during the co-editing are displayed: By default, the Fast mode is selected, and the co-authors will see all the changes in real time as soon as they are made by others. If you prefer not to see the changes made by other users (so that they do not disturb you), select the Strict mode, and all the changes will be shown only after you click the Save icon, and you will be informed that there are changes by other users. Default Zoom Value is used to set the default zoom value by selecting it in the list of available options from 50% to 200%. Font Hinting is used to specify how a font is displayed in the Spreadsheet Editor: Choose As Windows to display fonts in the same manner as on a Mac, i.e. without any font hinting at all. Choose As OS if you like the way fonts are usually displayed on a Mac, i.e. without any font hinting at all. Choose Native to display the text with hinting embedded into the font files. Default cache mode - used to select the cache mode for the font characters. It’s not recommended to switch it without any reason. It can be helpful in some cases only, for example, when an issue with the enabled hardware acceleration in the Google Chrome browser occurs. The Spreadsheet Editor has two cache modes: In the first cache mode, each letter is cached as a separate picture. In the second cache mode, a picture of a certain size is selected where letters are placed dynamically and a mechanism of allocating/removing memory in this picture is also implemented. If there is not enough memory, a second picture is created, etc. The Default cache mode setting applies two above mentioned cache modes separately for different browsers: When the Default cache mode setting is enabled, Internet Explorer (v. 9, 10, 11) uses the second cache mode, other browsers use the first cache mode. When the Default cache mode setting is disabled, Internet Explorer (v. 9, 10, 11) uses the first cache mode, other browsers use the second cache mode. Unit of Measurement is used to specify what units are used for measuring elements parameters such as width, height, spacing, margins etc. You can select the Centimeter, Point, or Inch option. Formula Language is used to select the language for displaying and entering formula names. Regional Settings is used to select the default display format for currency and date and time. Separator is used to specify the characters that you want to use as separators for decimals and thousands. The Use separators based on regional settings option is selected by default. If you want to use custom separators, uncheck this box and enter the necessary characters in the Decimal separator and Thousands separator fields below. Cut, copy and paste - used to show the Paste Options button when content is pasted. Check the box to enable this feature. Macros Settings - used to set macros display with a notification. Choose Disable all to disable all macros within the spreadsheet; Show notification to receive notifications about macros within the spreadsheet; Enable all to automatically run all macros within the spreadsheet. To save the changes you made, click the Apply button." }, { "id": "HelpfulHints/CollaborativeEditing.htm", "title": "Collaborative Spreadsheet Editing", - "body": "Spreadsheet Editor offers you the possibility to work at a spreadsheet collaboratively with other users. This feature includes: simultaneous multi-user access to the edited spreadsheet visual indication of cells that are being edited by other users real-time changes display or synchronization of changes with one button click chat to share ideas concerning particular spreadsheet parts comments containing the description of a task or problem that should be solved (it's also possible to work with comments in the offline mode, without connecting to the online version) Connecting to the online version In the desktop editor, open the Connect to cloud option of the left-side menu in the main program window. Connect to your cloud office specifying your account login and password. 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 real time. Strict is selected to hide other user changes until you click the Save icon to save your own changes and accept the changes made by others. The mode can be selected in the Advanced Settings. It's also possible to choose the necessary mode using the Co-editing Mode icon at the Collaboration tab of the top toolbar: Note: when you co-edit a spreadsheet in the Fast mode, the possibility to Undo/Redo the last operation is not available. When a spreadsheet 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 spreadsheet is specified on the right side of the editor header - . 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 allowing you to manage the users who have access to the file right from the spreadsheet: invite new users giving them permissions to edit, read or comment the spreadsheet, 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 spreadsheet at the moment and when there are other users and the icon looks like . It's also possible to set access rights using the Sharing icon at the Collaboration tab of the top toolbar. As soon as one of the users saves his/her changes by clicking the 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 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 part of the spreadsheet you are going to edit now etc. The chat messages are stored during one session only. To discuss the spreadsheet content it is better to use comments which are stored until you decide to delete them. To access the chat and leave a message for other users, click the icon at the left sidebar, or switch to the Collaboration tab of the top toolbar and click the Chat button, enter your text into the corresponding field below, press the Send button. All the messages left by users will be displayed on the panel on the left. If there are new messages you haven't read yet, the chat icon will look like this - . To close the panel with chat messages, click the icon once again. Comments It's possible to work with comments in the offline mode, without connecting to the online version. To leave a comment, select a cell where you think there is an error or problem, switch to the Insert or Collaboration tab of the top toolbar and click the Comment button, or use the 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, enter the needed text, 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 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 icon. If you are using the Strict co-editing mode, new comments added by other users will become visible only after you click the icon in the left upper corner of the top toolbar. 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, type in your reply text in the entry field and press the Reply button. You can manage the added comments using the icons in the comment balloon or at the Comments panel on the left: edit the currently selected by clicking the icon, delete the currently selected by clicking the icon, close the currently selected discussion by clicking the 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 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 icon. Adding mentions When entering comments, you can use the mentions feature that allows to attract somebody's attention to the comment and send a notification to the mentioned user via email and Talk. To add a mention enter the \"+\" or \"@\" sign anywhere in the comment text - a list of the portal users will open. To simplify the search process, you can start typing a name in the comment field - the user list will change as you type. Select the necessary person from the list. If the file has not yet been shared with the mentioned user, the Sharing Settings window will open. Read only access type is selected by default. Change it if necessary and click OK. The mentioned user will receive an email notification that he/she has been mentioned in a comment. If the file has been shared, the user will also receive a corresponding notification. To remove comments, click the Remove button at the Collaboration tab of the top toolbar, select the necessary option from the menu: Remove Current Comments - to remove the currently selected comment. If some replies have beed added to the comment, all its replies will be removed as well. Remove My Comments - to remove comments you added without removing comments added by other users. If some replies have beed added to your comment, all its replies will be removed as well. Remove All Comments - to remove all the comments in the spreadsheet that you and other users added. To close the panel with comments, click the icon at the left sidebar once again." + "body": "Spreadsheet Editor offers you the possibility to work on a spreadsheet collaboratively with other users. This feature includes: simultaneous multi-user access to the edited spreadsheet visual indication of cells that are being edited by other users real-time changes display or synchronization of changes with one button click chat to share ideas concerning particular parts of the spreadsheet comments containing the description of a task or problem that should be solved (it's also possible to work with comments in the offline mode, without connecting to the online version) Connecting to the online version In the desktop editor, open the Connect to cloud option on the left side of the main program window. Connect to your cloud office specifying your account login and password. Co-editing The Spreadsheet Editor allows you to select one of the two available co-editing modes: Fast is used by default and shows the changes made by other users in real time. Strict is selected to hide other user's changes until you click the Save icon to save your own changes and accept the changes made by others. The mode can be selected in the Advanced Settings. It's also possible to choose the necessary mode using the Co-editing Mode icon on the Collaboration tab of the top toolbar: Note: when you co-edit a spreadsheet in the Fast mode, the possibility to Undo/Redo the last operation is not available. When a spreadsheet 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 when they are editing the text. The number of users who are working on the current spreadsheet is specified on the right side of the editor header - . If you want to see who exactly is 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 allowing you to manage the users who have access to the file right from the spreadsheet: invite new users giving them permissions to edit, read or comment the spreadsheet, 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 spreadsheet at the moment and when there are other users and the icon looks like . It's also possible to set access rights using the Sharing icon on the Collaboration tab of the top toolbar. As soon as one of the users saves his/her changes by clicking the 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 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 tasks with your collaborators, etc. The chat messages are stored during one session only. To discuss the spreadsheet content, it is better to use comments which are stored until they are deleted. To access the chat and leave a message for other users, click the icon on the left sidebar, or switch to the Collaboration tab of the top toolbar and click the Chat button, enter your text into the corresponding field below, press the Send button. All the messages left by users will be displayed on the panel on the left. If there are new messages you haven't read yet, the chat icon will look like this - . To close the panel with chat messages, click the icon once again. Comments It's possible to work with comments in the offline mode, without connecting to the online version. To leave a comment, select a cell where you think there is an error or problem, switch to the Insert or Collaboration tab of the top toolbar and click the Comment button, or use the Comments icon on 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, enter the needed text, 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 tab on 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. If you are using the Strict co-editing mode, new comments added by other users will become visible only after you click the icon in the left upper corner of the top toolbar. 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, type in your reply text in the entry field and press the Reply button. You can manage the added comments using the icons in the comment balloon or on the Comments panel on the left: edit the currently selected by clicking the icon, delete the currently selected by clicking the icon, close the currently selected discussion by clicking the 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 icon. If you want to hide resolved comments, click the File tab on 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 icon. Adding mentions When entering comments, you can use the mentions feature that allows you to attract somebody's attention to the comment and send a notification to the mentioned user via email and Talk. To add a mention enter the \"+\" or \"@\" sign anywhere in the comment text - a list of the portal users will open. To simplify the search process, you can start typing the required name in the comment field - the user list will change while you type. Select the necessary person from the list. If the file has not been shared with the mentioned user yet, the Sharing Settings window will open. The Read only access type is selected by default. Change it if necessary and click OK. The mentioned user will receive an email notification that he/she has been mentioned in a comment. If the file has been shared, the user will also receive a corresponding notification. To remove comments, click the Remove button on the Collaboration tab of the top toolbar, select the necessary option from the menu: Remove Current Comments - to remove the currently selected comment. If some replies have been added to the comment, all its replies will be removed as well. Remove My Comments - to remove comments you added without removing comments added by other users. If some replies have been added to your comment, all its replies will be removed as well. Remove All Comments - to remove all the comments in the spreadsheet that you and other users added. To close the panel with comments, click the Comments icon on the left sidebar once again." }, { "id": "HelpfulHints/KeyboardShortcuts.htm", "title": "Keyboard Shortcuts", - "body": "Windows/LinuxMac OS Working with Spreadsheet Open 'File' panel Alt+F ⌥ Option+F Open the File panel to save, download, print the current spreadsheet, view its info, create a new spreadsheet or open an existing one, access Spreadsheet Editor help or advanced settings. Open 'Find and Replace' dialog box Ctrl+F ^ Ctrl+F, ⌘ Cmd+F Open the Find and Replace dialog box to start searching for a cell containing the characters you need. Open 'Find and Replace' dialog box with replacement field Ctrl+H ^ Ctrl+H Open the Find and Replace dialog box with the replacement field to replace one or more occurrences of the found characters. Open 'Comments' panel Ctrl+⇧ Shift+H ^ Ctrl+⇧ Shift+H, ⌘ Cmd+⇧ Shift+H Open the Comments panel to add your own comment or reply to other users' comments. Open comment field Alt+H ⌥ Option+H Open a data entry field where you can add the text of your comment. Open 'Chat' panel Alt+Q ⌥ Option+Q Open the Chat panel and send a message. Save spreadsheet Ctrl+S ^ Ctrl+S, ⌘ Cmd+S Save all the changes to the spreadsheet currently edited with Spreadsheet Editor. The active file will be saved with its current file name, location, and file format. Print spreadsheet Ctrl+P ^ Ctrl+P, ⌘ Cmd+P Print your spreadsheet with one of the available printers or save it to a file. Download as... Ctrl+⇧ Shift+S ^ Ctrl+⇧ Shift+S, ⌘ Cmd+⇧ Shift+S Open the Download as... panel to save the currently edited spreadsheet to the computer hard disk drive in one of the supported formats: XLSX, PDF, ODS, CSV, XLTX, PDF/A, OTS. Full screen F11 Switch to the full screen view to fit Spreadsheet Editor into your screen. Help menu F1 F1 Open Spreadsheet Editor Help menu. Open existing file (Desktop Editors) Ctrl+O On the Open local file tab in Desktop Editors, opens the standard dialog box that allows to select an existing file. Close file (Desktop Editors) Ctrl+W, Ctrl+F4 ^ Ctrl+W, ⌘ Cmd+W Close the current spreadsheet window in Desktop Editors. Element contextual menu ⇧ Shift+F10 ⇧ Shift+F10 Open the selected element contextual menu. Navigation Move one cell up, down, left, or right ← → ↑ ↓ ← → ↑ ↓ Outline a cell above/below the currently selected one or to the left/to the right of it. Jump to the edge of the current data region Ctrl+← → ↑ ↓ ⌘ Cmd+← → ↑ ↓ Outline a cell at the edge of the current data region in a worksheet. Jump to the beginning of the row Home Home Outline a cell in the column A of the current row. Jump to the beginning of the spreadsheet Ctrl+Home ^ Ctrl+Home Outline the cell A1. Jump to the end of the row End, Ctrl+→ End, ⌘ Cmd+→ Outline the last cell of the current row. Jump to the end of the spreadsheet Ctrl+End ^ Ctrl+End Outline the lower right used cell on the worksheet situated at the bottommost row with data of the rightmost column with data. If the cursor is in the formula bar, it will be placed to the end of the text. Move to the previous sheet Alt+Page Up ⌥ Option+Page Up Move to the previous sheet in your spreadsheet. Move to the next sheet Alt+Page Down ⌥ Option+Page Down Move to the next sheet in your spreadsheet. Move up one row ↑, ⇧ Shift+↵ Enter ⇧ Shift+↵ Return Outline the cell above the current one in the same column. Move down one row ↓, ↵ Enter ↵ Return Outline the cell below the current one in the same column. Move left one column ←, ⇧ Shift+↹ Tab ←, ⇧ Shift+↹ Tab Outline the previous cell of the current row. Move right one column →, ↹ Tab →, ↹ Tab Outline the next cell of the current row. Move down one screen Page Down Page Down Move one screen down in the worksheet. Move up one screen Page Up Page Up Move one screen up in the worksheet. Zoom In Ctrl++ ^ Ctrl+=, ⌘ Cmd+= Zoom in the currently edited spreadsheet. Zoom Out Ctrl+- ^ Ctrl+-, ⌘ Cmd+- Zoom out the currently edited spreadsheet. Data Selection Select all Ctrl+A, Ctrl+⇧ Shift+␣ Spacebar ⌘ Cmd+A Select the entire worksheet. Select column Ctrl+␣ Spacebar ^ Ctrl+␣ Spacebar Select an entire column in a worksheet. Select row ⇧ Shift+␣ Spacebar ⇧ Shift+␣ Spacebar Select an entire row in a worksheet. Select fragment ⇧ Shift+→ ← ⇧ Shift+→ ← Select the cell by cell. Select from cursor to beginning of row ⇧ Shift+Home ⇧ Shift+Home Select a fragment from the cursor to the beginning of the current row. Select from cursor to end of row ⇧ Shift+End ⇧ Shift+End Select a fragment from the cursor to the end of the current row. Extend the selection to beginning of worksheet Ctrl+⇧ Shift+Home ^ Ctrl+⇧ Shift+Home Select a fragment from the current selected cells to the beginning of the worksheet. Extend the selection to the last used cell Ctrl+⇧ Shift+End ^ Ctrl+⇧ Shift+End Select a fragment from the current selected cells to the last used cell on the worksheet (at the bottommost row with data of the rightmost column with data). If the cursor is in the formula bar, this will select all text in the formula bar from the cursor position to the end without affecting the height of the formula bar. Select one cell to the left ⇧ Shift+↹ Tab ⇧ Shift+↹ Tab Select one cell to the left in a table. Select one cell to the right ↹ Tab ↹ Tab Select one cell to the right in a table. Extend the selection to the nearest nonblank cell to the right ⇧ Shift+Alt+End, Ctrl+⇧ Shift+→ ⇧ Shift+⌥ Option+End Extend the selection to the nearest nonblank cell in the same row to the right of the active cell. If the next cell is blank, the selection will be extended to the next nonblank cell. Extend the selection to the nearest nonblank cell to the left ⇧ Shift+Alt+Home, Ctrl+⇧ Shift+← ⇧ Shift+⌥ Option+Home Extend the selection to the nearest nonblank cell in the same row to the left of the active cell. If the next cell is blank, the selection will be extended to the next nonblank cell. Extend the selection to the nearest nonblank cell up/down the column Ctrl+⇧ Shift+↑ ↓ Extend the selection to the nearest nonblank cell in the same column up/down from the active cell. If the next cell is blank, the selection will be extended to the next nonblank cell. Extend the selection down one screen ⇧ Shift+Page Down ⇧ Shift+Page Down Extend the selection to include all the cells one screen down from the active cell. Extend the selection up one screen ⇧ Shift+Page Up ⇧ Shift+Page Up Extend the selection to include all the cells one screen up from the active cell. Undo and Redo Undo Ctrl+Z ⌘ Cmd+Z Reverse the latest performed action. Redo Ctrl+Y ⌘ Cmd+Y Repeat the latest undone action. Cut, Copy, and Paste Cut Ctrl+X, ⇧ Shift+Delete ⌘ Cmd+X Cut the the selected data and send them to the computer clipboard memory. The cut data can be later inserted to another place in the same worksheet, into another spreadsheet, or into some other program. Copy Ctrl+C, Ctrl+Insert ⌘ Cmd+C Send the selected data to the computer clipboard memory. The copied data can be later inserted to another place in the same worksheet, into another spreadsheet, or into some other program. Paste Ctrl+V, ⇧ Shift+Insert ⌘ Cmd+V Insert the previously copied/cut data from the computer clipboard memory to the current cursor position. The data can be previously copied from the same worksheet, from another spreadsheet, or from some other program. Data Formatting Bold Ctrl+B ^ Ctrl+B, ⌘ Cmd+B Make the font of the selected text fragment bold giving it more weight or remove bold formatting. Italic Ctrl+I ^ Ctrl+I, ⌘ Cmd+I Make the font of the selected text fragment italicized giving it some right side tilt or remove italic formatting. Underline Ctrl+U ^ Ctrl+U, ⌘ Cmd+U Make the selected text fragment underlined with the line going under the letters or remove underlining. Strikeout Ctrl+5 ^ Ctrl+5, ⌘ Cmd+5 Make the selected text fragment struck out with the line going through the letters or remove strikeout formatting. Add Hyperlink Ctrl+K ⌘ Cmd+K Insert a hyperlink to an external website or another worksheet. Edit active cell F2 F2 Edit the active cell and position the insertion point at the end of the cell contents. If editing in a cell is turned off, the insertion point will be moved into the Formula Bar. Data Filtering Enable/Remove Filter Ctrl+⇧ Shift+L ^ Ctrl+⇧ Shift+L, ⌘ Cmd+⇧ Shift+L Enable a filter for a selected cell range or remove the filter. Format as table template Ctrl+L ^ Ctrl+L, ⌘ Cmd+L Apply a table template to a selected cell range. Data Entry Complete cell entry and move down ↵ Enter ↵ Return Complete a cell entry in the selected cell or the formula bar, and move to the cell below. Complete cell entry and move up ⇧ Shift+↵ Enter ⇧ Shift+↵ Return Complete a cell entry in the selected cell, and move to the cell above. Start new line Alt+↵ Enter Start a new line in the same cell. Cancel Esc Esc Cancel an entry in the selected cell or the formula bar. Delete to the left ← Backspace ← Backspace Delete one character to the left in the formula bar or in the selected cell when the cell editing mode is activated. Also removes the content of the active cell. Delete to the right Delete Delete, Fn+← Backspace Delete one character to the right in the formula bar or in the selected cell when the cell editing mode is activated. Also removes the cell contents (data and formulas) from selected cells without affecting cell formats or comments. Clear cell content Delete, ← Backspace Delete, ← Backspace Remove the content (data and formulas) from selected cells without affecting cell format or comments. Complete a cell entry and move to the right ↹ Tab ↹ Tab Complete a cell entry in the selected cell or the formula bar and move to the cell on the right. Complete a cell entry and move to the left ⇧ Shift+↹ Tab ⇧ Shift+↹ Tab Complete a cell entry in the selected cell or the formula bar and move to the cell on the left . Functions SUM function Alt+= ⌥ Option+= Insert the SUM function into the selected cell. Open drop-down list Alt+↓ Open a selected drop-down list. Open contextual menu ≣ Menu Open a contextual menu for the selected cell or cell range. Recalculate functions F9 F9 Recalculate the entire workbook. Recalculate functions ⇧ Shift+F9 ⇧ Shift+F9 Recalculate the current worksheet. Data Formats Open the 'Number Format' dialog box Ctrl+1 ^ Ctrl+1 Open the Number Format dialog box. Apply the General format Ctrl+⇧ Shift+~ ^ Ctrl+⇧ Shift+~ Applies the General number format. Apply the Currency format Ctrl+⇧ Shift+$ ^ Ctrl+⇧ Shift+$ Applies the Currency format with two decimal places (negative numbers in parentheses). Apply the Percentage format Ctrl+⇧ Shift+% ^ Ctrl+⇧ Shift+% Applies the Percentage format with no decimal places. Apply the Exponential format Ctrl+⇧ Shift+^ ^ Ctrl+⇧ Shift+^ Applies the Exponential number format with two decimal places. Apply the Date format Ctrl+⇧ Shift+# ^ Ctrl+⇧ Shift+# Applies the Date format with the day, month, and year. Apply the Time format Ctrl+⇧ Shift+@ ^ Ctrl+⇧ Shift+@ Applies the Time format with the hour and minute, and AM or PM. Apply the Number format Ctrl+⇧ Shift+! ^ Ctrl+⇧ Shift+! Applies the Number format with two decimal places, thousands separator, and minus sign (-) for negative values. Modifying Objects Constrain movement ⇧ Shift + drag ⇧ Shift + drag Constrain the movement of the selected object horizontally or vertically. Set 15-degree rotation ⇧ Shift + drag (when rotating) ⇧ Shift + drag (when rotating) Constrain the rotation angle to 15-degree increments. Maintain proportions ⇧ Shift + drag (when resizing) ⇧ Shift + drag (when resizing) Maintain the proportions of the selected object when resizing. Draw straight line or arrow ⇧ Shift + drag (when drawing lines/arrows) ⇧ Shift + drag (when drawing lines/arrows) Draw a straight vertical/horizontal/45-degree line or arrow. Movement by one-pixel increments Ctrl+← → ↑ ↓ Hold down the Ctrl key and use the keybord arrows to move the selected object by one pixel at a time." + "body": "Windows/LinuxMac OS Working with Spreadsheet Open 'File' panel Alt+F ⌥ Option+F Open the File panel to save, download, print the current spreadsheet, view its info, create a new spreadsheet or open an existing one, access the help menu of the Spreadsheet Editor or its advanced settings. Open 'Find and Replace' dialog box Ctrl+F ^ Ctrl+F, ⌘ Cmd+F Open the Find and Replace dialog box to start searching for a cell containing the required characters. Open 'Find and Replace' dialog box with replacement field Ctrl+H ^ Ctrl+H Open the Find and Replace dialog box with the replacement field to replace one or more occurrences of the found characters. Open 'Comments' panel Ctrl+⇧ Shift+H ^ Ctrl+⇧ Shift+H, ⌘ Cmd+⇧ Shift+H Open the Comments panel to add your own comment or reply to other users' comments. Open comment field Alt+H ⌥ Option+H Open a data entry field where you can add the text of your comment. Open 'Chat' panel Alt+Q ⌥ Option+Q Open the Chat panel and send a message. Save spreadsheet Ctrl+S ^ Ctrl+S, ⌘ Cmd+S Save all the changes to the spreadsheet currently edited with the Spreadsheet Editor. The active file will be saved with its current file name, location, and file format. Print spreadsheet Ctrl+P ^ Ctrl+P, ⌘ Cmd+P Print your spreadsheet with one of the available printers or save it to a file. Download as... Ctrl+⇧ Shift+S ^ Ctrl+⇧ Shift+S, ⌘ Cmd+⇧ Shift+S Open the Download as... panel to save the currently edited spreadsheet to the computer hard disk drive in one of the supported formats: XLSX, PDF, ODS, CSV, XLTX, PDF/A, OTS. Full screen F11 Switch to the full screen view to fit the Spreadsheet Editor on the screen. Help menu F1 F1 Open the Help menu of the Spreadsheet Editor . Open existing file (Desktop Editors) Ctrl+O Open the standard dialog box on the Open local file tab in the Desktop Editors that allows you to select an existing file. Close file (Desktop Editors) Ctrl+W, Ctrl+F4 ^ Ctrl+W, ⌘ Cmd+W Close the current spreadsheet window in the Desktop Editors. Element contextual menu ⇧ Shift+F10 ⇧ Shift+F10 Open the contextual menu of the selected element. Reset the ‘Zoom’ parameter Ctrl+0 ^ Ctrl+0 or ⌘ Cmd+0 Reset the ‘Zoom’ parameter of the current spreadsheet to a default 100%. Navigation Move one cell up, down, left, or right ← → ↑ ↓ ← → ↑ ↓ Outline a cell above/below the currently selected one or to the left/to the right of it. Jump to the edge of the current data region Ctrl+← → ↑ ↓ ⌘ Cmd+← → ↑ ↓ Outline a cell at the edge of the current data region in a worksheet. Jump to the beginning of the row Home Home Outline a cell in the column A of the current row. Jump to the beginning of the spreadsheet Ctrl+Home ^ Ctrl+Home Outline the cell A1. Jump to the end of the row End, Ctrl+→ End, ⌘ Cmd+→ Outline the last cell of the current row. Jump to the end of the spreadsheet Ctrl+End ^ Ctrl+End Outline the lower right used cell in the worksheet situated in the bottommost row with data of the rightmost column with data. If the cursor is in the formula bar, it will be placed to the end of the text. Move to the previous sheet Alt+Page Up ⌥ Option+Page Up Move to the previous sheet in your spreadsheet. Move to the next sheet Alt+Page Down ⌥ Option+Page Down Move to the next sheet in your spreadsheet. Move up one row ↑, ⇧ Shift+↵ Enter ⇧ Shift+↵ Return Outline the cell above the current one in the same column. Move down one row ↓, ↵ Enter ↵ Return Outline the cell below the current one in the same column. Move left one column ←, ⇧ Shift+↹ Tab ←, ⇧ Shift+↹ Tab Outline the previous cell of the current row. Move right one column →, ↹ Tab →, ↹ Tab Outline the next cell of the current row. Move down one screen Page Down Page Down Move one screen down in the worksheet. Move up one screen Page Up Page Up Move one screen up in the worksheet. Zoom In Ctrl++ ^ Ctrl+=, ⌘ Cmd+= Zoom in the currently edited spreadsheet. Zoom Out Ctrl+- ^ Ctrl+-, ⌘ Cmd+- Zoom out the currently edited spreadsheet. Data Selection Select all Ctrl+A, Ctrl+⇧ Shift+␣ Spacebar ⌘ Cmd+A Select the entire worksheet. Select column Ctrl+␣ Spacebar ^ Ctrl+␣ Spacebar Select an entire column in a worksheet. Select row ⇧ Shift+␣ Spacebar ⇧ Shift+␣ Spacebar Select an entire row in a worksheet. Select fragment ⇧ Shift+→ ← ⇧ Shift+→ ← Select a fragment cell by cell. Select from cursor to beginning of row ⇧ Shift+Home ⇧ Shift+Home Select a fragment from the cursor to the beginning of the current row. Select from cursor to end of row ⇧ Shift+End ⇧ Shift+End Select a fragment from the cursor to the end of the current row. Extend the selection to beginning of worksheet Ctrl+⇧ Shift+Home ^ Ctrl+⇧ Shift+Home Select a fragment from the current selected cells to the beginning of the worksheet. Extend the selection to the last used cell Ctrl+⇧ Shift+End ^ Ctrl+⇧ Shift+End Select a fragment from the current selected cells to the last used cell in the worksheet (in the bottommost row with data of the rightmost column with data). If the cursor is in the formula bar, this will select all text in the formula bar from the cursor position to the end without affecting the height of the formula bar. Select one cell to the left ⇧ Shift+↹ Tab ⇧ Shift+↹ Tab Select one cell to the left in a table. Select one cell to the right ↹ Tab ↹ Tab Select one cell to the right in a table. Extend the selection to the nearest nonblank cell to the right ⇧ Shift+Alt+End, Ctrl+⇧ Shift+→ ⇧ Shift+⌥ Option+End Extend the selection to the nearest nonblank cell in the same row to the right of the active cell. If the next cell is blank, the selection will be extended to the next nonblank cell. Extend the selection to the nearest nonblank cell to the left ⇧ Shift+Alt+Home, Ctrl+⇧ Shift+← ⇧ Shift+⌥ Option+Home Extend the selection to the nearest nonblank cell in the same row to the left of the active cell. If the next cell is blank, the selection will be extended to the next nonblank cell. Extend the selection to the nearest nonblank cell up/down the column Ctrl+⇧ Shift+↑ ↓ Extend the selection to the nearest nonblank cell in the same column up/down from the active cell. If the next cell is blank, the selection will be extended to the next nonblank cell. Extend the selection down one screen ⇧ Shift+Page Down ⇧ Shift+Page Down Extend the selection to include all the cells one screen down from the active cell. Extend the selection up one screen ⇧ Shift+Page Up ⇧ Shift+Page Up Extend the selection to include all the cells one screen up from the active cell. Undo and Redo Undo Ctrl+Z ⌘ Cmd+Z Reverse the latest performed action. Redo Ctrl+Y ⌘ Cmd+Y Repeat the latest undone action. Cut, Copy, and Paste Cut Ctrl+X, ⇧ Shift+Delete ⌘ Cmd+X Cut the the selected data and send them to the computer clipboard memory. The cut data can be later inserted to another place in the same worksheet, into another spreadsheet, or into some other program. Copy Ctrl+C, Ctrl+Insert ⌘ Cmd+C Send the selected data to the computer clipboard memory. The copied data can be later inserted to another place in the same worksheet, into another spreadsheet, or into some other program. Paste Ctrl+V, ⇧ Shift+Insert ⌘ Cmd+V Insert the previously copied/cut data from the computer clipboard memory to the current cursor position. The data can be previously copied from the same worksheet, from another spreadsheet, or from some other program. Data Formatting Bold Ctrl+B ^ Ctrl+B, ⌘ Cmd+B Make the font of the selected text fragment darker and heavier than normal or remove the bold formatting. Italic Ctrl+I ^ Ctrl+I, ⌘ Cmd+I Make the font of the selected text fragment italicized and slightly slanted or remove italic formatting. Underline Ctrl+U ^ Ctrl+U, ⌘ Cmd+U Make the selected text fragment underlined with a line going under the letters or remove underlining. Strikeout Ctrl+5 ^ Ctrl+5, ⌘ Cmd+5 Make the selected text fragment struck out with a line going through the letters or remove strikeout formatting. Add Hyperlink Ctrl+K ⌘ Cmd+K Insert a hyperlink to an external website or another worksheet. Edit active cell F2 F2 Edit the active cell and position the insertion point at the end of the cell contents. If editing in a cell is turned off, the insertion point will be moved into the Formula Bar. Data Filtering Enable/Remove Filter Ctrl+⇧ Shift+L ^ Ctrl+⇧ Shift+L, ⌘ Cmd+⇧ Shift+L Enable a filter for a selected cell range or remove the filter. Format as table template Ctrl+L ^ Ctrl+L, ⌘ Cmd+L Apply a table template to a selected cell range. Data Entry Complete cell entry and move down ↵ Enter ↵ Return Complete a cell entry in the selected cell or the formula bar, and move to the cell below. Complete cell entry and move up ⇧ Shift+↵ Enter ⇧ Shift+↵ Return Complete a cell entry in the selected cell, and move to the cell above. Start new line Alt+↵ Enter Start a new line in the same cell. Cancel Esc Esc Cancel an entry in the selected cell or the formula bar. Delete to the left ← Backspace ← Backspace Delete one character to the left in the formula bar or in the selected cell when the cell editing mode is activated. Also removes the content of the active cell. Delete to the right Delete Delete, Fn+← Backspace Delete one character to the right in the formula bar or in the selected cell when the cell editing mode is activated. Also removes the cell contents (data and formulas) from selected cells without affecting cell formats or comments. Clear cell content Delete, ← Backspace Delete, ← Backspace Remove the content (data and formulas) from selected cells without affecting the cell format or comments. Complete a cell entry and move to the right ↹ Tab ↹ Tab Complete a cell entry in the selected cell or the formula bar and move to the cell on the right. Complete a cell entry and move to the left ⇧ Shift+↹ Tab ⇧ Shift+↹ Tab Complete a cell entry in the selected cell or the formula bar and move to the cell on the left . Insert cells Ctrl+⇧ Shift+= Ctrl+⇧ Shift+= Open the dialog box for inserting new cells within current spreadsheet with an added parameter of a shift to the right, a shift down, inserting an entire row or an entire column. Delete cells Ctrl+⇧ Shift+- Ctrl+⇧ Shift+- Open the dialog box for deleting cells within current spreadsheet with an added parameter of a shift to the left, a shift up, deleting an entire row or an entire column. Insert the current date Ctrl+; Ctrl+; Insert the today date within an active cell. Insert the current time Ctrl+⇧ Shift+; Ctrl+⇧ Shift+; Insert the current time within an active cell. Insert the current date and time Ctrl+; then ␣ Spacebar then Ctrl+⇧ Shift+; Ctrl+; then ␣ Spacebar then Ctrl+⇧ Shift+; Insert the current date and time within an active cell. Functions Insert function ⇧ Shift+F3 ⇧ Shift+F3 Open the dialog box for inserting a new function by choosing from the provided list. SUM function Alt+= ⌥ Option+= Insert the SUM function into the selected cell. Open drop-down list Alt+↓ Open a selected drop-down list. Open contextual menu ≣ Menu Open a contextual menu for the selected cell or cell range. Recalculate functions F9 F9 Recalculate the entire workbook. Recalculate functions ⇧ Shift+F9 ⇧ Shift+F9 Recalculate the current worksheet. Data Formats Open the 'Number Format' dialog box Ctrl+1 ^ Ctrl+1 Open the Number Format dialog box. Apply the General format Ctrl+⇧ Shift+~ ^ Ctrl+⇧ Shift+~ Apply the General number format. Apply the Currency format Ctrl+⇧ Shift+$ ^ Ctrl+⇧ Shift+$ Apply the Currency format with two decimal places (negative numbers in parentheses). Apply the Percentage format Ctrl+⇧ Shift+% ^ Ctrl+⇧ Shift+% Apply the Percentage format with no decimal places. Apply the Exponential format Ctrl+⇧ Shift+^ ^ Ctrl+⇧ Shift+^ Apply the Exponential number format with two decimal places. Apply the Date format Ctrl+⇧ Shift+# ^ Ctrl+⇧ Shift+# Apply the Date format with the day, month, and year. Apply the Time format Ctrl+⇧ Shift+@ ^ Ctrl+⇧ Shift+@ Apply the Time format with the hour and minute, and AM or PM. Apply the Number format Ctrl+⇧ Shift+! ^ Ctrl+⇧ Shift+! Apply the Number format with two decimal places, thousands separator, and minus sign (-) for negative values. Modifying Objects Constrain movement ⇧ Shift + drag ⇧ Shift + drag Constrain the movement of the selected object horizontally or vertically. Set 15-degree rotation ⇧ Shift + drag (when rotating) ⇧ Shift + drag (when rotating) Constrain the rotation angle to 15-degree increments. Maintain proportions ⇧ Shift + drag (when resizing) ⇧ Shift + drag (when resizing) Maintain the proportions of the selected object when resizing. Draw straight line or arrow ⇧ Shift + drag (when drawing lines/arrows) ⇧ Shift + drag (when drawing lines/arrows) Draw a straight vertical/horizontal/45-degree line or arrow. Movement by one-pixel increments Ctrl+← → ↑ ↓ Hold down the Ctrl key and use the keybord arrows to move the selected object by one pixel at a time." }, { "id": "HelpfulHints/Navigation.htm", "title": "View Settings and Navigation Tools", - "body": "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 icon on the right side of the editor header 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: 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, click the View settings 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: The Scrollbars (on the bottom or right side) are used to scroll up/down and left/right the current sheet. To navigate a spreadsheet using the scrollbars: click the up/down or right/left arrows on the scrollbars; drag the scroll box; click any area to the left/right or above/below the scroll box on the scrollbar. 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 button to scroll the sheet list to the first sheet tab of the current spreadsheet; click the Scroll sheet list left button to scroll the sheet list of the current spreadsheet to the left; click the Scroll sheet list right button to scroll the sheet list of the current spreadsheet to the right; click the 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 or Zoom out buttons. Zoom settings are also available in the View settings drop-down list." + "body": "To help you view and select cells in large spreadsheets, the 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 icon on the right side of the editor header 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: Hide Toolbar - hides the top toolbar with commands while the 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, click the View settings 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 below the top toolbar which is used to enter and review the formulas and their contents. To show the hidden Formula Bar, click this option once again. Hide Headings - hides the column heading at the top and row heading on the left side of the worksheet. To show the hidden Headings, click this option once again. Hide Gridlines - hides the lines 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: The Scrollbars (at the bottom or on the right side) are used to scroll up/down and left/right the current sheet. To navigate a spreadsheet using the scrollbars: click the up/down or right/left arrows on the scrollbars; drag the scroll box; click any area to the left/right or above/below the scroll box on the scrollbar. 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 button to scroll the sheet list to the first sheet tab of the current spreadsheet; click the Scroll sheet list left button to scroll the sheet list of the current spreadsheet to the left; click the Scroll sheet list right button to scroll the sheet list of the current spreadsheet to the right; click the Scroll to last sheet button to scroll the sheet list to the last sheet tab of the current spreadsheet. To activate the 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 or Zoom out buttons. The Zoom settings are also available in the View settings drop-down list." }, { "id": "HelpfulHints/Search.htm", "title": "Search and Replace Functions", - "body": "To search for the needed characters, words or phrases used in the current spreadsheet, click the icon situated at the left sidebar or use the Ctrl+F key combination. If you want to search for/replace values within a certain area on the current sheet only, select the necessary cell range and then click the icon. The Find and Replace window will open: Type in your inquiry into the corresponding data entry field. Specify search options clicking the icon next to the data entry field and checking the necesary options: Case sensitive - is used to find only the occurrences typed in the same case as your inquiry (e.g. if your inquiry is 'Editor' and this option is selected, such words as 'editor' or 'EDITOR' etc. will not be found). Entire cell contents - is used to find only the cells that do not contain any other characters besides the ones specified in your inquiry (e.g. if your inquiry is '56' and this option is selected, the cells containing such data as '0.56' or '156' etc. will not be found). Highlight results - is used to highlight all found occurrences at once. To disable this option and remove the highlight click the option once again. Within - is used to search within the active Sheet only or the whole Workbook. If you want to perform a search within the selected area on the sheet, make sure that the Sheet option is selected. Search - is used to specify the direction that you want to search: to the right by rows or down by columns. Look in - is used to specify whether you want to search the Value of the cells or their underlying Formulas. Click one of the arrow buttons on the right. The search will be performed either towards the beginning of the worksheet (if you click the button) or towards the end of the worksheet (if you click the button) from the current position. The first occurrence of the required characters in the selected direction will be highlighted. If it is not the word you are looking for, click the selected button again to find the next occurrence of the characters you entered. To replace one or more occurrences of the found characters click the Replace link below the data entry field or use the Ctrl+H key combination. The Find and Replace window will change: Type in the replacement text into the bottom data entry field. Click the Replace button to replace the currently selected occurrence or the Replace All button to replace all the found occurrences. To hide the replace field, click the Hide Replace link." + "body": "To search for the required characters, words or phrases used in the current spreadsheet, click the Search icon situated on the left sidebar or use the Ctrl+F key combination. If you want to search for/replace some values only within a certain area in the current sheet, select the necessary cell range and then click the Search icon. The Find and Replace window will open: Type in your inquiry into the corresponding data entry field. Specify search options clicking the icon next to the data entry field and checking the necesary options: Case sensitive - is used to find only the occurrences typed in the same case as your inquiry (e.g. if your inquiry is 'Editor' and this option is selected, such words as 'editor' or 'EDITOR' etc. will not be found). Entire cell contents - is used to find only the cells that do not contain any other characters besides the ones specified in your inquiry (e.g. if your inquiry is '56' and this option is selected, the cells containing such data as '0.56' or '156' etc. will not be found). Highlight results - is used to highlight all found occurrences at once. To disable this option and remove the highlight, click the option once again. Within - is used to search within the active Sheet only or the whole Workbook. If you want to perform a search within the selected area in the sheet, make sure that the Sheet option is selected. Search - is used to specify the direction that you want to search: to the right by rows or down by columns. Look in - is used to specify whether you want to search the Value of the cells or their underlying Formulas. Click one of the arrow buttons on the right. The search will be performed either towards the beginning of the worksheet (if you click the button) or towards the end of the worksheet (if you click the button) from the current position. The first occurrence of the required characters in the selected direction will be highlighted. If it is not the word you are looking for, click the selected button again to find the next occurrence of the characters you entered. To replace one or more occurrences of the found characters, click the Replace link below the data entry field or use the Ctrl+H key combination. The Find and Replace window will change: Type in a new text into the bottom data entry field to replace the existing one. Click the Replace button to replace the currently selected occurrence or the Replace All button to replace all the found occurrences. To hide the replace field, click the Hide Replace link." }, { "id": "HelpfulHints/SpellChecking.htm", "title": "Spell-checking", - "body": "Spreadsheet Editor allows you to check the spelling of the text in a certain language and correct mistakes while editing. In the desktop version, it's also possible to add words into a custom dictionary which is common for all three editors. Click the Spell checking icon at the left sidebar to open the spell checking panel. The upper left cell that contains a misspelled text value will be automatically selected on the current worksheet. The first misspelled word will be displayed in the spell checking field, and the suggested similar words spelled correctly will appear in the field below. Use the Go to the next word button to navigate between misspelled word. Replace misspelled words To replace the currently selected misspelled word with the suggested one, choose one of the suggested similar words spelled correctly and use the Change option: click the Change button, or click the downward arrow next to the Change button and select the Change option. The current word will be replaced and you will proceed to the next misspelled word. To quickly replace all the identical words repeated on the worksheet, click the downward arrow next to the the Change button and select the Change all option. Ignore words To skip the current word: click the Ignore button, or click the downward arrow next to the Ignore button and select the Ignore option. The current word will be skipped and you will proceed to the next misspelled word. To skip all the all the identical words repeated on the worksheet, click the downward arrow next to the Ignore button and select the Ignore all option. If the current word is missed in the dictionary, you can add it to the custom dictionary using the Add to Dictionary button at the spell checking panel. This word will not be treated as a mistake next time. This option is available in the desktop version. The Dictionary Language which is used for spell checking is displayed in the list below. You can change it, if necessary. Once you verify all the words on the worksheet, the Spellcheck has been complete message will appear at the spell checking panel. To close the spell checking panel, click the Spell checking icon at the left sidebar. Change the spell check settings To change the spell check settings, go to the spreadsheet editor advanced settings (File tab -> Advanced Settings...) and switch to the Spell checking tab. Here you can adjust the following parameters: Dictionary language - select one of the available languages from the list. The Dictionary Language at the spell checking panel will be changed correspondingly. Ignore words in UPPERCASE - check this option to ignore words written in capital letters, e.g. acronyms like SMB. Ignore words with numbers - check this option to ignore words containing numbers, e.g. acronyms like B2B. To save the changes you made, click the Apply button." + "body": "The Spreadsheet Editor allows you to check the spelling of the text in a certain language and correct mistakes while editing. In the desktop version, it's also possible to add words into a custom dictionary which is common for all three editors. Click the Spell checking icon on the left sidebar to open the spell checking panel. The upper left cell that contains a misspelled text value will be automatically selected in the current worksheet. The first misspelled word will be displayed in the spell checking field, and the suggested similar words with correct spelling will appear in the field below. Use the Go to the next word button to navigate through misspelled word. Replace misspelled words To replace the currently selected misspelled word with the suggested one, choose one of the suggested similar words spelled correctly and use the Change option: click the Change button, or click the downward arrow next to the Change button and select the Change option. The current word will be replaced and you will proceed to the next misspelled word. To quickly replace all the identical words repeated on the worksheet, click the downward arrow next to the the Change button and select the Change all option. Ignore words To skip the current word: click the Ignore button, or click the downward arrow next to the Ignore button and select the Ignore option. The current word will be skipped, and you will proceed to the next misspelled word. To skip all the identical words repeated in the worksheet, click the downward arrow next to the Ignore button and select the Ignore all option. If the current word is missed in the dictionary, you can add it to the custom dictionary using the Add to Dictionary button on the spell checking panel. This word will not be treated as a mistake next time. This option is available in the desktop version. The Dictionary Language which is used for spell-checking is displayed in the list below. You can change it, if necessary. Once you verify all the words in the worksheet, the Spellcheck has been complete message will appear on the spell-checking panel. To close the spell-checking panel, click the Spell checking icon on the left sidebar. Change the spell check settings To change the spell-checking settings, go to the spreadsheet editor advanced settings (File tab -> Advanced Settings...) and switch to the Spell checking tab. Here you can adjust the following parameters: Dictionary language - select one of the available languages from the list. The Dictionary Language on the spell-checking panel will be changed correspondingly. Ignore words in UPPERCASE - check this option to ignore words written in capital letters, e.g. acronyms like SMB. Ignore words with numbers - check this option to ignore words containing numbers, e.g. acronyms like B2B. Proofing - used to automatically replace word or symbol typed in the Replace: box or chosen from the list by a new word or symbol displayed in the By: box. To save the changes you made, click the Apply button." }, { "id": "HelpfulHints/SupportedFormats.htm", "title": "Supported Formats of Spreadsheets", - "body": "A spreadsheet is a table of data organized in rows and columns. It is most frequently used to store the financial information because of its ability to re-calculate the entire sheet automatically after a change to a single cell. Spreadsheet Editor allows you to open, view and edit the most popular spreadsheet file formats. Formats Description View Edit Download XLS File extension for a spreadsheet file created by Microsoft Excel + + XLSX Default file extension for a spreadsheet file written in Microsoft Office Excel 2007 (or later versions) + + + XLTX Excel Open XML Spreadsheet Template Zipped, XML-based file format developed by Microsoft for spreadsheet templates. An XLTX template contains formatting settings, styles etc. and can be used to create multiple spreadsheets with the same formatting + + + ODS File extension for a spreadsheet file used by OpenOffice and StarOffice suites, an open standard for spreadsheets + + + OTS OpenDocument Spreadsheet Template OpenDocument file format for spreadsheet templates. An OTS template contains formatting settings, styles etc. and can be used to create multiple spreadsheets with the same formatting + + + CSV Comma Separated Values File format used to store tabular data (numbers and text) in plain-text form + + + PDF Portable Document Format File format used to represent documents in a manner independent of application software, hardware, and operating systems + PDF/A Portable Document Format / A An ISO-standardized version of the Portable Document Format (PDF) specialized for use in the archiving and long-term preservation of electronic documents. + +" + "body": "A spreadsheet is a table of data organized in rows and columns. It is most frequently used to store financial information because of its ability to re-calculate the entire sheet automatically after a change to a single cell is made. The Spreadsheet Editor allows you to open, view and edit the most popular spreadsheet file formats. Formats Description View Edit Download XLS File extension for spreadsheet files created by Microsoft Excel + + XLSX Default file extension for spreadsheet files written in Microsoft Office Excel 2007 (or later versions) + + + XLTX Excel Open XML Spreadsheet Template Zipped, XML-based file format developed by Microsoft for spreadsheet templates. An XLTX template contains formatting settings, styles etc. and can be used to create multiple spreadsheets with the same formatting + + + ODS File extension for spreadsheet files used by OpenOffice and StarOffice suites, an open standard for spreadsheets + + + OTS OpenDocument Spreadsheet Template OpenDocument file format for spreadsheet templates. An OTS template contains formatting settings, styles etc. and can be used to create multiple spreadsheets with the same formatting + + + CSV Comma Separated Values File format used to store tabular data (numbers and text) in plain-text form + + + PDF Portable Document Format File format used to represent documents regardless of the application software, hardware, and operating systems used. + PDF/A Portable Document Format / A An ISO-standardized version of the Portable Document Format (PDF) specialized for use in the archiving and long-term preservation of electronic documents. + +" }, { "id": "ProgramInterface/CollaborationTab.htm", "title": "Collaboration tab", - "body": "The Collaboration tab allows to organize collaborative work on the spreadsheet. In the online version, you can share the file, select a co-editing mode, manage comments. In the commenting mode, you can add and remove comments and use chat. In the desktop version, you can manage comments. Online Spreadsheet Editor window: Desktop Spreadsheet Editor window: Using this tab, you can: specify sharing settings (available in the online version only), switch between the Strict and Fast co-editing modes (available in the online version only), add or remove comments to the spreadsheet, open the Chat panel (available in the online version only)." + "body": "The Collaboration tab allows working collaboratively on a spreadsheet. In the online version, you can share the file, select the required co-editing mode and manage comments. In the commenting mode, you can add and remove comments and communicate via chat. In the desktop version, you can only manage comments. The corresponding window of the Online Spreadsheet Editor: The corresponding window of the Desktop Spreadsheet Editor: Using this tab, you can: adjust the sharing settings (available in the online version only), switch between the Strict and Fast co-editing modes (available in the online version only), add or remove comments left in the spreadsheet, open the Chat panel (available in the online version only)." }, { "id": "ProgramInterface/DataTab.htm", "title": "Data tab", - "body": "The Data tab allows to manage data on a sheet. Online Spreadsheet Editor window: Desktop Spreadsheet Editor window: Using this tab, you can: sort and filter your data, convert text to columns, group and ungroup data." + "body": "The Data tab allows to managing data in a sheet. The corresponding window of the Online Spreadsheet Editor: The corresponding window of the Desktop Spreadsheet Editor: Using this tab, you can: sort and filter data, convert text to columns, remove duplicates from a data range, group and ungroup data." }, { "id": "ProgramInterface/FileTab.htm", "title": "File tab", - "body": "The File tab allows to perform some basic operations on the current file. Online Spreadsheet Editor window: Desktop Spreadsheet Editor window: Using this tab, you can: in the online version, save the current file (in case the Autosave option is disabled), download as (save the spreadsheet in the selected format to the computer hard disk drive), save copy as (save a copy of the spreadsheet in the selected format to the portal documents), print or rename it, in the desktop version, save the current file keeping the current format and location using the Save option or save the current file with a different name, location or format using the Save as option, print the file. protect the file using a password, change or remove the password (available in the desktop version only); create a new spreadsheet or open a recently edited one (available in the online version only), view general information about the spreadsheet or change some file properties, manage access rights (available in the online version only), access the editor Advanced Settings, in the desktop version, open the folder where the file is stored in the File explorer window. In the online version, open the folder of the Documents module where the file is stored in a new browser tab." + "body": "The File tab allows performing basic operations with the current file. The corresponding window of the Online Spreadsheet Editor: The corresponding window of the Desktop Spreadsheet Editor: Using this tab, you can perform the following operations: in the online version, save the current file (in case the Autosave option is disabled), download as (save the spreadsheet in the selected format to hard disk drive of the computer), save copy as (save a copy of the spreadsheet in the selected format to the portal documents), print or rename it, in the desktop version, save the current file keeping the current format and location using the Save option or save the current file with a different name, location or format using the Save as option, print the file. protect the file using a password, change or remove the password (available in the desktop version only); create a new spreadsheet or open a recently edited one (available in the online version only), view the general information about the spreadsheet or change some file properties, manage access rights (available in the online version only), access the Advanced Settings of the editor, in the desktop version, open the folder, where the file is stored, in the File explorer window. In the online version, open the folder in the Documents module, where the file is stored, in a new browser tab." }, { "id": "ProgramInterface/FormulaTab.htm", "title": "Formula tab", - "body": "The Formula tab allows to easily work with all functions. Online Spreadsheet Editor window: Desktop Spreadsheet Editor window: Using this tab, you can: insert functions using the Insert Function dialog window, quickly access Autosum formulas, access 10 recently used formulas, work with formulas classified into categories, use the calculation options: calculate the entire workbook, or the current worksheet only." + "body": "The Formula tab allows working easily with all functions. The corresponding window of the Online Spreadsheet Editor: The corresponding window of the Desktop Spreadsheet Editor: Using this tab, you can: insert functions using the Insert Function dialog window, quickly access Autosum formulas, access 10 recently used formulas, work with formulas classified into categories, work with named ranges, use the calculation options: calculate the entire workbook, or the current worksheet only." }, { "id": "ProgramInterface/HomeTab.htm", "title": "Home tab", - "body": "The Home tab opens by default when you open a spreadsheet. It allows to format cells and data within them, apply filters, insert functions. Some other options are also available here, such as color schemes, Format as table template feature and so on. Online Spreadsheet Editor window: Desktop Spreadsheet Editor window: Using this tab, you can: set font type, size, style, and colors, align your data in cells, add cell borders and merge cells, insert functions and create named ranges, sort and filter data, change number format, add or remove cells, rows, columns, copy/clear cell formatting, apply a table template to a selected cell range." + "body": "The Home tab opens by default when you open a spreadsheet. It allows you to format cells and data in them, apply filters, insert functions, etc. Some other options are also available here, such as color schemes, Format as table template feature and so on. The corresponding window of the Online Spreadsheet Editor: The corresponding window of the Desktop Spreadsheet Editor: Using this tab, you can: set the font type, size, style, and colors, align data in cells, add cell borders and merge cells, insert functions and create named ranges, sort and filter data, change the number format, add or remove cells, rows, columns, copy/clear the cell formatting, apply a table template to the selected cell range." }, { "id": "ProgramInterface/InsertTab.htm", "title": "Insert tab", - "body": "The Insert tab allows to add visual objects and comments into your spreadsheet. Online Spreadsheet Editor window: Desktop Spreadsheet Editor window: Using this tab, you can: insert formatted tables, insert images, shapes, text boxes and Text Art objects, charts, insert comments and hyperlinks, insert headers/footers, insert equations and symbols." + "body": "The Insert tab allows adding visual objects and comments to a spreadsheet. The corresponding window of the Online Spreadsheet Editor: The corresponding window of the Desktop Spreadsheet Editor: Using this tab, you can: insert formatted tables, insert images, shapes, text boxes and Text Art objects, charts, insert comments and hyperlinks, insert headers/footers, insert equations and symbols, insert slicers." }, { "id": "ProgramInterface/LayoutTab.htm", "title": "Layout tab", - "body": "The Layout tab allows to adjust the appearance of a spreadsheet: set up page parameters and define the arrangement of visual elements. Online Spreadsheet Editor window: Desktop Spreadsheet Editor window: Using this tab, you can: adjust page margins, orientation, size, specify a print area, insert headers or footers, scale a worksheet, align and arrange objects (images, charts, shapes)." + "body": "The Layout tab allows adjusting the appearance of a spreadsheet: setting up the page parameters and defining the arrangement of visual elements. The corresponding window of the Online Spreadsheet Editor: The corresponding window of the Desktop Spreadsheet Editor: Using this tab, you can: adjust page margins, orientation, size, specify a print area, insert headers or footers, scale a worksheet, specify if you want to print titles, align and arrange objects (images, charts, shapes)." }, { "id": "ProgramInterface/PivotTableTab.htm", "title": "Pivot Table tab", - "body": "Note: this option is available in the online version only. The Pivot Table tab allows to change the appearance of an existing pivot table. Online Spreadsheet Editor window: Using this tab, you can: select an entire pivot table with a single click, emphasize certain rows/columns applying a specific formatting to them, choose one of the predefined tables styles." + "body": "The Pivot Table tab allows creating and editing pivot tables. The corresponding window of the Online Spreadsheet Editor: Using this tab, you can: create a new pivot table, choose the necessary layout for your pivot table, update the pivot table if you change the data in your source data set, select an entire pivot table with a single click, highlight certain rows/columns by applying a specific formatting style to them, choose one of the predefined tables styles." }, { "id": "ProgramInterface/PluginsTab.htm", "title": "Plugins tab", - "body": "The Plugins tab allows to access advanced editing features using available third-party components. Here you can also use macros to simplify routine operations. Online Spreadsheet Editor window: Desktop Spreadsheet Editor window: The Settings button allows to open the window where you can view and manage all installed plugins and add your own ones. The Macros button allows to open the window where you can create your own macros and run them. To learn more about macros you can refer to our API Documentation. Currently, the following plugins are available: Send allows to send the spreadsheet via email using the default desktop mail client (available in the desktop version only), Highlight code allows to highlight syntax of the code selecting the necessary language, style, background color, PhotoEditor allows to edit images: crop, flip, rotate them, draw lines and shapes, add icons and text, load a mask and apply filters such as Grayscale, Invert, Sepia, Blur, Sharpen, Emboss, etc., Thesaurus allows to search for synonyms and antonyms of a word and replace it with the selected one, Translator allows to translate the selected text into other languages, YouTube allows to embed YouTube videos into your spreadsheet. To learn more about plugins please refer to our API Documentation. All the currently existing open source plugin examples are available on GitHub." + "body": "The Plugins tab allows accessing the advanced editing features using the available third-party components. With this tab, you can also use macros to simplify routine operations. The corresponding window of the Online Spreadsheet Editor: The corresponding window of the Desktop Spreadsheet Editor: The Settings button allows you to open the window where you can view and manage all the installed plugins and add your own ones. The Macros button allows you to open the window where you can create and run your own macros. To learn more about macros, please refer to our API Documentation. Currently, the following plugins are available: Send allows you to send the spreadsheet via email using the default desktop mail client (available in the desktop version only), Highlight code allows you to highlight the code syntax selecting the required language, style and background color, PhotoEditor allows you to edit images: crop, flip, rotate them, draw lines and shapes, add icons and text, load a mask and apply filters such as Grayscale, Invert, Sepia, Blur, Sharpen, Emboss, etc., Thesaurus allows you to search for synonyms and antonyms of a word and replace it with the selected one, Translator allows you to translate the selected text into other languages, YouTube allows you to embed YouTube videos into your spreadsheet. To learn more about plugins please refer to our API Documentation. All the existing open-source plugin examples are currently available on GitHub." }, { "id": "ProgramInterface/ProgramInterface.htm", "title": "Introducing the Spreadsheet Editor user interface", - "body": "Spreadsheet Editor uses a tabbed interface where editing commands are grouped into tabs by functionality. Online Spreadsheet Editor window: Desktop Spreadsheet Editor window: The editor interface consists of the following main elements: Editor header displays the logo, opened documents tabs, spreadsheet name and menu tabs. In the left part of the Editor header there are the Save, Print file, Undo and Redo buttons. In the right part of the Editor header the user name is displayed as well as the following icons: Open file location - in the desktop version, it allows to open the folder where the file is stored in the File explorer window. In the online version, it allows to open the folder of the Documents module where the file is stored in a new browser tab. - allows to adjust View Settings and access the editor Advanced Settings. Manage document access rights - (available in the online version only) allows to set access rights for the documents stored in the cloud. Top toolbar displays a set of editing commands depending on the selected menu tab. Currently, the following tabs are available: File, Home, Insert, Layout, Formula, Data, Pivot Table, Collaboration, Protection, Plugins. The Copy and Paste options are always available at the left part of the Top toolbar regardless of the selected tab. Formula bar allows to enter and edit formulas or values in the cells. Formula bar displays the content of the currently selected cell. Status bar at the bottom of the editor window contains some navigation tools: sheet navigation buttons, sheet tabs, and zoom buttons. The Status bar also displays the number of filtered records if you apply a filter, or results of the automatic calculations if you select several cells containing data. Left sidebar contains the following icons: - allows to use the Search and Replace tool, - allows to open the Comments panel, - (available in the online version only) allows to open the Chat panel, - (available in the online version only) allows to contact our support team, - (available in the online version only) allows to view the information about the program. Right sidebar allows to adjust additional parameters of different objects. When you select a particular object on a worksheet, the corresponding icon is activated at the right sidebar. Click this icon to expand the right sidebar. Working area allows to view spreadsheet content, enter and edit data. Horizontal and vertical Scroll bars allow to scroll up/down and left/right the current sheet. For your convenience you can hide some components and display them again when it is necessary. To learn more on how to adjust view settings please refer to this page." + "body": "The Spreadsheet Editor uses a tabbed interface where editing commands are grouped into tabs by functionality. Main window of the Online Spreadsheet Editor: Main window of the Desktop Spreadsheet Editor: The editor interface consists of the following main elements: The Editor header displays the logo, tabs for all opened spreadsheets, with their names and menu tabs.. On the left side of the Editor header there are the Save, Print file, Undo and Redo buttons are located. On the right side of the Editor header along with the user name the following icons are displayed: Open file location - in the desktop version, it allows opening the folder, where the file is stored, in the File explorer window. In the online version, it allows opening the folder in the Documents module where the file is stored, in a new browser tab. - allows adjusting the View Settings and accessing the Advanced Settings of the editor. Manage document access rights - (available in the online version only) allows setting access rights for the documents stored in the cloud. The top toolbar displays a set of editing commands depending on the selected menu tab. Currently, the following tabs are available: File, Home, Insert, Layout, Formula, Data, Pivot Table, Collaboration, Protection, Plugins. The Copy and Paste options are always available at the left part of the Top toolbar regardless of the selected tab. The Formula bar allows entering and editing formulas or values in the cells. The Formula bar displays the contents of the currently selected cell. The Status bar at the bottom of the editor window contains some navigation tools: sheet navigation buttons, sheet tabs, and zoom buttons. The Status bar also displays the number of filtered records if you apply a filter, or the results of automatic calculations if you select several cells containing data. The Left sidebar contains the following icons: - allows using the Search and Replace tool, - allows opening the Comments panel, - (available in the online version only) allows opening the Chat panel, - (available in the online version only) allows contacting our support team, - (available in the online version only) allows viewing the information about the program. The Right sidebar allows adjusting additional parameters of different objects. When you select a particular object in a worksheet, the corresponding icon is activated on the right sidebar. Click this icon to expand the right sidebar. The Working area allows viewing the contents of a spreadsheet, as well as entering and editing data. The horizontal and vertical Scroll bars allow scrolling up/down and left/right. For your convenience, you can hide some components and display them again when necessary. To learn more on how to adjust view settings please refer to this page." }, { "id": "UsageInstructions/AddBorders.htm", "title": "Add cell background and borders", - "body": "Add cell background To apply and format cell background, 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. to apply a solid color fill to the cell background, click the Background color icon situated at the Home tab of the top toolbar and choose the necessary color. to use other fill types, such as a gradient fill or pattern, click the Cell settings icon at the right sidebar and use the Fill section: Color Fill - select this option to specify the solid color you want to fill the selected cells with. Click the colored box below and select one of the theme colors, or standard colors on the palette, or specify a custom color. Gradient Fill - fill the selected cells with two colors which smoothly change from one to another. Angle - manually specify an exact value in degrees that defines the gradient direction (colors change in a straight line at the specified angle). Direction - choose a predefined template from the menu. The following directions are available: top-left to bottom-right (45°), top to bottom (90°), top-right to bottom-left (135°), right to left (180°), bottom-right to top-left (225°), bottom to top (270°), bottom-left to top-right (315°), left to right (0°). Gradient - click on the left slider under the gradient bar to activate the color box which corresponds to the first color. Click on the color box on the right to choose the first color in the palette. Drag the slider to set the gradient stop i.e. the point where one color changes into another. Use the right slider under the gradient bar to specify the second color and set the gradient stop. Pattern - select this option to fill the selected cells with a two-colored design composed of regularly repeated elements. Pattern - select one of the predefined designs from the menu. Foreground color - click this color box to change the color of the pattern elements. Background color - click this color box to change the color of the pattern background. No Fill - select this option if you don't want to use any fill. Add cell borders To add and format borders to a worksheet, 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. click the Borders icon situated at the Home tab of the top toolbar or click the Cell settings icon at the right sidebar and use the Borders Style section, select the border style you wish to apply: open the Border Style submenu and select one of the available options, open the Border Color submenu or use the Color palette at the right sidebar and select the color you need from the palette, select one of the available border templates: Outside Borders , All Borders , Top Borders , Bottom Borders , Left Borders , Right Borders , No Borders , Inside Borders , Inside Vertical Borders , Inside Horizontal Borders , Diagonal Up Border , Diagonal Down Border ." + "body": "Add a cell background To apply and format a cell background, select a cell or a cell range 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. to apply a solid color fill to the cell background, click the Background color icon on the Home tab of the top toolbar and choose the required color. to use other fill types, such as a gradient fill or pattern, click the Cell settings icon on the right sidebar and use the Fill section: Color Fill - select this option to specify the solid color you want to fill the selected cells with. Click the colored box below and select one of the following palettes: Theme Colors - the colors that correspond to the selected color scheme of the spreadsheet. Standard Colors - a set of default colors. The selected color scheme does not affect them. Custom Color - click this caption if the required color is missing among the available palettes. Select the required colors range moving the vertical color slider and set a specific color dragging the color picker within the large square color field. Once you select a color with the color picker, the appropriate RGB and sRGB color values will be displayed in the fields on the right. You can also define a color on the base of the RGB color model by entering the corresponding numeric values into the R, G, B (red, green, blue) fields or enter the sRGB hexadecimal code into the field marked with the # sign. The selected color appears in the New preview box. If the object was previously filled with any custom color, this color is displayed in the Current box so you can compare the original and modified colors. When the color is defined, click the Add button: The custom color will be applied to the selected element and added to the Custom color palette. Gradient Fill - fill the selected cells with two colors which smoothly change from one to the other. Angle - manually specify an exact value in degrees that defines the gradient direction (colors change in a straight line at the specified angle). Direction - choose a predefined template from the menu. The following directions are available: top-left to bottom-right (45°), top to bottom (90°), top-right to bottom-left (135°), right to left (180°), bottom-right to top-left (225°), bottom to top (270°), bottom-left to top-right (315°), left to right (0°). Gradient - click on the left slider under the gradient bar to activate the color box which corresponds to the first color. Click on the color box on the right to choose the first color in the palette. Drag the slider to set the gradient stop i.e. the point where one color changes into another. Use the right slider under the gradient bar to specify the second color and set the gradient stop. Pattern - select this option to fill the selected cells with a two-colored design composed of regularly repeated elements. Pattern - select one of the predefined designs from the menu. Foreground color - click this color box to change the color of the pattern elements. Background color - click this color box to change the color of the pattern background. No Fill - select this option if you don't want to use any fill. Add cell borders To add and format borders to a worksheet, 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. click the Borders icon on the Home tab of the top toolbar or click the Cell settings icon on the right sidebar and use the Borders Style section, select the border style you wish to apply: open the Border Style submenu and select one of the available options, open the Border Color icon submenu or use the Color palette on the right sidebar and select the required color from the palette, select one of the available border templates: Outside Borders , All Borders , Top Borders , Bottom Borders , Left Borders , Right Borders , No Borders , Inside Borders , Inside Vertical Borders , Inside Horizontal Borders , Diagonal Up Border , Diagonal Down Border ." }, { "id": "UsageInstructions/AddHyperlinks.htm", "title": "Add hyperlinks", - "body": "To add a hyperlink, select a cell where a hyperlink will be added, switch to the Insert tab of the top toolbar, click the Hyperlink icon at the top toolbar, after that the Hyperlink Settings will appear where you can specify the hyperlink settings: Select a link type you wish to insert: Use the External Link option and enter a URL in the format http://www.example.com in the Link to field below if you need to add a hyperlink leading to an external website. Use the Internal Data Range option and select a worksheet and a cell range in the fields below if you need to add a hyperlink leading to a certain cell range in the same spreadsheet. Display - enter a text that will become clickable and lead to the web address specified in the upper field. Note: if the selected cell already contains data, it will be automatically displayed in this field. ScreenTip Text - enter a text that will become visible in a small pop-up window that provides a brief note or label pertaining to the hyperlink being pointed to. click the OK button. To add a hyperlink, you can also use the Ctrl+K key combination or 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. When you hover the cursor over the added hyperlink, the ScreenTip will appear containing the text you specified. To follow the link click the link in your spreadsheet. To select a cell that contains a link without opening the link click and hold the mouse button. To delete the added hyperlink, activate the cell containing the added hyperlink and press the Delete key, or right-click the cell and select the Clear All option from the drop-down list." + "body": "To add a hyperlink, select a cell where a hyperlink should be added, switch to the Insert tab of the top toolbar, click the Hyperlink icon on the top toolbar, the Hyperlink Settings window will appear, and you will be able to specify the hyperlink settings: Select the required link type: Use the External Link option and enter a URL in the format http://www.example.com in the Link to field below if you need to add a hyperlink leading to an external website. Use the Internal Data Range option, select a worksheet and a cell range in the fields below, or a previously Named range if you need to add a hyperlink leading to a certain cell range in the same spreadsheet. You can also generate an external link which will lead to a particular cell or a range of cells by clicking the Get Link button. Display - enter a text that will become clickable and lead to the web address specified in the upper field. Note: if the selected cell already contains data, it will be automatically displayed in this field. ScreenTip Text - enter a text that will become visible in a small pop-up window with a brief note or label connected to the hyperlink. click the OK button. To add a hyperlink, you can also use the Ctrl+K key combination or click with the right mouse button the position where the hyperlink should be added and select the Hyperlink option in the right-click menu. When you hover the cursor over the added hyperlink, the ScreenTip will appear. To follow the link, click the link in the spreadsheet. To select a cell that contains a link without opening the link, click and hold the mouse button. To delete the added hyperlink, activate the cell containing the added hyperlink and press the Delete key, or right-click the cell and select the Clear All option from the drop-down list." }, { "id": "UsageInstructions/AlignText.htm", "title": "Align data in cells", - "body": "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 icon to align your data by the left side of the cell (the right side remains unaligned); click the Align center icon to align your data by the center of the cell (the right and the left sides remains unaligned); click the Align right icon to align your data by the right side of the cell (the left side remains unaligned); click the Justified 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 icon to align your data to the top of the cell; click the Align middle icon to align your data to the middle of the cell; click the Align bottom icon to align your data to the bottom of the cell. Change the angle of the data within a cell, clicking the Orientation icon and choosing one of the options: use the Horizontal Text option to place the text horizontally (default option), use the Angle Counterclockwise option to place the text from the bottom left corner to the top right corner of a cell, use the Angle Clockwise option to place the text from the top left corner to the bottom right corner of a cell, use the Rotate Text Up option to place the text from bottom to top of a cell, use the Rotate Text Down option to place the text from top to bottom of a cell. To rotate the text by an exactly specified angle, click the Cell settings icon at the right sidebar and use the Orientation. Enter the necessary value measured in degrees into the Angle field or adjust it using the arrows on the right. Fit your data to the column width clicking the Wrap text icon. Note: if you change the column width, data wrapping adjusts automatically." + "body": "You can align data horizontally and vertically or even rotate data within a cell. To do that, select a cell or a cell range 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 on the Home tab of the top toolbar. Apply one of the horizontal alignment styles to the data within a cell, click the Align left icon to align the data to the left side of the cell (the right side remains unaligned); click the Align center icon to align the data in the center of the cell (the right and the left sides remains unaligned); click the Align right icon to align the data to the right side of the cell (the left side remains unaligned); click the Justified icon to align the data both to 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 icon to align your data to the top of the cell; click the Align middle icon to align your data to the middle of the cell; click the Align bottom icon to align your data to the bottom of the cell. Change the angle of the data within a cell by clicking the Orientation icon and choosing one of the following options: use the Horizontal Text option to place the text horizontally (default option), use the Angle Counterclockwise option to place the text from the bottom left corner to the top right corner of a cell, use the Angle Clockwise option to place the text from the top left corner to the bottom right corner of a cell, use the Vertical text option to place the text from vertically, use the Rotate Text Up option to place the text from bottom to top of a cell, use the Rotate Text Down option to place the text from top to bottom of a cell. To rotate the text by an exactly specified angle, click the Cell settings icon on the right sidebar and use the Orientation. Enter the necessary value measured in degrees into the Angle field or adjust it using the arrows on the right. Fit your data to the column width by clicking the Wrap text icon on the Home tab of the top toolbar or by checking the Wrap text checkbox on the right sidebar. Note: if you change the column width, data wrapping adjusts automatically. Fit your data to the cell width by checking the Shrink to fit on the right sidebar. Using this function, the contents of the cell will be reduced in size to such an extent that it can fit in it. " }, { "id": "UsageInstructions/ChangeNumberFormat.htm", "title": "Change number format", - "body": "Apply a number format You can easily change the number format, i.e. the way the numbers you enter appear in your spreadsheet. To do that, 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. drop-down the Number format list situated at the Home tab of the top toolbar or right-click the selected cells and use the Number Format option from the contextual menu. 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, 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. Note: to quickly apply the Accounting format to the selected data, you can also click the Accounting style 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, Percentage - 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 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. More formats - is used to customize the already applied number formats specifying additional parameters (see the description below). change the number of decimal places, if needed: use the Increase decimal icon situated at the Home tab of the top toolbar to display more digits after the decimal point, use the Decrease decimal icon situated at the Home tab of the top toolbar to display fewer digits after the decimal point. Note: to change a number format you can also use keyboard shortcuts. Customize the number format You can customize the applied number format in the following way: select the cells you want to customize the number format for, drop-down the Number format list at the Home tab of the top toolbar or right-click the selected cells and use the Number Format option from the contextual menu, select the More formats option, 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. for the Number format, you can set the number of Decimal points, specify if you want to Use 1000 separator or not and choose one of the available Formats for displaying negative values. for the Scientific and Persentage formats, you can set the number of Decimal points. for the Accounting and Currency formats, you can set the number of Decimal points, choose one of the available currency Symbols and one of the available Formats for displaying negative values. for the Date format, you can select one of the available date formats: 4/15, 4/15/06, 04/15/06, 4/15/2006, 4/15/06 0:00, 4/15/06 12:00 AM, A, April 15 2006, 15-Apr, 15-Apr-06, Apr-06, April-06, A-06, 06-Apr, 15-Apr-2006, 2006-Apr-15, 06-Apr-15, 15/Apr, 15/Apr/06, Apr/06, April/06, A/06, 06/Apr, 15/Apr/2006, 2006/Apr/15, 06/Apr/15, 15 Apr, 15 Apr 06, Apr 06, April 06, A 06, 06 Apr, 15 Apr 2006, 2006 Apr 15, 06 Apr 15, 06/4/15, 06/04/15, 2006/4/15. for the Time format, you can select one of the available time formats: 12:48:58 PM, 12:48, 12:48 PM, 12:48:58, 48:57.6, 36:48:58. for the Fraction format, you can select one of the available formats: Up to one digit (1/3), Up to two digits (12/25), Up to three digits (131/135), As halves (1/2), As fourths (2/4), As eighths (4/8), As sixteenths (8/16), As tenths (5/10) , As hundredths (50/100). click the OK button to apply the changes." + "body": "Apply a number format You can easily change the number format, i.e. the way the numbers appear in a spreadsheet. To do that, select a cell, a cell range 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. drop-down the Number format button list situated on the Home tab of the top toolbar or right-click the selected cells and use the Number Format option from the contextual menu. Select the number format you wish to apply: General - is used to display the data 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, 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 to the left side of the cell, represents zero values as dashes and displays negative values in parentheses. Note: to quickly apply the Accounting format to the selected data, you can also click the Accounting style icon on the Home tab of the top toolbar and select 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, Percentage - is used to display the data as a percentage accompanied by a percent sign %, Note: to quickly apply the percent style to the data, you can also use the Percent style icon on 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 possible. More formats - is used to customize the already applied number formats specifying additional parameters (see the description below). change the number of decimal places if needed: use the Increase decimal icon situated on the Home tab of the top toolbar to display more digits after the decimal point, use the Decrease decimal icon situated on the Home tab of the top toolbar to display fewer digits after the decimal point. Note: to change the number format you can also use keyboard shortcuts. Customize the number format You can customize the applied number format in the following way: select the cells whose number format you want to customize, drop-down the Number format button list on the Home tab of the top toolbar or right-click the selected cells and use the Number Format option from the contextual menu, select the More formats option, in the opened Number Format window, 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. for the Number format, you can set the number of Decimal points, specify if you want to Use 1000 separator or not and choose one of the available Formats for displaying negative values. for the Scientific and Persentage formats, you can set the number of Decimal points. for the Accounting and Currency formats, you can set the number of Decimal points, choose one of the available currency Symbols and one of the available Formats for displaying negative values. for the Date format, you can select one of the available date formats: 4/15, 4/15/06, 04/15/06, 4/15/2006, 4/15/06 0:00, 4/15/06 12:00 AM, A, April 15 2006, 15-Apr, 15-Apr-06, Apr-06, April-06, A-06, 06-Apr, 15-Apr-2006, 2006-Apr-15, 06-Apr-15, 15/Apr, 15/Apr/06, Apr/06, April/06, A/06, 06/Apr, 15/Apr/2006, 2006/Apr/15, 06/Apr/15, 15 Apr, 15 Apr 06, Apr 06, April 06, A 06, 06 Apr, 15 Apr 2006, 2006 Apr 15, 06 Apr 15, 06/4/15, 06/04/15, 2006/4/15. for the Time format, you can select one of the available time formats: 12:48:58 PM, 12:48, 12:48 PM, 12:48:58, 48:57.6, 36:48:58. for the Fraction format, you can select one of the available formats: Up to one digit (1/3), Up to two digits (12/25), Up to three digits (131/135), As halves (1/2), As fourths (2/4), As eighths (4/8), As sixteenths (8/16), As tenths (5/10) , As hundredths (50/100). click the OK button to apply the changes." }, { "id": "UsageInstructions/ClearFormatting.htm", "title": "Clear text, format in a cell, copy cell format", - "body": "Clear format You can quickly remove the text or the format within the selected 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, Note: you can also select multiple non-adjacent cells or cell ranges holding down the Ctrl key while selecting cells/ranges with the mouse. click the 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; use the Format option if you wish to clear the format of the selected range of cells. The text and functions, if present, will remain; use the Comments option if you wish to remove comments from the selected range of cells; use the Hyperlinks option if you wish to clear hyperlinks within the selected range of cells. Note: all these options are also available from the right-click menu. Copy cell format You can quickly copy a certain cell format and apply it to other cells. To apply the copied format to a single cell or several adjacent cells, select the cell/range of cells which format you need to copy with the mouse or using the keyboard, click the Copy style icon at the Home tab of the top toolbar, (the mouse pointer will look like this ), 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, select the cell/range of cells which format you need to copy with the mouse or using the keyboard, double-click the Copy style icon at the Home tab of the top toolbar, (the mouse pointer will look like this and the Copy style icon will remain selected: ), click single cells or select cell ranges one by one to apply the same format to all of them, to exit this mode, click the Copy style icon once again or press the Esc key on the keyboard." + "body": "Clear format You can quickly remove the text or format from the selected cell. To do that, select a cell, a cell range 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. click the Clear icon on the Home tab of the top toolbar and select one of the available options: use the All option if you wish to remove everything including the text, format, function etc; use the Text option if you wish to remove the text from the selected range of cell range; use the Format option if you wish to remove the format of the selected cell range. The text and all functions will remain; use the Comments option if you wish to remove comments from the selected cell range; use the Hyperlinks option if you wish to remove hyperlinks from the selected cell range. Note: all these options are also available in the right-click menu. Copy cell format You can quickly copy the format of a certain cell and apply it to other cells. To apply the copied format to a single cell or several adjacent cells, select the cell/cell range with the required format by clicking or using the keyboard, click the Copy style icon on the Home tab of the top toolbar, (the mouse pointer will look like this ), select the cell/cell range to apply the required format to. To apply the copied format to multiple non-adjacent cells or cell ranges, select the cell/cell range with the required format by clicking or using the keyboard, double-click the Copy style icon on the Home tab of the top toolbar, (the mouse pointer will look like this and the Copy style icon will remain selected: ), click the required cells or select the cell ranges one by one to apply the same format to all of them, to exit this mode, click the Copy style icon once again or press the Esc key on the keyboard." + }, + { + "id": "UsageInstructions/ConditionalFormatting.htm", + "title": "Conditional Formatting", + "body": "Note: the ONLYOFFICE Spreadsheet Editor currently does not support creating and editing conditional formatting rules. Conditional formatting allows you to apply various formatting styles (color, font, decoration, gradient) to cells to work with data on the spreadsheet: highlight or sort through and display the data that meets the needed criteria. The criteria are defined by a number of rule types. The ONLYOFFICE Spreadsheet Editor currently does not support creating and editing conditional formatting rules. Rule types supported in the ONLYOFFICE Spreadsheet Editor View mode are cell value (+formula), top/bottom and above/below average value, unique values and duplicates, icon sets, data bars, gradient (color scale) and formula-based rules. Cell value is used to find needed numbers, dates, and text within the spreadsheet. For example, you need to see sales for the current month (pink highlight), products named “Grain” (yellow highlight), and product sales amounting to less than $500 (blue highlight). Cell value with a formula is used to display a dynamically changed number or text value within the spreadsheet. For example, you need to find products named “Grain”, “Produce”, or “Dairy” (yellow highlight), or product sales amounting to a value between $100 and $500 (blue highlight). Top and bottom value / Above and below average value is used to find and display the top and bottom values as well as above and below average values within the spreadsheet. For example, you need to see top values for fees in the cities you visited (orange highlight), the cities where the attendance was above average (green highlight) and bottom values for cities where you sold a small quantity of books (blue highlight). Unique and duplicates is used to display duplicate values within the spreadsheet and the cell range defined by the conditional formatting. For example, you need to find duplicate contacts. Enter the drop-down menu. The number of duplicates is shown to the right of the contact name. If you check the box, only the duplicates will be shown in the list. Icon set is used to show the data by displaying a corresponding icon in the cell that meets the criteria. The Spreadsheet Editor supports various icon sets. Below you will find examples for the most common icon set conditional formatting cases. Instead of numbers and percent values you see formatted cells with corresponding arrows showing you revenue achievement in the “Status” column and the dynamics for trends in the future in the “Trend” column. Instead of cells with rating numbers ranging from 1 to 5, the conditional formatting tool displays corresponding icons from the legend map at the top for each bike in the rating list. Instead of manually comparing monthly profit dynamics data, the formatted cells have a corresponding red or green arrow. Use the traffic lights system (red, yellow, and green circles) to visualize sales dynamics. Data bars are used to compare values in the form of a diagram bar. For example, compare mountain heights by displaying their default value in meters (green bar) and the same value in 0 to 100 percent range (yellow bar); percentile when extreme values slant the data (light blue bar); bars only instead of numbers (blue bar); two-column data analysis to see both numbers and bars (red bar). Gradient, or color scale, is used to highlight values within the spreadsheet through a gradient scale. The columns from “Dairy” through “Beverage” display data via a two color scale with variation from yellow to red; the “Total Sales” column displays data via a three color scale from the smallest amount in red to the largest amount in blue. Formula-based formatting uses various formulas to filter data as per specific needs. For example, you can shade alternate rows, compare with a reference value (here it is $55) and show if it is higher (green) or lower (red), highlight the rows that meet the needed criteria (see what goals you shall achieve this month, in this case it is October), and highlight unique rows only Please note that this guide contains graphic information from the Microsoft Office Conditional Formatting Samples and guidelines workbook. Try the aforementioned rules display by downloading the workbook and opening it in the Spreadsheet Editor." }, { "id": "UsageInstructions/CopyPasteData.htm", "title": "Cut/copy/paste data", - "body": "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 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 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. Paste - select a place and either use the Paste icon at the top toolbar or right-click and select the Paste option to insert the previously copied/cut data from the computer clipboard memory to the current cursor position. The data can be previously copied from the same spreadsheet. In the online version, the following key combinations are only used to copy or paste data from/into another spreadsheet or some other program, in the desktop version, both the corresponding buttons/menu options and key combinations can be used for any copy/paste operations: Ctrl+X key combination for cutting; Ctrl+C key combination for copying; Ctrl+V key combination for pasting. Note: instead of cutting and pasting data within the same worksheet you can select the necessary cell/range of cells, hover the mouse cursor over the selection border so that it turns into the icon and drag and drop the selection to the necessary position. Use the Paste Special feature Once the copied data is pasted, the Paste Special button appears next to the lower right corner of the inserted cell/cell range. Click this button to select the necessary paste option. When pasting a cell/cell range with formatted data, the following options are available: Paste - allows to paste all the cell contents including data formatting. This option is selected by default. The following options can be used if the copied data contains formulas: Paste only formula - allows to paste formulas without pasting the data formatting. Formula + number format - allows to paste formulas with the formatting applied to numbers. Formula + all formatting - allows to paste formulas with all the data formatting. Formula without borders - allows to paste formulas with the all the data formatting excepting cell borders. Formula + column width - allows to paste formulas with all the data formatting and set the source column width for the cell range you paste the data to. The following options allow to paste the result that the copied formula returns without pasting the formula itself: Paste only value - allows to paste the formula results without pasting the data formatting. Value + number format - allows to paste the formula results with the formatting applied to numbers. Value + all formatting - allows to paste the formula results with all the data formatting. Paste only formatting - allows to paste the cell formatting only without pasting the cell contents. Transpose - allows to paste data changing columns to rows and rows to columns. This option is available for regular data ranges, but not for formatted tables. When pasting the contents of a single cell or some text within autoshapes, the following options are available: Source formatting - allows to keep the source formatting of the copied data. Destination formatting - allows to apply the formatting that is already used for the cell/autoshape you paste the data to. Paste delimited text When pasting delimited text copied from a .txt file, the following options are available: The delimited text can contain several records where each record corresponds to a single table row. Each record can contain several text values separated with a delimiters (such as comma, semicolon, colon, tab, space or some other character). The file should be saved as a plain text .txt file. Keep text only - allows to paste text values into a single column where each cell contents corresponds to a row in a source text file. Use text import wizard - allows to open the Text Import Wizard which helps to easily split the text values into multiple columns where each text value separated by a delimiter will be placed into a separate cell. When the Text Import Wizard window opens, select the text delimiter used in the delimited data from the Delimiter drop-down list. The data splitted into columns will be displayed in the Preview field below. If you are satisfied with the result, press the OK button. If you pasted delimited data from a source that is not a plain text file (e.g. text copied from a web page etc.), or if you applied the Keep text only feature and now want to split the data from a single column into several columns, you can use the Text to Columns option. To split data into multiple columns: Select the necessary cell or column that contains data with delimiters. Switch to the Data tab. Click the Text to columns button at the top toolbar. The Text to Columns Wizard opens. In the Delimiter drop-down list, select the delimiter used in the delimited data, preview the result in the field below and click OK. After that, each text value separated by the delimiter will be located in a separate cell. If there is some data in the cells to the right of the column you want to split, the data will be overwritten. Use the Auto Fill option To quickly fill multiple cells with the same data use the Auto Fill option: select a cell/range of cells containing the necessary data, move the mouse cursor over the fill handle in the right lower corner of the cell. The cursor will turn into the black cross: drag the handle over the adjacent cells you want to fill with the selected data. Note: if you need to create a series of numbers (such as 1, 2, 3, 4...; 2, 4, 6, 8... etc.) or dates, you can enter at least two starting values and quickly extend the series selecting these cells and dragging the fill handle. Fill cells in the column with text values If a column in your spreadsheet contains some text values, you can easily replace any value within this column or fill the next blank cell selecting one of already existing text values. Right-click the necessary cell and choose the Select from drop-down list option in the contextual menu. Select one of the available text values to replace the current one or fill an empty cell." + "body": "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 available on 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 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. Paste - select a place and either use the Paste icon on the top toolbar or right-click and select the Paste option to insert the previously copied/cut data from the computer clipboard memory to the current cursor position. The data can be previously copied from the same spreadsheet. In the online version, the following key combinations are only used to copy or paste data from/into another spreadsheet or some other program, in the desktop version, both the corresponding buttons/menu options and key combinations can be used for any copy/paste operations: Ctrl+X key combination for cutting; Ctrl+C key combination for copying; Ctrl+V key combination for pasting. Note: instead of cutting and pasting data within the same worksheet you can select the required cell/cell range, hover the mouse cursor over the selection border so that it turns into the Arrow icon and drag and drop the selection to the necessary position. To enable / disable the automatic appearance of the Paste Special button after pasting, go to the File tab > Advanced Settings... and check / uncheck the Cut, copy and paste checkbox. Use the Paste Special feature Once the copied data is pasted, the Paste Special button appears next to the lower right corner of the inserted cell/cell range. Click this button to select the necessary paste option. When pasting a cell/cell range with formatted data, the following options are available: Paste - allows you to paste all the cell contents including data formatting. This option is selected by default. The following options can be used if the copied data contains formulas: Paste only formula - allows you to paste formulas without pasting the data formatting. Formula + number format - allows you to paste formulas with the formatting applied to numbers. Formula + all formatting - allows you to paste formulas with all the data formatting. Formula without borders - allows you to paste formulas with all the data formatting except the cell borders. Formula + column width - allows you to paste formulas with all the data formatting and set the source column`s width for the cell range. The following options allow you to paste the result that the copied formula returns without pasting the formula itself: Paste only value - allows you to paste the formula results without pasting the data formatting. Value + number format - allows to paste the formula results with the formatting applied to numbers. Value + all formatting - allows you to paste the formula results with all the data formatting. Paste only formatting - allows you to paste the cell formatting only without pasting the cell contents. Transpose - allows you to paste data switching them from columns to rows, or vice versa. This option is available for regular data ranges, but not for formatted tables. When pasting the contents of a single cell or some text within autoshapes, the following options are available: Source formatting - allows you to keep the source formatting of the copied data. Destination formatting - allows you to apply the formatting that is already used for the cell/autoshape where the data are to be iserted to. Paste delimited text When pasting the delimited text copied from a .txt file, the following options are available: The delimited text can contain several records, and each record corresponds to a single table row. Each record can contain several text values separated with a delimiter (such as a comma, semicolon, colon, tab, space or other characters). The file should be saved as a plain text .txt file. Keep text only - allows you to paste text values into a single column where each cell contents corresponds to a row in the source text file. Use text import wizard - allows you to open the Text Import Wizard which helps to easily split the text values into multiple columns where each text value separated by a delimiter will be placed into a separate cell. When the Text Import Wizard window opens, select the text delimiter used in the delimited data from the Delimiter drop-down list. The data splitted into columns will be displayed in the Preview field below. If you are satisfied with the result, press the OK button. If you pasted delimited data from a source that is not a plain text file (e.g. text copied from a web page etc.), or if you applied the Keep text only feature and now want to split the data from a single column into several columns, you can use the Text to Columns option. To split data into multiple columns: Select the necessary cell or column that contains data with delimiters. Switch to the Data tab. Click the Text to columns button on the top toolbar. The Text to Columns Wizard opens. In the Delimiter drop-down list, select the delimiter used in the delimited data. Click the Advanced button to open the Advanced Settings window in which you can specify the Decimal and Thousands separators. Preview the result in the field below and click OK. After that, each text value separated by the delimiter will be located in a separate cell. If there is some data in the cells to the right of the column you want to split, the data will be overwritten. Use the Auto Fill option To quickly fill multiple cells with the same data use the Auto Fill option: select a cell/cell range containing the required data, move the mouse cursor over the fill handle in the right lower corner of the cell. The cursor will turn into the black cross: drag the handle over the adjacent cells to fill them with the selected data. Note: if you need to create a series of numbers (such as 1, 2, 3, 4...; 2, 4, 6, 8... etc.) or dates, you can enter at least two starting values and quickly extend the series selecting these cells and dragging the fill handle. Fill cells in the column with text values If a column in your spreadsheet contains some text values, you can easily replace any value within this column or fill the next blank cell selecting one of already existing text values. Right-click the necessary cell and choose the Select from drop-down list option in the contextual menu. Select one of the available text values to replace the current one or fill an empty cell." }, { "id": "UsageInstructions/FontTypeSizeStyle.htm", "title": "Set font type, size, style, and colors", - "body": "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. Font Is used to select one of the fonts from the list of the available ones. If a required font is not available in the list, you can download and install it on your operating system, after that the font will be available for use in the desktop version. Font size Is used to select among the preset font size values from the dropdown list (the default values are: 8, 9, 10, 11, 12, 14, 16, 18, 20, 22, 24, 26, 28, 36, 48, 72 and 96). It's also possible to manually enter a custom value to the font size field and then press Enter. Increment font size Is used to change the font size making it larger one point each time the icon is clicked. Decrement font size Is used to change the font size making it smaller one point each time the icon is clicked. Bold Is used to make the font bold giving it more weight. Italic Is used to make the font italicized giving it some right side tilt. Underline Is used to make the text underlined with the line going under the letters. Strikeout Is used to make the text struck out with the line going through the letters. Subscript/Superscript Allows to choose the Superscript or Subscript option. The Superscript option is used to make the text smaller and place it to the upper part of the text line, e.g. as in fractions. The Subscript option is used to make the text smaller and place it to the lower part of the text line, e.g. as in chemical formulas. Font color Is used to change the color of the letters/characters in cells. Background color Is used to change the color of the cell background. Using this icon you can apply a solid color fill. The cell background color can also be changed using the Fill section at the Cell settings tab of the right sidebar. Change 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 Home tab of the top toolbar: To change the font color or use a solid color fill as the cell background, select characters/cells with the mouse or the whole worksheet using the Ctrl+A key combination, click the corresponding icon at the top toolbar, select any color in the available palettes Theme Colors - the colors that correspond to the selected color scheme of the spreadsheet. Standard Colors - the default colors set. Custom Color - click this caption if there is no needed color in the available palettes. Select the necessary colors range moving the vertical color slider and set the specific color dragging the color picker within the large square color field. Once you select a color with the color picker, the appropriate RGB and sRGB color values will be displayed in the fields on the right. You can also specify a color on the base of the RGB color model entering the necessary numeric values into the R, G, B (red, green, blue) fields or enter the sRGB hexadecimal code into the field marked with the # sign. The selected color appears in the New preview box. If the object was previously filled with any custom color, this color is displayed in the Current box so you can compare the original and modified colors. When the color is specified, click the Add button: The custom color will be applied to the selected text/cell and added to the Custom color palette. To clear the background color of a certain cell, select a cell, or a range of cells with the mouse or the whole worksheet using the Ctrl+A key combination, click the Background color icon at the Home tab of the top toolbar, select the icon." + "body": "You can select the font type and its size, apply one of the decoration styles and change the font and background colors by clicking the corresponding icons on the Home tab of the top toolbar. Note: if you want to apply formatting to the data in the spreadsheet, select them with the mouse or use the keyboard and apply the required 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. Font Used to select one of the fonts from the list of the available fonts. If the required font is not available in the list, you can download and install it on your operating system, and the font will be available for use in the desktop version. Font size Used to select the preset font size values from the dropdown list (the default values are: 8, 9, 10, 11, 12, 14, 16, 18, 20, 22, 24, 26, 28, 36, 48, 72 and 96). It's also possible to manually enter a custom value in the font size field and then press Enter. Increment font size Used to change the font size making it one point bigger each time the icon is clicked. Decrement font size Used to change the font size making it one point smaller each time the icon is clicked. Bold Used to make the font bold making it heavier. Italic Used to make the font slightly slanted to the right. Underline Used to make the text underlined with a line going below the letters. Strikeout Used to make the text struck out with a line going through the letters. Subscript/Superscript Allows choosing the Superscript or Subscript option. The Superscript option is used to make the text smaller and place it to the upper part of the text line, e.g. as in fractions. The Subscript option is used to make the text smaller and place it to the lower part of the text line, e.g. as in chemical formulas. Font color Used to change the color of the letters/characters in cells. Background color Used to change the color of the cell background. Using this icon you can apply a solid color fill. The cell background color can also be changed using the Fill section on the Cell settings tab of the right sidebar. Change color scheme Used to change the default color palette for worksheet elements (font, background, chats and chart elements) selecting from the available options: 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 on the Home tab of the top toolbar: To change the font color or use a solid color fill as the cell background, select characters/cells with the mouse or the whole worksheet using the Ctrl+A key combination, click the corresponding icon on the top toolbar, select any color in the available palettes Theme Colors - the colors that correspond to the selected color scheme of the spreadsheet. Standard Colors - the default colors set. Custom Color - click this caption if there is no needed color in the available palettes. Select the necessary color range by moving the vertical color slider and set the specific color by dragging the color picker within the large square color field. Once you select a color with the color picker, the appropriate RGB and sRGB color values will be displayed in the fields on the right. You can also specify a color on the base of the RGB color model by entering the necessary numeric values into the R, G, B (red, green, blue) fields or enter the sRGB hexadecimal code into the field marked with the # sign. The selected color will appear in the New preview box. If the object was previously filled with any custom color, this color is displayed in the Current box so you can compare the original and modified colors. When the color is specified, click the Add button: The custom color will be applied to the selected text/cell and added to the Custom color palette. To remove the background color from a certain cell, select a cell, or a cell range with the mouse or the whole worksheet using the Ctrl+A key combination, click the Background color icon on the Home tab of the top toolbar, select the icon." + }, + { + "id": "UsageInstructions/FormattedTables.htm", + "title": "Use formatted tables", + "body": "Create a new formatted table To make it easier for you to work with data, the Spreadsheet Editor allows you to apply a table template to the selected cell range and automatically enable the filter. To do that, select a range of cells you need to format, click the Format as table template icon situated on the Home tab of the top toolbar. select the required template in the gallery, in the opened pop-up window, check the cell range to be formatted as a table, check the Title if you wish the table headers to be included in the selected cell range, otherwise the header row will be added at the top while the selected cell range will be moved one row down, click the OK button to apply the selected template. 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. It's also possible to insert a formatted table using the Table button on the Insert tab. In this case, the default table template is applied. Note: once you create a new formatted table, the 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. If you enter a new value in the cell below the last row of the table (if the table does not have the Total row) or in the cell to the right of the last column of the table, the formatted table will be automatically extended to include a new row or column. If you do not want to expand the table, click the Paste special button that will appear and select the Undo table autoexpansion option. Once you undo this action, the Redo table autoexpansion option will be available in this menu. Select rows and columns To select an entire row in the formatted table, move the mouse cursor over the left border of the table row until it turns into the black arrow , then left-click. To select an entire column in the formatted table, move the mouse cursor over the top edge of the column header until it turns into the black arrow , then left-click. If you click once, the column data will be selected (as it is shown on the image below); if you click twice, the entire column including the header will be selected. To select an entire formatted table, move the mouse cursor over the upper left corner of the formatted table until it turns into the diagonal black arrow , then left-click. Edit formatted tables Some of the table settings can be changed using the Table settings tab of the right sidebar that will open if you select at least one cell within the table with the mouse and click the Table settings icon on the right. The Rows and Columns sections on the top allow you to emphasize certain rows/columns applying specific formatting to them, or highlight different rows/columns with different background colors to clearly distinguish them. The following options are available: Header - allows you to display the header row. Total - adds the Summary row at the bottom of the table. Note: if this option is selected, you can also select a function to calculate the summary values. Once you select a cell in the Summary row, the button will be available to the right of the cell. Click it and choose the necessary function from the list: Average, Count, Max, Min, Sum, StdDev, or Var. The More functions option allows you to open the Insert Function window and choose any other function. If you choose the None option, the currently selected cell in the Summary row will not display a summary value for this column. Banded - enables the background color alternation for odd and even rows. Filter button - allows you to display the drop-down arrows in each cell of the header row. This option is only available when the Header option is selected. First - emphasizes the leftmost column in the table with special formatting. Last - emphasizes the rightmost column in the table with special formatting. Banded - enables the background color alternation for odd and even columns. The Select From Template section allows you to choose one of the predefined tables styles. Each template combines certain formatting parameters, such as a background color, border style, row/column banding, etc. Depending on the options checked in the Rows and/or Columns sections above, the templates set will be displayed differently. For example, if you've checked the Header option in the Rows section and the Banded option in the Columns section, the displayed templates list will include only templates with the header row and banded columns enabled: If you want to remove the current table style (background color, borders, etc.) without removing the table itself, apply the None template from the template list: The Resize table section allows you to change the cell range which the table formatting is applied to. Click the Select Data button - a new pop-up window will open. Change the link to the cell range in the entry field or select the necessary cell range in the worksheet with the mouse and click the OK button. Note: The headers must remain in the same row, and the resulting table range must overlap the original table range. The Rows & Columns section allows you to perform the following operations: Select a row, column, all columns data excluding the header row, or the entire table including the header row. Insert a new row above or below the selected one as well as a new column to the left or to the right of the selected one. 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 Remove duplicates option can be used if you want to remove duplicate values from the formatted table. For more details on removing duplicates, please refer to this page. The Convert to range option 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 on the right sidebar will be unavailable. The Insert slicer option is used to create a slicer for the formatted table. For more details on working with slicers, please refer to this page. The Insert pivot table option is used to create a pivot table on the base of the formatted table. For more details on working with pivot tables, please refer to this page. Adjust formatted table advanced settings To change the advanced table properties, use the Show advanced settings link on the right sidebar. The 'Table - Advanced Settings' window will open: The Alternative Text tab allows you to specify the Title and the Description which will be read to people with vision or cognitive impairments to help them better understand what information the table contains." }, { "id": "UsageInstructions/GroupData.htm", "title": "Group data", - "body": "The possibility to group rows and columns as well as create an outline allows you to make it easier to work with a spreadsheet that contains a large amount of data. You can collapse or expand grouped rows and columns to display the necessary data only. It's also possible to create a multi-level structure of the grouped rows/columns. When it's necessary, you can ungroup previously grouped rows or columns. Group rows and columns To group rows or columns: Select the range of cells that you need to group. Switch to the Data tab and use one of the necessary options at the top toolbar: click the Group button, then choose the Rows or Columns option in the Group window that appears and click OK, click the downwards arrow below the Group button and choose the Group rows option from the menu, click the downwards arrow below the Group button and choose the Group columns option from the menu. The selected rows or columns will be grouped and the created outline will be displayed to the left of the rows or/and above the columns. To hide grouped rows/columns click the Collapse icon. To show collapsed rows/columns click the Expand icon. Change the outline To change the outline of grouped rows or columns you can use options from the Group drop-down menu. The Summary rows below detail and Summary columns to right of detail options are checked by default. They allow to change the location of the Collapse and Expand buttons: Uncheck the Summary rows below detail option if you want to display the summary rows above details. Uncheck the Summary columns to right of detail option if you want to display the summary columns to the left of details. Create multi-level groups To create a multi-level structure, select a cell range within the previously created group of rows/columns and group the new selected range as described above. After that, you can hide and show groups by level using the icons with the level number: . For example, if you create a nested group within the parent group, three levels will be available. It's possible to create up to 8 levels. Click the first level icon to switch to the level which hides all grouped data: Click the second level icon to switch to the level which displays details of the parent group, but hides the nested group data: Click the third level icon to switch to the level which displays all details: It's also possible to use the Collapse and Expand icons within the outline to display or hide the data corresponding to a certain level. Ungroup previously grouped rows and columns To ungroup previously grouped rows or columns: Select the range of grouped cells that you need to ungroup. Switch to the Data tab and use one of the necessary options at the top toolbar: click the Ungroup button, then choose the Rows or Columns option in the Group window that appears and click OK, click the downwards arrow below the Ungroup button, then choose the Ungroup rows option from the menu to ungroup rows and clear the outline of rows, click the downwards arrow below the Ungroup button and choose the Ungroup columns option from the menu to ungroup columns and clear the outline of columns, click the downwards arrow below the Ungroup button and choose the Clear outline option from the menu to clear the outline of rows and columns without removing existing groups." + "body": "The ability to group rows and columns as well as create an outline allows you to make it easier to work with a spreadsheet that contains a large amount of data. You can collapse or expand grouped rows and columns to display the necessary data only. It's also possible to create the multi-level structure of grouped rows/columns. When necessary, you can ungroup the previously grouped rows or columns. Group rows and columns To group rows or columns: Select the cell range that you need to group. Switch to the Data tab and use one of the necessary options on the top toolbar: click the Group button, then choose the Rows or Columns option in the Group window that appears and click OK, click the downwards arrow below the Group button and choose the Group rows option from the menu, click the downwards arrow below the Group button and choose the Group columns option from the menu. The selected rows or columns will be grouped and the created outline will be displayed to the left of the rows or/and above the columns. To hide grouped rows/columns, click the Collapse icon. To show collapsed rows/columns, click the Expand icon. Change the outline To change the outline of grouped rows or columns, you can use options from the Group drop-down menu. The Summary rows below detail and Summary columns to the right of detail options are checked by default. They allow to change the location of the Collapse and Expand buttons: Uncheck the Summary rows below detail option if you want to display the summary rows above the details. Uncheck the Summary columns to right of detail option if you want to display the summary columns to the left of details. Create multi-level groups To create a multi-level structure, select a cell range within the previously created group of rows/columns and group the new selected range as described above. After that, you can hide and show groups by level using the icons with the level number: . For example, if you create a nested group within the parent group, three levels will be available. It's possible to create up to 8 levels. Click the first level icon to switch to the level which hides all grouped data: Click the second level icon to switch to the level which displays details of the parent group, but hides the nested group data: Click the third level icon to switch to the level which displays all details: It's also possible to use the Collapse and Expand icons within the outline to display or hide the data corresponding to a certain level. Ungroup previously grouped rows and columns To ungroup previously grouped rows or columns: Select the range of grouped cells that you need to ungroup. Switch to the Data tab and use one of the necessary options at the top toolbar: click the Ungroup button, then choose the Rows or Columns option in the Group window that appears and click OK, click the downwards arrow below the Ungroup button, then choose the Ungroup rows option from the menu to ungroup rows and clear the outline of rows, click the downwards arrow below the Ungroup button and choose the Ungroup columns option from the menu to ungroup columns and clear the outline of columns, click the downwards arrow below the Ungroup button and choose the Clear outline option from the menu to clear the outline of rows and columns without removing existing groups." }, { "id": "UsageInstructions/InsertAutoshapes.htm", "title": "Insert and format autoshapes", - "body": "Insert an autoshape To add an autoshape to your spreadsheet, switch to the Insert tab of the top toolbar, click the Shape icon at the top toolbar, select one of the available autoshape groups: basic shapes, figured arrows, math, charts, stars & ribbons, callouts, buttons, rectangles, lines, click the necessary autoshape within the selected group, place the mouse cursor where you want the shape to be put, 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 icon. Here you can change the following settings: Fill - use this section to select the autoshape fill. You can choose the following options: Color Fill - select this option to specify the solid color you want to fill the inner space of the selected autoshape with. Click the colored box below and select the necessary color from the available color sets or specify any color you like: Theme Colors - the colors that correspond to the selected color scheme of the spreadsheet. Standard Colors - the default colors set. Custom Color - click this caption if there is no needed color in the available palettes. Select the necessary colors range moving the vertical color slider and set the specific color dragging the color picker within the large square color field. Once you select a color with the color picker, the appropriate RGB and sRGB color values will be displayed in the fields on the right. You can also specify a color on the base of the RGB color model entering the necessary numeric values into the R, G, B (red, green, blue) fields or enter the sRGB hexadecimal code into the field marked with the # sign. The selected color appears in the New preview box. If the object was previously filled with any custom color, this color is displayed in the Current box so you can compare the original and modified colors. When the color is specified, click the Add button. The custom color will be applied to your autoshape and added to the Custom color palette.

    Gradient Fill - fill the shape with two colors which smoothly change from one to another. Style - choose one of the available options: Linear (colors change in a straight line i.e. along a horizontal/vertical axis or diagonally at a 45 degree angle) or Radial (colors change in a circular path from the center to the edges). Direction - choose a template from the menu. If the Linear gradient is selected, the following directions are available : top-left to bottom-right, top to bottom, top-right to bottom-left, right to left, bottom-right to top-left, bottom to top, bottom-left to top-right, left to right. If the Radial gradient is selected, only one template is available. Gradient - click on the left slider under the gradient bar to activate the color box which corresponds to the first color. Click on the color box on the right to choose the first color in the palette. Drag the slider to set the gradient stop i.e. the point where one color changes into another. Use the right slider under the gradient bar to specify the second color and set the gradient stop. Picture or Texture - select this option to use an image or a predefined texture as the shape background. If you wish to use an image as a background for the shape, you can add an image From File selecting it on your computer HDD or From URL inserting the appropriate URL address into the opened window. If you wish to use a texture as a background for the shape, open the From Texture menu and select the necessary texture preset. Currently, the following textures are available: canvas, carton, dark fabric, grain, granite, grey paper, knit, leather, brown paper, papyrus, wood. In case the selected Picture has less or more dimensions than the autoshape has, you can choose the Stretch or Tile setting from the dropdown list. The Stretch option allows you to adjust the image size to fit the autoshape size so that it could fill the space completely. The Tile option allows you to display only a part of the bigger image keeping its original dimensions or repeat the smaller image keeping its original dimensions over the autoshape surface so that it could fill the space completely. Note: any selected Texture preset fills the space completely, but you can apply the Stretch effect if necessary. Pattern - select this option to fill the shape with a two-colored design composed of regularly repeated elements. Pattern - select one of the predefined designs from the menu. Foreground color - click this color box to change the color of the pattern elements. Background color - click this color box to change the color of the pattern background. No Fill - select this option if you don't want to use any fill. Opacity - use this section to set an Opacity level dragging the slider or entering the percent value manually. The default value is 100%. It corresponds to the full opacity. The 0% value corresponds to the full transparency. Stroke - use this section to change the autoshape stroke width, color or type. To change the stroke width, select one of the available options from the Size dropdown list. The available options are: 0.5 pt, 1 pt, 1.5 pt, 2.25 pt, 3 pt, 4.5 pt, 6 pt. Alternatively, select the No Line option if you don't want to use any stroke. To change the stroke color, click on the colored box below and select the necessary color. To change the stroke type, select the necessary option from the corresponding dropdown list (a solid line is applied by default, you can change it to one of the available dashed lines). Rotation is used to rotate the shape by 90 degrees clockwise or counterclockwise as well as to flip the shape horizontally or vertically. Click one of the buttons: to rotate the shape by 90 degrees counterclockwise to rotate the shape by 90 degrees clockwise to flip the shape horizontally (left to right) to flip the shape vertically (upside down) Change Autoshape - use this section to replace the current autoshape with another one selected from the dropdown list. Show shadow - check this option to display shape with shadow. Adjust shape advanced settings To change the advanced settings of the autoshape, use the Show advanced settings link at the right sidebar. The 'Shape - Advanced Settings' window will open: The Size tab contains the following parameters: Width and Height - use these options to change the autoshape width and/or height. If the Constant proportions button is clicked (in this case it looks like this ), the width and height will be changed together preserving the original shape aspect ratio. The Rotation tab contains the following parameters: Angle - use this option to rotate the shape by an exactly specified angle. Enter the necessary value measured in degrees into the field or adjust it using the arrows on the right. Flipped - check the Horizontally box to flip the shape horizontally (left to right) or check the Vertically box to flip the shape vertically (upside down). The Weights & Arrows tab contains the following parameters: Line Style - this option group allows to specify the following parameters: Cap Type - this option allows to set the style for the end of the line, therefore it can be applied only to the shapes with the open outline, such as lines, polylines etc.: Flat - the end points will be flat. Round - the end points will be rounded. Square - the end points will be square. Join Type - this option allows to set the style for the intersection of two lines, for example, it can affect a polyline or the corners of the triangle or rectangle outline: Round - the corner will be rounded. Bevel - the corner will be cut off angularly. Miter - the corner will be pointed. It goes well to shapes with sharp angles. Note: the effect will be more noticeable if you use a large outline width. Arrows - this option group is available if a shape from the Lines shape group is selected. It allows to set the arrow Start and End Style and Size by selecting the appropriate option from the dropdown lists. The Text Padding tab allows to change the autoshape Top, Bottom, Left and Right internal margins (i.e. the distance between the text within the shape and the autoshape borders). Note: this tab is only available if text is added within the autoshape, otherwise the tab is disabled. The Columns tab allows to add columns of text within the autoshape specifying the necessary Number of columns (up to 16) and Spacing between columns. Once you click OK, the text that already exists or any other text you enter within the autoshape will appear in columns and will flow from one column to another. The Cell Snapping tab contains the following parameters: Move and size with cells - this option allows to snap the shape to the cell behind it. If the cell moves (e.g. if you insert or delete some rows/columns), the shape will be moved together with the cell. If you increase or decrease the width or height of the cell, the shape will change its size as well. Move but don't size with cells - this option allows to snap the shape to the cell behind it preventing the image from being resized. If the cell moves, the shape will be moved together with the cell, but if you change the cell size, the shape dimensions remain unchanged. Don't move or size with cells - this option allows to prevent the shape from being moved or resized if the cell position or size was changed. 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. Insert and format text within the autoshape To insert a text into the autoshape select the shape with the mouse and start typing your text. The text you add in this way becomes a part of the autoshape (when you move or rotate the shape, the text moves or rotates with it). All the formatting options you can apply to the text within the autoshape are listed here. 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, click the Shape icon at the Insert tab of the top toolbar, select the Lines group from the menu, click the necessary shape within the selected group (excepting the last three shapes which are not connectors, namely Curve, Scribble and Freeform), hover the mouse cursor over the first autoshape and click one of the connection points that appear on the shape outline, drag the mouse cursor towards the second autoshape and click the necessary connection point on its outline. If you move the joined autoshapes, the connector remains attached to the shapes and moves together with them. You can also detach the connector from the shapes and then attach it to any other connection points." + "body": "Insert an autoshape To add an autoshape to your spreadsheet, switch to the Insert tab of the top toolbar, click the Shape icon on the top toolbar, select one of the available autoshape groups: basic shapes, figured arrows, math, charts, stars & ribbons, callouts, buttons, rectangles, lines, click the necessary autoshape within the selected group, place the mouse cursor where the shape sholud be added, 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 changed using the Shape settings tab on the right sidebar that will open if you select the inserted autoshape with the mouse and click the Shape settings icon. The following settings can be changed: Fill - use this section to select the autoshape fill. You can choose the following options: Color Fill - select this option to specify a solid color to fill the inner space of the selected autoshape. Click the colored box below and select the necessary color from the available color sets or specify any color you like: Theme Colors - the colors that correspond to the selected color scheme of the spreadsheet. Standard Colors - the default colors set. Custom Color - click this caption if there is no needed color in the available palettes. Select the necessary colors range by moving the vertical color slider and set the specific color by dragging the color picker within the large square color field. Once you select a color with the color picker, the appropriate RGB and sRGB color values will be displayed in the fields on the right. You can also specify a color on the base of the RGB color model by entering the necessary numeric values into the R, G, B (red, green, blue) fields or enter the sRGB hexadecimal code into the field marked with the # sign. The selected color appears in the New preview box. If the object was previously filled with any custom color, this color is displayed in the Current box so you can compare the original and modified colors. When the color is specified, click the Add button. The custom color will be applied to your autoshape and added to the Custom color palette.

    Gradient Fill - fill the shape with two colors which smoothly change from one to another. Style - choose one of the available options: Linear (colors change in a straight line i.e. along a horizontal/vertical axis or diagonally at a 45 degree angle) or Radial (colors change in a circular path from the center to the edges). Direction - choose a template from the menu. If the Linear gradient is selected, the following directions are available : top-left to bottom-right, top to bottom, top-right to bottom-left, right to left, bottom-right to top-left, bottom to top, bottom-left to top-right, left to right. If the Radial gradient is selected, only one template is available. Gradient - click on the left slider under the gradient bar to activate the color box which corresponds to the first color. Click on the color box on the right to choose the first color in the palette. Drag the slider to set the gradient stop i.e. the point where one color changes into another one. Use the right slider under the gradient bar to specify the second color and set the gradient stop. Picture or Texture - select this option to use an image or a predefined texture as the shape background. If you wish to use an image as the shape background, you can click the Select Picture button and add an image From File selecting it on the hard disc drive of your computer, From Storage using your ONLYOFFICE file manager, or From URL inserting the appropriate URL address into the opened window. If you wish to use a texture as the shape background, open the From Texture menu and select the necessary texture preset. Currently, the following textures are available: canvas, carton, dark fabric, grain, granite, grey paper, knit, leather, brown paper, papyrus, wood. In case the selected Picture has less or more dimensions than the autoshape has, you can choose the Stretch or Tile setting from the dropdown list. The Stretch option allows you to adjust the size of the image to fit the autoshape so that it could fill all the space completely. The Tile option allows you to display only a part of the bigger image keeping its original dimensions or repeat the smaller image keeping its original dimensions over the autoshape surface so that it could fill the space completely. Note: any selected Texture preset fills the space completely, but you can apply the Stretch effect if necessary. Pattern - select this option to fill the shape with a two-colored design composed of regularly repeated elements. Pattern - select one of the predefined designs from the menu. Foreground color - click this color box to change the color of the pattern elements. Background color - click this color box to change the color of the pattern background. No Fill - select this option if you don't want to use any fill. Opacity - use this section to set the Opacity level by dragging the slider or entering the percent value manually. The default value is 100%. It means full opacity. The 0% value means full transparency. Stroke - use this section to change the stroke width, color or type of the autoshape. To change the stroke width, select one of the available options from the Size dropdown list. The available options are: 0.5 pt, 1 pt, 1.5 pt, 2.25 pt, 3 pt, 4.5 pt, 6 pt. Alternatively, select the No Line option if you don't want to use any stroke. To change the stroke color, click on the colored box below and select the necessary color. To change the stroke type, select the necessary option from the corresponding dropdown list (a solid line is applied by default, you can change it to one of the available dashed lines). Rotation is used to rotate the shape by 90 degrees clockwise or counterclockwise as well as to flip the shape horizontally or vertically. Click one of the buttons: to rotate the shape by 90 degrees counterclockwise to rotate the shape by 90 degrees clockwise to flip the shape horizontally (left to right) to flip the shape vertically (upside down) Change Autoshape - use this section to replace the current autoshape with another one selected from the dropdown list. Show shadow - check this option to display the shape with shadow. Adjust shape advanced settings To change the advanced settings of the autoshape, use the Show advanced settings link on the right sidebar. The 'Shape - Advanced Settings' window will open: The Size tab contains the following parameters: Width and Height - use these options to change the width and/or height of the autoshape. If the Constant proportions button is clicked (in this case it looks like this ), the width and height will be changed together preserving the original shape aspect ratio. The Rotation tab contains the following parameters: Angle - use this option to rotate the shape by an exactly specified angle. Enter the necessary value measured in degrees into the field or adjust it using the arrows on the right. Flipped - check the Horizontally box to flip the shape horizontally (left to right) or check the Vertically box to flip the shape vertically (upside down). The Weights & Arrows tab contains the following parameters: Line Style - this option group allows you to specify the following parameters: Cap Type - this option allows you to set the style of the end of the line, therefore it can be applied only to the shapes with an open outline, such as lines, polylines etc.: Flat - the end points will be flat. Round - the end points will be rounded. Square - the end points will be square. Join Type - this option allows you to set the style of the intersection of two lines, for example, it can affect a polyline or the corners of a triangle or rectangle outline: Round - the corner will be rounded. Bevel - the corner will be cut off angularly. Miter - the corner will be pointed. It goes well to shapes with sharp angles. Note: the effect will be more noticeable if you use a large outline width. Arrows - this option group is available if a shape from the Lines shape group is selected. It allows you to set the arrow Start and End Style and Size by selecting the appropriate option from the dropdown lists. The Text Box tab allows you to Resize shape to fit text, Allow text to overflow shape or change the Top, Bottom, Left and Right internal margins of the autoshape (i.e. the distance between the text within the shape and the autoshape borders). Note: this tab is only available if text is added within the autoshape, otherwise the tab is disabled. The Columns tab allows you to add columns of text within the autoshape specifying the necessary Number of columns (up to 16) and Spacing between columns. Once you click OK, the text that already exists or any other text you enter within the autoshape will appear in columns and will flow from one column to another one. The Cell Snapping tab contains the following parameters: Move and size with cells - this option allows you to snap the shape to the cell behind it. If the cell moves (e.g. if you insert or delete some rows/columns), the shape will be moved together with the cell. If you increase or decrease the width or height of the cell, the shape will change its size as well. Move but don't size with cells - this option allows you to snap the shape to the cell behind it preventing the shape from being resized. If the cell moves, the shape will be moved together with the cell, but if you change the cell size, the shape dimensions remain unchanged. Don't move or size with cells - this option allows you to prevent the shape from being moved or resized if the cell position or size was changed. The Alternative Text tab allows you to specify the Title and Description which will be read to people with vision or cognitive impairments to help them better understand what information the shape contains. Insert and format text within the autoshape To insert a text into the autoshape, select the shape with the mouse and start typing your text. The text will become part of the autoshape (when you move or rotate the shape, the text also moves or rotates with it). All the formatting options you can apply to the text within the autoshape are listed here. 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, click the Shape icon on the Insert tab of the top toolbar, select the Lines group from the menu, click the necessary shape within the selected group (excepting the last three shapes which are not connectors, namely Curve, Scribble and Freeform), hover the mouse cursor over the first autoshape and click one of the connection points that appear on the shape outline, drag the mouse cursor towards the second autoshape and click the necessary connection point on its outline. If you move the joined autoshapes, the connector remains attached to the shapes and moves together with them. You can also detach the connector from the shapes and then attach it to any other connection points." }, { "id": "UsageInstructions/InsertChart.htm", "title": "Insert chart", - "body": "Insert a chart To insert a chart into the speadsheet, Select the cell range that contain the data you wish to use for the chart, switch to the Insert tab of the top toolbar, Click the Chart icon at the top toolbar, Select a chart Type you wish to insert: Column, Line, Pie, Bar, Area, XY (Scatter), or Stock. Note: for Column, Line, Pie, or Bar charts, a 3D format is also available. After that the chart will be added to the worksheet. Adjust the chart settings Now you can change the inserted chart settings. To change the chart type, select the chart with the mouse, click the Chart settings icon at the right sidebar, open the Type drop-down list and select the type you need, open the Style drop-down list below and select the style which suits you best. The selected chart type and style will be changed. If you need to edit the data used to create the chart, click the Show advanced settings link situated at the right-side panel, or choose the Chart Advanced Settings option from the right-click menu, or just double-click the chart, in the opened Chart - Advanced Settings window make all the necessary changes, click the OK button to apply the changes and close the window. The description of the chart settings that can be edited using the Chart - Advanced Settings window you can find below. The Type & Data tab allows you to change the chart type as well as the data you wish to use to create a chart. Change the chart Type selecting one of the available options: Column, Line, Pie, Bar, Area, XY (Scatter), or Stock. Check the selected Data Range and modify it, if necessary, clicking the Select Data button and entering the desired data range in the following format: Sheet1!A1:B4. Choose the way to arrange the data. You can either select the Data series to be used on the X axis: in rows or in columns. The Layout tab allows you to change the layout of chart elements. Specify the Chart Title position in regard to your chart selecting the necessary option from the drop-down list: None to not display a chart title, Overlay to overlay and center a title on the plot area, No Overlay to display the title above the plot area. Specify the Legend position in regard to your chart selecting the necessary option from the drop-down list: None to not display a legend, Bottom to display the legend and align it to the bottom of the plot area, Top to display the legend and align it to the top of the plot area, Right to display the legend and align it to the right of the plot area, Left to display the legend and align it to the left of the plot area, Left Overlay to overlay and center the legend to the left on the plot area, Right Overlay to overlay and center the legend to the right on the plot area. Specify the Data Labels (i.e. text labels that represent exact values of data points) parameters: specify the Data Labels position relative to the data points selecting the necessary option from the drop-down list. The available options vary depending on the selected chart type. For Column/Bar charts, you can choose the following options: None, Center, Inner Bottom, Inner Top, Outer Top. For Line/XY (Scatter)/Stock charts, you can choose the following options: None, Center, Left, Right, Top, Bottom. For Pie charts, you can choose the following options: None, Center, Fit to Width, Inner Top, Outer Top. For Area charts as well as for 3D Column, Line and Bar charts, you can choose the following options: None, Center. select the data you wish to include into your labels checking the corresponding boxes: Series Name, Category Name, Value, enter a character (comma, semicolon etc.) you wish to use for separating several labels into the Data Labels Separator entry field. Lines - is used to choose a line style for Line/XY (Scatter) charts. You can choose one of the following options: Straight to use straight lines between data points, Smooth to use smooth curves between data points, or None to not display lines. Markers - is used to specify whether the markers should be displayed (if the box is checked) or not (if the box is unchecked) for Line/XY (Scatter) charts. Note: the Lines and Markers options are available for Line charts and XY (Scatter) charts only. The Axis Settings section allows to specify if you wish to display Horizontal/Vertical Axis or not selecting the Show or Hide option from the drop-down list. You can also specify Horizontal/Vertical Axis Title parameters: Specify if you wish to display the Horizontal Axis Title or not selecting the necessary option from the drop-down list: None to not display a horizontal axis title, No Overlay to display the title below the horizontal axis. Specify the Vertical Axis Title orientation selecting the necessary option from the drop-down list: None to not display a vertical axis title, Rotated to display the title from bottom to top to the left of the vertical axis, Horizontal to display the title horizontally to the left of the vertical axis. The Gridlines section allows to specify which of the Horizontal/Vertical Gridlines you wish to display selecting the necessary option from the drop-down list: Major, Minor, or Major and Minor. You can hide the gridlines at all using the None option. Note: the Axis Settings and Gridlines sections will be disabled for Pie charts since charts of this type have no axes and gridlines. Note: the Vertical/Horizontal Axis tabs will be disabled for Pie charts since charts of this type have no axes. The Vertical Axis tab allows you to change the parameters of the vertical axis also referred to as the values axis or y-axis which displays numeric values. Note that the vertical axis will be the category axis which displays text labels for the Bar charts, therefore in this case the Vertical Axis tab options will correspond to the ones described in the next section. For the XY (Scatter) charts, both axes are value axes. The Axis Options section allows to set the following parameters: Minimum Value - is used to specify a lowest value displayed at the vertical axis start. The Auto option is selected by default, in this case the minimum value is calculated automatically depending on the selected data range. You can select the Fixed option from the drop-down list and specify a different value in the entry field on the right. Maximum Value - is used to specify a highest value displayed at the vertical axis end. The Auto option is selected by default, in this case the maximum value is calculated automatically depending on the selected data range. You can select the Fixed option from the drop-down list and specify a different value in the entry field on the right. Axis Crosses - is used to specify a point on the vertical axis where the horizontal axis should cross it. The Auto option is selected by default, in this case the axes intersection point value is calculated automatically depending on the selected data range. You can select the Value option from the drop-down list and specify a different value in the entry field on the right, or set the axes intersection point at the Minimum/Maximum Value on the vertical axis. Display Units - is used to determine a representation of the numeric values along the vertical axis. This option can be useful if you're working with great numbers and wish the values on the axis to be displayed in more compact and readable way (e.g. you can represent 50 000 as 50 by using the Thousands display units). Select desired units from the drop-down list: Hundreds, Thousands, 10 000, 100 000, Millions, 10 000 000, 100 000 000, Billions, Trillions, or choose the None option to return to the default units. Values in reverse order - is used to display values in an opposite direction. When the box is unchecked, the lowest value is at the bottom and the highest value is at the top of the axis. When the box is checked, the values are ordered from top to bottom. The Tick Options section allows to adjust the appearance of tick marks on the vertical scale. Major tick marks are the larger scale divisions which can have labels displaying numeric values. Minor tick marks are the scale subdivisions which are placed between the major tick marks and have no labels. Tick marks also define where gridlines can be displayed, if the corresponding option is set at the Layout tab. The Major/Minor Type drop-down lists contain the following placement options: None to not display major/minor tick marks, Cross to display major/minor tick marks on both sides of the axis, In to display major/minor tick marks inside the axis, Out to display major/minor tick marks outside the axis. The Label Options section allows to adjust the appearance of major tick mark labels which display values. To specify a Label Position in regard to the vertical axis, select the necessary option from the drop-down list: None to not display tick mark labels, Low to display tick mark labels to the left of the plot area, High to display tick mark labels to the right of the plot area, Next to axis to display tick mark labels next to the axis. The Horizontal Axis tab allows you to change the parameters of the horizontal axis also referred to as the categories axis or x-axis which displays text labels. Note that the horizontal axis will be the value axis which displays numeric values for the Bar charts, therefore in this case the Horizontal Axis tab options will correspond to the ones described in the previous section. For the XY (Scatter) charts, both axes are value axes. The Axis Options section allows to set the following parameters: Axis Crosses - is used to specify a point on the horizontal axis where the vertical axis should cross it. The Auto option is selected by default, in this case the axes intersection point value is calculated automatically depending on the selected data range. You can select the Value option from the drop-down list and specify a different value in the entry field on the right, or set the axes intersection point at the Minimum/Maximum Value (that corresponds to the first and last category) on the horizontal axis. Axis Position - is used to specify where the axis text labels should be placed: On Tick Marks or Between Tick Marks. Values in reverse order - is used to display categories in an opposite direction. When the box is unchecked, categories are displayed from left to right. When the box is checked, the categories are ordered from right to left. The Tick Options section allows to adjust the appearance of tick marks on the horizontal scale. Major tick marks are the larger divisions which can have labels displaying category values. Minor tick marks are the smaller divisions which are placed between the major tick marks and have no labels. Tick marks also define where gridlines can be displayed, if the corresponding option is set at the Layout tab. You can adjust the following tick mark parameters: Major/Minor Type - is used to specify the following placement options: None to not display major/minor tick marks, Cross to display major/minor tick marks on both sides of the axis, In to display major/minor tick marks inside the axis, Out to display major/minor tick marks outside the axis. Interval between Marks - is used to specify how many categories should be displayed between two adjacent tick marks. The Label Options section allows to adjust the appearance of labels which display categories. Label Position - is used to specify where the labels should be placed in regard to the horizontal axis. Select the necessary option from the drop-down list: None to not display category labels, Low to display category labels at the bottom of the plot area, High to display category labels at the top of the plot area, Next to axis to display category labels next to the axis. Axis Label Distance - is used to specify how closely the labels should be placed to the axis. You can specify the necessary value in the entry field. The more the value you set, the more the distance between the axis and labels is. Interval between Labels - is used to specify how often the labels should be displayed. The Auto option is selected by default, in this case labels are displayed for every category. You can select the Manual option from the drop-down list and specify the necessary value in the entry field on the right. For example, enter 2 to display labels for every other category etc. The Cell Snapping tab contains the following parameters: Move and size with cells - this option allows to snap the chart to the cell behind it. If the cell moves (e.g. if you insert or delete some rows/columns), the chart will be moved together with the cell. If you increase or decrease the width or height of the cell, the chart will change its size as well. Move but don't size with cells - this option allows to snap the chart to the cell behind it preventing the image from being resized. If the cell moves, the chart will be moved together with the cell, but if you change the cell size, the chart dimensions remain unchanged. Don't move or size with cells - this option allows to prevent the chart from being moved or resized if the cell position or size was changed. 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 chart. 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 at the Home tab of the top toolbar to change the font type, style, size, or color. When the chart is selected, the Shape settings 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. Using the Shape Settings tab at the right panel you can not only adjust the chart area itself, but also change the chart elements, such as plot area, data series, chart title, legend etc and apply different fill types to them. Select the chart element clicking it with the left mouse button and choose the preferred fill type: solid color, gradient, texture or picture, pattern. Specify the fill parameters and set the Opacity level if necessary. When you select a vertical or horizontal axis or gridlines, the stroke settings are only available at the Shape Settings tab: color, width and type. For more details on how to work with shape colors, fills and stroke, you can refer to this page. Note: the Show shadow option is also available at the Shape settings tab, but it is disabled for chart elements. 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. Drag the cursor without releasing the mouse button to change the 3D chart orientation. If necessary, you can change the chart size and position. To delete the inserted chart, click it and press the Delete key. Edit sparklines Sparkline is a little chart that fits in one cell. Sparklines can be useful if you want to visually represent information for each row or column in large data sets. This makes it easier to show trends in multiple data series. If your spreadsheet contains existing sparklines created using some other application, you can change sparkline properties. To do that, select the cell that contains a sparkline with the mouse and click the Chart settings icon at the right sidebar. If the selected sparkline is included into a sparkline group, the changes will be applied to all sparklines in the group. Use the Type drop-down list to select one of the available sparkline types: Column - this type is similar to a regular Column Chart. Line - this type is similar to a regular Line Chart. Win/Loss - this type is suitable for representing data that include both positive and negative values. In the Style section, you can do the following: select the style which suits you best from the Template drop-down list. choose the necessary Color for the sparkline. choose the necessary Line Weight (available for the Line type only). The Show section allows to select which sparkline elements you want to highlight so that make them clearly visible. Check the box to the left of the element to be highlighted and select the necessary color clicking the colored box: High Point - to highlight points that represent maximum values, Low Point - to highlight points that represent minimum values, Negative Point - to highlight points that represent negative values, First/Last Point - to highlight the point that represents the first/last value, Markers (available for the Line type only) - to highlight all values. Click the Show advanced settings link situated at the right-side panel to open the Sparkline - Advanced Settings window. The Type & Data tab allows you to change the sparkline Type and Style as well as specify the Hidden and Empty cells display settings: Show empty cells as - this option allows to control how sparklines are displayed if some cells in a data range are empty. Select the necessary option from the list: Gaps - to display the sparkline with gaps in place of missing data, Zero - to display the sparkline as if the value in an empty cell was zero, Connect data points with line (available for the Line type only) - to ignore empty cells and display a connecting line between data points. Show data in hidden rows and columns - check this box if you want to include values from the hidden cells into sparklines. The Axis Options tab allows you to specify the following Horizontal/Vertical Axis parameters: In the Horizontal Axis section, the following parameters are available: Show axis - check this box to display the horizontal axis. If the source data contain negative values, this option helps to display them more vividly. Reverse order - check this box to display data in the reverse sequence. In the Vertical Axis section, the following parameters are available: Minimum/Maximum Value Auto for Each - this option is selected by default. It allows to use own minimum/maximum values for each sparkline. The minimum/maximum values are taken from the separate data series that are used to plot each sparkline. The maximum value for each sparkline will be located on the top of the cell, and the minimum value will be on the bottom. Same for All - this option allows to use the same minimum/maximum value for the entire sparkline group. The minimum/maximum values are taken from the whole data range that is used to plot the sparkline group. The maximum/minimum values for each sparkline will be scaled relative to the highest/lowest value within the range. If you select this option, it will be easier to compare several sparklines. Fixed - this option allows to set a custom minimum/maximum value. The values which are lower or higher than the specified ones are not displayed in the sparklines." + "body": "s Insert a chart To insert a chart into the speadsheet, Select the cell range that contain the data you wish to use for the chart, switch to the Insert tab of the top toolbar, Click the Chart icon on the top toolbar, Select a chart Type you wish to insert: Column, Line, Pie, Bar, Area, XY (Scatter), or Stock. Note: for Column, Line, Pie, or Bar charts, a 3D format is also available. After that the chart will be added to the worksheet. Adjust the chart settings Now you can change the settings of the inserted chart. To change the chart type, select the chart with the mouse, click the Chart settings icon on the right sidebar, open the Type drop-down list and select the type you need, open the Style drop-down list below and select the style which suits you best. The selected chart type and style will be changed. If you need to edit the data used to create the chart, click the Show advanced settings link situated on the right-side panel, or choose the Chart Advanced Settings option from the right-click menu, or just double-click the chart, in the opened Chart - Advanced Settings window make all the necessary changes, click the OK button to apply the changes and close the window. Below you can find the description of the chart settings that can be edited using the Chart - Advanced Settings window. The Type & Data tab allows you to change the chart type as well as the data you wish to use to create a chart. Change the chart Type selecting one of the available options: Column, Line, Pie, Bar, Area, XY (Scatter), or Stock. Check the selected Data Range and modify it, if necessary. To do that, click the icon. In the Select Data Range window, enter the necessary data range in the following format: Sheet1!$A$1:$E$10. You can also select the necessary cell range in the sheet using the mouse. When ready, click OK. Choose the way to arrange the data. You can either select the Data series to be used on the X axis: in rows or in columns. The Layout tab allows you to change the layout of chart elements. Specify the Chart Title position in regard to your chart by selecting the necessary option from the drop-down list: None to not display a chart title, Overlay to overlay and center the title in the plot area, No Overlay to display the title above the plot area. Specify the Legend position in regard to your chart by selecting the necessary option from the drop-down list: None to not display the legend, Bottom to display the legend and align it to the bottom of the plot area, Top to display the legend and align it to the top of the plot area, Right to display the legend and align it to the right of the plot area, Left to display the legend and align it to the left of the plot area, Left Overlay to overlay and center the legend to the left in the plot area, Right Overlay to overlay and center the legend to the right in the plot area. Specify the Data Labels (i.e. text labels that represent exact values of data points) parameters: specify the Data Labels position relative to the data points by selecting the necessary option from the drop-down list. The available options vary depending on the selected chart type. For Column/Bar charts, you can choose the following options: None, Center, Inner Bottom, Inner Top, Outer Top. For Line/XY (Scatter)/Stock charts, you can choose the following options: None, Center, Left, Right, Top, Bottom. For Pie charts, you can choose the following options: None, Center, Fit to Width, Inner Top, Outer Top. For Area charts as well as for 3D Column, Line and Bar charts, you can choose the following options: None, Center. select the data you wish to include into your labels checking the corresponding boxes: Series Name, Category Name, Value, enter a character (comma, semicolon etc.) you wish to use for separating several labels into the Data Labels Separator entry field. Lines - is used to choose a line style for Line/XY (Scatter) charts. You can choose one of the following options: Straight to use straight lines between data points, Smooth to use smooth curves between data points, or None to not display lines. Markers - is used to specify whether the markers should be displayed (if the box is checked) or not (if the box is unchecked) for Line/XY (Scatter) charts. Note: the Lines and Markers options are available for Line charts and XY (Scatter) charts only. The Axis Settings section allows you to specify if you wish to display the Horizontal/Vertical Axis or not by selecting the Show or Hide option from the drop-down list. You can also specify Horizontal/Vertical Axis Title parameters: Specify if you wish to display the Horizontal Axis Title or not by selecting the necessary option from the drop-down list: None to not display the horizontal axis title, No Overlay to display the title below the horizontal axis. Specify the orientation of the Vertical Axis Title by selecting the necessary option from the drop-down list: None to not display the vertical axis title, Rotated to display the title from bottom to top to the left of the vertical axis, Horizontal to display the title horizontally to the left of the vertical axis. The Gridlines section allows you to specify which of the Horizontal/Vertical Gridlines you wish to display selecting the necessary option from the drop-down list: Major, Minor, or Major and Minor. You can hide the gridlines at all using the None option. Note: the Axis Settings and Gridlines sections will be disabled for Pie charts since charts of this type have no axes and gridlines. Note: the Vertical/Horizontal Axis tabs will be disabled for Pie charts since charts of this type have no axes. The Vertical Axis tab allows you to change the parameters of the vertical axis (also referred to as the values axis or y-axis) which displays numeric values. Note that the vertical axis will be the category axis which displays text labels for the Bar charts, therefore in this case the Vertical Axis tab options will correspond to the ones described in the next section. For the XY (Scatter) charts, both axes are value axes. The Axis Options section allows you to set the following parameters: Minimum Value - is used to specify the lowest value displayed at the beginning of the vertical axis. The Auto option is selected by default, in this case the minimum value is calculated automatically depending on the selected data range. You can select the Fixed option from the drop-down list and specify a different value in the entry field on the right. Maximum Value - is used to specify the highest value displayed at the end of the vertical axis. The Auto option is selected by default, in this case the maximum value is calculated automatically depending on the selected data range. You can select the Fixed option from the drop-down list and specify a different value in the entry field on the right. Axis Crosses - is used to specify a point on the vertical axis where the horizontal axis should cross it. The Auto option is selected by default, in this case the axes intersection point value is calculated automatically depending on the selected data range. You can select the Value option from the drop-down list and specify a different value in the entry field on the right, or set the axes intersection point at the Minimum/Maximum Value on the vertical axis. Display Units - is used to determine a representation of the numeric values along the vertical axis. This option can be useful if you're working with great numbers and wish the values on the axis to be displayed in a more compact and readable way (e.g. you can represent 50 000 as 50 by using the Thousands display units). Select the desired units from the drop-down list: Hundreds, Thousands, 10 000, 100 000, Millions, 10 000 000, 100 000 000, Billions, Trillions, or choose the None option to return to the default units. Values in reverse order - is used to display values in an opposite direction. When the box is unchecked, the lowest value is at the bottom and the highest value is at the top of the axis. When the box is checked, the values are ordered from top to bottom. The Tick Options section allows to adjust the appearance of tick marks on the vertical scale. Major tick marks are the larger scale divisions which can have labels displaying numeric values. Minor tick marks are the scale subdivisions which are placed between the major tick marks and have no labels. Tick marks also define where gridlines can be displayed, if the corresponding option is set at the Layout tab. The Major/Minor Type drop-down lists contain the following placement options: None to not display major/minor tick marks, Cross to display major/minor tick marks on both sides of the axis, In to display major/minor tick marks inside the axis, Out to display major/minor tick marks outside the axis. The Label Options section allows to adjust the appearance of major tick mark labels which display values. To specify a Label Position in regard to the vertical axis, select the necessary option from the drop-down list: None to not display tick mark labels, Low to display tick mark labels to the left of the plot area, High to display tick mark labels to the right of the plot area, Next to axis to display tick mark labels next to the axis. The Horizontal Axis tab allows you to change the parameters of the horizontal axis also referred to as the categories axis or x-axis which displays text labels. Note that the horizontal axis will be the value axis which displays numeric values for the Bar charts, therefore in this case the Horizontal Axis tab options will correspond to the ones described in the previous section. For the XY (Scatter) charts, both axes are value axes. The Axis Options section allows you to set the following parameters: Axis Crosses - is used to specify a point on the horizontal axis where the vertical axis should cross it. The Auto option is selected by default, in this case the axes intersection point value is calculated automatically depending on the selected data range. You can select the Value option from the drop-down list and specify a different value in the entry field on the right, or set the axes intersection point at the Minimum/Maximum Value (that corresponds to the first and last category) on the horizontal axis. Axis Position - is used to specify where the axis text labels should be placed: On Tick Marks or Between Tick Marks. Values in reverse order - is used to display categories in an opposite direction. When the box is unchecked, categories are displayed from left to right. When the box is checked, the categories are ordered from right to left. The Tick Options section allows to adjust the appearance of tick marks on the horizontal scale. Major tick marks are the larger divisions which can have labels displaying category values. Minor tick marks are the smaller divisions which are placed between the major tick marks and have no labels. Tick marks also define where gridlines can be displayed, if the corresponding option is set on the Layout tab. You can adjust the following tick mark parameters: Major/Minor Type - is used to specify the following placement options: None to not display major/minor tick marks, Cross to display major/minor tick marks on both sides of the axis, In to display major/minor tick marks inside the axis, Out to display major/minor tick marks outside the axis. Interval between Marks - is used to specify how many categories should be displayed between two adjacent tick marks. The Label Options section allows you to adjust the appearance of labels which display categories. Label Position - is used to specify where the labels should be placed in regard to the horizontal axis. Select the necessary option from the drop-down list: None to not display category labels, Low to display category labels at the bottom of the plot area, High to display category labels at the top of the plot area, Next to axis to display category labels next to the axis. Axis Label Distance - is used to specify how closely the labels should be placed to the axis. You can specify the necessary value in the entry field. The more the value you set, the more the distance between the axis and labels is. Interval between Labels - is used to specify how often the labels should be displayed. The Auto option is selected by default, in this case labels are displayed for every category. You can select the Manual option from the drop-down list and specify the necessary value in the entry field on the right. For example, enter 2 to display labels for every other category etc. The Cell Snapping tab contains the following parameters: Move and size with cells - this option allows you to snap the chart to the cell behind it. If the cell moves (e.g. if you insert or delete some rows/columns), the chart will be moved together with the cell. If you increase or decrease the width or height of the cell, the chart will change its size as well. Move but don't size with cells - this option allows to snap the chart to the cell behind it preventing the chart from being resized. If the cell moves, the chart will be moved together with the cell, but if you change the cell size, the chart dimensions remain unchanged. Don't move or size with cells - this option allows to prevent the chart from being moved or resized if the cell position or size was changed. The Alternative Text tab allows to specify the Title and the Description which will be read to people with vision or cognitive impairments to help them better understand what information the chart contains. 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 Home tab of the top toolbar to change the font type, style, size, or color. When the chart is selected, the Shape settings icon is also available on the right, since the shape is used as a background for the chart. You can click this icon to open the Shape Settings tab on the right sidebar and adjust the shape Fill and Stroke. Note that you cannot change the shape type. Using the Shape Settings tab on the right panel you can not only adjust the chart area itself, but also change the chart elements, such as the plot area, data series, chart title, legend, etc. and apply different fill types to them. Select the chart element by clicking it with the left mouse button and choose the preferred fill type: solid color, gradient, texture or picture, pattern. Specify the fill parameters and set the Opacity level if necessary. When you select a vertical or horizontal axis or gridlines, the stroke settings are only available on the Shape Settings tab: color, width and type. For more details on how to work with shape colors, fills and stroke, please refer to this page. Note: the Show shadow option is also available on the Shape settings tab, but it is disabled for chart elements. If you need to resize chart elements, left-click to select the needed element and drag one of 8 white squares located along the perimeter of the element. To change the position of the element, left-click on it, make sure your cursor changed to , hold the left mouse button and drag the element to the needed position. 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. Drag the cursor without releasing the mouse button to change the 3D chart orientation. If necessary, you can change the chart size and position. To delete the inserted chart, click it and press the Delete key. Edit sparklines Sparkline is a little chart that fits in one cell. Sparklines can be useful if you want to visually represent information for each row or column in large data sets. This makes it easier to show trends in multiple data series. If your spreadsheet already contains sparklines created with another application, you can change the sparkline properties. To do that, select the cell that contains a sparkline with the mouse and click the Chart settings icon on the right sidebar. If the selected sparkline is included into a sparkline group, the changes will be applied to all sparklines in the group. Use the Type drop-down list to select one of the available sparkline types: Column - this type is similar to a regular Column Chart. Line - this type is similar to a regular Line Chart. Win/Loss - this type is suitable for representing data that include both positive and negative values. In the Style section, you can do the following: select the style which suits you best from the Template drop-down list. choose the necessary Color for the sparkline. choose the necessary Line Weight (available for the Line type only). The Show section allows you to select which sparkline elements you want to highlight to make them clearly visible. Check the box to the left of the element to be highlighted and select the necessary color by clicking the colored box: High Point - to highlight points that represent maximum values, Low Point - to highlight points that represent minimum values, Negative Point - to highlight points that represent negative values, First/Last Point - to highlight the point that represents the first/last value, Markers (available for the Line type only) - to highlight all values. Click the Show advanced settings link situated on the right-side panel to open the Sparkline - Advanced Settings window. The Type & Data tab allows you to change the sparkline Type and Style as well as specify the Hidden and Empty cells display settings: Show empty cells as - this option allows you to control how sparklines are displayed if some cells in a data range are empty. Select the necessary option from the list: Gaps - to display the sparkline with gaps in place of missing data, Zero - to display the sparkline as if the value in an empty cell was zero, Connect data points with line (available for the Line type only) - to ignore empty cells and display a connecting line between data points. Show data in hidden rows and columns - check this box if you want to include values from the hidden cells into sparklines. The Axis Options tab allows you to specify the following Horizontal/Vertical Axis parameters: In the Horizontal Axis section, the following parameters are available: Show axis - check this box to display the horizontal axis. If the source data contain negative values, this option helps to display them more vividly. Reverse order - check this box to display data in the reverse sequence. In the Vertical Axis section, the following parameters are available: Minimum/Maximum Value Auto for Each - this option is selected by default. It allows you to use own minimum/maximum values for each sparkline. The minimum/maximum values are taken from the separate data series that are used to plot each sparkline. The maximum value for each sparkline will be located at the top of the cell, and the minimum value will be at the bottom. Same for All - this option allows you to use the same minimum/maximum value for the entire sparkline group. The minimum/maximum values are taken from the whole data range that is used to plot the sparkline group. The maximum/minimum values for each sparkline will be scaled relative to the highest/lowest value within the range. If you select this option, it will be easier to compare several sparklines. Fixed - this option allows you to set a custom minimum/maximum value. The values which are lower or higher than the specified ones are not displayed in the sparklines." }, { "id": "UsageInstructions/InsertDeleteCells.htm", "title": "Manage cells, rows, and columns", - "body": "You can insert blank cells above or to the left of the selected cell on a worksheet. You can also insert an entire row above the selected one or a column to the left of the selected column. To make it easy to view a large amount of information, you can hide some rows or columns and display them again. It's also possible to specify a certain row height and column width. Insert cells, rows, columns To insert a blank cell to the left of the selected cell: right-click the cell to the left of which you wish to insert a new one, click the Insert cells icon situated at the Home tab of the top toolbar or select the Insert item from the right-click menu and use the Shift cells right option. The program will shift the selected cell to the right to insert a blank one. To insert a blank cell above the selected cell: right-click the cell above which you wish to insert a new one, click the Insert cells icon situated at the Home tab of the top toolbar or select the Insert item from the right-click menu and use the Shift cells down option. The program will shift the selected cell down to insert a blank one. To insert an entire row: select either the whole row by clicking its heading or a cell in the row above which you wish to insert a new one, Note: to insert multiple rows, select the same number of rows as you wish to insert. click the Insert cells icon situated at the Home tab of the top toolbar and use the Entire row option, or right-click the selected cell, select the Insert item from the right-click menu, then choose the Entire row option, or right-click the selected row(s) and use the Insert Top option from the right-click menu. The program will shift the selected row down to insert a blank one. To insert an entire column: select either the whole column by clicking its heading or a cell in the column to the left of which you wish to insert a new one, Note: to insert multiple columns, select the same number of columns as you wish to insert. click the Insert cells icon situated at the Home tab of the top toolbar and use the Entire column option, or right-click the selected cell, select the Insert item from the right-click menu, then choose the Entire column option, or right-click the selected column(s) and use the Insert Left option from the right-click menu. The program will shift the selected column to the right to insert a blank one. Hide and show rows and columns To hide a row or column: select rows or columns you wish to hide, right-click the selected rows or columns and use the Hide option from the right-click menu. To display hidden rows or columns, select visible rows above and below the hidden rows or visible columns to the left and to the right of the hidden columns, right-click them and use the Show option from the right-click menu. Change column width and row height The column width determines how many characters with default formatting can be displayed in the column cell. The default value is set to 8.43 symbols. To change it: select columns you wish to change, right-click the selected columns and use the Set Column Width option from the right-click menu, choose one of the available options: select the Auto Fit Column Width option to automatically adjust the width of each column according to its content, or select the Custom Column Width option and specify a new value from 0 to 255 in the Custom Column Width window, then click OK. To change the width of a single column manually, move the mouse cursor over the right border of the column heading so that the cursor turns into the bidirectional arrow . Drag the border to the left or right to set a custom width or double-click the mouse to automatically change the column width according to its content. The default row height value is 14.25 points. To change it: select rows you wish to change, right-click the selected rows and use the Set Row Height option from the right-click menu, choose one of the available options: select the Auto Fit Row Height option to automatically adjust the height of each row according to its content, or select the Custom Row Height option and specify a new value from 0 to 408.75 in the Custom Row Height window, then click OK. To change the height of a single row manually, drag the bottom border of the row heading. Delete cells, rows, columns To delete an unnecessary cell, row, or column: select cells, rows, or columns you wish to delete, click the Delete cells icon situated at the Home tab of the top toolbar or select the Delete item from the right-click menu and select the appropriate option: if you use the Shift cells left option a cell to the right of the deleted one will be moved to the left; if you use the Shift cells up option a cell below the deleted one will be moved up; if you use the Entire row option a row below the selected one will be moved up; if you use the Entire column option a column to the right of the deleted one will be moved to the left; You can always restore the deleted data using the Undo icon at the top toolbar." + "body": "You can insert blank cells above or on the left of the selected cell in a worksheet. You can also insert an entire row above the selected one or a column on the left of the selected column. To make it easy to view a large amount of information, you can hide some rows or columns and display them again. It's also possible to specify the height of a certain row and width of a column. Insert cells, rows, columns To insert a blank cell to the left of the selected cell: right-click the cell to the left of which you wish to insert a new one, click the Insert cells icon situated at the Home tab of the top toolbar or select the Insert item from the right-click menu and use the Shift Cells Right option. The program will shift the selected cell to the right to insert a blank one. To insert a blank cell above the selected cell: right-click the cell above which you wish to insert a new one, click the Insert cells icon situated on the Home tab of the top toolbar or select the Insert item from the right-click menu and use the Shift Cells Down option. The program will shift the selected cell down to insert a blank one. To insert an entire row: select either the whole row by clicking its heading or a cell in the row above which you wish to insert a new one, Note: to insert multiple rows, select the required number of rows. click the Insert cells icon situated on the Home tab of the top toolbar and use the Entire row option, or right-click the selected cell, select the Insert item from the right-click menu, then choose the Entire Row option, or right-click the selected row(s) and use the Insert Top option from the right-click menu. The program will shift the selected row down to insert a blank one. To insert an entire column: select either the whole column by clicking its heading or a cell in the column to the left of which you wish to insert a new one, Note: to insert multiple columns, select the required number of columns. click the Insert cells icon situated on the Home tab of the top toolbar and use the Entire column option, or right-click the selected cell, select the Insert item from the right-click menu, then choose the Entire Column option, or right-click the selected column(s) and use the Insert Left option from the right-click menu. The program will shift the selected column to the right to insert a blank one. You can also use the Ctrl+Shift+= keyboard shortcut to open the dialog box for inserting new cells, select the Shift Cells Right, Shift Cells Down, Entire Row, or Entire Column option and click OK. Hide and show rows and columns To hide a row or column: select rows or columns you wish to hide, right-click the selected rows or columns and use the Hide option from the right-click menu. To display the hidden rows or columns, select the visible rows above and below the hidden rows or visible columns to the left and to the right of the hidden columns, right-click them and use the Show option from the right-click menu. Change column width and row height The column width determines how many characters with default formatting can be displayed in the column cell. The default value is set to 8.43 symbols. To change it: select columns you wish to change, right-click the selected columns and use the Set Column Width option from the right-click menu, choose one of the available options: select the Auto Fit Column Width option to automatically adjust the width of each column according to its content, or select the Custom Column Width option and specify a new value from 0 to 255 in the Custom Column Width window, then click OK. To change the width of a single column manually, move the mouse cursor over the right border of the column heading so that the cursor turns into the bidirectional arrow . Drag the border to the left or right to set a custom width or double-click the mouse to automatically change the column width according to its content. The default row height value is 14.25 points. To change it: select rows you wish to change, right-click the selected rows and use the Set Row Height option from the right-click menu, choose one of the available options: select the Auto Fit Row Height option to automatically adjust the height of each row according to its content, or select the Custom Row Height option and specify a new value from 0 to 408.75 in the Custom Row Height window, then click OK. To change the height of a single row manually, drag the bottom border of the row heading. Delete cells, rows, columns To delete an unnecessary cell, row, or column: select cells, rows, or columns you wish to delete, click the Delete cells icon situated on the Home tab of the top toolbar or select the Delete item from the right-click menu and select the appropriate option: if you use the Shift Cells Left option, a cell to the right of the deleted one will be moved to the left; if you use the Shift Cells Up option, a cell below the deleted one will be moved up; if you use the Entire Row option, a row below the selected one will be moved up; if you use the Entire Column option, a column to the right of the deleted one will be moved to the left; You can also use the Ctrl+Shift+- keyboard shortcut to open the dialog box for deleting cells, select the Shift Cells Left, Shift Cells Up, Entire Row, or Entire Column option and click OK. You can always restore the deleted data using the Undo icon on the top toolbar." }, { "id": "UsageInstructions/InsertEquation.htm", "title": "Insert equations", - "body": "Spreadsheet Editor allows you to build equations using the built-in templates, edit them, insert special characters (including mathematical operators, Greek letters, accents etc.). Add a new equation To insert an equation from the gallery, switch to the Insert tab of the top toolbar, click the arrow next to the Equation icon at the top toolbar, 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, click the certain symbol/equation in the corresponding set of templates. The selected symbol/equation will be added to the worksheet. The upper left corner of the equation box will coincide with the upper left corner of the currently selected cell, but the equation box can be freely moved, resized or rotated on the sheet. To do that click on the equation box border (it will be displayed as a solid line) and use corresponding handles. 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 . You need to fill in all the placeholders specifying the necessary values. Enter values The insertion point specifies where the next character you enter will appear. To position the insertion point precisely, click within a placeholder and use the keyboard arrows to move the insertion point by one character left/right. 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 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. To add some new equation elements you can also use the right-click menu options: To add a new argument that goes before or after the existing one within Brackets, you can right-click on the existing argument and select the Insert argument before/after option from the menu. To add a new equation within Cases with several conditions from the Brackets group, you can right-click on an empty placeholder or entered equation within it and select the Insert equation before/after option from the menu. To add a new row or a column in a Matrix, you can right-click on a placeholder within it, select the Insert option from the menu, then select Row Above/Below or Column Left/Right. Note: currently, equations cannot be entered using the linear format, i.e. \\sqrt(4&x^3). 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 equation 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 equation box is horizontally centered and vertically aligned to the top of the equation box. To change its horizontal/vertical alignment, put the cursor within the the equation box (the equation 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 use the and 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. 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). To change the Scripts position relating to text, you can right-click on the equation that includes scripts and select the Scripts before/after text option from the menu. To change the argument size for Scripts, Radicals, Integrals, Large Operators, Limits and Logarithms, Operators as well as for overbraces/underbraces and templates with grouping characters from the Accents group, you can right-click on the argument you want to change and select the Increase/Decrease argument size option from the menu. To specify whether an empty degree placeholder should be displayed or not for a Radical, you can right-click on the radical and select the Hide/Show degree option from the menu. To specify whether an empty limit placeholder should be displayed or not for an Integral or Large Operator, you can right-click on the equation and select the Hide/Show top/bottom limit option from the menu. To change the limits position relating to the integral or operator sign for Integrals or Large Operators, you can right-click on the equation and select the Change limits location option from the menu. The limits can be displayed to the right of the operator sign (as subscripts and superscripts) or directly above and below the operator sign. To change the limits position relating to text for Limits and Logarithms and templates with grouping characters from the Accents group, you can right-click on the equation and select the Limit over/under text option from the menu. To choose which of the Brackets should be displayed, you can right-click on the expression within them and select the Hide/Show opening/closing bracket option from the menu. To control the Brackets size, you can right-click on the expression within them. The Stretch brackets option is selected by default so that the brackets can grow according to the expression within them, but you can deselect this option to prevent brackets from stretching. When this option is activated, you can also use the Match brackets to argument height option. To change the character position relating to text for overbraces/underbraces or overbars/underbars from the Accents group, you can right-click on the template and select the Char/Bar over/under text option from the menu. To choose which borders should be displayed for a Boxed formula from the Accents group, you can right-click on the equation and select the Border properties option from the menu, then select Hide/Show top/bottom/left/right border or Add/Hide horizontal/vertical/diagonal line. To specify whether empty placeholders should be displayed or not for a Matrix, you can right-click on it and select the Hide/Show placeholder option from the menu. To align some equation elements you can use the right-click menu options: To align equations within Cases with several conditions from the Brackets group, you can right-click on an equation, select the Alignment option from the menu, then select the alignment type: Top, Center, or Bottom. To align a Matrix vertically, you can right-click on the matrix, select the Matrix Alignment option from the menu, then select the alignment type: Top, Center, or Bottom. To align elements within a Matrix column horizontally, you can right-click on a placeholder within the column, select the Column Alignment option from the menu, then select the alignment type: Left, Center, or Right. Delete equation elements To delete a part of the equation, select the part you want to delete by dragging the mouse or holding down the Shift key and using the arrow buttons, then press the Delete key on the keyboard. A slot can only be deleted together with the template it belongs to. To delete the entire equation, click on the equation box border (it will be displayed as a solid line) and and press the Delete key on the keyboard. To delete some equation elements you can also use the right-click menu options: To delete a Radical, you can right-click on it and select the Delete radical option from the menu. To delete a Subscript and/or Superscript, you can right-click on the expression that contains them and select the Remove subscript/superscript option from the menu. If the expression contains scripts that go before text, the Remove scripts option is available. To delete Brackets, you can right-click on the expression within them and select the Delete enclosing characters or Delete enclosing characters and separators option from the menu. If the expression within Brackets inclides more than one argument, you can right-click on the argument you want to delete and select the Delete argument option from the menu. If Brackets enclose more than one equation (i.e. Cases with several conditions), you can right-click on the equation you want to delete and select the Delete equation option from the menu. To delete a Limit, you can right-click on it and select the Remove limit option from the menu. To delete an Accent, you can right-click on it and select the Remove accent character, Delete char or Remove bar option from the menu (the available options differ depending on the selected accent). To delete a row or a column of a Matrix, you can right-click on the placeholder within the row/column you need to delete, select the Delete option from the menu, then select Delete Row/Column." + "body": "Spreadsheet Editor allows you to build equations using the built-in templates, edit them, insert special characters (including mathematical operators, Greek letters, accents etc.). Add a new equation To insert an equation from the gallery, switch to the Insert tab of the top toolbar, click the arrow next to the Equation icon on the top toolbar, 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, click the certain symbol/equation in the corresponding set of templates. The selected symbol/equation will be added to the worksheet. The upper left corner of the equation box will coincide with the upper left corner of the currently selected cell, but the equation box can be freely moved, resized or rotated in the sheet. To do that, click on the equation box border (it will be displayed as a solid line) and use corresponding handles. Each equation template represents a set of slots. A slot is a position of each element that makes up the equation. An empty slot (also called as a placeholder) has a dotted outline . You need to fill in all the placeholders specifying the necessary values. Enter values The insertion point specifies where the next character will appear. To position the insertion point precisely, click within a placeholder and use the keyboard arrows to move the insertion point by one character left/right. 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 Equation menu on the Insert tab of the top toolbar or typing them from the keyboard (see the Math AutoСorrect option description), 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. To add some new equation elements, you can also use the right-click menu options: To add a new argument that goes before or after the existing one within Brackets, you can right-click on the existing argument and select the Insert argument before/after option from the menu. To add a new equation within Cases with several conditions from the Brackets group, you can right-click on an empty placeholder or entered equation within it and select the Insert equation before/after option from the menu. To add a new row or a column in a Matrix, you can right-click on a placeholder within it, select the Insert option from the menu, then select Row Above/Below or Column Left/Right. Note: currently, equations cannot be entered using the linear format, i.e. \\sqrt(4&x^3). When entering the values of the mathematical expressions, you do not need to use Spacebar because the spaces between the characters and signs of operations are set automatically. If the equation is too long and does not fit a single line within the equation box, automatic line breaking occurs while 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 equation box is horizontally centered and vertically aligned to the top of the equation box. To change its horizontal/vertical alignment, put the cursor within the equation box (the equation 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 use the Increment font size and Decrement font size buttons on 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 on 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. 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). To change the Scripts position relating to text, you can right-click on the equation that includes scripts and select the Scripts before/after text option from the menu. To change the argument size for Scripts, Radicals, Integrals, Large Operators, Limits and Logarithms, Operators as well as for overbraces/underbraces and templates with grouping characters from the Accents group, you can right-click on the argument you want to change and select the Increase/Decrease argument size option from the menu. To specify whether an empty degree placeholder should be displayed or not for a Radical, you can right-click on the radical and select the Hide/Show degree option from the menu. To specify whether an empty limit placeholder should be displayed or not for an Integral or Large Operator, you can right-click on the equation and select the Hide/Show top/bottom limit option from the menu. To change the limits position relating to the integral or operator sign for Integrals or Large Operators, you can right-click on the equation and select the Change limits location option from the menu. The limits can be displayed to the right of the operator sign (as subscripts and superscripts) or directly above and below the operator sign. To change the limits position relating to text for Limits and Logarithms and templates with grouping characters from the Accents group, you can right-click on the equation and select the Limit over/under text option from the menu. To choose which of the Brackets should be displayed, you can right-click on the expression within them and select the Hide/Show opening/closing bracket option from the menu. To control the Brackets size, you can right-click on the expression within them. The Stretch brackets option is selected by default so that the brackets can grow according to the expression within them, but you can deselect this option to prevent brackets from stretching. When this option is activated, you can also use the Match brackets to argument height option. To change the character position relating to text for overbraces/underbraces or overbars/underbars from the Accents group, you can right-click on the template and select the Char/Bar over/under text option from the menu. To choose which borders should be displayed for a Boxed formula from the Accents group, you can right-click on the equation and select the Border properties option from the menu, then select Hide/Show top/bottom/left/right border or Add/Hide horizontal/vertical/diagonal line. To specify whether empty placeholders should be displayed or not for a Matrix, you can right-click on it and select the Hide/Show placeholder option from the menu. To align some equation elements, you can use the right-click menu options: To align equations within Cases with several conditions from the Brackets group, you can right-click on an equation, select the Alignment option from the menu, then select the alignment type: Top, Center, or Bottom. To align a Matrix vertically, you can right-click on the matrix, select the Matrix Alignment option from the menu, then select the alignment type: Top, Center, or Bottom. To align elements within a Matrix column horizontally, you can right-click on a placeholder within the column, select the Column Alignment option from the menu, then select the alignment type: Left, Center, or Right. Delete equation elements To delete a part of the equation, select the part you want to delete by dragging the mouse or holding down the Shift key and using the arrow buttons, then press the Delete key on the keyboard. A slot can only be deleted together with the template it belongs to. To delete the entire equation, click on the equation box border (it will be displayed as a solid line) and and press the Delete key on the keyboard. To delete some equation elements, you can also use the right-click menu options: To delete a Radical, you can right-click on it and select the Delete radical option from the menu. To delete a Subscript and/or Superscript, you can right-click on the expression that contains them and select the Remove subscript/superscript option from the menu. If the expression contains scripts that go before text, the Remove scripts option is available. To delete Brackets, you can right-click on the expression within them and select the Delete enclosing characters or Delete enclosing characters and separators option from the menu. If the expression within Brackets inclides more than one argument, you can right-click on the argument you want to delete and select the Delete argument option from the menu. If Brackets enclose more than one equation (i.e. Cases with several conditions), you can right-click on the equation you want to delete and select the Delete equation option from the menu. To delete a Limit, you can right-click on it and select the Remove limit option from the menu. To delete an Accent, you can right-click on it and select the Remove accent character, Delete char or Remove bar option from the menu (the available options differ depending on the selected accent). To delete a row or a column of a Matrix, you can right-click on the placeholder within the row/column you need to delete, select the Delete option from the menu, then select Delete Row/Column." }, { "id": "UsageInstructions/InsertFunction.htm", "title": "Insert function", - "body": "The ability to perform basic calculations is the principal reason for using a spreadsheet. Some of them are performed automatically when you select a range of cells in your spreadsheet: Average is used to analyze the selected range of cells and find the average value. Count is used to count the number of the selected cells containing values ignoring empty cells. Min is used to analyze the range of data and find the smallest number. Max is used to analyze the range of data and find the largest number. Sum is used to add all the numbers in the selected range ignoring empty cells or those contaning text. The results of these calculations are displayed in the right lower corner at the status bar. To perform any other calculations you can insert a needed formula manually using the common mathematical operators or insert a predefined formula - Function. The possibilities to work with Functions are accessible from both Home and Formula tab. At the Home tab, you can use the Insert function button to add one of commonly used functions (SUM, MIN, MAX, COUNT) or open the Insert Function window that contains all available functions classified by category. At the Formula tab you can use the following buttons: Function - to open the Insert Function window that contains all available functions classified by category. Autosum - to quickly access the SUM, MIN, MAX, COUNT functions. When you select a functions from this group, it automatically performs calculations for all cells in the column above the selected cell so that you don't need to enter arguments. Recently used - to quickly access 10 recently used functions. Financial, Logical, Text and data, Date and time, Lookup and references, Math and trigonometry - to quickly access functions that belongs to the corresponding categories. More functions - to access the functions from the following groups: Database, Engineering, Information and Statistical. Calculation - to force the program to recalculate functions. To insert a function, select a cell you wish to insert a function into, proceed in one of the following ways: switch to the Formula tab and use the buttons available at the top toolbar to access a function from a specific group, or use the Additional option from the menu to open the Insert Function window; switch to the Home tab, click the Insert function icon, select one of the commonly used functions (SUM, MIN, MAX, COUNT) or click the Additional option, right-click within a selected cell and select the Insert Function option from the contextual menu, click the icon before the formula bar, in the Insert Function window that opens, select the necessary function group, then choose the function you need from the list and click OK. enter the function arguments either manually or dragging to select a range of cells to be included as an argument. If the function requires several arguments, they must be separated by commas. Note: generally, numeric values, logical values (TRUE, FALSE), text values (must be quoted), cell references, cell range references, names assigned to ranges and other functions can be used as function arguments. Press the Enter key. To enter a function manually using the keyboard, select a cell, enter the equal sign (=) Each formula must begin with the equal sign (=). enter the function name 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. If you hover the mouse pointer over a formula, a tooltip with the formula description will be displayed. You can select the necessary formula from the list and insert it by clicking it or pressing the Tab key. enter the function arguments Arguments must be enclosed into parentheses. The opening parenthesis '(' is added automatically if you select a function from the list. When you enter arguments, a tooltip that contains the formula syntax is also displayed. when all the agruments are specified, enter the closing parenthesis ')' and press Enter. If you enter new data or change values used as arguments, recalculation of functions is performed automatically by default. You can force the program to recalculate functions by using the Calculation button at the Formula tab. Click the Calculation button itself to recalculate the entire workbook, or click the arrow below the button and choose the necessary option from the menu: Calculate workbook or Calculate current sheet. You can also use the following key combinations: F9 to recalculate the workbook, Shift +F9 to recalculate the current worksheet. Here is the list of the available functions grouped by categories: Function Category Description Functions Text and Data Functions Are used to correctly display the text data in your spreadsheet. ASC; CHAR; CLEAN; CODE; CONCATENATE; CONCAT; DOLLAR; EXACT; FIND; FINDB; FIXED; LEFT; LEFTB; LEN; LENB; LOWER; MID; MIDB; NUMBERVALUE; PROPER; REPLACE; REPLACEB; REPT; RIGHT; RIGHTB; SEARCH; SEARCHB; SUBSTITUTE; T; TEXT; TEXTJOIN; TRIM; UNICHAR; UNICODE; UPPER; VALUE Statistical Functions Are used to analyze data: finding the average value, the largest or smallest values in a range of cells. AVEDEV; AVERAGE; AVERAGEA; AVERAGEIF; AVERAGEIFS; BETADIST; BETA.DIST; BETA.INV; BETAINV; BINOMDIST; BINOM.DIST; BINOM.DIST.RANGE; BINOM.INV; CHIDIST; CHIINV; CHISQ.DIST; CHISQ.DIST.RT; CHISQ.INV; CHISQ.INV.RT; CHITEST; CHISQ.TEST; CONFIDENCE; CONFIDENCE.NORM; CONFIDENCE.T; CORREL; COUNT; COUNTA; COUNBLANK; COUNTIF; COUNTIFS; COVAR; COVARIANCE.P; COVARIANCE.S; CRITBINOM; DEVSQ; EXPON.DIST; EXPONDIST; F.DIST; FDIST; F.DIST.RT; F.INV; FINV; F.INV.RT; FISHER; FISHERINV; FORECAST; FORECAST.ETS; FORECAST.ETS.CONFINT; FORECAST.ETS.SEASONALITY; FORECAST.ETS.STAT; FORECAST.LINEAR; FREQUENCY; FTEST; F.TEST; GAMMA; GAMMA.DIST; GAMMADIST; GAMMA.INV; GAMMAINV; GAMMALN; GAMMALN.PRECISE; GAUSS; GEOMEAN; HARMEAN; HYPGEOMDIST; HYPGEOM.DIST; INTERCEPT; KURT; LARGE; LOGINV; LOGNORM.DIST; LOGNORM.INV; LOGNORMDIST; MAX; MAXA; MAXIFS; MEDIAN; MIN; MINA; MINIFS; MODE; MODE.MULT; MODE.SNGL; NEGBINOMDIST; NEGBINOM.DIST; NORMDIST; NORM.DIST; NORMINV; NORM.INV; NORMSDIST; NORM.S.DIST; NORMSINV; NORM.S.INV; PEARSON; PERCENTILE; PERCENTILE.EXC; PERCENTILE.INC; PERCENTRANK; PERCENTRANK.EXC; PERCENTRANK.INC; PERMUT; PERMUTATIONA; PHI; POISSON; POISSON.DIST; PROB; QUARTILE; QUARTILE.EXC; QUARTILE.INC; RANK; RANK.AVG; RANK.EQ; RSQ; SKEW; SKEW.P; SLOPE; SMALL; STANDARDIZE; STDEV; STDEV.S; STDEVA; STDEVP; STDEV.P; STDEVPA; STEYX; TDIST; T.DIST; T.DIST.2T; T.DIST.RT; T.INV; T.INV.2T; TINV; TRIMMEAN; TTEST; T.TEST; VAR; VARA; VARP; VAR.P; VAR.S; VARPA; WEIBULL; WEIBULL.DIST; ZTEST; Z.TEST Math and Trigonometry Functions Are used to perform basic math and trigonometry operations such as adding, multiplying, dividing, rounding, etc. ABS; ACOS; ACOSH; ACOT; ACOTH; AGGREGATE; ARABIC; ASIN; ASINH; ATAN; ATAN2; ATANH; BASE; CEILING; CEILING.MATH; CEILING.PRECISE; COMBIN; COMBINA; COS; COSH; COT; COTH; CSC; CSCH; DECIMAL; DEGREES; ECMA.CEILING; EVEN; EXP; FACT; FACTDOUBLE; FLOOR; FLOOR.PRECISE; FLOOR.MATH; GCD; INT; ISO.CEILING; LCM; LN; LOG; LOG10; MDETERM; MINVERSE; MMULT; MOD; MROUND; MULTINOMIAL; ODD; PI; POWER; PRODUCT; QUOTIENT; RADIANS; RAND; RANDBETWEEN; ROMAN; ROUND; ROUNDDOWN; ROUNDUP; SEC; SECH; SERIESSUM; SIGN; SIN; SINH; SQRT; SQRTPI; SUBTOTAL; SUM; SUMIF; SUMIFS; SUMPRODUCT; SUMSQ; SUMX2MY2; SUMX2PY2; SUMXMY2; TAN; TANH; TRUNC Date and Time Functions Are used to correctly display date and time in your spreadsheet. DATE; DATEDIF; DATEVALUE; DAY; DAYS; DAYS360; EDATE; EOMONTH; HOUR; ISOWEEKNUM; MINUTE; MONTH; NETWORKDAYS; NETWORKDAYS.INTL; NOW; SECOND; TIME; TIMEVALUE; TODAY; WEEKDAY; WEEKNUM; WORKDAY; WORKDAY.INTL; YEAR; YEARFRAC Engineering Functions Are used to perform some engineering calculations: converting between different bases, finding complex numbers etc. BESSELI; BESSELJ; BESSELK; BESSELY; BIN2DEC; BIN2HEX; BIN2OCT; BITAND; BITLSHIFT; BITOR; BITRSHIFT; BITXOR; COMPLEX; CONVERT; DEC2BIN; DEC2HEX; DEC2OCT; DELTA; ERF; ERF.PRECISE; ERFC; ERFC.PRECISE; GESTEP; HEX2BIN; HEX2DEC; HEX2OCT; IMABS; IMAGINARY; IMARGUMENT; IMCONJUGATE; IMCOS; IMCOSH; IMCOT; IMCSC; IMCSCH; IMDIV; IMEXP; IMLN; IMLOG10; IMLOG2; IMPOWER; IMPRODUCT; IMREAL; IMSEC; IMSECH; IMSIN; IMSINH; IMSQRT; IMSUB; IMSUM; IMTAN; OCT2BIN; OCT2DEC; OCT2HEX Database Functions Are used to perform calculations for the values in a certain field of the database that correspond to the specified criteria. DAVERAGE; DCOUNT; DCOUNTA; DGET; DMAX; DMIN; DPRODUCT; DSTDEV; DSTDEVP; DSUM; DVAR; DVARP Financial Functions Are used to perform some financial calculations calculating the net present value, payments etc. ACCRINT; ACCRINTM; AMORDEGRC; AMORLINC; COUPDAYBS; COUPDAYS; COUPDAYSNC; COUPNCD; COUPNUM; COUPPCD; CUMIPMT; CUMPRINC; DB; DDB; DISC; DOLLARDE; DOLLARFR; DURATION; EFFECT; FV; FVSCHEDULE; INTRATE; IPMT; IRR; ISPMT; MDURATION; MIRR; NOMINAL; NPER; NPV; ODDFPRICE; ODDFYIELD; ODDLPRICE; ODDLYIELD; PDURATION; PMT; PPMT; PRICE; PRICEDISC; PRICEMAT; PV; RATE; RECEIVED; RRI; SLN; SYD; TBILLEQ; TBILLPRICE; TBILLYIELD; VDB; XIRR; XNPV; YIELD; YIELDDISC; YIELDMAT Lookup and Reference Functions Are used to easily find the information from the data list. ADDRESS; CHOOSE; COLUMN; COLUMNS; FORMULATEXT; HLOOKUP; HYPERLINLK; INDEX; INDIRECT; LOOKUP; MATCH; OFFSET; ROW; ROWS; TRANSPOSE; VLOOKUP Information Functions Are used to give you the information about the data in the selected cell or a range of cells. ERROR.TYPE; ISBLANK; ISERR; ISERROR; ISEVEN; ISFORMULA; ISLOGICAL; ISNA; ISNONTEXT; ISNUMBER; ISODD; ISREF; ISTEXT; N; NA; SHEET; SHEETS; TYPE Logical Functions Are used to check if a condition is true or false. AND; FALSE; IF; IFERROR; IFNA; IFS; NOT; OR; SWITCH; TRUE; XOR" + "body": "The ability to perform basic calculations is the principal reason for using a spreadsheet. Some of them are performed automatically when you select a cell range in your spreadsheet: Average is used to analyze the selected cell range and find the average value. Count is used to count the number of the selected cells with values ignoring the empty cells. Min is used to analyze the range of data and find the smallest number. Max is used to analyze the range of data and find the largest number. Sum is used to add all the numbers in the selected range ignoring the empty cells or those contaning text. The results of these calculations are displayed in the right lower corner on the status bar. You can manage the status bar by right-clicking on it and choosing only those functions to display that you need. To perform any other calculations, you can insert the required formula manually using the common mathematical operators or insert a predefined formula - Function. The abilities to work with Functions are accessible from both the Home and Formula tab or by pressing Shift+F3 key combination. On the Home tab, you can use the Insert function button to add one of the most commonly used functions (SUM, AVERAGE, MIN, MAX, COUNT) or open the Insert Function window that contains all the available functions classified by category. Use the search box to find the exact function by its name. On the Formula tab you can use the following buttons: Function - to open the Insert Function window that contains all the available functions classified by category. Autosum - to quickly access the SUM, MIN, MAX, COUNT functions. When you select a functions from this group, it automatically performs calculations for all cells in the column above the selected cell so that you don't need to enter arguments. Recently used - to quickly access 10 recently used functions. Financial, Logical, Text and data, Date and time, Lookup and references, Math and trigonometry - to quickly access functions that belongs to the corresponding categories. More functions - to access the functions from the following groups: Database, Engineering, Information and Statistical. Named ranges - to open the Name Manager, or define a new name, or paste a name as a function argument. For more details, you can refer to this page. Calculation - to force the program to recalculate functions. To insert a function, Select a cell where you wish to insert a function. Proceed in one of the following ways: switch to the Formula tab and use the buttons available on the top toolbar to access a function from a specific group, then click the necessary function to open the Function Arguments wizard. You can also use the Additional option from the menu or click the Function button on the top toolbar to open the Insert Function window. switch to the Home tab, click the Insert function icon, select one of the commonly used functions (SUM, AVERAGE, MIN, MAX, COUNT) or click the Additional option to open the Insert Function window. right-click within the selected cell and select the Insert Function option from the contextual menu. click the icon before the formula bar. In the opened Insert Function window, enter its name in the search box or select the necessary function group, then choose the required function from the list and click OK. Once you click the necessary function, the Function Arguments window will open: In the opened Function Arguments window, enter the necessary values of each argument. You can enter the function arguments either manually or by clicking the icon and selecting a cell or cell range to be included as an argument. Note: generally, numeric values, logical values (TRUE, FALSE), text values (must be quoted), cell references, cell range references, names assigned to ranges and other functions can be used as function arguments. The function result will be displayed below. When all the agruments are specified, click the OK button in the Function Arguments window. To enter a function manually using the keyboard, Select a cell. Enter the equal sign (=). Each formula must begin with the equal sign (=). Enter the function name. 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. If you hover the mouse pointer over a formula, a tooltip with the formula description will be displayed. You can select the necessary formula from the list and insert it by clicking it or pressing the Tab key. Enter the function arguments either manually or by dragging to select a cell range to be included as an argument. If the function requires several arguments, they must be separated by commas. Arguments must be enclosed into parentheses. The opening parenthesis '(' is added automatically if you select a function from the list. When you enter arguments, a tooltip that contains the formula syntax is also displayed. When all the agruments are specified, enter the closing parenthesis ')' and press Enter. If you enter new data or change the values used as arguments, recalculation of functions is performed automatically by default. You can force the program to recalculate functions by using the Calculation button on the Formula tab. Click the Calculation button to recalculate the entire workbook, or click the arrow below the button and choose the necessary option from the menu: Calculate workbook or Calculate current sheet. You can also use the following key combinations: F9 to recalculate the workbook, Shift +F9 to recalculate the current worksheet. Here is the list of the available functions grouped by categories: Function Category Description Functions Text and Data Functions Used to correctly display the text data in the spreadsheet. ASC; CHAR; CLEAN; CODE; CONCATENATE; CONCAT; DOLLAR; EXACT; FIND; FINDB; FIXED; LEFT; LEFTB; LEN; LENB; LOWER; MID; MIDB; NUMBERVALUE; PROPER; REPLACE; REPLACEB; REPT; RIGHT; RIGHTB; SEARCH; SEARCHB; SUBSTITUTE; T; TEXT; TEXTJOIN; TRIM; UNICHAR; UNICODE; UPPER; VALUE Statistical Functions Used to analyze data: finding the average value, the largest or smallest values in a cell range. AVEDEV; AVERAGE; AVERAGEA; AVERAGEIF; AVERAGEIFS; BETADIST; BETA.DIST; BETA.INV; BETAINV; BINOMDIST; BINOM.DIST; BINOM.DIST.RANGE; BINOM.INV; CHIDIST; CHIINV; CHISQ.DIST; CHISQ.DIST.RT; CHISQ.INV; CHISQ.INV.RT; CHITEST; CHISQ.TEST; CONFIDENCE; CONFIDENCE.NORM; CONFIDENCE.T; CORREL; COUNT; COUNTA; COUNBLANK; COUNTIF; COUNTIFS; COVAR; COVARIANCE.P; COVARIANCE.S; CRITBINOM; DEVSQ; EXPON.DIST; EXPONDIST; F.DIST; FDIST; F.DIST.RT; F.INV; FINV; F.INV.RT; FISHER; FISHERINV; FORECAST; FORECAST.ETS; FORECAST.ETS.CONFINT; FORECAST.ETS.SEASONALITY; FORECAST.ETS.STAT; FORECAST.LINEAR; FREQUENCY; FTEST; F.TEST; GAMMA; GAMMA.DIST; GAMMADIST; GAMMA.INV; GAMMAINV; GAMMALN; GAMMALN.PRECISE; GAUSS; GEOMEAN; HARMEAN; HYPGEOMDIST; HYPGEOM.DIST; INTERCEPT; KURT; LARGE; LINEST; LOGINV; LOGNORM.DIST; LOGNORM.INV; LOGNORMDIST; MAX; MAXA; MAXIFS; MEDIAN; MIN; MINA; MINIFS; MODE; MODE.MULT; MODE.SNGL; NEGBINOMDIST; NEGBINOM.DIST; NORMDIST; NORM.DIST; NORMINV; NORM.INV; NORMSDIST; NORM.S.DIST; NORMSINV; NORM.S.INV; PEARSON; PERCENTILE; PERCENTILE.EXC; PERCENTILE.INC; PERCENTRANK; PERCENTRANK.EXC; PERCENTRANK.INC; PERMUT; PERMUTATIONA; PHI; POISSON; POISSON.DIST; PROB; QUARTILE; QUARTILE.EXC; QUARTILE.INC; RANK; RANK.AVG; RANK.EQ; RSQ; SKEW; SKEW.P; SLOPE; SMALL; STANDARDIZE; STDEV; STDEV.S; STDEVA; STDEVP; STDEV.P; STDEVPA; STEYX; TDIST; T.DIST; T.DIST.2T; T.DIST.RT; T.INV; T.INV.2T; TINV; TRIMMEAN; TTEST; T.TEST; VAR; VARA; VARP; VAR.P; VAR.S; VARPA; WEIBULL; WEIBULL.DIST; ZTEST; Z.TEST Math and Trigonometry Functions Used to perform basic math and trigonometry operations such as adding, multiplying, dividing, rounding, etc. ABS; ACOS; ACOSH; ACOT; ACOTH; AGGREGATE; ARABIC; ASIN; ASINH; ATAN; ATAN2; ATANH; BASE; CEILING; CEILING.MATH; CEILING.PRECISE; COMBIN; COMBINA; COS; COSH; COT; COTH; CSC; CSCH; DECIMAL; DEGREES; ECMA.CEILING; EVEN; EXP; FACT; FACTDOUBLE; FLOOR; FLOOR.PRECISE; FLOOR.MATH; GCD; INT; ISO.CEILING; LCM; LN; LOG; LOG10; MDETERM; MINVERSE; MMULT; MOD; MROUND; MULTINOMIAL; ODD; PI; POWER; PRODUCT; QUOTIENT; RADIANS; RAND; RANDBETWEEN; ROMAN; ROUND; ROUNDDOWN; ROUNDUP; SEC; SECH; SERIESSUM; SIGN; SIN; SINH; SQRT; SQRTPI; SUBTOTAL; SUM; SUMIF; SUMIFS; SUMPRODUCT; SUMSQ; SUMX2MY2; SUMX2PY2; SUMXMY2; TAN; TANH; TRUNC Date and Time Functions Used to correctly display the date and time in the spreadsheet. DATE; DATEDIF; DATEVALUE; DAY; DAYS; DAYS360; EDATE; EOMONTH; HOUR; ISOWEEKNUM; MINUTE; MONTH; NETWORKDAYS; NETWORKDAYS.INTL; NOW; SECOND; TIME; TIMEVALUE; TODAY; WEEKDAY; WEEKNUM; WORKDAY; WORKDAY.INTL; YEAR; YEARFRAC Engineering Functions Used to perform some engineering calculations: converting between different bases number systems, finding complex numbers etc. BESSELI; BESSELJ; BESSELK; BESSELY; BIN2DEC; BIN2HEX; BIN2OCT; BITAND; BITLSHIFT; BITOR; BITRSHIFT; BITXOR; COMPLEX; CONVERT; DEC2BIN; DEC2HEX; DEC2OCT; DELTA; ERF; ERF.PRECISE; ERFC; ERFC.PRECISE; GESTEP; HEX2BIN; HEX2DEC; HEX2OCT; IMABS; IMAGINARY; IMARGUMENT; IMCONJUGATE; IMCOS; IMCOSH; IMCOT; IMCSC; IMCSCH; IMDIV; IMEXP; IMLN; IMLOG10; IMLOG2; IMPOWER; IMPRODUCT; IMREAL; IMSEC; IMSECH; IMSIN; IMSINH; IMSQRT; IMSUB; IMSUM; IMTAN; OCT2BIN; OCT2DEC; OCT2HEX Database Functions Used to perform calculations for the values in a certain field of the database that meet the specified criteria. DAVERAGE; DCOUNT; DCOUNTA; DGET; DMAX; DMIN; DPRODUCT; DSTDEV; DSTDEVP; DSUM; DVAR; DVARP Financial Functions Used to perform some financial calculations: calculating the net present value, payments etc. ACCRINT; ACCRINTM; AMORDEGRC; AMORLINC; COUPDAYBS; COUPDAYS; COUPDAYSNC; COUPNCD; COUPNUM; COUPPCD; CUMIPMT; CUMPRINC; DB; DDB; DISC; DOLLARDE; DOLLARFR; DURATION; EFFECT; FV; FVSCHEDULE; INTRATE; IPMT; IRR; ISPMT; MDURATION; MIRR; NOMINAL; NPER; NPV; ODDFPRICE; ODDFYIELD; ODDLPRICE; ODDLYIELD; PDURATION; PMT; PPMT; PRICE; PRICEDISC; PRICEMAT; PV; RATE; RECEIVED; RRI; SLN; SYD; TBILLEQ; TBILLPRICE; TBILLYIELD; VDB; XIRR; XNPV; YIELD; YIELDDISC; YIELDMAT Lookup and Reference Functions Used to easily find information from the data list. ADDRESS; CHOOSE; COLUMN; COLUMNS; FORMULATEXT; HLOOKUP; HYPERLINLK; INDEX; INDIRECT; LOOKUP; MATCH; OFFSET; ROW; ROWS; TRANSPOSE; VLOOKUP Information Functions Used to provide information about the data in the selected cell or cell range. CELL; ERROR.TYPE; ISBLANK; ISERR; ISERROR; ISEVEN; ISFORMULA; ISLOGICAL; ISNA; ISNONTEXT; ISNUMBER; ISODD; ISREF; ISTEXT; N; NA; SHEET; SHEETS; TYPE Logical Functions Used to check if a condition is true or false. AND; FALSE; IF; IFERROR; IFNA; IFS; NOT; OR; SWITCH; TRUE; XOR" }, { "id": "UsageInstructions/InsertHeadersFooters.htm", "title": "Insert headers and footers", - "body": "Headers and footers allow to add some additional info on a printed worksheet, such as date and time, page number, sheet name etc. Headers and footers are displayed in the printed version of a spreadsheet. To insert a header or footer in a worksheet: switch to the Insert or Layout tab, click the Edit Header/Footer button at the top toolbar, the Header/Footer Settings window will open, where you can adjust the following settings: check the Different first page box to apply a different header or footer to the very first page or in case you don't want to add any header/ footer to it at all. The First page tab will appear below. check the Different odd and even page box to add different headers/footer for odd and even pages. The Odd page and Even page tabs will appear below. the Scale with document option allows to scale the header and footer together with the worksheet. This parameter is enabled by default. the Align with page margins option allows to align the left header/footer to the left margin and the right header/footer to the right margin. This option is enable by default. insert the necessary data. Depending on the selected options, you can adjust settings for All pages or set up the header/footer for the first page as well as for odd and even pages individually. Switch to the necessary tab and adjust the available parameters. You can use one of the ready-made presets or insert the necessary data to the left, center and right header/footer field manually: choose one of the available presets from the Presets list: Page 1; Page 1 of ?; Sheet1; Confidential, dd/mm/yyyy, Page 1; Spreadsheet name.xlsx; Sheet1, Page 1; Sheet1, Confidential, Page 1; Spreadsheet name.xlsx, Page 1; Page 1, Sheet1; Page 1, Spreadsheet name.xlsx; Author, Page 1, dd/mm/yyyy; Prepared by Author dd/mm/yyyy, Page 1. The corresponding variables will be added. place the cursor into the left, center or right field of the header/footer and use the Insert list to add Page number, Page count, Date, Time, File name, Sheet name. format the text inserted into header/footer using the corresponding controls. You can change the default font, its size, color, apply some font styles, such as bold, italic, underlined, strikethrough, use subscript or superscript characters. when ready, click the OK button to apply the changes. To edit the added headers and footers, click the Edit Header/Footer button at the top toolbar, make the necessary changes in the Header/Footer Settings window, and click OK to save the changes. The added header and/or footer will be displayed in the printed version of the spreadsheet." + "body": "Headers and footers allow adding some additional information to a printed worksheet, such as date and time, page number, sheet name etc. Headers and footers are displayed in the printed version of a spreadsheet. To insert a header or footer in a worksheet: switch to the Insert or Layout tab, click the Edit Header/Footer button on the top toolbar, the Header/Footer Settings window will open, and you will be able to adjust the following settings: check the Different first page box to apply a different header or footer to the very first page or in case you don't want to add any header/ footer to it at all. The First page tab will appear below. check the Different odd and even page box to add different headers/footer for odd and even pages. The Odd page and Even page tabs will appear below. the Scale with document option allows scaling the header and footer together with the worksheet. This parameter is enabled by default. the Align with page margins option allows aligning the left header/footer to the left margin and the right header/footer to the right margin. This option is enabled by default. insert the necessary data. Depending on the selected options, you can adjust settings for All pages or set up the header/footer for the first page as well as for odd and even pages individually. Switch to the necessary tab and adjust the available parameters. You can use one of the ready-made presets or insert the necessary data to the left, center and right header/footer field manually: choose one of the available presets from the Presets list: Page 1; Page 1 of ?; Sheet1; Confidential, dd/mm/yyyy, Page 1; Spreadsheet name.xlsx; Sheet1, Page 1; Sheet1, Confidential, Page 1; Spreadsheet name.xlsx, Page 1; Page 1, Sheet1; Page 1, Spreadsheet name.xlsx; Author, Page 1, dd/mm/yyyy; Prepared by Author dd/mm/yyyy, Page 1. The corresponding variables will be added. place the cursor into the left, center or right field of the header/footer and use the Insert list to add Page number, Page count, Date, Time, File name, Sheet name. format the text inserted into the header/footer using the corresponding controls. You can change the default font, its size, color, apply font styles, such as bold, italic, underlined, strikethrough, use subscript or superscript characters. when you finish, click the OK button to apply the changes. To edit the added headers and footers, click the Edit Header/Footer button on the top toolbar, make the necessary changes in the Header/Footer Settings window, and click OK to save the changes. The added header and/or footer will be displayed in the printed version of the spreadsheet." }, { "id": "UsageInstructions/InsertImages.htm", "title": "Insert images", - "body": "Spreadsheet Editor allows you to insert images in the most popular formats into your worksheet. The following image formats are supported: BMP, GIF, JPEG, JPG, PNG. Insert an image To insert an image into the spreadsheet, place the cursor where you want the image to be put, switch to the Insert tab of the top toolbar, click the Image icon at the top toolbar, select one of the following options to load the image: the Image from File option will open the standard dialog window for file selection. Browse your computer hard disk drive for the necessary file and click the Open button the Image from URL option will open the window where you can enter the necessary image web address and click the OK button the Image from Storage option will open the Select data source window. Select an image stored on your portal and click the OK button After that the image will be added to the worksheet. Adjust the image settings Once the image is added you can change its size and position. To specify exact image dimensions: select the image you wish to resize with the mouse, click the Image settings icon at the right sidebar, in the Size section, set the necessary Width and Height values. If the Constant proportions button is clicked (in this case it looks like this ), the width and height will be changed together preserving the original image aspect ratio. To restore the actual size of the added image, click the Actual Size button. To crop the image: Click the Crop button to activate cropping handles which appear on the image corners and in the center of each its side. Manually drag the handles to set the cropping area. You can move the mouse cursor over the cropping area border so that it turns into the icon and drag the area. To crop a single side, drag the handle located in the center of this side. To simultaneously crop two adjacent sides, drag one of the corner handles. To equally crop two opposite sides of the image, hold down the Ctrl key when dragging the handle in the center of one of these sides. To equally crop all sides of the image, hold down the Ctrl key when dragging any of the corner handles. When the cropping area is specified, click the Crop button once again, or press the Esc key, or click anywhere outside of the cropping area to apply the changes. After the cropping area is selected, it's also possible to use the Fill and Fit options available from the Crop drop-down menu. Click the Crop button once again and select the option you need: If you select the Fill option, the central part of the original image will be preserved and used to fill the selected cropping area, while other parts of the image will be removed. If you select the Fit option, the image will be resized so that it fits the cropping area height or width. No parts of the original image will be removed, but empty spaces may appear within the selected cropping area. To rotate the image: select the image you wish to rotate with the mouse, click the Image settings icon at the right sidebar, in the Rotation section click one of the buttons: to rotate the image by 90 degrees counterclockwise to rotate the image by 90 degrees clockwise to flip the image horizontally (left to right) to flip the image vertically (upside down) Note: alternatively, you can right-click the image and use the Rotate option from the contextual menu. To replace the inserted image, select the image you wish to replace with the mouse, click the Image settings icon at the right sidebar, in the Replace Image section click the button you need: From File or From URL and select the desired image. Note: alternatively, you can right-click the image and use the Replace image option from the contextual menu. The selected image will be replaced. When the image is selected, the Shape settings icon is also available on the right. You can click this icon to open the Shape settings tab at the right sidebar and adjust the shape Stroke type, size and color as well as change the shape type selecting another shape from the Change Autoshape menu. The shape of the image will change correspondingly. At the Shape Settings tab, you can also use the Show shadow option to add a shadow to the image. Adjust the image advanced settings To change its advanced settings, click the image with the right mouse button and select the Image Advanced Settings option from the right-click menu or just click the Show advanced settings link at the right sidebar. The image properties window will open: The Rotation tab contains the following parameters: Angle - use this option to rotate the image by an exactly specified angle. Enter the necessary value measured in degrees into the field or adjust it using the arrows on the right. Flipped - check the Horizontally box to flip the image horizontally (left to right) or check the Vertically box to flip the image vertically (upside down). The Cell Snapping tab contains the following parameters: Move and size with cells - this option allows to snap the image to the cell behind it. If the cell moves (e.g. if you insert or delete some rows/columns), the image will be moved together with the cell. If you increase or decrease the width or height of the cell, the image will change its size as well. Move but don't size with cells - this option allows to snap the image to the cell behind it preventing the image from being resized. If the cell moves, the image will be moved together with the cell, but if you change the cell size, the image dimensions remain unchanged. Don't move or size with cells - this option allows to prevent the image from being moved or resized if the cell position or size was changed. 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 image. To delete the inserted image, click it and press the Delete key." + "body": "The Spreadsheet Editor allows you to insert images in the most popular formats into your worksheet. The following image formats are supported: BMP, GIF, JPEG, JPG, PNG. Insert an image To insert an image into the spreadsheet, place the cursor where the image should be added, switch to the Insert tab of the top toolbar, click the Image icon on the top toolbar, select one of the following options to load the image: the Image from File option will open the standard dialog window to select a file. Browse the hard disk drive of your computer to find the required file and click the Open button the Image from URL option will open the window where you can enter the web address of the required image and click the OK button the Image from Storage option will open the Select data source window. Select an image stored on your portal and click the OK button After that the image will be added to the worksheet. Adjust the image settings Once the image is added, you can change its size and position. To specify the exact dimensions of the image: select the required image with the mouse, click the Image settings icon on the right sidebar, in the Size section, set the necessary Width and Height values. If the Constant proportions button is clicked (in this case it looks like this ), the width and height will be changed together preserving the original image aspect ratio. To restore the actual size of the added image, click the Actual Size button. To crop the image: Click the Crop button to activate cropping handles which appear on the image corners and in the center of each side. Manually drag the handles to set the cropping area. You can move the mouse cursor over the cropping area border so that it turns into the Arrow icon and drag the area. To crop a single side, drag the handle located in the center of this side. To simultaneously crop two adjacent sides, drag one of the corner handles. To equally crop two opposite sides of the image, hold down the Ctrl key when dragging the handle in the center of one of these sides. To equally crop all sides of the image, hold down the Ctrl key when dragging any of the corner handles. When the cropping area is specified, click the Crop button once again, or press the Esc key, or click anywhere outside of the cropping area to apply the changes. After the cropping area is selected, it's also possible to use the Fill and Fit options available from the Crop drop-down menu. Click the Crop button once again and select the option you need: If you select the Fill option, the central part of the original image will be preserved and used to fill the selected cropping area, while other parts of the image will be removed. If you select the Fit option, the image will be resized so that it fits the height or width of the cropping area. No parts of the original image will be removed, but empty spaces may appear within the selected cropping area. To rotate the image: select the required image with the mouse, click the Image settings icon on the right sidebar, in the Rotation section, click one of the buttons: to rotate the image by 90 degrees counterclockwise to rotate the image by 90 degrees clockwise to flip the image horizontally (left to right) to flip the image vertically (upside down) Note: alternatively, you can right-click the image and use the Rotate option from the contextual menu. To replace the inserted image, select the required image with the mouse, click the Image settings icon on the right sidebar, click the Replace Image button, choose the necessary option: From File, From Storage, or From URL and select the desired image. Note: alternatively, you can right-click the image and use the Replace image option from the contextual menu. The selected image will be replaced. When the image is selected, the Shape settings icon is also available on the right. You can click this icon to open the Shape settings tab on the right sidebar and adjust the shape Stroke type, its size and color as well as change the shape type by selecting another shape from the Change Autoshape menu. The shape of the image will change correspondingly. On the Shape Settings tab, you can also use the Show shadow option to add a shadow to the image. Adjust the image advanced settings To change its advanced settings, click the image with the right mouse button and select the Image Advanced Settings option from the right-click menu or just click the Show advanced settings link on the right sidebar. The image properties window will open: The Rotation tab contains the following parameters: Angle - use this option to rotate the image by an exactly specified angle. Enter the necessary value measured in degrees into the field or adjust it using the arrows on the right. Flipped - check the Horizontally box to flip the image horizontally (left to right) or check the Vertically box to flip the image vertically (upside down). The Cell Snapping tab contains the following parameters: Move and size with cells - this option allows you to snap the image to the cell behind it. If the cell moves (e.g. if you insert or delete some rows/columns), the image will be moved together with the cell. If you increase or decrease the width or height of the cell, the image will change its size as well. Move but don't size with cells - this option allows you to snap the image to the cell behind it preventing the image from being resized. If the cell moves, the image will be moved together with the cell, but if you change the cell size, the image dimensions remain unchanged. Don't move or size with cells - this option allows you to prevent the image from being moved or resized if the cell position or size was changed. The Alternative Text tab allows you to specify the Title and the Description which will be read to people with vision or cognitive impairments to help them better understand what information the image contains. To delete the inserted image, click it and press the Delete key." }, { "id": "UsageInstructions/InsertSymbols.htm", "title": "Insert symbols and characters", - "body": "During working process you may need to insert a symbol which is not on your keyboard. To insert such symbols into your document, use the Insert symbol option and follow these simple steps: place the cursor at the location where a special symbol has to be inserted, switch to the Insert tab of the top toolbar, click the Symbol, The Symbol dialog box appears from which you can select the appropriate symbol, use the Range section to quickly find the nesessary symbol. All symbols are divided into specific groups, for example, select 'Currency Symbols' if you want to insert a currency character. If this character is not in the set, select a different font. Many of them also have characters other than the standard set. Or, enter the Unicode hex value of the symbol you want into the Unicode hex value field. This code can be found in the Character map. Previously used symbols are also displayed in the Recently used symbols field, click Insert. The selected character will be added to the document. Insert ASCII symbols ASCII table is also used to add characters. To do this, hold down ALT key and use the numeric keypad to enter the character code. Note: be sure to use the numeric keypad, not the numbers on the main keyboard. To enable the numeric keypad, press the Num Lock key. For example, to add a paragraph character (§), press and hold down ALT while typing 789, and then release ALT key. Insert symbols using Unicode table Additional charachters and symbols might also be found via Windows symbol table. To open this table, do one of the following: in the Search field write 'Character table' and open it, simultaneously presss Win + R, and then in the following window type charmap.exe and click OK. In the opened Character Map, select one of the Character sets, Groups and Fonts. Next, click on the nesessary characters, copy them to clipboard and paste in the right place of the document." + "body": "When working, you may need to insert a symbol which is not on your keyboard. To insert such symbols into your document, use the Insert symbol option and follow these simple steps: place the cursor at the location where a special symbol should be inserted, switch to the Insert tab of the top toolbar, click the Symbol, The Symbol dialog box will appear and you will be able to select the appropriate symbol, use the Range section to quickly find the nesessary symbol. All symbols are divided into specific groups, for example, select 'Currency Symbols' if you want to insert a currency character. If this character is not in the set, select a different font. Many of them also have characters which differ from the standard set. Or enter the Unicode hex value of the required symbol in the Unicode hex value field. This code can be found in the Character map. You can also use the Special characters tab to choose a special character from the list. The previously used symbols are also displayed in the Recently used symbols field, click Insert. The selected character will be added to the document. Insert ASCII symbols The ASCII table is also used to add characters. To do this, hold down ALT key and use the numeric keypad to enter the character code. Note: be sure to use the numeric keypad, not the numbers on the main keyboard. To enable the numeric keypad, press the Num Lock key. For example, to add a paragraph character (§), press and hold down ALT while typing 789, and then release ALT key. Insert symbols using Unicode table Additional charachters and symbols can also be found in the Windows symbol table. To open this table, do one of the following: either write 'Character table' in the Search field and open it, or simultaneously presss Win + R and then type charmap.exe in the window below and click OK. In the opened Character Map, select one of the Character sets, Groups and Fonts. Next, click on the nesessary characters, copy them to clipboard and paste in the right place of the document." }, { "id": "UsageInstructions/InsertTextObjects.htm", "title": "Insert text objects", - "body": "To draw attention to a specific part of the spreadsheet, 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). Add a text object You can add a text object anywhere on the worksheet. To do that: switch to the Insert tab of the top toolbar, select the necessary text object type: to add a text box, click the Text Box 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 at the top toolbar and selecting the shape from the Basic Shapes group. to add a Text Art object, click the 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. click outside of the text object to apply the changes and return to the worksheet. The text within the text object is a part of the latter (when you move or rotate the text object, the text moves or rotates with it). As an inserted text object represents a rectangular frame with text in it (Text Art objects have invisible text box borders by default) and this frame is a common autoshape, you can change both the shape and text properties. To delete the added text object, click on the text box border and press the Delete key on the keyboard. The text within the text box will also be deleted. Format a text box Select the text box clicking on its border to be able to change its properties. When the text box is selected, its borders are displayed as solid (not dashed) lines. to manually 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 icon on the right sidebar and use the corresponding options. to arrange text boxes as related to other objects, align several text boxes as related to each other, rotate or flip a text box, 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. 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. 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. 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 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 or in the Paragraph - Advanced Settings window. 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 Text Down (sets a vertical direction, from top to bottom) or Rotate Text Up (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. The List Settings option allows to open the List Settings window. The bulleted list settings window looks like this: The numbered list settings window looks like this: Size - allows to select the necessary bullet/number size depending on the current size of the text. It can take a value from 25% to 400%. Color - allows to select the necessary bullet/number color. You can select one of the theme colors, or standard colors on the palette, or specify a custom color. Bullet - allows to select the necessary character used for the bulleted list. When you click on the Change bullet field, the Symbol window opens that allows to choose one of the available characters. To learn more on how to work with symbols, you can refer to this article. Start at - allows to set the necessary numeric value you want to start numbering from. 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 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. 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. Before - set the amount of space before the paragraph. After - set the amount of space after the paragraph. Note: these parameters can also be found in the Paragraph - Advanced Settings window. Adjust paragraph advanced settings 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. It's also possible to right-click the text in a text box and use the Text advanced settings item from the contextual menu. The paragraph properties window will be opened: The Indents & Spacing tab allows to: change the alignment type for the paragraph text, change the paragraph indents as related to internal margins of the text box, Left - set the paragraph offset from the left internal margin of the text box specifying the necessary numeric value, Right - set the paragraph offset from the right internal margin of the text box specifying the necessary numeric value, Special - set an indent for the first line of the paragraph: select the corresponding menu item ((none), First line, Hanging) and change the default numeric value specified for First Line or Hanging, change the paragraph line spacing. The Font tab contains the following parameters: Strikethrough is used to make the text struck out with the line going through the letters. Double strikethrough is used to make the text struck out with the double line going through the letters. Superscript is used to make the text smaller and place it to the upper part of the text line, e.g. as in fractions. Subscript is used to make the text smaller and place it to the lower part of the text line, e.g. as in chemical formulas. Small caps is used to make all letters lower case. All caps is used to make all letters upper case. Character Spacing is used to set the space between the characters. Increase the default value to apply the Expanded spacing, or decrease the default value to apply the Condensed spacing. Use the arrow buttons or enter the necessary value in the box. All the changes will be displayed in the preview field below. The Tab tab allows to change tab stops i.e. the position the cursor advances to when you press the Tab key on the keyboard. Default Tab is set at 2.54 cm. You can decrease or increase this value using the arrow buttons or enter the necessary one in the box. Tab Position - is used to set custom tab stops. Enter the necessary value in this box, adjust it more precisely using the arrow buttons and click the Specify button. Your custom tab position will be added to the list in the field below. Alignment - is used to set the necessary alignment type for each of the tab positions in the list above. Select the necessary tab position in the list, choose the Left, Center or Right option in the Alignment drop-down list and click the Specify button. Left - lines up your text by the left side at the tab stop position; the text moves to the right from the tab stop as you type. Center - centres the text at the tab stop position. Right - lines up your text by the right side at the tab stop position; the text moves to the left from the tab stop as you type. To delete tab stops from the list select a tab stop and click the Remove or Remove All button. Edit a Text Art style Select a text object and click the Text Art settings icon on the right sidebar. 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. Apply a text effect by selecting the necessary text transformation type from the Transform gallery. You can adjust the degree of the text distortion by dragging the pink diamond-shaped handle." + "body": "To draw attention to a specific part of the spreadsheet, you can insert a text box (a rectangular frame that allows you to enter text within it) or a Text Art object (a text box with a predefined font style and color that allows you to apply some text effects). Add a text object You can add a text object anywhere in the worksheet. To do that: switch to the Insert tab of the top toolbar, select the necessary text object type: to add a text box, click the Text Box icon on the top toolbar, then click where the text box should be inserted, 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, and you will bу able to enter your text. Note: it's also possible to insert a text box by clicking the Shape icon on the top toolbar and selecting the Insert Text autoshape from the Basic Shapes group. to add a Text Art object, click the Text Art icon on 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. click outside of the text object to apply the changes and return to the worksheet. The text within the text object is a part of the latter (when you move or rotate the text object, the text moves or rotates with it). As an inserted text object represents a rectangular frame with text in it (Text Art objects have invisible text box borders by default) and this frame is a common autoshape, you can change both the shape and text properties. To delete the added text object, click on the text box border and press the Delete key on the keyboard. The text within the text box will also be deleted. Format a text box Select the text box by clicking on its border to change its properties. When the text box is selected, its borders are displayed as solid (not dashed) lines. to manually 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 icon on the right sidebar and use the corresponding options. to arrange text boxes as related to other objects, align several text boxes as related to each other, rotate or flip a text box, right-click on the text box border and use the contextual menu options. To learn more on how to arrange and align objects, please refer to this page. 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. Format the text within the text box Click the text within the text box to change its properties. When the text is selected, the text box borders are displayed as dashed lines. 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 the font formatting settings (change the font type, its size, color and apply decoration styles) using the corresponding icons situated on the Home tab of the top toolbar. Some additional font settings can be also changed on 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 by using the corresponding icons situated on the Home tab of the top toolbar or in the Paragraph - Advanced Settings window. Align the text vertically within the text box by using the corresponding icons situated on 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 Text Down (sets a vertical direction, from top to bottom) or Rotate Text Up (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. The List Settings option allows you to open the List Settings window where you can adjust the settings for a corresponding list type: Type (bulleted) - allows you to select the necessary character for the bulleted list. When you click on the New bullet field, the Symbol window will open, and you will be able to choose one of the available characters. To learn more on how to work with symbols, please refer to this article. Type (numbered) - allows you to select the necessary format for the numbered list. Size - allows you to select the necessary bullet/number size depending on the current size of the text. The value can vary from 25% up to 400%. Color - allows you to select the necessary bullet/number color. You can select one of the theme colors, or standard colors on the palette, or specify a custom color. Start at - allows you to set the necessary numeric value you want to start numbering with. Insert a hyperlink. Set line and paragraph spacing for the multi-line text within the text box by using the Text settings tab of the right sidebar that will open if you click the Text settings icon. Set the line height for the text lines within the paragraph as well as the margins between the current and the previous or the following paragraph. 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. Before - set the amount of space before the paragraph. After - set the amount of space after the paragraph. Note: these parameters can also be found in the Paragraph - Advanced Settings window. Adjust paragraph advanced settings 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 required paragraph - the Text settings tab will be activated on the right sidebar. Click the Show advanced settings link. It's also possible to right-click the text in a text box and use the Text advanced settings item from the contextual menu. The paragraph properties window will be opened: The Indents & Spacing tab allows you to: change the alignment type for the paragraph text, change the paragraph indents as related to internal margins of the text box, Left - set the paragraph offset from the left internal margin of the text box specifying the necessary numeric value, Right - set the paragraph offset from the right internal margin of the text box specifying the necessary numeric value, Special - set an indent for the first line of the paragraph: select the corresponding menu item ((none), First line, Hanging) and change the default numeric value specified for First Line or Hanging, change the paragraph line spacing. The Font tab contains the following parameters: Strikethrough is used to make the text struck out with a line going through the letters. Double strikethrough is used to make the text struck out with a double line going through the letters. Superscript is used to make the text smaller and place it to the upper part of the text line, e.g. as in fractions. Subscript is used to make the text smaller and place it to the lower part of the text line, e.g. as in chemical formulas. Small caps is used to make all letters lower case. All caps is used to make all letters upper case. Character Spacing is used to set the space between the characters. Increase the default value to apply the Expanded spacing, or decrease the default value to apply the Condensed spacing. Use the arrow buttons or enter the necessary value in the box. All the changes will be displayed in the preview field below. The Tab tab allows you to change tab stops i.e. the position the cursor advances to when you press the Tab key on the keyboard. Default Tab is set at 2.54 cm. You can decrease or increase this value using the arrow buttons or enter the necessary value in the box. Tab Position - is used to set custom tab stops. Enter the necessary value in this box, adjust it more precisely using the arrow buttons and click the Specify button. Your custom tab position will be added to the list in the field below. Alignment - is used to set the necessary alignment type for each of the tab positions in the list above. Select the necessary tab position in the list, choose the Left, Center or Right option in the Alignment drop-down list and click the Specify button. Left - lines up your text to the left side at the tab stop position; the text moves to the right from the tab stop while you type. Center - centres the text at the tab stop position. Right - lines up your text to the right side at the tab stop position; the text moves to the left from the tab stop while you type. To delete tab stops from the list select a tab stop and click the Remove or Remove All button. Edit a Text Art style Select a text object and click the Text Art settings icon on the right sidebar. Change the applied text style by 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. Apply a text effect by selecting the necessary text transformation type from the Transform gallery. You can adjust the degree of the text distortion by dragging the pink diamond-shaped handle." }, { "id": "UsageInstructions/ManageSheets.htm", "title": "Manage sheets", - "body": "By default a newly created spreadsheet has a single sheet. The most simple way to add a new one is to click the button located to the right of the Sheet Navigation buttons in the left lower corner. Another way to add a new sheet is to: right-click the sheet tab after which you wish to insert a new one, select the Insert option from the right-click menu. A new sheet will be inserted after the selected one. To activate the necessary sheet use the sheet tabs in the left lower corner of each spreadsheet. Note: if you have a lot of sheets to find the necessary one make use of the Sheet Navigation buttons situated in the left lower corner. To delete an unnecessary sheet: right-click the sheet tab you wish to delete, select the Delete option from the right-click menu. The selected sheet will be deleted from the current spreadsheet. To rename an existing sheet: right-click the sheet tab you wish to rename, select the Rename option from the right-click menu, enter the Sheet Name in the dialog box and click OK. The selected sheet name will be changed. To copy an existing sheet: right-click the sheet tab you wish to copy, select the Copy option from the right-click menu, select the sheet before which you wish to insert the copied one or use the Copy to end option to insert the copied sheet after all the existing ones, click the OK button to confirm your choice. The selected sheet will be copied and inserted in the selected place. To move an existing sheet: right-click the sheet tab you wish to move, select the Move option from the right-click menu, select the sheet before which you wish to insert the selected one or use the Move to end option to move the selected sheet after all the existing ones, click the OK button to confirm your choice. Or simply drag the necessary sheet tab and drop it to a new location. The selected sheet will be moved. If you have a lot of sheets, you can hide some of them you don't need for the moment to facilitate the work. To do that, right-click the sheet tab you wish to hide, select the Hide option from the right-click menu, To display the hidden sheet tab, right-click any sheet tab, open the Hidden list and select the sheet tab you wish to display. To differentiate the sheets you can assign different colors to the sheet tabs. To do that, right-click the sheet tab you wish to color, select the Tab Color option from the right-click menu, select any color in the available palettes Theme Colors - the colors that correspond to the selected color scheme of the spreadsheet. Standard Colors - the default colors set. Custom Color - click this caption if there is no needed color in the available palettes. Select the necessary colors range moving the vertical color slider and set the specific color dragging the color picker within the large square color field. Once you select a color with the color picker, the appropriate RGB and sRGB color values will be displayed in the fields on the right. You can also specify a color on the base of the RGB color model entering the necessary numeric values into the R, G, B (red, green, blue) fields or enter the sRGB hexadecimal code into the field marked with the # sign. The selected color appears in the New preview box. If the object was previously filled with any custom color, this color is displayed in the Current box so you can compare the original and modified colors. When the color is specified, click the Add button: The custom color will be applied to the selected tab and added to the Custom color palette. You can work with multiple sheets simultaneously: select the first sheet you want to include into the group, press and hold the Shift key to select several adjacent sheets you want to group, or use the Ctrl key to select several non-adjacent sheets you want to group, right-click one of the selected sheets tab to open the contextual menu, choose the necessary option from the menu: Insert - to insert the same number of new blank sheets as the selected group contains, Delete - to delete all the selected sheets at once (you cannot delete all sheets in the workbook, as the workbook must contain at least one visible sheet), Rename - this option can be applied to each separate sheet only, Copy - to create a copies of all the selected sheets at once and paste them to the selected place, Move - to move all the selected sheets at once and paste them to the selected place, Hide - to hide all the selected sheets at once (you cannot hide all sheets in the workbook, as the workbook must contain at least one visible sheet), Tab color - to assign the same color to all the selected sheet tabs at once, Select All Sheets - to select all the sheets in the current workbook, Ungroup Sheets - to ungroup the selected sheets. it's also possible to ungroup sheets by double-clicking on a sheet which is included into the group, or by clicking any sheet which is not included into the group." + "body": "By default, a newly created spreadsheet has a single sheet. The simplest way to add a new one is to click the Plus button located to the right of the Sheet Navigation buttons in the left lower corner. Another way to add a new sheet is to: right-click the sheet tab after which you wish to insert a new one, select the Insert option from the right-click menu. A new sheet will be inserted after the selected one. To activate the required sheet, use the sheet tabs in the left lower corner of each spreadsheet. Note: if you have a lot of sheets, you can find the necessary one by using the Sheet Navigation buttons situated in the left lower corner. To delete an unnecessary sheet: right-click the sheet tab you wish to delete, select the Delete option from the right-click menu. The selected sheet will be deleted from the current spreadsheet. To rename an existing sheet: right-click the sheet tab you wish to rename, select the Rename option from the right-click menu, enter the Sheet Name in the dialog box and click OK. The selected sheet name will be changed. To copy an existing sheet: right-click the sheet tab you wish to copy, select the Copy option from the right-click menu, select the sheet before which you wish to insert the copied one or use the Copy to end option to insert the copied sheet after all the existing ones, click the OK button to confirm your choice. The selected sheet will be copied and inserted in the selected place. To move an existing sheet: right-click the sheet tab you wish to move, select the Move option from the right-click menu, select the sheet before which you wish to insert the selected one or use the Move to end option to move the selected sheet after all the existing ones, click the OK button to confirm your choice. Or simply drag the necessary sheet tab and drop it to a new location. The selected sheet will be moved. You can also manualy drag'n'drop a sheet tab from one spreadsheet to another. In this case, the sheet from the original spreadsheet will be deleted. If you have a lot of sheets, you can hide some of them you don't need to facilitate your work. To do that, right-click the sheet tab you wish to hide, select the Hide option from the right-click menu, To display the hidden sheet tab, right-click any sheet tab, open the Hidden list and select the sheet tab you wish to display. To differentiate the sheets, you can assign different colors to the sheet tabs. To do that, right-click the sheet tab you wish to color, select the Tab Color option from the right-click menu, select any color in the available palettes Theme Colors - the colors that correspond to the selected color scheme of the spreadsheet. Standard Colors - the default colors set. Custom Color - click this caption if there is no needed color in the available palettes. Select the necessary color range moving the vertical color slider and set the specific color by dragging the color picker within the large square color field. Once you select a color with the color picker, the appropriate RGB and sRGB color values will be displayed in the fields on the right. You can also specify a color on the base of the RGB color model by entering the necessary numeric values into the R, G, B (red, green, blue) fields or enter the sRGB hexadecimal code into the field marked with the # sign. The selected color will appear in the New preview box. If the object was previously filled with any custom color, this color is displayed in the Current box, so you can compare the original and modified colors. When the color is specified, click the Add button: The custom color will be applied to the selected tab and added to the Custom color palette. You can work with multiple sheets simultaneously: select the first sheet you want to include into the group, press and hold the Shift key to select several adjacent sheets you want to group, or use the Ctrl key to select several non-adjacent sheets you want to group, right-click one of the selected sheets tab to open the contextual menu, choose the necessary option from the menu: Insert - to insert the same number of new blank sheets, as in the selected group, Delete - to delete all the selected sheets at once (you cannot delete all sheets in the workbook, as the workbook must contain at least one visible sheet), Rename - this option can be applied to each separate sheet only, Copy - to create copies of all the selected sheets at once and paste them to the selected place, Move - to move all the selected sheets at once and paste them to the selected place, Hide - to hide all the selected sheets at once (you cannot hide all sheets in the workbook, as the workbook must contain at least one visible sheet), Tab color - to assign the same color to all the selected sheet tabs at once, Select All Sheets - to select all the sheets in the current workbook, Ungroup Sheets - to ungroup the selected sheets. it's also possible to ungroup sheets by double-clicking on a sheet which is included into the group, or by clicking any sheet which is not included into the group." }, { "id": "UsageInstructions/ManipulateObjects.htm", "title": "Manipulate objects", - "body": "You can resize, move, rotate and arrange autoshapes, images and charts inserted into your worksheet. Note: the list of keyboard shortcuts that can be used when working with objects is available here. Resize objects To change the autoshape/image/chart size, drag small squares 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 or the Image settings icon to the right. Move objects To alter the autoshape/image/chart position, use the icon that appears after hovering your mouse cursor over the object. Drag the object to the necessary position without releasing the mouse button. To move the object by the one-pixel increments, hold down the Ctrl key and use the keybord arrows. To move the object strictly horizontally/vertically and prevent it from moving in a perpendicular direction, hold down the Shift key when dragging. Rotate objects To manually rotate the autoshape/image, hover the mouse cursor over the rotation handle and drag it clockwise or counterclockwise. To constrain the rotation angle to 15 degree increments, hold down the Shift key while rotating. To rotate a shape or image by 90 degrees counterclockwise/clockwise or flip the object horizontally/vertically you can use the Rotation section of the right sidebar that will be activated once you select the necessary object. To open it, click the Shape settings or the Image settings icon to the right. Click one of the buttons: to rotate the object by 90 degrees counterclockwise to rotate the object by 90 degrees clockwise to flip the object horizontally (left to right) to flip the object vertically (upside down) It's also possible to right-click the image or shape, choose the Rotate option from the contextual menu and then use one of the available rotation options. To rotate a shape or image by an exactly specified angle, click the Show advanced settings link at the right sidebar and use the Rotation tab of the Advanced Settings window. Specify the necessary value measured in degrees in the Angle field and click OK. Reshape autoshapes When modifying some shapes, for example Figured arrows or Callouts, the yellow diamond-shaped icon is also available. It allows to adjust some aspects of the shape, for example, the length of the head of an arrow. Align objects To align two or more selected objects in relation to each other, hold down the Ctrl key while selecting the objects with the mouse, then click the Align icon at the Layout tab of the top toolbar and select the necessary alignment type from the list: Align Left - to align objects in relation to each other by the left edge of the leftmost object, Align Center - to align objects in relation to each other by their centers, Align Right - to align objects in relation to each other by the right edge of the rightmost object, Align Top - to align objects in relation to each other by the top edge of the topmost object, Align Middle - to align objects in relation to each other by their middles, Align Bottom - to align objects in relation to each other by the bottom edge of the bottommost object. Alternatively, you can right-click the selected objects, choose the Align option from the contextual menu and then use one of the available alignment options. Note: the alignment options are disabled if you select less than two objects. Distribute objects To distribute three or more selected objects horizontally or vertically between two outermost selected objects so that the equal distance appears between them, click the Align icon at the Layout tab of the top toolbar and select the necessary distribution type from the list: Distribute Horizontally - to distribute objects evenly between the leftmost and rightmost selected objects. Distribute Vertically - to distribute objects evenly between the topmost and bottommost selected objects. Alternatively, you can right-click the selected objects, choose the Align option from the contextual menu and then use one of the available distribution options. Note: the distribution options are disabled if you select less than three 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 click the arrow next to the Group icon at the Layout tab of the top toolbar and select the necessary option from the list: Group - 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 - 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. Note: the Group option is disabled if you select less than two objects. The Ungroup option is available only when a group of the previously joined objects is selected. Arrange several objects To arrange the selected object or several objects (e.g. to change their order when several objects overlap each other), you can use the Bring Forward and 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 at the Layout tab of the top toolbar and select the necessary arrangement type from the list: Bring To Foreground - to move the object(s) in front of all other objects, Bring Forward - 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 at the Layout tab of the top toolbar and select the necessary arrangement type from the list: Send To Background - to move the object(s) behind all other objects, Send Backward - to move the selected object(s) by one level backward as related to other objects. Alternatively, you can right-click the selected object(s), choose the Arrange option from the contextual menu and then use one of the available arrangement options." + "body": "You can resize, move, rotate and arrange autoshapes, images and charts inserted into your worksheet. Note: the list of keyboard shortcuts that can be used when working with objects is available here. Resize objects To change the size of an autoshape/image/chart, drag small squares situated on the edges of the object. 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 or the Image settings icon to the right. Move objects To change the position of an autoshape/image/chart, use the Arrow icon that appears after hovering the mouse cursor over the object. Drag the object to the necessary position without releasing the mouse button. To move the object by one-pixel increments, hold down the Ctrl key and use the keybord arrows. To move the object strictly horizontally/vertically and prevent it from moving in a perpendicular direction, hold down the Shift key when dragging. Rotate objects To manually rotate the autoshape/image, hover the mouse cursor over the rotation handle and drag it clockwise or counterclockwise. To constrain the rotation angle to 15 degree increments, hold down the Shift key while rotating. To rotate a shape or image by 90 degrees counterclockwise/clockwise or flip the object horizontally/vertically you can use the Rotation section of the right sidebar that will be activated once you select the necessary object. To open it, click the Shape settings icon or the Image settings icon to the right. Click one of the buttons: to rotate the object by 90 degrees counterclockwise to rotate the object by 90 degrees clockwise to flip the object horizontally (left to right) to flip the object vertically (upside down) It's also possible to right-click the image or shape, choose the Rotate option from the contextual menu and then use one of the available rotation options. To rotate a shape or image by an exactly specified angle, click the Show advanced settings link on the right sidebar and use the Rotation tab of the Advanced Settings window. Specify the necessary value measured in degrees in the Angle field and click OK. Reshape autoshapes When modifying some shapes, for example Figured arrows or Callouts, the yellow diamond-shaped icon is also available. It allows you to adjust some aspects of the shape, for example, the length of the head of an arrow. Align objects To align two or more selected objects in relation to each other, hold down the Ctrl key while selecting the objects with the mouse, then click the Align icon on the Layout tab of the top toolbar and select the necessary alignment type from the list: Align Left - to align objects relative to each other to the left edge of the leftmost object, Align Center - to align objects relative to each other in the center, Align Right - to align objects relative to each other to the right edge of the rightmost object, Align Top - to align objects relative to each other to the top edge of the topmost object, Align Middle - to align objects relative to each other in the middle, Align Bottom - to align objects relative to each other to the bottom edge of the bottommost object. Alternatively, you can right-click the selected objects, choose the Align option from the contextual menu and then use one of the available alignment options. Note: the alignment options are disabled if you select less than two objects. Distribute objects To distribute three or more selected objects horizontally or vertically between two outermost selected objects so that there is equal distance between them, click the Align icon on the Layout tab of the top toolbar and select the necessary distribution type from the list: Distribute Horizontally - to distribute objects evenly between the leftmost and rightmost selected objects. Distribute Vertically - to distribute objects evenly between the topmost and bottommost selected objects. Alternatively, you can right-click the selected objects, choose the Align option from the contextual menu and then use one of the available distribution options. Note: the distribution options are disabled if you select less than three 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 click the arrow next to the Group icon on the Layout tab of the top toolbar and select the necessary option from the list: Group - to combine several objects into a group so that they can be simultaneously rotated, moved, resized, aligned, arranged, copied, pasted, formatted like a single object. Ungroup - to ungroup the selected group of the previously combined 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. Note: the Group option is disabled if you select less than two objects. The Ungroup option is available only when a group of the previously combined objects is selected. Arrange several objects To arrange the selected object or several objects (e.g. to change their order when several objects overlap each other), you can use the Bring Forward and Send Backward icons on 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 on the Layout tab of the top toolbar and select the necessary arrangement type from the list: Bring To Foreground - to move the object(s) in front of all other objects, Bring Forward - 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 on the Layout tab of the top toolbar and select the necessary arrangement type from the list: Send To Background - to move the object(s) behind all other objects, Send Backward - to move the selected object(s) by one level backward as related to other objects. Alternatively, you can right-click the selected object(s), choose the Arrange option from the contextual menu and then use one of the available arrangement options." + }, + { + "id": "UsageInstructions/MathAutoCorrect.htm", + "title": "Use Math AutoCorrect", + "body": "When working with equations, you can insert a lot of symbols, accents and mathematical operation signs typing them on the keyboard instead of choosing a template from the gallery. In the equation editor, place the insertion point within the necessary placeholder, type a math autocorrect code, then press Spacebar. The entered code will be converted into the corresponding symbol, and the space will be eliminated. Note: The codes are case sensitive. The table below contains all the currently supported codes available in the Spreadsheet Editor. The full list of the supported codes can also be found on the File tab in the Advanced Settings... -> Spell checking -> Proofing section. Code Symbol Category !! Symbols ... Dots :: Operators := Operators /< Relational operators /> Relational operators /= Relational operators \\above Above/Below scripts \\acute Accents \\aleph Hebrew letters \\alpha Greek letters \\Alpha Greek letters \\amalg Binary operators \\angle Geometry notation \\aoint Integrals \\approx Relational operators \\asmash Arrows \\ast Binary operators \\asymp Relational operators \\atop Operators \\bar Over/Underbar \\Bar Accents \\because Relational operators \\begin Delimiters \\below Above/Below scripts \\bet Hebrew letters \\beta Greek letters \\Beta Greek letters \\beth Hebrew letters \\bigcap Large operators \\bigcup Large operators \\bigodot Large operators \\bigoplus Large operators \\bigotimes Large operators \\bigsqcup Large operators \\biguplus Large operators \\bigvee Large operators \\bigwedge Large operators \\binomial Equations \\bot Logic notation \\bowtie Relational operators \\box Symbols \\boxdot Binary operators \\boxminus Binary operators \\boxplus Binary operators \\bra Delimiters \\break Symbols \\breve Accents \\bullet Binary operators \\cap Binary operators \\cbrt Square roots and radicals \\cases Symbols \\cdot Binary operators \\cdots Dots \\check Accents \\chi Greek letters \\Chi Greek letters \\circ Binary operators \\close Delimiters \\clubsuit Symbols \\coint Integrals \\cong Relational operators \\coprod Math operators \\cup Binary operators \\dalet Hebrew letters \\daleth Hebrew letters \\dashv Relational operators \\dd Double-struck letters \\Dd Double-struck letters \\ddddot Accents \\dddot Accents \\ddot Accents \\ddots Dots \\defeq Relational operators \\degc Symbols \\degf Symbols \\degree Symbols \\delta Greek letters \\Delta Greek letters \\Deltaeq Operators \\diamond Binary operators \\diamondsuit Symbols \\div Binary operators \\dot Accents \\doteq Relational operators \\dots Dots \\doublea Double-struck letters \\doubleA Double-struck letters \\doubleb Double-struck letters \\doubleB Double-struck letters \\doublec Double-struck letters \\doubleC Double-struck letters \\doubled Double-struck letters \\doubleD Double-struck letters \\doublee Double-struck letters \\doubleE Double-struck letters \\doublef Double-struck letters \\doubleF Double-struck letters \\doubleg Double-struck letters \\doubleG Double-struck letters \\doubleh Double-struck letters \\doubleH Double-struck letters \\doublei Double-struck letters \\doubleI Double-struck letters \\doublej Double-struck letters \\doubleJ Double-struck letters \\doublek Double-struck letters \\doubleK Double-struck letters \\doublel Double-struck letters \\doubleL Double-struck letters \\doublem Double-struck letters \\doubleM Double-struck letters \\doublen Double-struck letters \\doubleN Double-struck letters \\doubleo Double-struck letters \\doubleO Double-struck letters \\doublep Double-struck letters \\doubleP Double-struck letters \\doubleq Double-struck letters \\doubleQ Double-struck letters \\doubler Double-struck letters \\doubleR Double-struck letters \\doubles Double-struck letters \\doubleS Double-struck letters \\doublet Double-struck letters \\doubleT Double-struck letters \\doubleu Double-struck letters \\doubleU Double-struck letters \\doublev Double-struck letters \\doubleV Double-struck letters \\doublew Double-struck letters \\doubleW Double-struck letters \\doublex Double-struck letters \\doubleX Double-struck letters \\doubley Double-struck letters \\doubleY Double-struck letters \\doublez Double-struck letters \\doubleZ Double-struck letters \\downarrow Arrows \\Downarrow Arrows \\dsmash Arrows \\ee Double-struck letters \\ell Symbols \\emptyset Set notations \\emsp Space characters \\end Delimiters \\ensp Space characters \\epsilon Greek letters \\Epsilon Greek letters \\eqarray Symbols \\equiv Relational operators \\eta Greek letters \\Eta Greek letters \\exists Logic notations \\forall Logic notations \\fraktura Fraktur letters \\frakturA Fraktur letters \\frakturb Fraktur letters \\frakturB Fraktur letters \\frakturc Fraktur letters \\frakturC Fraktur letters \\frakturd Fraktur letters \\frakturD Fraktur letters \\frakture Fraktur letters \\frakturE Fraktur letters \\frakturf Fraktur letters \\frakturF Fraktur letters \\frakturg Fraktur letters \\frakturG Fraktur letters \\frakturh Fraktur letters \\frakturH Fraktur letters \\frakturi Fraktur letters \\frakturI Fraktur letters \\frakturk Fraktur letters \\frakturK Fraktur letters \\frakturl Fraktur letters \\frakturL Fraktur letters \\frakturm Fraktur letters \\frakturM Fraktur letters \\frakturn Fraktur letters \\frakturN Fraktur letters \\frakturo Fraktur letters \\frakturO Fraktur letters \\frakturp Fraktur letters \\frakturP Fraktur letters \\frakturq Fraktur letters \\frakturQ Fraktur letters \\frakturr Fraktur letters \\frakturR Fraktur letters \\frakturs Fraktur letters \\frakturS Fraktur letters \\frakturt Fraktur letters \\frakturT Fraktur letters \\frakturu Fraktur letters \\frakturU Fraktur letters \\frakturv Fraktur letters \\frakturV Fraktur letters \\frakturw Fraktur letters \\frakturW Fraktur letters \\frakturx Fraktur letters \\frakturX Fraktur letters \\fraktury Fraktur letters \\frakturY Fraktur letters \\frakturz Fraktur letters \\frakturZ Fraktur letters \\frown Relational operators \\funcapply Binary operators \\G Greek letters \\gamma Greek letters \\Gamma Greek letters \\ge Relational operators \\geq Relational operators \\gets Arrows \\gg Relational operators \\gimel Hebrew letters \\grave Accents \\hairsp Space characters \\hat Accents \\hbar Symbols \\heartsuit Symbols \\hookleftarrow Arrows \\hookrightarrow Arrows \\hphantom Arrows \\hsmash Arrows \\hvec Accents \\identitymatrix Matrices \\ii Double-struck letters \\iiint Integrals \\iint Integrals \\iiiint Integrals \\Im Symbols \\imath Symbols \\in Relational operators \\inc Symbols \\infty Symbols \\int Integrals \\integral Integrals \\iota Greek letters \\Iota Greek letters \\itimes Math operators \\j Symbols \\jj Double-struck letters \\jmath Symbols \\kappa Greek letters \\Kappa Greek letters \\ket Delimiters \\lambda Greek letters \\Lambda Greek letters \\langle Delimiters \\lbbrack Delimiters \\lbrace Delimiters \\lbrack Delimiters \\lceil Delimiters \\ldiv Fraction slashes \\ldivide Fraction slashes \\ldots Dots \\le Relational operators \\left Delimiters \\leftarrow Arrows \\Leftarrow Arrows \\leftharpoondown Arrows \\leftharpoonup Arrows \\leftrightarrow Arrows \\Leftrightarrow Arrows \\leq Relational operators \\lfloor Delimiters \\lhvec Accents \\limit Limits \\ll Relational operators \\lmoust Delimiters \\Longleftarrow Arrows \\Longleftrightarrow Arrows \\Longrightarrow Arrows \\lrhar Arrows \\lvec Accents \\mapsto Arrows \\matrix Matrices \\medsp Space characters \\mid Relational operators \\middle Symbols \\models Relational operators \\mp Binary operators \\mu Greek letters \\Mu Greek letters \\nabla Symbols \\naryand Operators \\nbsp Space characters \\ne Relational operators \\nearrow Arrows \\neq Relational operators \\ni Relational operators \\norm Delimiters \\notcontain Relational operators \\notelement Relational operators \\notin Relational operators \\nu Greek letters \\Nu Greek letters \\nwarrow Arrows \\o Greek letters \\O Greek letters \\odot Binary operators \\of Operators \\oiiint Integrals \\oiint Integrals \\oint Integrals \\omega Greek letters \\Omega Greek letters \\ominus Binary operators \\open Delimiters \\oplus Binary operators \\otimes Binary operators \\over Delimiters \\overbar Accents \\overbrace Accents \\overbracket Accents \\overline Accents \\overparen Accents \\overshell Accents \\parallel Geometry notation \\partial Symbols \\pmatrix Matrices \\perp Geometry notation \\phantom Symbols \\phi Greek letters \\Phi Greek letters \\pi Greek letters \\Pi Greek letters \\pm Binary operators \\pppprime Primes \\ppprime Primes \\pprime Primes \\prec Relational operators \\preceq Relational operators \\prime Primes \\prod Math operators \\propto Relational operators \\psi Greek letters \\Psi Greek letters \\qdrt Square roots and radicals \\quadratic Square roots and radicals \\rangle Delimiters \\Rangle Delimiters \\ratio Relational operators \\rbrace Delimiters \\rbrack Delimiters \\Rbrack Delimiters \\rceil Delimiters \\rddots Dots \\Re Symbols \\rect Symbols \\rfloor Delimiters \\rho Greek letters \\Rho Greek letters \\rhvec Accents \\right Delimiters \\rightarrow Arrows \\Rightarrow Arrows \\rightharpoondown Arrows \\rightharpoonup Arrows \\rmoust Delimiters \\root Symbols \\scripta Scripts \\scriptA Scripts \\scriptb Scripts \\scriptB Scripts \\scriptc Scripts \\scriptC Scripts \\scriptd Scripts \\scriptD Scripts \\scripte Scripts \\scriptE Scripts \\scriptf Scripts \\scriptF Scripts \\scriptg Scripts \\scriptG Scripts \\scripth Scripts \\scriptH Scripts \\scripti Scripts \\scriptI Scripts \\scriptk Scripts \\scriptK Scripts \\scriptl Scripts \\scriptL Scripts \\scriptm Scripts \\scriptM Scripts \\scriptn Scripts \\scriptN Scripts \\scripto Scripts \\scriptO Scripts \\scriptp Scripts \\scriptP Scripts \\scriptq Scripts \\scriptQ Scripts \\scriptr Scripts \\scriptR Scripts \\scripts Scripts \\scriptS Scripts \\scriptt Scripts \\scriptT Scripts \\scriptu Scripts \\scriptU Scripts \\scriptv Scripts \\scriptV Scripts \\scriptw Scripts \\scriptW Scripts \\scriptx Scripts \\scriptX Scripts \\scripty Scripts \\scriptY Scripts \\scriptz Scripts \\scriptZ Scripts \\sdiv Fraction slashes \\sdivide Fraction slashes \\searrow Arrows \\setminus Binary operators \\sigma Greek letters \\Sigma Greek letters \\sim Relational operators \\simeq Relational operators \\smash Arrows \\smile Relational operators \\spadesuit Symbols \\sqcap Binary operators \\sqcup Binary operators \\sqrt Square roots and radicals \\sqsubseteq Set notation \\sqsuperseteq Set notation \\star Binary operators \\subset Set notation \\subseteq Set notation \\succ Relational operators \\succeq Relational operators \\sum Math operators \\superset Set notation \\superseteq Set notation \\swarrow Arrows \\tau Greek letters \\Tau Greek letters \\therefore Relational operators \\theta Greek letters \\Theta Greek letters \\thicksp Space characters \\thinsp Space characters \\tilde Accents \\times Binary operators \\to Arrows \\top Logic notation \\tvec Arrows \\ubar Accents \\Ubar Accents \\underbar Accents \\underbrace Accents \\underbracket Accents \\underline Accents \\underparen Accents \\uparrow Arrows \\Uparrow Arrows \\updownarrow Arrows \\Updownarrow Arrows \\uplus Binary operators \\upsilon Greek letters \\Upsilon Greek letters \\varepsilon Greek letters \\varphi Greek letters \\varpi Greek letters \\varrho Greek letters \\varsigma Greek letters \\vartheta Greek letters \\vbar Delimiters \\vdash Relational operators \\vdots Dots \\vec Accents \\vee Binary operators \\vert Delimiters \\Vert Delimiters \\Vmatrix Matrices \\vphantom Arrows \\vthicksp Space characters \\wedge Binary operators \\wp Symbols \\wr Binary operators \\xi Greek letters \\Xi Greek letters \\zeta Greek letters \\Zeta Greek letters \\zwnj Space characters \\zwsp Space characters ~= Relational operators -+ Binary operators +- Binary operators << Relational operators <= Relational operators -> Arrows >= Relational operators >> Relational operators" }, { "id": "UsageInstructions/MergeCells.htm", "title": "Merge cells", - "body": "You can merge two or more adjacent cells into one cell. To do that, select two cells or a range of cells with the mouse, Note: the selected cells MUST be adjacent. click the Merge 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 in the merged cell will be centered; if you select the Merge Across option the cells of each row of the selected range will be merged and the data in the merged cells will be aligned by the left side (for text) or by the right side (for numeric values); if you select the Merge Cells option the cells of the selected range will be merged and the data will be aligned by the left side (for text) or by the right side (for numeric values). To split the previously merged cell use the Unmerge Cells option from the Merge drop-down list. The data of the merged cell will be displayed in the upper-left cell." + "body": "You can merge two or more adjacent cells into one cell. To do that, select two cells or a cell range with the mouse, Note: the selected cells MUST be adjacent. click the Merge icon situated on 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 in the merged cell will be centered; if you select the Merge Across option the cells of each row of the selected range will be merged, and the data in the merged cells will be aligned to the left side (for text) or to the right side (for numeric values); if you select the Merge Cells option the cells of the selected range will be merged and the data will be aligned to the left side (for text) or to the right side (for numeric values). To split the previously merged cell, use the Unmerge Cells option from the Merge drop-down list. The data of the merged cell will be displayed in the upper left cell." }, { "id": "UsageInstructions/OpenCreateNew.htm", "title": "Create a new spreadsheet or open an existing one", - "body": "To create a new spreadsheet In the online editor click the File tab of the top toolbar, select the Create New option. In the desktop editor in the main program window, select the Spreadsheet menu item from the Create new section of the left sidebar - a new file will open in a new tab, when all the necessary changes are made, click the Save icon in the upper left corner or switch to the File tab and choose the Save as menu item. in the file manager window, select the file location, specify its name, choose the format you want to save the spreadsheet to (XLSX, Spreadsheet template (XLTX), ODS, OTS, CSV, PDF or PDFA) and click the Save button. To open an existing document In the desktop editor in the main program window, select the Open local file menu item at the left sidebar, choose the necessary spreadsheet from the file manager window and click the Open button. You can also right-click the necessary spreadsheet in the file manager window, select the Open with option and choose the necessary application from the menu. If the office documents files are associated with the application, you can also open spreadsheets by double-clicking the file name in the file explorer window. All the directories that you have accessed using the desktop editor will be displayed in the Recent folders list so that you can quickly access them afterwards. Click the necessary folder to select one of the files stored in it. To open a recently edited spreadsheet In the online editor click the File tab of the top toolbar, select the Open Recent... option, choose the spreadsheet you need from the list of recently edited documents. In the desktop editor in the main program window, select the Recent files menu item at the left sidebar, choose the spreadsheet you need from the list of recently edited documents. To open the folder where the file is stored in a new browser tab in the online version, in the file explorer window in the desktop version, click the Open file location icon on the right side of the editor header. Alternatively, you can switch to the File tab of the top toolbar and select the Open file location option." + "body": "To create a new spreadsheet In the online editor click the File tab on the top toolbar, select the Create New option. In the desktop editor in the main program window, select the Spreadsheet menu item from the Create new section of the left sidebar - a new file will open in a new tab, when all the necessary changes are made, click the Save icon in the upper left corner or switch to the File tab and choose the Save as menu item. in the file manager window, select the location of the file, specify its name, choose the required format (XLSX, Spreadsheet template (XLTX), ODS, OTS, CSV, PDF or PDFA) and click the Save button. To open an existing document In the desktop editor in the main program window, select the Open local file menu item on the left sidebar, choose the necessary spreadsheet from the file manager window and click the Open button. You can also right-click the necessary spreadsheet in the file manager window, select the Open with option and choose the required application from the menu. If documents are associated with the required application, you can also open spreadsheets by double-clicking the file name in the file explorer window. All the directories that you have accessed using the desktop editor will be displayed in the Recent folders list so that you can quickly access them afterwards. Click the necessary folder to select one of the files stored in it. To open a recently edited spreadsheet In the online editor click the File tab on the top toolbar, select the Open Recent... option, choose the required spreadsheet from the list of recently edited documents. In the desktop editor in the main program window, select the Recent files menu item on the left sidebar, choose the required spreadsheet from the list of recently edited documents. To open the folder, where the file is stored , in a new browser tab in the online version or in the file explorer window in the desktop version, click the Open file location icon on the right side of the editor header. Alternatively, you can switch to the File tab on the top toolbar and select the Open file location option." }, { "id": "UsageInstructions/PivotTables.htm", - "title": "Edit pivot tables", - "body": "Note: this option is available in the online version only. You can change the appearance of existing pivot tables in a spreadsheet using the editing tools available at the Pivot Table tab of the top toolbar. Select at least one cell within the pivot table with the mouse to activate the editing tools at the top toolbar. The Select button allows to select the entire pivot table. The rows and columns options 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: Row Headers - allows to highlight the row headers with a special formatting. Column Headers - allows to highlight the column headers with a special formatting. Banded Rows - enables the background color alternation for odd and even rows. Banded Columns - enables the background color alternation for odd and even columns. The template list allows you to choose one of the predefined pivot table styles. Each template combines certain formatting parameters, such as a background color, border style, row/column banding etc. Depending on the options checked for rows and columns, the templates set will be displayed differently. For example, if you've checked the Row Headers and Banded Columns options, the displayed templates list will include only templates with the row headers highlighted and banded columns enabled." + "title": "Create and edit pivot tables", + "body": "Pivot tables allow you to group and arrange data of large data sets to get summarized information. You can reorganize data in many different ways to display only the necessary information and focus on important aspects. Create a new pivot table To create a pivot table, Prepare the source data set you want to use for creating a pivot table. It should include column headers. The data set should not contain empty rows or columns. Select any cell within the source data range. Switch to the Pivot Table tab of the top toolbar and click the Insert Table icon. If you want to create a pivot table on the base of a formatted table, you can also use the Insert pivot table option on the Table settings tab of the right sidebar. The Create Pivot Table window will appear. The Source data range is already specified. In this case, all data from the source data range will be used. If you want to change the data range (e.g. to include only a part of source data), click the icon. In the Select Data Range window, enter the necessary data range in the following format: Sheet1!$A$1:$E$10. You can also select the necessary cell range on the sheet using the mouse. When ready, click OK. Specify where you want to place the pivot table. The New worksheet option is selected by default. It allows you to place the pivot table in a new worksheet. You can also select the Existing worksheet option and choose a certain cell. In this case, the selected cell will be the upper right cell of the created pivot table. To select a cell, click the icon. In the Select Data Range window, enter the cell address in the following format: Sheet1!$G$2. You can also click the necessary cell in the sheet. When ready, click OK. When you select the pivot table location, click OK in the Create Table window. An empty pivot table will be inserted in the selected location. The Pivot table settings tab on the right sidebar will be opened. You can hide or display this tab by clicking the icon. Select fields to display The Select Fields section contains the fields named according to the column headers in your source data set. Each field contains values from the corresponding column of the source table. The following four sections are available below: Filters, Columns, Rows and Values. Check the fields you want to display in the pivot table. When you check a field, it will be added to one of the available sections on the right sidebar depending on the data type and will be displayed in the pivot table. Fields containing text values will be added to the Rows section; fields containing numeric values will be added to the Values section. You can simply drag fields to the necessary section as well as drag the fields between sections to quickly reorganize your pivot table. To remove a field from the current section, drag it out of this section. In order to add a field to the necessary section, it's also possible to click the black arrow to the right of a field in the Select Fields section and choose the necessary option from the menu: Add to Filters, Add to Rows, Add to Columns, Add to Values. Below you can see some examples of using the Filters, Columns, Rows and Values sections. If you add a field to the Filters section, a separate filter will be added above the pivot table. It will be applied to the entire pivot table. If you click the drop-down arrow in the added filter, you'll see the values from the selected field. When you uncheck some values in the filter option window and click OK, the unchecked values will not be displayed in the pivot table. If you add a field to the Columns section, the pivot table will contain a number of columns equal to the number of values from the selected field. The Grand Total column will also be added. If you add a field to the Rows section, the pivot table will contain a number of rows equal to the number of values from the selected field. The Grand Total row will also be added. If you add a field to the Values section, the pivot table will display the summation value for all numeric values from the selected field. If the field contains text values, the count of values will be displayed. The function used to calculate the summation value can be changed in the field settings. Rearrange fields and adjust their properties Once the fields are added to the necessary sections, you can manage them to change the layout and format of the pivot table. Click the black arrow to the right of a field within the Filters, Columns, Rows or Values sections to access the field context menu. It allows you to: Move the selected field Up, Down, to the Beginning, or to the End of the current section if you have added more than one field to the current section. Move the selected field to a different section - to Filters, Columns, Rows, or Values. The option that corresponds to the current section will be disabled. Remove the selected field from the current section. Adjust the selected field settings. The Filters, Columns and Rows field settings look similarly: The Layout tab contains the following options: The Source name option allows you to view the field name corresponding to the column header from the source data set. The Custom name option allows you to change the name of the selected field displayed in the pivot table. The Report Form section allows you to change the way the selected field is displayed in the pivot table: Choose the necessary layout for the selected field in the pivot table: The Tabular form displays one column for each field and provides space for field headers. The Outline form displays one column for each field and provides space for field headers. It also allows you to display subtotals at the top of groups. The Compact form displays items from different row section fields in a single column. The Repeat items labels at each row option allows you to visually group rows or columns together if you have multiple fields in the tabular form. The Insert blank rows after each item option allows you to add blank lines after items of the selected field. The Show subtotals option allows you to choose if you want to display subtotals for the selected field. You can select one of the options: Show at top of group or Show at bottom of group. The Show items with no data option allows you to show or hide blank items in the selected field. The Subtotals tab allows you to choose Functions for Subtotals. Check the necessary functions in the list: Sum, Count, Average, Max, Min, Product, Count Numbers, StdDev, StdDevp, Var, Varp. Values field settings The Source name option allows you to view the field name corresponding to the column header from the source data set. The Custom name option allows you to change the name of the selected field displayed in the pivot table. The Summarize value field by list allows you to choose the function used to calculate the summation value for all values from this field. By default, Sum is used for numeric values, Count is used for text values. The available functions are Sum, Count, Average, Max, Min, Product. Change the appearance of pivot tables You can use options available on the top toolbar to adjust the way your pivot table is displayed. These options are applied to the entire pivot table. Select at least one cell within the pivot table with the mouse to activate the editing tools on the top toolbar. The Report Layout drop-down list allows you to choose the necessary layout for your pivot table: Show in Compact Form - allows you to display items from different row section fields in a single column. Show in Outline Form - allows you to display the pivot table in the classic pivot table style. It displays one column for each field and provides space for field headers. It also allows you to display subtotals at the top of groups. Show in Tabular Form - allows you to display the pivot table in a traditional table format. It displays one column for each field and provides space for field headers. Repeat All Item Labels - allows you to visually group rows or columns together if you have multiple fields in the tabular form. Don't Repeat All Item Labels - allows you to hide item labels if you have multiple fields in the tabular form. The Blank Rows drop-down list allows you to choose if you want to display blank lines after items: Insert Blank Line after Each Item - allows you to add blank lines after items. Remove Blank Line after Each Item - allows you to remove the added blank lines. The Subtotals drop-down list allows you to choose if you want to display subtotals in the pivot table: Don't Show Subtotals - allows you to hide subtotals for all items. Show all Subtotals at Bottom of Group - allows you to display subtotals below the subtotaled rows. Show all Subtotals at Top of Group - allows you to display subtotals above the subtotaled rows. The Grand Totals drop-down list allows you to choose if you want to display grand totals in the pivot table: Off for Rows and Columns - allows you to hide grand totals for both rows and columns. On for Rows and Columns - allows you to display grand totals for both rows and columns. On for Rows Only - allows you to display grand totals for rows only. On for Columns Only - allows you to display grand totals for columns only. Note: the similar settings are also available in the pivot table advanced settings window in the Grand Totals section of the Name and Layout tab. The Select button allows you to select the entire pivot table. If you change the data in your source data set, select the pivot table and click the Refresh button to update the pivot table. Change the style of pivot tables You can change the appearance of pivot tables in a spreadsheet using the style editing tools available on the top toolbar. Select at least one cell within the pivot table with the mouse to activate the editing tools on the top toolbar. The rows and columns options allow you to emphasize certain rows/columns applying specific formatting to them, or highlight different rows/columns with different background colors to clearly distinguish them. The following options are available: Row Headers - allows you to highlight the row headers with special formatting. Column Headers - allows you to highlight the column headers with special formatting. Banded Rows - enables the background color alternation for odd and even rows. Banded Columns - enables the background color alternation for odd and even columns. The template list allows you to choose one of the predefined pivot table styles. Each template combines certain formatting parameters, such as a background color, border style, row/column banding, etc. Depending on the options checked for rows and columns, the templates set will be displayed differently. For example, if you've checked the Row Headers and Banded Columns options, the displayed templates list will include only templates with the row headers highlighted and banded columns enabled. Filter and sort pivot tables You can filter pivot tables by labels or values and use the additional sort parameters. Filtering Click the drop-down arrow in the Row Labels or Column Labels of the pivot table. The Filter option list will open: Adjust the filter parameters. You can proceed in one of the following ways: select the data to display or filter the data by certain criteria. Select the data to display Uncheck the boxes near the data you need to hide. For your convenience, all the data within the Filter option list are sorted in ascending order. Note: the (blank) check box corresponds to the empty cells. It is available if the selected cell range contains at least one empty cell. To facilitate the process, make use of the search field on the top. Enter your query, entirely or partially, in the field - the values that include these characters will be displayed in the list below. The following two options will be also available: Select All Search Results - is checked by default. It allows selecting all the values that correspond to your query in the list. Add current selection to filter - if you check this box, the selected values will not be hidden when you apply the filter. After you select all the necessary data, click the OK button in the Filter option list to apply the filter. Filter data by certain criteria You can choose either the Label filter or the Value filter option on the right side of the Filter options list, and then select one of the options from the submenu: For the Label filter the following options are available: For texts: Equals..., Does not equal..., Begins with..., Does not begin with..., Ends with..., Does not end with..., Contains..., Does not contain.... For numbers: Greater than..., Greater than or equal to..., Less than..., Less than or equal to..., Between, Not between. For the Value filter the following options are available: Equals..., Does not equal..., Greater than..., Greater than or equal to..., Less than..., Less than or equal to..., Between, Not between, Top 10. After you select one of the above options (apart from Top 10), the Label/Value Filter window will open. The corresponding field and criterion will be selected in the first and second drop-down lists. Enter the necessary value in the field on the right. Click OK to apply the filter. If you choose the Top 10 option from the Value filter option list, a new window will open: The first drop-down list allows choosing if you wish to display the highest (Top) or the lowest (Bottom) values. The second field allows specifying how many entries from the list or which percent of the overall entries number you want to display (you can enter a number from 1 to 500). The third drop-down list allows setting the units of measure: Item or Percent. The fourth drop-down list displays the selected field name. Once the necessary parameters are set, click OK to apply the filter. The Filter button will appear in the Row Labels or Column Labels of the pivot table. It means that the filter is applied. Sorting You can sort your pivot table data using the sort options. Click the drop-down arrow in the Row Labels or Column Labels of the pivot table and then select Sort Lowest to Highest or Sort Highest to Lowest option from the submenu. The More Sort Options option allows you to open the Sort window where you can select the necessary sorting order - Ascending or Descending - and then select a certain field you want to sort. Adjust pivot table advanced settings To change the advanced settings of the pivot table, use the Show advanced settings link on the right sidebar. The 'Pivot Table - Advanced Settings' window will open: The Name and Layout tab allows you to change the pivot table common properties. The Name option allows you to change the pivot table name. The Grand Totals section allows you to choose if you want to display grand totals in the pivot table. The Show for rows and Show for columns options are checked by default. You can uncheck either one of them or both these options to hide the corresponding grand totals from your pivot table. Note: the similar settings are available on the top toolbar in the Grand Totals menu. The Display fields in report filter area section allows you to adjust the report filters which appear when you add fields to the Filters section: The Down, then over option is used for column arrangement. It allows you to show the report filters across the column. The Over, then down option is used for row arrangement. It allows you to show the report filters across the row. The Report filter fields per column option allows you to select the number of filters to go in each column. The default value is set to 0. You can set the necessary numeric value. The Field Headers section allows you to choose if you want to display field headers in your pivot table. The Show field headers for rows and columns option is selected by default. Uncheck it to hide field headers from your pivot table. The Data Source tab allows you to change the data you wish to use to create the pivot table. Check the selected Data Range and modify it, if necessary. To do that, click the icon. In the Select Data Range window, enter the necessary data range in the following format: Sheet1!$A$1:$E$10. You can also select the necessary cell range in the sheet using the mouse. When ready, click OK. The Alternative Text tab allows to specify the Title and the Description which will be read to people with vision or cognitive impairments to help them better understand what information the pivot table contains. Delete a pivot table To delete a pivot table, Select the entire pivot table using the Select button on the top toolbar. Press the Delete key." + }, + { + "id": "UsageInstructions/RemoveDuplicates.htm", + "title": "Remove duplicates", + "body": "You can remove duplicate values from the selected data range or a formatted table. To remove duplicates: Select the necessary cell range containing duplicate values. Switch to the Data tab and click the Remove Duplicates button on the top toolbar. If you want to remove duplicates from a formatted table, you can also use the Remove duplicates option on the right sidebar. If you select a certain part of the data range, a warning window will appear where you will be asked if you want to expand the selection to include the entire data range or proceed with the currently selected data. Click the Expand or Remove in selected button. If you choose the Remove in selected option, duplicate values in cells adjacent to the selected range will not be removed. The Remove Duplicates window will open: Check the necessary options in the Remove Duplicates window: My data has headers - check this box to exclude column headers from the selection. Columns - leave the Select All option selected by default or uncheck it and select the necessary columns only. Click the OK button. The duplicate values from the selected data range will be removed, and you will see the window that contains the information on how many duplicate values have been removed and how many unique values have been left: If you want to restore the removed data right after deletion, use the Undo icon on the top toolbar or the Ctrl+Z key combination." }, { "id": "UsageInstructions/SavePrintDownload.htm", "title": "Save/print/download your spreadsheet", - "body": "Saving By default, online Spreadsheet Editor automatically saves your file each 2 seconds when you work on it preventing your data loss in case of the unexpected program closing. If you co-edit the file in the Fast mode, the timer requests for updates 25 times a second and saves the changes if they have been made. When the file is being co-edited in the Strict mode, changes are automatically saved at 10-minute intervals. If you need, you can easily select the preferred co-editing mode or disable the Autosave feature on the Advanced Settings page. To save your current spreadsheet manually in the current format and location, click the Save icon in the left part of the editor header, or use the Ctrl+S key combination, or click the File tab of the top toolbar and select the Save option. Note: in the desktop version, to prevent data loss in case of the unexpected program closing you can turn on the Autorecover option at the Advanced Settings page. In the desktop version, you can save the spreadsheet with another name, in a new location or format, click the File tab of the top toolbar, select the Save as... option, choose one of the available formats depending on your needs: XLSX, ODS, CSV, PDF, PDFA. You can also choose the Spreadsheet template (XLTX or OTS) option. Downloading In the online version, you can download the resulting spreadsheet onto your computer hard disk drive, click the File tab of the top toolbar, select the Download as... option, choose one of the available formats depending on your needs: XLSX, PDF, ODS, CSV, XLTX, PDF/A, OTS. 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). Saving a copy In the online version, you can save a copy of the file on your portal, click the File tab of the top toolbar, select the Save Copy as... option, choose one of the available formats depending on your needs: XLSX, PDF, ODS, CSV, XLTX, PDF/A, OTS, select a location of the file on the portal and press Save. Printing To print out the current spreadsheet, click the Print icon in the left part of the editor header, or use the Ctrl+P key combination, or 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 tab of the top toolbar and follow Advanced Settings... >> Page Settings. Some of these settings (page Margins, Orientation, Size, Print Area as well as Scale to Fit) are also available at the Layout tab of the top toolbar. Here you can adjust the following parameters: Print Range - specify what to print: the whole Current Sheet, All Sheets of your spreadsheet or previously selected range of cells (Selection), If you previously set a constant print area but want to print the entire sheet, check the Ignore Print Area box. Sheet Settings - specify individual print settings for each separate sheet, if you have selected the All Sheets option in the Print Range drop-down list, Page Size - select one of the available sizes from the drop-down list, Page Orientation - choose the Portrait option if you wish to print vertically on the page, or use the Landscape option to print horizontally, Scaling - if you do not want some columns or rows to be printed on a second page, you can shrink sheet contents to fit it on one page selecting the corresponding option: Fit Sheet on One Page, Fit All Columns on One Page or Fit All Rows on One Page. Leave the Actual Size option to print the sheet without adjusting. If you choose the Custom Options item from the menu, the Scale Settings window opens: Fit To: allows to select the necessary number of pages you want to fit the printed worksheet to. Select the necessary number of pages from the Width and Height lists. Scale To: allows to enlarge or reduce the scale of the worksheet to fit printed pages by manually specifying the percentage of normal size. Margins - specify the distance between the worksheet data and the edges of the printed page changing the default sizes in the Top, Bottom, Left and Right fields, Print - specify the worksheet elements to print checking the corresponding boxes: Print Gridlines and Print Row and Column Headings. In the desktop version, the file will be printed directly. In the online version, 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. Some browsers (e.g. Chrome and Opera) support direct printing. Setting up a print area If you want to print a selected cell range only instead of an entire worksheet, you can use the Selection option from the Print Range drop-down list. When the workbook is saved, this setting is not saved, it is intended for single use. If a cell range should be printed frequently, you can set a constant print area on the worksheet. When the workbook is saved, the print area is also saved, it can be used when you open the spreadsheet next time. It's also possible to set several constant print areas on a sheet, in this case each area will be printed on a separate page. To set a print area: select the necessary cell range on the worksheet. To select multiple cell ranges, hold down the Ctrl key, switch to the Layout tab of the top toolbar, click the arrow next to the Print Area button and select the Set Print Area option. The created print area is saved when the workbook is saved. When you open the file next time, the specified print area will be printed. Note: when you create a print area, a Print_Area named range is also automatically created, which is displayed in the Name Manager. To highlight the borders of all the print areas on the current worksheet, you can click the arrow in the name box located to the left of the the formula bar and select the Print_Area name from the name list. To add cells to a print area: open the necessary worksheet where the print area is added, select the necessary cell range on the worksheet, switch to the Layout tab of the top toolbar, click the arrow next to the Print Area button and select the Add to Print Area option. A new print area will be added. Each print area will be printed on a separate page. To remove a print area: open the necessary worksheet where the print area is added, switch to the Layout tab of the top toolbar, click the arrow next to the Print Area button and select the Clear Print Area option. All the existing print areas on this sheet will be removed. Then the entire sheet will be printed." + "body": "Saving By default, the online Spreadsheet Editor automatically saves your file each 2 seconds when you are working on it preventing your data from loss if the program closes unexpectedly. If you co-edit the file in the Fast mode, the timer requests for updates 25 times a second and saves the changes if they have been made. When the file is being co-edited in the Strict mode, changes are automatically saved at 10-minute intervals. If you need, you can easily select the preferred co-editing mode or disable the Autosave feature on the Advanced Settings page. To save your current spreadsheet manually in the current format and location, click the Save icon on the left side of the editor header, or use the Ctrl+S key combination, or click the File tab of the top toolbar and select the Save option. Note: in the desktop version, to prevent data loss if the program closes unexpectedly, you can turn on the Autorecover option on the Advanced Settings page. In the desktop version, you can save the spreadsheet with another name, in a new location or format, click the File tab of the top toolbar, select the Save as... option, choose one of the available formats depending on your needs: XLSX, ODS, CSV, PDF, PDFA. You can also choose the Spreadsheet template (XLTX or OTS) option. Downloading In the online version, you can download the resulting spreadsheet onto your computer hard disk drive, click the File tab of the top toolbar, select the Download as... option, choose one of the available formats depending on your needs: XLSX, PDF, ODS, CSV, XLTX, PDF/A, OTS. 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). Saving a copy In the online version, you can save a copy of the file on your portal, click the File tab of the top toolbar, select the Save Copy as... option, choose one of the available formats depending on your needs: XLSX, PDF, ODS, CSV, XLTX, PDF/A, OTS, select a location of the file on the portal and press Save. Printing To print out the current spreadsheet, click the Print icon on the left side of the editor header, or use the Ctrl+P key combination, or click the File tab of the top toolbar and select the Print option. The Print Settings window will open, and you will be able to 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 tab of the top toolbar and follow Advanced Settings... >> Page Settings. Some of these settings (page Margins, Orientation, Size, Print Area as well as Scale to Fit) are also available on the Layout tab of the top toolbar. Here you can adjust the following parameters: Print Range - specify what to print: the whole Current Sheet, All Sheets of your spreadsheet or previously selected range of cells (Selection), If you previously set a constant print area but want to print the entire sheet, check the Ignore Print Area box. Sheet Settings - specify individual print settings for each separate sheet, if you have selected the All Sheets option in the Print Range drop-down list, Page Size - select one of the available sizes from the drop-down list, Page Orientation - choose the Portrait option if you wish to print vertically on the page, or use the Landscape option to print horizontally, Scaling - if you do not want some columns or rows to be printed on the second page, you can shrink sheet contents to fit it on one page by selecting the corresponding option: Fit Sheet on One Page, Fit All Columns on One Page or Fit All Rows on One Page. Leave the Actual Size option to print the sheet without adjusting. If you choose the Custom Options item from the menu, the Scale Settings window will open: Fit To: allows you to select the necessary number of pages you want to fit the printed worksheet to. Select the necessary number of pages from the Width and Height lists. Scale To: allows you to enlarge or reduce the scale of the worksheet to fit printed pages by manually specifying the percentage of normal size. Print titles - if you want to print row or column titles on every page, use Repeat rows at top or Repeat columns at left and select one of the available options from the drop-down list: repeat elements in the selected range, maintain frozen rows, repeat the first row/column only. Margins - specify the distance between the worksheet data and the edges of the printed page changing the default sizes in the Top, Bottom, Left and Right fields, Print - specify the worksheet elements to print by checking the corresponding boxes: Print Gridlines and Print Row and Column Headings. In the desktop version, the file will be printed directly. In the online version, 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. Some browsers (e.g. Chrome and Opera) support direct printing. Setting up the print area If you want to print the selected cell range only instead of the entire worksheet, you can use the Selection option from the Print Range drop-down list. When the workbook is saved, this setting is not saved, it is intended for single use. If a cell range should be printed frequently, you can set a constant print area on the worksheet. When the workbook is saved, the print area is also saved, it can be used when you open the spreadsheet next time. It's also possible to set several constant print areas in a sheet, in this case each area will be printed on a separate page. To set the print area: select the necessary cell range on the worksheet. To select multiple cell ranges, hold down the Ctrl key, switch to the Layout tab of the top toolbar, click the arrow next to the Print Area button and select the Set Print Area option. The created print area is saved when the workbook is saved. When you open the file next time, the specified print area will be printed. Note: when you create a print area, a Print_Area named range is also automatically created, which is displayed in the Name Manager. To highlight the borders of all the print areas on the current worksheet, you can click the arrow in the name box located to the left of the the formula bar and select the Print_Area name from the name list. To add cells to the print area: open the necessary worksheet where the print area is added, select the necessary cell range on the worksheet, switch to the Layout tab of the top toolbar, click the arrow next to the Print Area button and select the Add to Print Area option. A new print area will be added. Each print area will be printed on a separate page. To remove the print area: open the necessary worksheet where the print area is added, switch to the Layout tab of the top toolbar, click the arrow next to the Print Area button and select the Clear Print Area option. All the existing print areas in this sheet will be removed. Then the entire sheet will be printed." }, { "id": "UsageInstructions/ScaleToFit.htm", "title": "Scale a worksheet", - "body": "If you want to fit in an entire spreadsheet on one page to print, you may use the Scale to Fit function. This function helps scale data on a designated number of pages. To do so, follow these simple steps: on the top toolbar, enter the Layout tab and select the Scale to fit function, in the Height section select 1 page and set Width on Auto to print all sheets on one page. The scale value will be changed automatically. This value is displayed in the Scale section; you can also change the scale value manually. To do this, set the Height and Width parameters on Auto and use the «+» and «-» buttons to change the scale of the worksheet. The borders of the printing page will be covered with dashed lines on the spreadsheet, on the File tab, click Print, or use the keyboard shortcuts Ctrl + P and in the following window adjust the print settings. For example, if there are many columns on a sheet, it might be useful to change the Page Orientation to Portrait. Or print a pre-selected range of cells. Find out more about print settings in this article. Note: keep in mind, however, that the printout may be difficult to read because the editor shrinks the data to fit." + "body": "If you want to fit an entire spreadsheet on one page to print it, you can use the Scale to Fit function. This function helps scale data on the specified number of pages. To do so, follow these simple steps: on the top toolbar, enter the Layout tab and select the Scale to fit function, in the Height section select 1 page and set Width on Auto to print all sheets on one page. The scale value will be changed automatically. This value is displayed in the Scale section; you can also change the scale value manually. To do this, set the Height and Width parameters to Auto and use the «+» and «-» buttons to change the scale of the worksheet. The borders of the printing page will be covered with dashed lines in the spreadsheet, on the File tab, click Print, or use the keyboard shortcuts Ctrl + P and adjust the print settings in the opened window. For example, if there are many columns in a sheet, it might be useful to change the Page Orientation to Portrait. Or print the pre-selected cell range. Find out more about the print settings in this article. Note: keep in mind, however, that the printout may be difficult to read because the editor shrinks the data to fit." + }, + { + "id": "UsageInstructions/Slicers.htm", + "title": "Create slicers for formatted tables", + "body": "Create a new slicer Once you create a new formatted table, you can create slicers to quickly filter the data. To do that, select at least one cell within the formatted table with the mouse and click the Table settings icon on the right. click the Insert slicer option on the Table settings tab of the right sidebar. Alternatively, you can switch to the Insert tab of the top toolbar and click the Slicer button. The Insert Slicers window will be opened: check the required columns in the Insert Slicers window. click the OK button. A slicer will be added for each of the selected columns. If you add several slicers, they will overlap each other. Once the slicer is added, you can change its size and position as well as its settings. A slicer contains buttons that you can click to filter the formatted table. The buttons corresponding to empty cells are marked with the (blank) label. When you click a slicer button, other buttons will be unselected, and the corresponding column in the source table will be filtered to only display the selected item: If you have added several slicers, the changes made in one slicer can affect the items from another slicer. When one or more filters are applied to a slicer, items with no data can appear in a different slicer (with a lighter color): You can adjust the way to display items with no data in the slicer settings. To select multiple slicer buttons, use the Multi-Select icon in the upper right corner of the slicer or press Alt+S. Select necessary slicer buttons clicking them one by one. To clear the slicer filter, use the Clear Filter icon in the upper right corner of the slicer or press Alt+C. Edit slicers Some of the slicer settings can be changed using the Slicer settings tab of the right sidebar that will open if you select the slicer with the mouse. You can hide or display this tab by clicking the icon on the right. Change the slicer size and position The Width and Height options allow you to change the width and/or height of the slicer. If the Constant proportions button is clicked (in this case it looks like this ), the width and height will be changed together preserving the original slicer aspect ratio. The Position section allows you to change the Horizontal and/or Vertical slicer position. The Disable resizing or moving option allows you to prevent the slicer from being moved or resized. When this option is checked, the Width, Height, Position and Buttons options are disabled. Change the slicer layout and style The Buttons section allows you to specify the necessary number of Columns and set the Width and Height of the buttons. By default, a slicer contains one column. If your items contain short text, you can change the column number to 2 or more: If you increase the button width, the slicer width will change correspondingly. If you increase the button height, the scroll bar will be added to the slicer: The Style section allows you to choose one of the predefined slicer styles. Apply sorting and filtering parameters Ascending (A to Z) is used to sort the data in ascending order - from A to Z alphabetically or from the smallest to the largest number for numerical data. Descending (Z to A) is used to sort the data in descending order - from Z to A alphabetically or from the largest to the smallest for numerical data. The Hide items with no data option allows you to hide items with no data from the slicer. When this option is checked, the Visually indicate items with no data and Show items with no data last options are disabled. When the Hide items with no data option is unchecked, you can use the following options: The Visually indicate items with no data option allows you to display items with no data with different formatting (with a lighter color). If you uncheck this options, all items will be displayed with the same formatting. The Show items with no data last option allows you to display items with no data at the end of the list. If you uncheck this options, all items will be displayed in the same order like in the source table. Adjust advanced slicer settings To change the advanced slicer properties, use the Show advanced settings link on the right sidebar. The 'Slicer - Advanced Settings' window will open: The Style & Size tab contains the following parameters: The Header option allows you to change the slicer header. Uncheck the Display header option if you do not want to display the slicer header. The Style section allows you to choose one of the predefined slicer styles. The Width and Height options allow you to change the width and/or height of the slicer. If the Constant proportions button is clicked (in this case it looks like this ), the width and height will be changed together preserving the original slicer aspect ratio. The Buttons section allows you to specify the necessary number of Columns and set the Height of the buttons. The Sorting & Filtering tab contains the following parameters: Ascending (A to Z) is used to sort the data in ascending order - from A to Z alphabetically or from the smallest to the largest number for numerical data. Descending (Z to A) is used to sort the data in descending order - from Z to A alphabetically or from the largest to the smallest for numerical data. The Hide items with no data option allows you to hide items with no data from the slicer. When this option is checked, the Visually indicate items with no data and Show items with no data last options are disabled. When the Hide items with no data option is unchecked, you can use the following options: The Visually indicate items with no data option allows you to display items with no data with different formatting (with a lighter color). The Show items with no data last option allows you to display items with no data at the end of the list. The References tab contains the following parameters: The Source name option allows you to view the field name corresponding to the column header from the source data set. The Name to use in formulas option allows you to view the slicer name which is displayed in the Name manager. The Name option allows you to set a custom name for a slicer to make it more meaningful and understandable. The Cell Snapping tab contains the following parameters: Move and size with cells - this option allows you to snap the slicer to the cell behind it. If the cell moves (e.g. if you insert or delete some rows/columns), the slicer will be moved together with the cell. If you increase or decrease the width or height of the cell, the slicer will change its size as well. Move but don't size with cells - this option allows you to snap the slicer to the cell behind it preventing the slicer from being resized. If the cell moves, the slicer will be moved together with the cell, but if you change the cell size, the slicer dimensions remain unchanged. Don't move or size with cells - this option allows you to prevent the slicer from being moved or resized if the cell position or size was changed. The Alternative Text tab allows you to specify the Title and the Description which will be read to people with vision or cognitive impairments to help them better understand what information the slicer contains. Delete a slicer To delete a slicer, Select the slicer by clicking it. Press the Delete key." }, { "id": "UsageInstructions/SortData.htm", "title": "Sort and filter data", - "body": "Sort Data You can quickly sort your data in a spreadsheet using one of the available options: Ascending is used to sort your data in ascending order - A to Z alphabetically or smallest to largest for numerical data. Descending is used to sort your data in descending order - Z to A alphabetically or largest to smallest for numerical data. Note: the Sort options are accessible from both Home and Data tab. To sort your data, select a range of cells you wish to sort (you can select a single cell in a range to sort the entire range), click the Sort ascending icon situated at the Home or Data tab of the top toolbar to sort your data in ascending order, OR click the Sort descending icon situated at the Home or Data 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. You can also sort your data using the contextual menu options. Right-click the selected range of cells, select the Sort option from the menu and then select Ascending or Descending option from the submenu. It's also possible to sort the data by a color using the contextual menu: right-click a cell containing the color you want to sort your data by, select the Sort option from the menu, select the necessary option from the submenu: Selected Cell Color on top - to display the entries with the same cell background color on the top of the column, Selected Font Color on top - to display the entries with the same font color on the top of the column. Filter Data To display only the rows that meet certain criteria and hide other ones, make use of the Filter option. Note: the Filter options are accessible from both Home and Data tab. To enable a filter, Select a range of cells containing data to filter (you can select a single cell in a range to filter the entire range), Click the Filter icon situated at the Home or Data tab of the top toolbar. The drop-down arrow will appear in the first cell of each column of the selected cell range. It means that the filter is enabled. To apply a filter, Click the drop-down arrow . The Filter option list will open: Note: you can adjust the filter window size by dragging its right border to the right or to the left to display the data as convenient as possible. Adjust the filter parameters. You can proceed in one of the following three ways: select the data to display, filter data by certain criteria or filter data by color. Select the data to display Uncheck the boxes near the data you need to hide. For your convenience all the data wintin the Filter option list are sorted in ascending order. The number of unique values in the filtered range is displayed to the right of each value within the filter window. Note: the {Blanks} check box corresponds to the empty cells. It is available if the selected range of cells contains at least one empty cell. To facilitate the process make use of the search field on the top. Enter your query, entirely or partially, in the field - the values that include these characters will be displayed in the list below. The following two options will also be available: Select All Search Results - is checked by default. It allows to select all the values that correspond to your query in the list. Add current selection to filter - if you check this box, the selected values will not be hidden when you apply the filter. After you select all the necessary data, click the OK button in the Filter option list to apply the filter. Filter data by certain criteria Depending on the data contained in the selected column, you can choose either the Number filter or the Text filter option in the right part of the Filter options list, and then select one of the options from the submenu: For the Number filter the following options are available: Equals..., Does not equal..., Greater than..., Greater than or equal to..., Less than..., Less than or equal to..., Between, Top 10, Above Average, Below Average, Custom Filter.... For the Text filter the following options are available: Equals..., Does not equal..., Begins with..., Does not begin with..., Ends with..., Does not end with..., Contains..., Does not contain..., Custom Filter.... After you select one of the above options (apart from the Top 10 and Above/Below Average ones), the Custom Filter window will open. The corresponding criterion will be selected in the upper drop-down list. Enter the necessary value in the field on the right. To add one more criterion, use the And radiobutton if you need the data to satisfy both criteria or click the Or radiobutton if either or both criteria can be satisfied. Then select the second criterion from the lower drop-down list and enter the necessary value on the right. Click OK to apply the filter. If you choose the Custom Filter... option from the Number/Text filter option list, the first criterion is not selected automatically, you can set it yourself. If you choose the Top 10 option from the Number filter option list, a new window will open: The first drop-down list allows to choose if you wish to display the highest (Top) or lowest (Bottom) values. The second field allows to specify how many entries from the list or which percent of the overall entries number you want to display (you can enter a number from 1 to 500). The third drop-down list allows to set units of measure: Item or Percent. Once the necessary parameters are set, click OK to apply the filter. If you choose the Above/Below Average option from the Number filter option list, the filter will be applied right now. Filter data by color If the cell range you want to filter contains some cells you have formatted changing their background or font color (manually or using predefined styles), you can use one of the following options: Filter by cells color - to display only the entries with a certain cell background color and hide other ones, Filter by font color - to display only the entries with a certain cell font color and hide other ones. When you select the necessary option, a palette that contains colors used in the selected cell range will open. Choose one of the colors to apply the filter. The Filter button will appear in the first cell of the column. It means that the filter is applied. The number of filtered records will be displayed at the status bar (e.g. 25 of 80 records filtered). Note: when the filter is applied, the rows that are filtered out cannot be modified when autofilling, formatting, deleting the visible contents. Such actions affect the visible rows only, the rows that are hidden by the filter remain unchanged. When copying and pasting the filtered data, only visible rows can be copied and pasted. This is not equivalent to manually hidden rows which are affected by all similar actions. Sort filtered data You can set the sorting order of the data you have enabled or applied filter for. Click the drop-down arrow or the Filter button and select one of the options in the Filter option list: Sort Lowest to Highest - allows to sort your data in ascending order, displaying the lowest value on the top of the column, Sort Highest to Lowest - allows to sort your data in descending order, displaying the highest value on the top of the column, Sort by cells color - allows to select one of the colors and display the entries with the same cell background color on the top of the column, Sort by font color - allows to select one of the colors and display the entries with the same font color on the top of the column. The latter two options can be used if the cell range you want to sort contains some cells you have formatted changing their background or font color (manually or using predefined styles). The sorting direction will be indicated by an arrow in the filter buttons. if the data is sorted in ascending order, the drop-down arrow in the first cell of the column looks like this: and the Filter button looks the following way: . if the data is sorted in descending order, the drop-down arrow in the first cell of the column looks like this: and the Filter button looks the following way: . You can also quickly sort the data by a color using the contextual menu options: right-click a cell containing the color you want to sort your data by, select the Sort option from the menu, select the necessary option from the submenu: Selected Cell Color on top - to display the entries with the same cell background color on the top of the column, Selected Font Color on top - to display the entries with the same font color on the top of the column. Filter by the selected cell contents You can also quickly filter your data by the selected cell contents using the contextual menu options. Right-click a cell, select the Filter option from the menu and then select one of the available options: Filter by Selected cell's value - to display only the entries with the same value as the selected cell contains. Filter by cell's color - to display only the entries with the same cell background color as the selected cell has. Filter by font color - to display only the entries with the same cell font color as the selected cell has. Format as Table Template 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, select a range of cells you need to format, click the Format as table template icon situated at the Home tab of the top toolbar. select the template you need in the gallery, in the opened pop-up window check the range of cells to be formatted as a table, 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, click the OK button to apply the selected template. 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. It's also possible to insert a formatted table using the Table button at the Insert tab. In this case, the default table template is applied. 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. If you enter a new value in a cell below the table last row (if the table does not have the Total row) or in a cell to the right of the table last column, the formatted table will be automatically extended to include a new row or column. If you do not want to expand the table, click the button that appears and select the Undo table autoexpansion option. Once you undo this action, the Redo table autoexpansion option will be available in this menu. 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 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 - allows to display the header row. Total - adds the Summary row at the bottom of the table. Banded - enables the background color alternation for odd and even rows. Filter button - allows to display the drop-down arrows in the header row cells. This option is only available when the Header option is selected. First - emphasizes the leftmost column in the table with a special formatting. Last - emphasizes the rightmost column in the table with a special formatting. Banded - enables the background color alternation for odd and even columns. The Select From Template section allows you to choose one of the predefined tables styles. Each template combines certain formatting parameters, such as a background color, border style, row/column banding etc. Depending on the options checked in the Rows and/or Columns sections above, the templates set will be displayed differently. For example, if you've checked the Header option in the Rows section and the Banded option in the Columns section, the displayed templates list will include only templates with the header row and banded columns enabled: If you want to clear the current table style (background color, borders etc.) without removing the table itself, apply the None template from the template list: The Resize table section allows you to change the cell range the table formatting is applied to. Click the Select Data button - a new pop-up window will open. Change the link to the cell range in the entry field or select the necessary cell range on the worksheet with the mouse and click the OK button. The Rows & Columns section allows you to perform the following operations: Select a row, column, all columns data excluding the header row, or the entire table including the header row. Insert a new row above or below the selected one as well as a new column to the left or to the right of the selected one. 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. To change the advanced table properties, use the Show advanced settings link at the right sidebar. The table properties window will open: 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. Reapply Filter If the filtered data has been changed, you can refresh the filter to display an up-to-date result: click the Filter button in the first cell of the column that contains the filtered data, select the Reapply option in the Filter option list that opens. You can also right-click a cell within the column that contains the filtered data and select the Reapply option from the contextual menu. Clear Filter To clear the filter, click the Filter button in the first cell of the column that contains the filtered data, select the Clear option in the Filter option list that opens. You can also proceed in the following way: select the range of cells containing the filtered data, click the Clear filter icon situated at the Home or Data tab of the top toolbar. The filter will remain enabled, but all the applied filter parameters will be removed, and the Filter buttons in the first cells of the columns will change into the drop-down arrows . Remove Filter To remove the filter, select the range of cells containing the filtered data, click the Filter icon situated at the Home or Data tab of the top toolbar. The filter will be disabled, and the drop-down arrows will disappear from the first cells of the columns. Sort data by several columns/rows To sort data by several columns/rows you can create several sorting levels using the Custom Sort function. select a range of cells you wish to sort (you can select a single cell in a range to sort the entire range), click the Custom Sort icon situated at the Data tab of the top toolbar, the Sort window opens. Sorting by columns is selected by default. To change sort orientation (i.e. sort data by rows instead of columns) click the Options button on the top. The Sort Options window will open: check the My data has headers box, if necessary, choose the necessary Orientation: Sort top to bottom to sort data by columns or Sort left to right to sort data by rows, click OK to apply the changes and close the window. set the first sorting level in the Sort by field: in the Column / Row section, select the first column / row you want to sort, in the Sort on list choose one of the following options: Values, Cell color, or Font color, in the Order list, specify the necessary sorting order. The available options differ depending on the option chosen in the Sort on list: if the Values option is selected, choose the Ascending / Descending option if the cell range contains numbers or A to Z / Z to A option if the cell range contains text values, if the Cell color option is selected, choose the necessary cell color and select the Top / Below option for columns or Left / Right option for rows, if the Font color option is selected, choose the necessary font color and select the Top / Below option for columns or Left / Right option for rows. add the next sorting level by clicking the Add level button, select the second column / row you want to sort and specify other sorting parameters in the Then by field as described above. If necessary, add more levels in the same way. manage the added levels using the buttons at the top of the window: Delete level, Copy level or change the level order by using the arrow buttons Move the level up / Move the level down, click OK to apply the changes and close the window. The data will be sorted according to the specified sorting levels." + "body": "Sort Data You can quickly sort the data in a spreadsheet using one of the following options: Ascending is used to sort the data in ascending order - from A to Z alphabetically or from the smallest to the largest number for numerical data. Descending is used to sort the data in descending order - from Z to A alphabetically or from the largest to the smallest for numerical data. Note: the Sort options are accessible from both Home and Data tab. To sort the data, select a cell range you wish to sort (you can select a single cell in a range to sort the entire range), click the Sort ascending icon situated on the Home or Data tab of the top toolbar to sort the data in ascending order, OR click the Sort descending icon situated on the Home or Data tab of the top toolbar to sort the 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. You can also sort your data using the contextual menu options. Right-click the selected range of cells, select the Sort option from the menu and then select Ascending or Descending option from the submenu. It's also possible to sort the data by color using the contextual menu: right-click a cell containing the color by which you want to sort the data, select the Sort option from the menu, select the necessary option from the submenu: Selected Cell Color on top - to display the entries with the same cell background color on the top of the column, Selected Font Color on top - to display the entries with the same font color on the top of the column. Filter Data To display only the rows that meet certain criteria and hide other ones, make use of the Filter option. Note: the Filter options are accessible from both Home and Data tab. To enable a filter, Select a cell range containing data to filter (you can select a single cell in a range to filter the entire range), Click the Filter icon situated at the Home or Data tab of the top toolbar. The drop-down arrow will appear in the first cell of each column of the selected cell range. It means that the filter is enabled. To apply a filter, Click the drop-down arrow . The Filter option list will open: Note: you can adjust the size of the filter window by dragging its right border to the right or to the left to display the data as convenient as possible. Adjust the filter parameters. You can proceed in one of the following ways: select the data to display, filter the data by certain criteria or filter data by color. Select the data to display Uncheck the boxes near the data you need to hide. For your convenience, all the data within the Filter option list are sorted in ascending order. The number of unique values in the filtered range is displayed to the right of each value within the filter window. Note: the {Blanks} check box corresponds to the empty cells. It is available if the selected cell range contains at least one empty cell. To facilitate the process, make use of the search field on the top. Enter your query, entirely or partially, in the field - the values that include these characters will be displayed in the list below. The following two options will be also available: Select All Search Results - is checked by default. It allows selecting all the values that correspond to your query in the list. Add current selection to filter - if you check this box, the selected values will not be hidden when you apply the filter. After you select all the necessary data, click the OK button in the Filter option list to apply the filter. Filter data by certain criteria Depending on the data in the selected column, you can choose either the Number filter or the Text filter option on the right side of the Filter options list, and then select one of the options from the submenu: For the Number filter the following options are available: Equals..., Does not equal..., Greater than..., Greater than or equal to..., Less than..., Less than or equal to..., Between, Top 10, Above Average, Below Average, Custom Filter.... For the Text filter the following options are available: Equals..., Does not equal..., Begins with..., Does not begin with..., Ends with..., Does not end with..., Contains..., Does not contain..., Custom Filter.... After you select one of the above options (apart from Top 10 and Above/Below Average), the Custom Filter window will open. The corresponding criterion will be selected in the upper drop-down list. Enter the necessary value in the field on the right. To add one more criterion, use the And radiobutton if you need the data to satisfy both criteria or click the Or radiobutton if either or both criteria can be satisfied. Then select the second criterion from the lower drop-down list and enter the necessary value on the right. Click OK to apply the filter. If you choose the Custom Filter... option from the Number/Text filter option list, the first criterion is not selected automatically, you can set it yourself. If you choose the Top 10 option from the Number filter option list, a new window will open: The first drop-down list allows choosing if you wish to display the highest (Top) or the lowest (Bottom) values. The second field allows specifying how many entries from the list or which percent of the overall entries number you want to display (you can enter a number from 1 to 500). The third drop-down list allows setting the units of measure: Item or Percent. Once the necessary parameters are set, click OK to apply the filter. If you choose the Above/Below Average option from the Number filter option list, the filter will be applied right now. Filter data by color If the cell range you want to filter contains some cells you have formatted changing their background or font color (manually or using predefined styles), you can use one of the following options: Filter by cells color - to display only the entries with a certain cell background color and hide other ones, Filter by font color - to display only the entries with a certain cell font color and hide other ones. When you select the necessary option, a palette that contains colors used in the selected cell range will open. Choose one of the colors to apply the filter. The Filter button will appear in the first cell of the column. It means that the filter is applied. The number of filtered records will be displayed at the status bar (e.g. 25 of 80 records filtered). Note: when the filter is applied, the rows that are filtered out cannot be modified when autofilling, formatting, deleting the visible contents. Such actions affect the visible rows only, the rows that are hidden by the filter remain unchanged. When copying and pasting the filtered data, only visible rows can be copied and pasted. This is not equivalent to manually hidden rows which are affected by all similar actions. Sort filtered data You can set the sorting order of the data you have enabled or applied filter for. Click the drop-down arrow or the Filter button and select one of the options in the Filter option list: Sort Lowest to Highest - allows sorting the data in ascending order, displaying the lowest value on the top of the column, Sort Highest to Lowest - allows sorting the data in descending order, displaying the highest value on the top of the column, Sort by cells color - allows selecting one of the colors and displaying the entries with the same cell background color on the top of the column, Sort by font color - allows selecting one of the colors and displaying the entries with the same font color on the top of the column. The latter two options can be used if the cell range you want to sort contains some cells you have formatted changing their background or font color (manually or using predefined styles). The sorting direction will be indicated by an arrow in the filter buttons. if the data is sorted in ascending order, the drop-down arrow in the first cell of the column looks like this: and the Filter button looks the following way: . if the data is sorted in descending order, the drop-down arrow in the first cell of the column looks like this: and the Filter button looks the following way: . You can also quickly sort the data by color using the contextual menu options: right-click a cell containing the color by which you want to sort the data, select the Sort option from the menu, select the necessary option from the submenu: Selected Cell Color on top - to display the entries with the same cell background color on the top of the column, Selected Font Color on top - to display the entries with the same font color on the top of the column. Filter by the selected cell contents You can also quickly filter your data by the selected cell contents using the contextual menu options. Right-click a cell, select the Filter option from the menu and then select one of the available options: Filter by Selected cell's value - to display only the entries with the same value as the selected cell contains. Filter by cell's color - to display only the entries with the same cell background color as the selected cell has. Filter by font color - to display only the entries with the same cell font color as the selected cell has. Format as Table Template To facilitate your work with data, the Spreadsheet Editor allows you to apply a table template to a selected cell range automatically enabling the filter. To do that, select a range of cells you need to format, click the Format as table template icon situated on the Home tab of the top toolbar. select the required template in the gallery, in the opened pop-up window check the cell range to be formatted as a table, check the Title if you wish the table headers to be included in the selected cell range, otherwise the header row will be added at the top while the selected cell range will be moved one row down, click the OK button to apply the selected template. 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. To learn more on working with formatted tables, please refer to this page. Reapply Filter If the filtered data has been changed, you can refresh the filter to display an up-to-date result: click the Filter button in the first cell of the column that contains the filtered data, select the Reapply option in the opened Filter option list. You can also right-click a cell within the column that contains the filtered data and select the Reapply option from the contextual menu. Clear Filter To clear the filter, click the Filter button in the first cell of the column that contains the filtered data, select the Clear option in the opened Filter option list. You can also proceed in the following way: select the range of cells containing the filtered data, click the Clear filter icon situated on the Home or Data tab of the top toolbar. The filter will remain enabled, but all the applied filter parameters will be removed, and the Filter buttons in the first cells of the columns will change into the drop-down arrows . Remove Filter To remove the filter, select the range of cells containing the filtered data, click the Filter icon situated on the Home or Data tab of the top toolbar. The filter will be disabled, and the drop-down arrows will disappear from the first cells of the columns. Sort data by several columns/rows To sort data by several columns/rows you can create several sorting levels using the Custom Sort function. select a cell range you wish to sort (you can select a single cell to sort the entire range), click the Custom Sort icon situated on the Data tab of the top toolbar, the Sort window will appear. Sorting by columns is selected by default. To change the sorting orientation (i.e. sorting data by rows instead of columns), click the Options button on the top. The Sort Options window will open: check the My data has headers box, if necessary, choose the necessary Orientation: Sort top to bottom to sort data by columns or Sort left to right to sort data by rows, click OK to apply the changes and close the window. set the first sorting level in the Sort by field: in the Column / Row section, select the first column / row you want to sort, in the Sort on list choose one of the following options: Values, Cell color, or Font color, in the Order list, specify the necessary sorting order. The available options differ depending on the option chosen in the Sort on list: if the Values option is selected, choose the Ascending / Descending option if the cell range contains numbers or A to Z / Z to A option if the cell range contains text values, if the Cell color option is selected, choose the necessary cell color and select the Top / Below option for columns or Left / Right option for rows, if the Font color option is selected, choose the necessary font color and select the Top / Below option for columns or Left / Right option for rows. add the next sorting level by clicking the Add level button, select the second column / row you want to sort and specify other sorting parameters in the Then by field as described above. If necessary, add more levels in the same way. manage the added levels using the buttons at the top of the window: Delete level, Copy level or change the level order by using the arrow buttons Move the level up / Move the level down, click OK to apply the changes and close the window. The data will be sorted according to the specified sorting levels." }, { "id": "UsageInstructions/UndoRedo.htm", "title": "Undo/redo your actions", - "body": "To perform the undo/redo operations, use the corresponding icons available at the left part of the editor header: Undo – use the Undo icon to undo the last operation you performed. Redo – use the Redo icon to redo the last undone operation. The undo/redo operations can be also performed using the Keyboard Shortcuts. Note: when you co-edit a spreadsheet in the Fast mode, the possibility to Undo/Redo the last operation is not available." + "body": "To perform the undo/redo operations, use the corresponding icons on the left side of the editor header: Undo – use the Undo icon to undo the last operation you performed. Redo – use the Redo icon to redo the last undone operation. The undo/redo operations can be also performed using the Keyboard Shortcuts. Note: when you co-edit a spreadsheet in the Fast mode, the possibility to Undo/Redo the last operation is not available." }, { "id": "UsageInstructions/UseNamedRanges.htm", "title": "Use named ranges", - "body": "Names are meaningful notations that can be assigned for a cell or cell range and used to simplify working with formulas. Creating a formula, you can insert a name as its argument instead of using a reference to a cell range. For example, if you assign the Annual_Income name for a cell range, it will be possible to enter =SUM(Annual_Income) instead of =SUM(B1:B12). In such a form, formulas become clearer. This feature can also be useful in case a lot of formulas are referred to one and the same cell range. If the range address is changed, you can make the correction once using the Name Manager instead of editing all the formulas one by one. There are two types of names that can be used: Defined name – an arbitrary name that you can specify for a certain cell range. Defined names also include the names created automatically when setting up print areas. Table name – a default name that is automatically assigned to a new formatted table (Table1, Table2 etc.). You can edit such a name later. Names are also classified by Scope, i.e. the location where a name is recognized. A name can be scoped to the whole workbook (it will be recognized for any worksheet within this workbook) or to a separate worksheet (it will be recognized for the specified worksheet only). Each name must be unique within a single scope, the same names can be used within different scopes. Create new names To create a new defined name for a selection: Select a cell or cell range you want to assign a name to. 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 icon at the Home tab of the top toolbar and select the New name option from the menu. The New Name window will open: Enter the necessary Name in the text entry field. Note: a name cannot start from a number, contain spaces or punctuation marks. Underscores (_) are allowed. Case does not matter. Specify the name Scope. The Workbook scope is selected by default, but you can specify an individual worksheet selecting it from the list. Check the selected Data Range address. If necessary, you can change it. Click the Select Data button - the Select Data Range window will open. Change the link to the cell range in the entry field or select a new range on the worksheet with the mouse and click OK. Click OK to save the new name. To quickly create a new name for the selected range of cells, you can also enter the desired name into the name box located to the left of the the formula bar and press Enter. A name created in such a way is scoped to the Workbook. Manage names All the existing names can be accessed via the Name Manager. To open it: click the Named ranges 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 Name Manager option. The Name Manager window will open: For your convenience, you can filter the names selecting the name category you want to be displayed: All, Defined names, Table names, Names Scoped to Sheet or Names Scoped to Workbook. The names that belong to the selected category will be displayed in the list, the other names will be hidden. To change the sort order for the displayed list you can click on the Named Ranges or Scope titles in this window. To edit a name, select it in the list and click the Edit button. The Edit Name window will open: For a defined name, you can change the name and the data range it refers to. For a table name, you can change the name only. When all the necessary changes are made, click OK to apply them. To discard the changes, click Cancel. If the edited name is used in a formula, the formula will be automatically changed accordingly. To delete a name, select it in the list and click the Delete button. Note: if you delete the name that is used in a formula, the formula will no longer work (it will return the #NAME? error). You can also create a new name in the Name Manager window by clicking the New button. Use names when working with the spreadsheet To quickly navigate between cell ranges you can click the arrow in the name box and select the necessary name from the name list – the data range that corresponds to this name will be selected on the worksheet. Note: the name list displays the defined names and table names scoped to the current worksheet and to the whole workbook. To add a name as an argument of a formula: Place the insertion point where you need to add a name. Do one of the following: 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 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: Note: the Paste Name window displays the defined names and table names scoped to the current worksheet and to the whole workbook." + "body": "Names are meaningful notations that can be assigned to a cell or cell range and used to simplify working with formulas. Creating a formula, you can insert a name as its argument instead of using a reference to a cell range. For example, if you assign the Annual_Income name to a cell range, it will be possible to enter =SUM(Annual_Income) instead of =SUM(B1:B12). Thus, formulas become clearer. This feature can also be useful in case a lot of formulas are referred to one and the same cell range. If the range address is changed, you can make the correction once by using the Name Manager instead of editing all the formulas one by one. There are two types of names that can be used: Defined name – an arbitrary name that you can specify for a certain cell range. Defined names also include the names created automatically when setting up print areas. Table name – a default name that is automatically assigned to a new formatted table (Table1, Table2 etc.). You can edit this name later. If you have created a slicer for a formatted table, an automatically assigned slicer name will also be displayed in the Name Manager (Slicer_Column1, Slicer_Column2 etc. This name consists of the Slicer_ part and the field name corresponding to the column header from the source data set). You can edit this name later. Names are also classified by Scope, i.e. the location where a name is recognized. A name can be scoped to the whole workbook (it will be recognized for any worksheet within this workbook) or to a separate worksheet (it will be recognized for the specified worksheet only). Each name must be unique within a single scope, the same names can be used within different scopes. Create new names To create a new defined name for a selection: Select a cell or cell range you want to assign a name to. 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 icon on the Home tab of the top toolbar and select the Define Name option from the menu. or click the  Named ranges button on the Formula tab of the top toolbar and select the Name manager option from the menu. Choose option New in the opened window. The New Name window will open: Enter the necessary Name in the text entry field. Note: a name cannot start with a number, contain spaces or punctuation marks. Underscores (_) are allowed. Case does not matter. Specify the name Scope. The Workbook scope is selected by default, but you can specify an individual worksheet selecting it from the list. Check the selected Data Range address. If necessary, you can change it. Click the icon - the Select Data Range window will open. Change the link to the cell range in the entry field or select a new range on the worksheet with the mouse and click OK. Click OK to save the new name. To quickly create a new name for the selected cell range, you can also enter the desired name into the name box located to the left of the the formula bar and press Enter. The name created in such a way is scoped to the Workbook. Manage names All the existing names can be accessed via the Name Manager. To open it: click the Named ranges icon on 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 Name Manager option. The Name Manager window will open: For your convenience, you can filter the names selecting the name category you want to be displayed: All, Defined names, Table names, Names Scoped to Sheet or Names Scoped to Workbook. The names that belong to the selected category will be displayed in the list, the other names will be hidden. To change the sort order for the displayed list, you can click on the Named Ranges or Scope titles in this window. To edit a name, select it in the list and click the Edit button. The Edit Name window will open: For a defined name, you can change the name and the data range it refers to. For a table name, you can change the name only. When all the necessary changes are made, click OK to apply them. To discard the changes, click Cancel. If the edited name is used in a formula, the formula will be automatically changed accordingly. To delete a name, select it in the list and click the Delete button. Note: if you delete the name that is used in a formula, the formula will no longer work (it will return the #NAME? error). You can also create a new name in the Name Manager window by clicking the New button. Use names when working with the spreadsheet To quickly navigate through cell ranges, you can click the arrow in the name box and select the necessary name from the name list – the data range that corresponds to this name will be selected in the worksheet. Note: the name list displays the defined names and table names scoped to the current worksheet and to the whole workbook. To add a name as an argument of a formula: Place the insertion point where you need to add a name. Make one of the following steps: 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 defined name or table name from the list and insert it into the formula by double-clicking it or pressing the Tab key. or click the Named ranges icon on 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: Note: the Paste Name window displays the defined names and table names scoped to the current worksheet and to the whole workbook. To use a name as an internal hyperlink: Place the insertion point where you need to add a hyperlink. Go to the Insert tab and click the Hyperlink button. In the opened Hyperlink Settings window, select the Internal Data Range tab and define the sheet and the name. Click OK." }, { "id": "UsageInstructions/ViewDocInfo.htm", "title": "View file information", - "body": "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 spreadsheet information includes a number of the file properties which describe the spreadsheet. Some of these properties are updated automatically, and some of them can be edited. Location - the folder in the Documents module where the file is stored. Owner - the name of the user who have created the file. Uploaded - the date and time when the file has been created. These properties are available in the online version only. Title, Subject, Comment - these properties allow to simplify your documents classification. You can specify the necessary text in the properties fields. Last Modified - the date and time when the file was last modified. Last Modified By - the name of the user who have made the latest change in the spreadsheet if the spreadsheet has been shared and it can be edited by several users. Application - the application the spreadsheet was created with. Author - the person who have created the file. You can enter the necessary name in this field. Press Enter to add a new field that allows to specify one more author. If you changed the file properties, click the Apply button to apply the changes. 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 In the online version, you can view the information about permissions to the files stored in the cloud. Note: this option is not available for users with the Read Only permissions. To find out, who have rights to view or edit the spreadsheet, select the Access Rights... option at the left sidebar. You can also change currently selected access rights clicking the Change access rights button in the Persons who have rights section. To close the File pane and return to your spreadsheet, select the Close Menu option." + "body": "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 spreadsheet information includes a number of file properties which describe the spreadsheet. Some of these properties are updated automatically, and some of them can be edited. Location - the folder in the Documents module where the file is stored. Owner - the name of the user who has created the file. Uploaded - the date and time when the file has been created. These properties are available in the online version only. Title, Subject, Comment - these properties allow you to simplify the classification of your documents. You can specify the necessary text in the properties fields. Last Modified - the date and time when the file was last modified. Last Modified By - the name of the user who has made the latest change to the spreadsheet if the spreadsheet has been shared and it can be edited by several users. Application - the application the spreadsheet was created with. Author - the person who has created the file. You can enter the necessary name in this field. Press Enter to add a new field that allows you to specify one more author. If you changed the file properties, click the Apply button to apply the changes. Note: The 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 the opened window and click OK. Permission Information In the online version, you can view the information about permissions assigned to the files stored in the cloud. Note: this option is not available for users with the Read Only permissions. To find out who has the rights to view or edit the spreadsheet, select the Access Rights... option on the left sidebar. You can also change currently selected access rights by clicking the Change access rights button in the Persons who have rights section. To close the File pane and return to your spreadsheet, select the Close Menu option." } ] \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/cs.json b/apps/spreadsheeteditor/mobile/locale/cs.json index 9646faa1d..29a567bd1 100644 --- a/apps/spreadsheeteditor/mobile/locale/cs.json +++ b/apps/spreadsheeteditor/mobile/locale/cs.json @@ -1,13 +1,29 @@ { + "Common.Controllers.Collaboration.textAddReply": "Přidat odpověď", + "Common.Controllers.Collaboration.textCancel": "Zrušit", + "Common.Controllers.Collaboration.textDeleteComment": "Smazat komentář", + "Common.Controllers.Collaboration.textDeleteReply": "Smazat odpověď", + "Common.Controllers.Collaboration.textDone": "Hotovo", + "Common.Controllers.Collaboration.textEdit": "Upravit", "Common.Controllers.Collaboration.textEditUser": "Uživatelé, kteří soubor právě upravují:", + "Common.Controllers.Collaboration.textMessageDeleteComment": "Opravdu chcete smazat tento komentář?", + "Common.Controllers.Collaboration.textMessageDeleteReply": "Opravdu chcete smazat tuto odpověď?", + "Common.Controllers.Collaboration.textReopen": "Znovu otevřít", + "Common.Controllers.Collaboration.textResolve": "Vyřešit", + "Common.Controllers.Collaboration.textYes": "Ano", "Common.UI.ThemeColorPalette.textCustomColors": "Uživatelsky určené barvy", "Common.UI.ThemeColorPalette.textStandartColors": "Standardní barvy", "Common.UI.ThemeColorPalette.textThemeColors": "Barvy tématu", "Common.Utils.Metric.txtCm": "cm", "Common.Utils.Metric.txtPt": "pt", + "Common.Views.Collaboration.textAddReply": "Přidat odpověď", "Common.Views.Collaboration.textBack": "Zpět", + "Common.Views.Collaboration.textCancel": "Zrušit", "Common.Views.Collaboration.textCollaboration": "Spolupráce", + "Common.Views.Collaboration.textDone": "Hotovo", + "Common.Views.Collaboration.textEditReply": "Upravit odpověď", "Common.Views.Collaboration.textEditUsers": "Uživatelé", + "Common.Views.Collaboration.textEditСomment": "Upravit komentář", "Common.Views.Collaboration.textNoComments": "Tento list neobsahuje komentáře.", "Common.Views.Collaboration.textСomments": "Komentáře", "SSE.Controllers.AddChart.txtDiagramTitle": "Nadpis grafu", @@ -21,9 +37,14 @@ "SSE.Controllers.AddContainer.textShape": "Tvar", "SSE.Controllers.AddLink.textInvalidRange": "CHYBA! Nesprávný rozsah buňek", "SSE.Controllers.AddLink.txtNotUrl": "Toto pole by mělo obsahovat adresu URL ve formátu 'http://www.example.com'", + "SSE.Controllers.AddOther.textCancel": "Zrušit", + "SSE.Controllers.AddOther.textContinue": "Pokračovat", + "SSE.Controllers.AddOther.textDelete": "Smazat", + "SSE.Controllers.AddOther.textDeleteDraft": "Opravdu chcete návrh smazat?", "SSE.Controllers.AddOther.textEmptyImgUrl": "Musíte upřesnit URL obrázku.", "SSE.Controllers.AddOther.txtNotUrl": "Toto pole by mělo obsahovat adresu URL ve formátu 'http://www.example.com'", "SSE.Controllers.DocumentHolder.errorCopyCutPaste": "Akce kopírovat, vyjmout a vložit použitím kontextové nabídky budou prováděny pouze v rámci právě otevřeného souboru.", + "SSE.Controllers.DocumentHolder.menuAddComment": "Přidat komentář", "SSE.Controllers.DocumentHolder.menuAddLink": "Přidat odkaz", "SSE.Controllers.DocumentHolder.menuCell": "Buňka", "SSE.Controllers.DocumentHolder.menuCopy": "Kopírovat", @@ -40,6 +61,7 @@ "SSE.Controllers.DocumentHolder.menuUnfreezePanes": "Zrušit ukotvení příček", "SSE.Controllers.DocumentHolder.menuUnmerge": "Rozdělit", "SSE.Controllers.DocumentHolder.menuUnwrap": "Rozbalit", + "SSE.Controllers.DocumentHolder.menuViewComment": "Zobrazit komentář", "SSE.Controllers.DocumentHolder.menuWrap": "Zabalit", "SSE.Controllers.DocumentHolder.sheetCancel": "Zrušit", "SSE.Controllers.DocumentHolder.textCopyCutPasteActions": "Akce kopírovat, vyjmout a vložit", @@ -161,6 +183,7 @@ "SSE.Controllers.Main.errorMaxPoints": "Nejvyšší možný počet bodů za sebou v grafu je 4096.", "SSE.Controllers.Main.errorMoveRange": "Nelze změnit část sloučené buňky", "SSE.Controllers.Main.errorMultiCellFormula": "V tabulkách nejsou dovoleny vzorce pro pole s vícero buňkami", + "SSE.Controllers.Main.errorOpensource": "Použitím volné komunitní verze můžete otevřít dokumenty pouze pro čtení. Pro přístup k mobilním editorům je vyžadována komerční licence.", "SSE.Controllers.Main.errorOpenWarning": "Délka jednoho ze vzorců v souboru překročila
    povolený počet znaků, tudíž byl vzorec odstraněn.", "SSE.Controllers.Main.errorOperandExpected": "Zadaná funkce syntaxe není správná. Prosím, zkontrolujte zda nechybí jedna ze závorek - '(' or ')'.", "SSE.Controllers.Main.errorPasteMaxRange": "Kopírovaná oblast a oblast pro vložení nejsou odpovídající.
    Prosím, vyberte oblast se stejnou velikosti nebo klikněte na první buňku v řádku a vložte zkopírované buňky.", @@ -220,16 +243,20 @@ "SSE.Controllers.Main.textContactUs": "Obchodní oddělení", "SSE.Controllers.Main.textCustomLoader": "Mějte na paměti, že dle podmínek licence nejste oprávněni měnit načítač.
    Pro získání nabídky se obraťte na naše obchodní oddělení.", "SSE.Controllers.Main.textDone": "Hotovo", + "SSE.Controllers.Main.textHasMacros": "Soubor obsahuje automatická makra.
    Chcete spustit makra?", "SSE.Controllers.Main.textLoadingDocument": "Načítání sešitu", + "SSE.Controllers.Main.textNo": "Ne", "SSE.Controllers.Main.textNoLicenseTitle": "omezení na %1 spojení", "SSE.Controllers.Main.textOK": "OK", "SSE.Controllers.Main.textPaidFeature": "Placená funkce", "SSE.Controllers.Main.textPassword": "Heslo", "SSE.Controllers.Main.textPreloader": "Nahrávám...", + "SSE.Controllers.Main.textRemember": "Zapamatovat mou volbu", "SSE.Controllers.Main.textShape": "Tvar", "SSE.Controllers.Main.textStrict": "Statický réžim", "SSE.Controllers.Main.textTryUndoRedo": "Funkce zpět/zopakovat jsou vypnuty pro Automatický co-editační režim.
    Klikněte na tlačítko \"Statický režim\", abyste přešli do přísného co-editačního režimu a abyste upravovali soubor bez rušení ostatních uživatelů a odeslali vaše změny jen po jejich uložení. Pomocí Rozšířeného nastavení editoru můžete přepínat mezi co-editačními režimy.", "SSE.Controllers.Main.textUsername": "Uživatelské jméno ", + "SSE.Controllers.Main.textYes": "Ano", "SSE.Controllers.Main.titleLicenseExp": "Platnost licence vypršela", "SSE.Controllers.Main.titleServerVersion": "Editor byl aktualizován", "SSE.Controllers.Main.titleUpdateVersion": "Verze změněna", @@ -303,6 +330,7 @@ "SSE.Controllers.Statusbar.menuDelete": "Odstranit", "SSE.Controllers.Statusbar.menuDuplicate": "Duplikát", "SSE.Controllers.Statusbar.menuHide": "Skrýt", + "SSE.Controllers.Statusbar.menuMore": "Více", "SSE.Controllers.Statusbar.menuRename": "Přejmenovat", "SSE.Controllers.Statusbar.menuUnhide": "Odkrýt", "SSE.Controllers.Statusbar.notcriticalErrorTitle": "Varování", @@ -339,8 +367,11 @@ "SSE.Views.AddLink.textSelectedRange": "Vybraný rozsah", "SSE.Views.AddLink.textSheet": "List", "SSE.Views.AddLink.textTip": "Nápověda", + "SSE.Views.AddOther.textAddComment": "Přidat komentář", "SSE.Views.AddOther.textAddress": "Adresa", "SSE.Views.AddOther.textBack": "Zpět", + "SSE.Views.AddOther.textComment": "Komentář", + "SSE.Views.AddOther.textDone": "Hotovo", "SSE.Views.AddOther.textFilter": "Filtr", "SSE.Views.AddOther.textFromLibrary": "Obrázek z knihovny", "SSE.Views.AddOther.textFromURL": "Obrázek z adresy URL", @@ -359,6 +390,8 @@ "SSE.Views.EditCell.textAlignRight": "Zarovnat vpravo", "SSE.Views.EditCell.textAlignTop": "Zarovnat nahoru", "SSE.Views.EditCell.textAllBorders": "Všechny ohraničení", + "SSE.Views.EditCell.textAngleClockwise": "Otočit ve směru hodinových ručiček", + "SSE.Views.EditCell.textAngleCounterclockwise": "Otočit proti směru hodinových ručiček", "SSE.Views.EditCell.textBack": "Zpět", "SSE.Views.EditCell.textBorderStyle": "Styl ohraničení", "SSE.Views.EditCell.textBottomBorder": "Dolní ohraničení", @@ -378,6 +411,7 @@ "SSE.Views.EditCell.textFonts": "Fonty", "SSE.Views.EditCell.textFormat": "Formát", "SSE.Views.EditCell.textGeneral": "Obecný", + "SSE.Views.EditCell.textHorizontalText": "Vodorovný text", "SSE.Views.EditCell.textInBorders": "Vložit ohraničení", "SSE.Views.EditCell.textInHorBorder": "Vnitřní vodorovné ohraničení", "SSE.Views.EditCell.textInteger": "Celé číslo", @@ -390,16 +424,20 @@ "SSE.Views.EditCell.textPercentage": "Procento", "SSE.Views.EditCell.textPound": "Libra", "SSE.Views.EditCell.textRightBorder": "Pravé ohraničení", + "SSE.Views.EditCell.textRotateTextDown": "Otočit text dolů", + "SSE.Views.EditCell.textRotateTextUp": "Otočit text nahoru", "SSE.Views.EditCell.textRouble": "Rubl", "SSE.Views.EditCell.textScientific": "Vědecké", "SSE.Views.EditCell.textSize": "Velikost", "SSE.Views.EditCell.textText": "Text", "SSE.Views.EditCell.textTextColor": "Barva textu", "SSE.Views.EditCell.textTextFormat": "Formát textu", + "SSE.Views.EditCell.textTextOrientation": "Orientace textu", "SSE.Views.EditCell.textThick": "Silný", "SSE.Views.EditCell.textThin": "Tenký", "SSE.Views.EditCell.textTime": "Čas", "SSE.Views.EditCell.textTopBorder": "Horní ohraničení", + "SSE.Views.EditCell.textVerticalText": "Svislý text", "SSE.Views.EditCell.textWrapText": "Zalamovat text", "SSE.Views.EditCell.textYen": "Jen", "SSE.Views.EditChart.textAddCustomColor": "Přidat uživatelsky určenou barvu", @@ -546,6 +584,9 @@ "SSE.Views.Settings.textCreateDate": "Datum vytvoření", "SSE.Views.Settings.textCustom": "Uživatelsky určené", "SSE.Views.Settings.textCustomSize": "Uživatelsky určená velikost", + "SSE.Views.Settings.textDisableAll": "Vypnout vše", + "SSE.Views.Settings.textDisableAllMacrosWithNotification": "Vypnout všechna makra s oznámením", + "SSE.Views.Settings.textDisableAllMacrosWithoutNotification": "Vypnout všechna makra bez oznámení", "SSE.Views.Settings.textDisplayComments": "Komentáře", "SSE.Views.Settings.textDisplayResolvedComments": "Vyřešené komentáře", "SSE.Views.Settings.textDocInfo": "Info tabulky", @@ -555,6 +596,8 @@ "SSE.Views.Settings.textDownloadAs": "Stáhnout jako...", "SSE.Views.Settings.textEditDoc": "Upravit dokument", "SSE.Views.Settings.textEmail": "E-mail", + "SSE.Views.Settings.textEnableAll": "Zapnout vše", + "SSE.Views.Settings.textEnableAllMacrosWithoutNotification": "Zapnout všechna makra bez notifikace", "SSE.Views.Settings.textExample": "Ukázka", "SSE.Views.Settings.textFind": "Najít", "SSE.Views.Settings.textFindAndReplace": "Najít a nahradit", @@ -569,6 +612,7 @@ "SSE.Views.Settings.textLastModifiedBy": "Naposledy upravil(a)", "SSE.Views.Settings.textLeft": "Vlevo", "SSE.Views.Settings.textLoading": "Nahrávám...", + "SSE.Views.Settings.textMacrosSettings": "Nastavení maker", "SSE.Views.Settings.textMargins": "Okraje", "SSE.Views.Settings.textOrientation": "Orientace", "SSE.Views.Settings.textOwner": "Vlastník", @@ -580,6 +624,7 @@ "SSE.Views.Settings.textRegionalSettings": "Místní nastavení", "SSE.Views.Settings.textRight": "Vpravo", "SSE.Views.Settings.textSettings": "Nastavení", + "SSE.Views.Settings.textShowNotification": "Zobrazit oznámení", "SSE.Views.Settings.textSpreadsheetFormats": "Formáty sešitu", "SSE.Views.Settings.textSpreadsheetSettings": "Nastavení listu", "SSE.Views.Settings.textSubject": "Předmět", diff --git a/apps/spreadsheeteditor/mobile/locale/de.json b/apps/spreadsheeteditor/mobile/locale/de.json index b9734b1a5..e6ef84ba3 100644 --- a/apps/spreadsheeteditor/mobile/locale/de.json +++ b/apps/spreadsheeteditor/mobile/locale/de.json @@ -183,6 +183,7 @@ "SSE.Controllers.Main.errorMaxPoints": "Die maximale Punktzahl pro eine Tabelle beträgt 4096 Punkte.", "SSE.Controllers.Main.errorMoveRange": "Es ist unmöglich, den Teil einer verbundenen Zelle zu ändern", "SSE.Controllers.Main.errorMultiCellFormula": "Matrixformeln mit mehreren Zellen sind in Tabellen nicht zulässig.", + "SSE.Controllers.Main.errorOpensource": "Sie können in der kostenlosen Community-Version nur Dokumente zu betrachten öffnen. Eine kommerzielle Lizenz ist für die Nutzung der mobilen Web-Editoren erforderlich.", "SSE.Controllers.Main.errorOpenWarning": "Die Länge einer der Formeln in der Datei hat
    die zugelassene Anzahl von Zeichen überschritten und sie wurde entfernt.", "SSE.Controllers.Main.errorOperandExpected": "Die Syntax der eingegeben Funktion ist nicht korrekt. Bitte überprüfen Sie, ob eine der Klammern - '(' oder ')' fehlt.", "SSE.Controllers.Main.errorPasteMaxRange": "Zeilen Kopieren und Einfügen stimmen nicht überein.
    Bitte wählen Sie einen Bereich der gleichen Größe oder klicken auf die erste Zelle der Zeile, um die kopierten Zellen einzufügen.", @@ -244,8 +245,8 @@ "SSE.Controllers.Main.textDone": "Fertig", "SSE.Controllers.Main.textHasMacros": "Diese Datei beinhaltet Makros.
    Möchten Sie Makros ausführen?", "SSE.Controllers.Main.textLoadingDocument": "Tabelle wird geladen", - "SSE.Controllers.Main.textNoLicenseTitle": "Lizenzlimit erreicht", "SSE.Controllers.Main.textNo": "Nein", + "SSE.Controllers.Main.textNoLicenseTitle": "Lizenzlimit erreicht", "SSE.Controllers.Main.textOK": "OK", "SSE.Controllers.Main.textPaidFeature": "Kostenpflichtige Funktion", "SSE.Controllers.Main.textPassword": "Kennwort", @@ -310,8 +311,8 @@ "SSE.Controllers.Main.uploadImageTextText": "Bild wird hochgeladen...", "SSE.Controllers.Main.uploadImageTitleText": "Bild wird hochgeladen", "SSE.Controllers.Main.waitText": "Bitte warten...", - "SSE.Controllers.Main.warnLicenseExp": "Ihre Lizenz ist abgelaufen.
    Bitte aktualisieren Sie Ihre Lizenz und laden Sie die Seite neu.", "SSE.Controllers.Main.warnLicenseExceeded": "Sie haben das Limit für gleichzeitige Verbindungen in %1-Editoren erreicht. Dieses Dokument wird nur zum Anzeigen geöffnet.
    Bitte wenden Sie sich an Ihren Administrator, um weitere Informationen zu erhalten.", + "SSE.Controllers.Main.warnLicenseExp": "Ihre Lizenz ist abgelaufen.
    Bitte aktualisieren Sie Ihre Lizenz und laden Sie die Seite neu.", "SSE.Controllers.Main.warnLicenseUsersExceeded": "Sie haben das Benutzerlimit für %1-Editoren erreicht. Bitte wenden Sie sich an Ihren Administrator, um weitere Informationen zu erhalten.", "SSE.Controllers.Main.warnNoLicense": "Sie haben das Limit für gleichzeitige Verbindungen in %1-Editoren erreicht. Dieses Dokument wird nur zum Anzeigen geöffnet.
    Bitte kontaktieren Sie unser Verkaufsteam, um persönliche Upgrade-Bedingungen zu erhalten.", "SSE.Controllers.Main.warnNoLicenseUsers": "Sie haben das Benutzerlimit für %1-Editoren erreicht. Bitte kontaktieren Sie unser Verkaufsteam, um persönliche Upgrade-Bedingungen zu erhalten.", diff --git a/apps/spreadsheeteditor/mobile/locale/en.json b/apps/spreadsheeteditor/mobile/locale/en.json index b4f7b9260..a34890180 100644 --- a/apps/spreadsheeteditor/mobile/locale/en.json +++ b/apps/spreadsheeteditor/mobile/locale/en.json @@ -171,9 +171,10 @@ "SSE.Controllers.Main.errorFillRange": "Could not fill the selected range of cells.
    All the merged cells need to be the same size.", "SSE.Controllers.Main.errorFormulaName": "An error in the entered formula.
    Incorrect formula name is used.", "SSE.Controllers.Main.errorFormulaParsing": "Internal error while parsing the formula.", + "SSE.Controllers.Main.errorFrmlMaxLength": "The length of your formula exceeds the limit of 8192 characters.
    Please edit it and try again.", + "SSE.Controllers.Main.errorFrmlMaxReference": "You cannot enter this formula because it has too many values,
    cell references, and/or names.", "SSE.Controllers.Main.errorFrmlMaxTextLength": "Text values in formulas are limited to 255 characters.
    Use the CONCATENATE function or concatenation operator (&).", "SSE.Controllers.Main.errorFrmlWrongReferences": "The function refers to a sheet that does not exist.
    Please check the data and try again.", - "SSE.Controllers.Main.errorFrmlMaxReference": "You cannot enter this formula because it has too many values,
    cell references, and/or names.", "SSE.Controllers.Main.errorInvalidRef": "Enter a correct name for the selection or a valid reference to go to.", "SSE.Controllers.Main.errorKeyEncrypt": "Unknown key descriptor", "SSE.Controllers.Main.errorKeyExpire": "Key descriptor expired", @@ -184,7 +185,8 @@ "SSE.Controllers.Main.errorMaxPoints": "The maximum number of points in series per chart is 4096.", "SSE.Controllers.Main.errorMoveRange": "Cannot change part of a merged cell", "SSE.Controllers.Main.errorMultiCellFormula": "Multi-cell array formulas are not allowed in tables.", - "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.errorOpensource": "Using the free Community version you can open documents for viewing only. To access mobile web editors, a commercial license is required.", + "SSE.Controllers.Main.errorOpenWarning": "One of the file formulas exceeds the limit of 8192 characters.
    The formula was removed.", "SSE.Controllers.Main.errorOperandExpected": "The entered function syntax is not correct. Please check if you are missing one of the parentheses - '(' or ')'.", "SSE.Controllers.Main.errorPasteMaxRange": "The copy and paste area do 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": "Unfortunately, it is not possible to print more than 1500 pages at once in the current program version.
    This restriction will be removed in the upcoming releases.", @@ -199,13 +201,11 @@ "SSE.Controllers.Main.errorUnexpectedGuid": "External error.
    Unexpected GUID. Please contact support in case the error persists.", "SSE.Controllers.Main.errorUpdateVersion": "The file version has been changed. The page will be reloaded.", "SSE.Controllers.Main.errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
    Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.", - "SSE.Controllers.Main.errorOpensource": "Using the free Community version you can open documents for viewing only. To access mobile web editors, a commercial license is required.", "SSE.Controllers.Main.errorUserDrop": "The file cannot be accessed right now.", "SSE.Controllers.Main.errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", "SSE.Controllers.Main.errorViewerDisconnect": "Connection is lost. You can still view the document,
    but will not be able to download it until the connection is restored and page is reloaded.", "SSE.Controllers.Main.errorWrongBracketsCount": "An error in the entered formula.
    Wrong number of brackets is used.", "SSE.Controllers.Main.errorWrongOperator": "An error in the entered formula. Wrong operator is used.
    Please correct the error.", - "SSE.Controllers.Main.errorFrmlMaxLength": "You cannot add this formula as its length exceeded the allowed number of characters.
    Please edit it and try again.", "SSE.Controllers.Main.leavePageText": "You have unsaved changes in this document. Click 'Stay on this Page' to await the autosave of the document. Click 'Leave this Page' to discard all the unsaved changes.", "SSE.Controllers.Main.loadFontsTextText": "Loading data...", "SSE.Controllers.Main.loadFontsTitleText": "Loading Data", @@ -247,8 +247,8 @@ "SSE.Controllers.Main.textDone": "Done", "SSE.Controllers.Main.textHasMacros": "The file contains automatic macros.
    Do you want to run macros?", "SSE.Controllers.Main.textLoadingDocument": "Loading spreadsheet", - "SSE.Controllers.Main.textNoLicenseTitle": "License limit reached", "SSE.Controllers.Main.textNo": "No", + "SSE.Controllers.Main.textNoLicenseTitle": "License limit reached", "SSE.Controllers.Main.textOK": "OK", "SSE.Controllers.Main.textPaidFeature": "Paid feature", "SSE.Controllers.Main.textPassword": "Password", @@ -313,11 +313,11 @@ "SSE.Controllers.Main.uploadImageTextText": "Uploading image...", "SSE.Controllers.Main.uploadImageTitleText": "Uploading Image", "SSE.Controllers.Main.waitText": "Please, wait...", + "SSE.Controllers.Main.warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only.
    Contact your administrator to learn more.", "SSE.Controllers.Main.warnLicenseExp": "Your license has expired.
    Please update your license and refresh the page.", + "SSE.Controllers.Main.warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", "SSE.Controllers.Main.warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only.
    Contact %1 sales team for personal upgrade terms.", "SSE.Controllers.Main.warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", - "SSE.Controllers.Main.warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only.
    Contact your administrator to learn more.", - "SSE.Controllers.Main.warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", "SSE.Controllers.Main.warnProcessRightsChange": "You have been denied the right to edit the file.", "SSE.Controllers.Search.textNoTextFound": "Text not found", "SSE.Controllers.Search.textReplaceAll": "Replace All", diff --git a/apps/spreadsheeteditor/mobile/locale/es.json b/apps/spreadsheeteditor/mobile/locale/es.json index 9da0e9c55..b8a2e3656 100644 --- a/apps/spreadsheeteditor/mobile/locale/es.json +++ b/apps/spreadsheeteditor/mobile/locale/es.json @@ -1,13 +1,29 @@ { + "Common.Controllers.Collaboration.textAddReply": "Añadir respuesta", + "Common.Controllers.Collaboration.textCancel": "Cancelar", + "Common.Controllers.Collaboration.textDeleteComment": "Eliminar comentario", + "Common.Controllers.Collaboration.textDeleteReply": "Eliminar respuesta", + "Common.Controllers.Collaboration.textDone": "Listo", + "Common.Controllers.Collaboration.textEdit": "Editar", "Common.Controllers.Collaboration.textEditUser": "El documento está siendo editado por múltiples usuarios.", + "Common.Controllers.Collaboration.textMessageDeleteComment": "¿Realmente quiere eliminar este comentario?", + "Common.Controllers.Collaboration.textMessageDeleteReply": "¿Realmente quiere eliminar esta respuesta?", + "Common.Controllers.Collaboration.textReopen": "Volver a abrir", + "Common.Controllers.Collaboration.textResolve": "Resolver", + "Common.Controllers.Collaboration.textYes": "Sí", "Common.UI.ThemeColorPalette.textCustomColors": "Colores personalizados", "Common.UI.ThemeColorPalette.textStandartColors": "Colores estándar", "Common.UI.ThemeColorPalette.textThemeColors": "Colores de tema", "Common.Utils.Metric.txtCm": "cm", "Common.Utils.Metric.txtPt": "pt", + "Common.Views.Collaboration.textAddReply": "Añadir respuesta", "Common.Views.Collaboration.textBack": "Atrás", + "Common.Views.Collaboration.textCancel": "Cancelar", "Common.Views.Collaboration.textCollaboration": "Colaboración", + "Common.Views.Collaboration.textDone": "Listo", + "Common.Views.Collaboration.textEditReply": "Editar respuesta", "Common.Views.Collaboration.textEditUsers": "Usuarios", + "Common.Views.Collaboration.textEditСomment": "Editar comentario", "Common.Views.Collaboration.textNoComments": "Esta hoja de cálculo no contiene comentarios", "Common.Views.Collaboration.textСomments": "Comentarios", "SSE.Controllers.AddChart.txtDiagramTitle": "Título de gráfico", @@ -21,9 +37,14 @@ "SSE.Controllers.AddContainer.textShape": "Forma", "SSE.Controllers.AddLink.textInvalidRange": "¡ERROR!Rango de celdas inválido", "SSE.Controllers.AddLink.txtNotUrl": "Este campo debe ser una dirección URL en el formato 'http://www.example.com'", + "SSE.Controllers.AddOther.textCancel": "Cancelar", + "SSE.Controllers.AddOther.textContinue": "Continuar", + "SSE.Controllers.AddOther.textDelete": "Eliminar", + "SSE.Controllers.AddOther.textDeleteDraft": "¿Realmente quiere eliminar el borrador?", "SSE.Controllers.AddOther.textEmptyImgUrl": "Hay que especificar URL de imagen", "SSE.Controllers.AddOther.txtNotUrl": "Este campo debe ser una dirección URL en el formato 'http://www.example.com'", "SSE.Controllers.DocumentHolder.errorCopyCutPaste": "Las acciones de copiar, cortar y pegar utilizando el menú contextual se realizarán sólo dentro del archivo actual.", + "SSE.Controllers.DocumentHolder.menuAddComment": "Agregar comentario", "SSE.Controllers.DocumentHolder.menuAddLink": "Añadir enlace ", "SSE.Controllers.DocumentHolder.menuCell": "Celda", "SSE.Controllers.DocumentHolder.menuCopy": "Copiar ", @@ -40,6 +61,7 @@ "SSE.Controllers.DocumentHolder.menuUnfreezePanes": "Movilizar paneles", "SSE.Controllers.DocumentHolder.menuUnmerge": "Anular combinación", "SSE.Controllers.DocumentHolder.menuUnwrap": "Desenvolver", + "SSE.Controllers.DocumentHolder.menuViewComment": "Ver comentario", "SSE.Controllers.DocumentHolder.menuWrap": "Envoltura", "SSE.Controllers.DocumentHolder.sheetCancel": "Cancelar", "SSE.Controllers.DocumentHolder.textCopyCutPasteActions": "Acciones de Copiar, Cortar y Pegar", @@ -149,6 +171,8 @@ "SSE.Controllers.Main.errorFillRange": "No se puede rellenar el rango de celdas seleccionado.
    Todas las celdas seleccionadas deben tener el mismo tamaño.", "SSE.Controllers.Main.errorFormulaName": "Hay un error en la fórmula introducida.
    Se usa un nombre de fórmula incorrecto.", "SSE.Controllers.Main.errorFormulaParsing": "Error interno mientras analizando la fórmula.", + "SSE.Controllers.Main.errorFrmlMaxLength": "La longitud de su fórmula excede el límite de 8192 carácteres.
    Por favor, edítela e intente de nuevo.", + "SSE.Controllers.Main.errorFrmlMaxReference": "No puede introducir esta fórmula porque tiene demasiados valores,
    referencias de celda, y/o nombres.", "SSE.Controllers.Main.errorFrmlMaxTextLength": "Valores de texto en fórmulas son limitados al número de caracteres - 255.
    Use la función CONCATENAR u operador de concatenación (&).", "SSE.Controllers.Main.errorFrmlWrongReferences": "La función se refiere a una hoja que no existe.
    Por favor, verifique los datos e inténtelo de nuevo.", "SSE.Controllers.Main.errorInvalidRef": "Introducir un nombre correcto para la selección o una referencia válida para pasar.", @@ -161,7 +185,8 @@ "SSE.Controllers.Main.errorMaxPoints": "El número máximo de", "SSE.Controllers.Main.errorMoveRange": "No se puede cambiar parte de una celda combinada", "SSE.Controllers.Main.errorMultiCellFormula": "Fórmulas de matriz con celdas múltiples no están permitidas en tablas.", - "SSE.Controllers.Main.errorOpenWarning": "La longitud de una de las fórmulas en el archivo superó
    el número de caracteres permitidos y se quitó.", + "SSE.Controllers.Main.errorOpensource": "Usando la gratuita versión Community, puede abrir los documentos sólo para verlos. Para acceder a los editores web móviles se requiere una licencia comercial.", + "SSE.Controllers.Main.errorOpenWarning": "Una de las fórmulas del archivo excede el límite de 8192 caracteres.
    La fórmula fue eliminada.", "SSE.Controllers.Main.errorOperandExpected": "La función de sintaxis introducida no es correcta. Le recomendamos verificar si no le hace falta uno del paréntesis - '(' o ')'", "SSE.Controllers.Main.errorPasteMaxRange": "El área de copiar y pegar no coincide.
    Por favor, seleccione una zona con el mismo tamaño o haga clic en la primera celda de una fila para pegar las celdas copiadas.", "SSE.Controllers.Main.errorPrintMaxPagesCount": "Por desgracia, no es posible imprimir más de 1500 páginas a la vez en la versión actual.
    Esta restricción será extraida en próximos lanzamientos.", @@ -220,16 +245,20 @@ "SSE.Controllers.Main.textContactUs": "Equipo de ventas", "SSE.Controllers.Main.textCustomLoader": "Note, por favor, que según los términos de la licencia Usted no tiene derecho a cambiar el cargador.
    Por favor, póngase en contacto con nuestro Departamento de Ventas para obtener una cotización.", "SSE.Controllers.Main.textDone": "Listo", + "SSE.Controllers.Main.textHasMacros": "El archivo contiene macros automáticas.
    ¿Quiere ejecutar macros?", "SSE.Controllers.Main.textLoadingDocument": "Cargando hoja de cálculo", - "SSE.Controllers.Main.textNoLicenseTitle": "%1 limitación de conexiones", + "SSE.Controllers.Main.textNo": "No", + "SSE.Controllers.Main.textNoLicenseTitle": "Se ha alcanzado el límite de licencias", "SSE.Controllers.Main.textOK": "OK", "SSE.Controllers.Main.textPaidFeature": "Función de pago", "SSE.Controllers.Main.textPassword": "Contraseña", "SSE.Controllers.Main.textPreloader": "Cargando...", + "SSE.Controllers.Main.textRemember": "Recordar mi elección", "SSE.Controllers.Main.textShape": "Forma", "SSE.Controllers.Main.textStrict": "Modo estricto", "SSE.Controllers.Main.textTryUndoRedo": "Las funciones Deshacer/Rehacer son desactivadas para el modo de co-edición Rápido.
    Haga Clic en el botón \"Modo estricto\" para cambiar al modo de co-edición al Estricto para editar el archivo sin la interferencia de otros usuarios y enviar sus cambios sólo después de guardarlos. Se puede cambiar entre los modos de co-edición usando los ajustes avanzados de edición.", "SSE.Controllers.Main.textUsername": "Nombre de usuario", + "SSE.Controllers.Main.textYes": "Sí", "SSE.Controllers.Main.titleLicenseExp": "Licencia ha expirado", "SSE.Controllers.Main.titleServerVersion": "Editor ha sido actualizado", "SSE.Controllers.Main.titleUpdateVersion": "Versión se ha cambiado", @@ -284,11 +313,11 @@ "SSE.Controllers.Main.uploadImageTextText": "Subiendo imagen...", "SSE.Controllers.Main.uploadImageTitleText": "Subiendo imagen", "SSE.Controllers.Main.waitText": "Por favor, espere...", - "SSE.Controllers.Main.warnLicenseExceeded": "Se ha excedido el número permitido de las conexiones simultáneas al servidor de documentos, y el documento se abrirá para sólo lectura.
    Por favor, contacte con su administrador para recibir más información.", + "SSE.Controllers.Main.warnLicenseExceeded": "Usted ha alcanzado el límite de conexiones simultáneas con %1 editores. Este documento se abrirá sólo para su visualización.
    Por favor, contacte con su administrador para recibir más información.", "SSE.Controllers.Main.warnLicenseExp": "Su licencia ha expirado.
    Por favor, actualice su licencia y después recargue la página.", - "SSE.Controllers.Main.warnLicenseUsersExceeded": "Se ha excedido el número permitido de los usuarios simultáneos, y el documento se abrirá para sólo lectura.
    Por favor, contacte con su administrador para recibir más información.", - "SSE.Controllers.Main.warnNoLicense": "Esta versión de los editores de %1 tiene ciertas limitaciones para el número de conexiones simultáneas al servidor de documentos.
    Si se requiere más, por favor, considere comprar una licencia comercial.", - "SSE.Controllers.Main.warnNoLicenseUsers": "Esta versión de editores %1 tiene ciertas limitaciones para usuarios simultáneos.
    Si necesita más, por favor, considere comprar una licencia comercial.", + "SSE.Controllers.Main.warnLicenseUsersExceeded": "Usted ha alcanzado el límite de usuarios para los editores de %1. Por favor, contacte con su administrador para recibir más información.", + "SSE.Controllers.Main.warnNoLicense": "Usted ha alcanzado el límite de conexiones simultáneas con %1 editores. Este documento se abrirá sólo para su visualización.
    Contacte con el equipo de ventas de %1 para conocer los términos de actualización personal.", + "SSE.Controllers.Main.warnNoLicenseUsers": "Usted ha alcanzado el límite de usuarios para los editores de %1.
    Contacte con el equipo de ventas de %1 para conocer los términos de actualización personal.", "SSE.Controllers.Main.warnProcessRightsChange": "El derecho de edición del archivo es denegado.", "SSE.Controllers.Search.textNoTextFound": "Texto no encontrado", "SSE.Controllers.Search.textReplaceAll": "Reemplazar todo", @@ -303,6 +332,7 @@ "SSE.Controllers.Statusbar.menuDelete": "Eliminar", "SSE.Controllers.Statusbar.menuDuplicate": "Duplicar", "SSE.Controllers.Statusbar.menuHide": "Ocultar", + "SSE.Controllers.Statusbar.menuMore": "Más", "SSE.Controllers.Statusbar.menuRename": "Renombrar", "SSE.Controllers.Statusbar.menuUnhide": "Mostrar", "SSE.Controllers.Statusbar.notcriticalErrorTitle": "Aviso", @@ -339,8 +369,11 @@ "SSE.Views.AddLink.textSelectedRange": "Rango seleccionado", "SSE.Views.AddLink.textSheet": "Hoja", "SSE.Views.AddLink.textTip": "Consejos de pantalla", + "SSE.Views.AddOther.textAddComment": "Añadir comentario", "SSE.Views.AddOther.textAddress": "Dirección", "SSE.Views.AddOther.textBack": "Atrás", + "SSE.Views.AddOther.textComment": "Comentario", + "SSE.Views.AddOther.textDone": "Listo", "SSE.Views.AddOther.textFilter": "Filtro", "SSE.Views.AddOther.textFromLibrary": "Imagen de biblioteca", "SSE.Views.AddOther.textFromURL": "Imagen de URL", @@ -359,6 +392,8 @@ "SSE.Views.EditCell.textAlignRight": "Alinear a la derecha", "SSE.Views.EditCell.textAlignTop": "Alinear en la parte superior", "SSE.Views.EditCell.textAllBorders": "Todos los bordes", + "SSE.Views.EditCell.textAngleClockwise": "Ángulo descendente", + "SSE.Views.EditCell.textAngleCounterclockwise": "Ángulo ascendente", "SSE.Views.EditCell.textBack": "Atrás", "SSE.Views.EditCell.textBorderStyle": "Estilo de borde", "SSE.Views.EditCell.textBottomBorder": "Borde inferior", @@ -378,6 +413,7 @@ "SSE.Views.EditCell.textFonts": "Fuentes", "SSE.Views.EditCell.textFormat": "Formato", "SSE.Views.EditCell.textGeneral": "General", + "SSE.Views.EditCell.textHorizontalText": "Texto horizontal", "SSE.Views.EditCell.textInBorders": "Bordes internos", "SSE.Views.EditCell.textInHorBorder": "Borde horizontal interno", "SSE.Views.EditCell.textInteger": "Entero", @@ -390,16 +426,20 @@ "SSE.Views.EditCell.textPercentage": "Porcentaje", "SSE.Views.EditCell.textPound": "Libra", "SSE.Views.EditCell.textRightBorder": "Borde derecho", + "SSE.Views.EditCell.textRotateTextDown": "Girar texto hacia abajo", + "SSE.Views.EditCell.textRotateTextUp": "Girar texto hacia arriba", "SSE.Views.EditCell.textRouble": "Rublo", "SSE.Views.EditCell.textScientific": "Scientífico", "SSE.Views.EditCell.textSize": "Tamaño", "SSE.Views.EditCell.textText": "Texto", "SSE.Views.EditCell.textTextColor": "Color de texto", "SSE.Views.EditCell.textTextFormat": "Formato de texto", + "SSE.Views.EditCell.textTextOrientation": "Orientación del texto", "SSE.Views.EditCell.textThick": "Grueso", "SSE.Views.EditCell.textThin": "Fino", "SSE.Views.EditCell.textTime": "Hora", "SSE.Views.EditCell.textTopBorder": "Borde superior", + "SSE.Views.EditCell.textVerticalText": "Texto vertical", "SSE.Views.EditCell.textWrapText": "Ajustar texto", "SSE.Views.EditCell.textYen": "Yen", "SSE.Views.EditChart.textAddCustomColor": "Añadir un Color Personalizado", @@ -546,6 +586,9 @@ "SSE.Views.Settings.textCreateDate": "Fecha de creación", "SSE.Views.Settings.textCustom": "Personalizado", "SSE.Views.Settings.textCustomSize": "Tamaño personalizado", + "SSE.Views.Settings.textDisableAll": "Deshabilitar todo", + "SSE.Views.Settings.textDisableAllMacrosWithNotification": "Deshabilitar todas las macros con notificación", + "SSE.Views.Settings.textDisableAllMacrosWithoutNotification": "Deshabilitar todas las macros sin notificación", "SSE.Views.Settings.textDisplayComments": "Comentarios", "SSE.Views.Settings.textDisplayResolvedComments": "Comentarios resueltos", "SSE.Views.Settings.textDocInfo": "Información sobre hoja de cálculo", @@ -555,6 +598,8 @@ "SSE.Views.Settings.textDownloadAs": "Descargar como...", "SSE.Views.Settings.textEditDoc": "Editar documento", "SSE.Views.Settings.textEmail": "email", + "SSE.Views.Settings.textEnableAll": "Habilitar todo", + "SSE.Views.Settings.textEnableAllMacrosWithoutNotification": "Habilitar todas las macros sin notificación ", "SSE.Views.Settings.textExample": "Ejemplo", "SSE.Views.Settings.textFind": "Buscar", "SSE.Views.Settings.textFindAndReplace": "Buscar y reemplazar", @@ -569,6 +614,7 @@ "SSE.Views.Settings.textLastModifiedBy": "Modificado por última vez por", "SSE.Views.Settings.textLeft": "A la izquierda", "SSE.Views.Settings.textLoading": "Cargando...", + "SSE.Views.Settings.textMacrosSettings": "Ajustes de macros", "SSE.Views.Settings.textMargins": "Márgenes", "SSE.Views.Settings.textOrientation": "Orientación", "SSE.Views.Settings.textOwner": "Propietario", @@ -580,6 +626,7 @@ "SSE.Views.Settings.textRegionalSettings": "Configuración regional", "SSE.Views.Settings.textRight": "A la derecha", "SSE.Views.Settings.textSettings": "Ajustes", + "SSE.Views.Settings.textShowNotification": "Mostrar notificación", "SSE.Views.Settings.textSpreadsheetFormats": "Formatos de hoja de cálculo", "SSE.Views.Settings.textSpreadsheetSettings": "Ajustes de hoja de cálculo", "SSE.Views.Settings.textSubject": "Asunto", diff --git a/apps/spreadsheeteditor/mobile/locale/fr.json b/apps/spreadsheeteditor/mobile/locale/fr.json index b546bdf37..ccb064d31 100644 --- a/apps/spreadsheeteditor/mobile/locale/fr.json +++ b/apps/spreadsheeteditor/mobile/locale/fr.json @@ -1,8 +1,8 @@ { "Common.Controllers.Collaboration.textAddReply": "Ajouter réponse", "Common.Controllers.Collaboration.textCancel": "Annuler", - "Common.Controllers.Collaboration.textDeleteComment": "Supprimer le commentaire", - "Common.Controllers.Collaboration.textDeleteReply": "Supprimer la réponse", + "Common.Controllers.Collaboration.textDeleteComment": "Supprimer commentaire", + "Common.Controllers.Collaboration.textDeleteReply": "Supprimer réponse", "Common.Controllers.Collaboration.textDone": "Effectué", "Common.Controllers.Collaboration.textEdit": "Editer", "Common.Controllers.Collaboration.textEditUser": "Le document est en cours de modification par plusieurs utilisateurs.", @@ -35,7 +35,7 @@ "SSE.Controllers.AddContainer.textImage": "Image", "SSE.Controllers.AddContainer.textOther": "Autre", "SSE.Controllers.AddContainer.textShape": "Forme", - "SSE.Controllers.AddLink.textInvalidRange": "ERREUR! La plage de cellules n'est pas valide", + "SSE.Controllers.AddLink.textInvalidRange": "ERREUR ! Plage de cellules invalide", "SSE.Controllers.AddLink.txtNotUrl": "Ce champ doit être une URL au format 'http://www.example.com'", "SSE.Controllers.AddOther.textCancel": "Annuler", "SSE.Controllers.AddOther.textContinue": "Continuer", @@ -43,15 +43,15 @@ "SSE.Controllers.AddOther.textDeleteDraft": "Voulez-vous vraiment supprimer le brouillon ?", "SSE.Controllers.AddOther.textEmptyImgUrl": "Spécifiez l'URL de l'image", "SSE.Controllers.AddOther.txtNotUrl": "Ce champ doit être une URL au format 'http://www.example.com'", - "SSE.Controllers.DocumentHolder.errorCopyCutPaste": "Les actions de Copier, Couper et Coller du menu contextuel seront appliquées seulement au fichier actuel.", + "SSE.Controllers.DocumentHolder.errorCopyCutPaste": "Actions de copie, de coupe et de collage du menu contextuel seront appliquées seulement dans le fichier actuel.", "SSE.Controllers.DocumentHolder.menuAddComment": "Ajouter commentaire", "SSE.Controllers.DocumentHolder.menuAddLink": "Ajouter lien", "SSE.Controllers.DocumentHolder.menuCell": "Cellule", "SSE.Controllers.DocumentHolder.menuCopy": "Copier", "SSE.Controllers.DocumentHolder.menuCut": "Couper", "SSE.Controllers.DocumentHolder.menuDelete": "Supprimer", - "SSE.Controllers.DocumentHolder.menuEdit": "Modifier", - "SSE.Controllers.DocumentHolder.menuFreezePanes": "Figer les volets", + "SSE.Controllers.DocumentHolder.menuEdit": "Editer", + "SSE.Controllers.DocumentHolder.menuFreezePanes": "Figer volets", "SSE.Controllers.DocumentHolder.menuHide": "Masquer", "SSE.Controllers.DocumentHolder.menuMerge": "Fusionner", "SSE.Controllers.DocumentHolder.menuMore": "Plus", @@ -64,24 +64,24 @@ "SSE.Controllers.DocumentHolder.menuViewComment": "Voir commentaire", "SSE.Controllers.DocumentHolder.menuWrap": "Renvoi à la ligne", "SSE.Controllers.DocumentHolder.sheetCancel": "Annuler", - "SSE.Controllers.DocumentHolder.textCopyCutPasteActions": "Fonctions de Copier, Couper et Coller", + "SSE.Controllers.DocumentHolder.textCopyCutPasteActions": "Actions copier, couper et coller", "SSE.Controllers.DocumentHolder.textDoNotShowAgain": "Ne plus afficher", "SSE.Controllers.DocumentHolder.warnMergeLostData": "Cette opération détruira les données des cellules sélectionnées.
    Сontinuer ?", "SSE.Controllers.EditCell.textAuto": "Auto", "SSE.Controllers.EditCell.textFonts": "Polices", "SSE.Controllers.EditCell.textPt": "pt", - "SSE.Controllers.EditChart.errorMaxRows": "ERREUR ! Le nombre maximal de séries de données par graphique est 255.", - "SSE.Controllers.EditChart.errorStockChart": "L'ordre des lignes est incorrect. Pour créer un graphique boursier organisez vos données sur la feuille de calcul dans l'ordre suivant:
    cours à l'ouverture, cours maximal, cours minimal, cours à la clôture.", + "SSE.Controllers.EditChart.errorMaxRows": "ERREUR ! Le nombre maximal de séries de données par diagramme est 255.", + "SSE.Controllers.EditChart.errorStockChart": "Ordre lignes incorrect. Pour créer un diagramme boursier, positionnez vos données sur la feuille de calcul dans l'ordre suivant :
    cours à l'ouverture, cours maximal, cours minimal, cours à la clôture.", "SSE.Controllers.EditChart.textAuto": "Auto", "SSE.Controllers.EditChart.textBetweenTickMarks": "Entre graduations", "SSE.Controllers.EditChart.textBillions": "Milliards", "SSE.Controllers.EditChart.textBottom": "En bas", "SSE.Controllers.EditChart.textCenter": "Centre", - "SSE.Controllers.EditChart.textCross": "Sur l'axe", + "SSE.Controllers.EditChart.textCross": "Croisement", "SSE.Controllers.EditChart.textCustom": "Personnalisé", - "SSE.Controllers.EditChart.textFit": "Ajuster en largeur", + "SSE.Controllers.EditChart.textFit": "Ajuster au largeur", "SSE.Controllers.EditChart.textFixed": "Fixe", - "SSE.Controllers.EditChart.textHigh": "En haut", + "SSE.Controllers.EditChart.textHigh": "Haut", "SSE.Controllers.EditChart.textHorizontal": "Horizontal", "SSE.Controllers.EditChart.textHundredMil": "100 000 000", "SSE.Controllers.EditChart.textHundreds": "Centaines", @@ -140,18 +140,18 @@ "SSE.Controllers.Main.convertationTimeoutText": "Délai d'attente de la conversion dépassé ", "SSE.Controllers.Main.criticalErrorExtText": "Appuyez sur OK pour revenir à la liste des documents.", "SSE.Controllers.Main.criticalErrorTitle": "Erreur", - "SSE.Controllers.Main.downloadErrorText": "Échec du téléchargement.", + "SSE.Controllers.Main.downloadErrorText": "Téléchargement echoué.", "SSE.Controllers.Main.downloadMergeText": "Téléchargement en cours...", "SSE.Controllers.Main.downloadMergeTitle": "Téléchargement en cours", - "SSE.Controllers.Main.downloadTextText": "Téléchargement de la feuille de calcul en cours...", - "SSE.Controllers.Main.downloadTitleText": "Téléchargement de la feuille de calcul", + "SSE.Controllers.Main.downloadTextText": "Téléchargement feuille de calcul en cours...", + "SSE.Controllers.Main.downloadTitleText": "Téléchargement feuille de calcul en cours", "SSE.Controllers.Main.errorAccessDeny": "Vous tentez d'exéсuter une action pour laquelle vous ne disposez pas des droits.
    Veuillez contacter l'administrateur de Document Server.", "SSE.Controllers.Main.errorArgsRange": "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.", "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.errorBadImageUrl": "URL image incorrecte", "SSE.Controllers.Main.errorChangeArray": "Vous ne pouvez pas modifier des parties d'une tableau. ", "SSE.Controllers.Main.errorCoAuthoringDisconnect": "La connexion au serveur perdue. Désolé, vous ne pouvez plus modifier le document.", "SSE.Controllers.Main.errorConnectToServer": "Impossible d'enregistrer le document. Veuillez vérifier vos paramètres de connexion ou contactez l'administrateur.
    Lorsque vous cliquez sur le bouton 'OK', vous serez invité à télécharger le document.", @@ -159,30 +159,32 @@ "SSE.Controllers.Main.errorCountArg": "Erreur dans la formule entrée.
    Le nombre d'arguments utilisé est incorrect.", "SSE.Controllers.Main.errorCountArgExceed": "Erreur dans la formule entrée.
    Le nombre d'arguments a été dépassé.", "SSE.Controllers.Main.errorCreateDefName": "Actuellement, des plages nommées existantes ne peuvent pas être modifiées et les nouvelles ne peuvent pas être créées,
    car certaines d'entre eux sont en cours de modification.", - "SSE.Controllers.Main.errorDatabaseConnection": "Erreur externe.
    Erreur de connexion à la base de données. Si l'erreur persiste, veillez contactez l'assistance technique.", - "SSE.Controllers.Main.errorDataEncrypted": "Les modifications chiffrées ont été reçues, elle ne peuvent pas être déchiffrées.", + "SSE.Controllers.Main.errorDatabaseConnection": "Erreur externe.
    Erreur de connexion base de données. Contactez l'assistance technique si le problême persiste.", + "SSE.Controllers.Main.errorDataEncrypted": "Modifications encodées reçues, mais ne peuvent pas être déchiffrées.", "SSE.Controllers.Main.errorDataRange": "Plage de données incorrecte.", - "SSE.Controllers.Main.errorDefaultMessage": "Code d'erreur: %1", + "SSE.Controllers.Main.errorDefaultMessage": "Code d'erreur : %1", "SSE.Controllers.Main.errorEditingDownloadas": "Une erreure s'est produite lors du travail sur le document.
    Utilisez l'option « Télécharger » pour enregistrer une copie de sauvegarde sur le disque dur de votre système.", "SSE.Controllers.Main.errorFilePassProtect": "Le fichier est protégé par le mot de passe et ne peut pas être ouvert.", - "SSE.Controllers.Main.errorFileRequest": "Erreur externe.
    Erreur de demande du fichier. Si l'erreur persiste, veillez contactez l'assistance technique.", + "SSE.Controllers.Main.errorFileRequest": "Erreur externe.
    Erreur de demande de fichier. Contactez l'assistance technique si le problème persiste.", "SSE.Controllers.Main.errorFileSizeExceed": "La taille du fichier dépasse les limites établies sur votre serveur.
    Veuillez contacter votre administrateur de Document Server pour obtenir plus d'information. ", - "SSE.Controllers.Main.errorFileVKey": "Erreur externe.
    Clé de sécurité incorrecte. Si l'erreur persiste, veillez contactez l'assistance technique.", - "SSE.Controllers.Main.errorFillRange": "Il est impossible de remplir la plage de cellules sélectionnée.
    Toutes les cellules unies doivent être de la même taille.", + "SSE.Controllers.Main.errorFileVKey": "Erreur externe.
    Clé de sécurité incorrecte. Contactez l'assistance technique si le problème persiste.", + "SSE.Controllers.Main.errorFillRange": "Impossible de remplir la plage de cellules sélectionnée.
    Toutes les cellules fusionnées doivent être de la même taille.", "SSE.Controllers.Main.errorFormulaName": "Erreur dans la formule entrée.
    Le nom de formule utilisé est incorrect.", "SSE.Controllers.Main.errorFormulaParsing": "Une erreur interne lors de l'analyse de la formule.", + "SSE.Controllers.Main.errorFrmlMaxLength": "Vous ne pouvez pas ajouter cette formule car sa longueur dépasse le nombre de caractères autorisés
    Merci de modifier la formule et d'essayer à nouveau. ", "SSE.Controllers.Main.errorFrmlMaxTextLength": "Les valeurs de texte dans les formules sont limitées à 255 caractères.
    Utilisez la fonction CONCATENER ou l’opérateur de concaténation (&).", "SSE.Controllers.Main.errorFrmlWrongReferences": "La fonction fait référence à une feuille qui n'existe pas.
    Veuillez vérifier les données et réessayez.", - "SSE.Controllers.Main.errorInvalidRef": "Entrez un nom correct pour la sélection ou une référence valable pour aller à.", + "SSE.Controllers.Main.errorInvalidRef": "Entrez un nom correct pour la sélection ou une référence valable à laquelle aller.", "SSE.Controllers.Main.errorKeyEncrypt": "Descripteur de clés inconnu", "SSE.Controllers.Main.errorKeyExpire": "Descripteur de clés expiré", "SSE.Controllers.Main.errorLockedAll": "L'opération ne peut pas être faite car la feuille a été verrouillée par un autre utilisateur.", "SSE.Controllers.Main.errorLockedWorksheetRename": "La feuille ne peut pas être renommée pour l'instant puisque elle est renommée par un autre utilisateur", - "SSE.Controllers.Main.errorMailMergeLoadFile": "Échec du chargement", + "SSE.Controllers.Main.errorMailMergeLoadFile": "Échec du chargement. Merci de choisir un autre fichier", "SSE.Controllers.Main.errorMailMergeSaveFile": "Fusion a échoué.", "SSE.Controllers.Main.errorMaxPoints": "Le nombre maximal de points par graphique est 4096.", "SSE.Controllers.Main.errorMoveRange": "Impossible de modifier une partie d'une cellule fusionnée", "SSE.Controllers.Main.errorMultiCellFormula": "Formules de tableau plusieurs cellules ne sont pas autorisées dans les classeurs.", + "SSE.Controllers.Main.errorOpensource": "L'utilisation la version gratuite \"Community version\" permet uniquement la visualisation des documents. Pour avoir accès à l'édition sur mobile, une version commerciale est nécessaire.", "SSE.Controllers.Main.errorOpenWarning": "La longueur de l'une des formules dans le fichier a dépassé
    le nombre de caractères autorisé, et la formule a été supprimée.", "SSE.Controllers.Main.errorOperandExpected": "La syntaxe de la saisie est incorrecte. Veuillez vérifier la présence de l'une des parenthèses - '(' ou ')'.", "SSE.Controllers.Main.errorPasteMaxRange": "La zone de copie ne correspond pas à la zone de collage.
    Sélectionnez une zone avec la même taille ou cliquez sur la première cellule d'une ligne pour coller les cellules sélectionnées.", @@ -192,10 +194,10 @@ "SSE.Controllers.Main.errorSessionAbsolute": "Votre session a expiré. Veuillez recharger la page.", "SSE.Controllers.Main.errorSessionIdle": "Le document n'a pas été modifié depuis trop longtemps. Veuillez recharger la page.", "SSE.Controllers.Main.errorSessionToken": "La connexion au serveur a été interrompue. Veuillez recharger la page.", - "SSE.Controllers.Main.errorStockChart": "L'ordre des lignes est incorrect. Pour créer un graphique boursier organisez vos données sur la feuille de calcul dans l'ordre suivant:
    cours à l'ouverture, cours maximal, cours minimal, cours à la clôture.", + "SSE.Controllers.Main.errorStockChart": "Ordre lignes incorrect. Pour créer un diagramme boursier, positionnez les données sur la feuille de calcul dans l'ordre suivant :
    cours à l'ouverture, cours maximal, cours minimal, cours à la clôture.", "SSE.Controllers.Main.errorToken": "Le jeton de sécurité du document n’était pas formé correctement.
    Veuillez contacter l'administrateur de Document Server.", "SSE.Controllers.Main.errorTokenExpire": "Le jeton de sécurité du document a expiré.
    Veuillez contactez l'administrateur de Document Server.", - "SSE.Controllers.Main.errorUnexpectedGuid": "Erreur externe.
    GUID non prévue. Si l'erreur persiste, veillez contactez l'assistance technique.", + "SSE.Controllers.Main.errorUnexpectedGuid": "Erreur externe.
    GUID imprévue. Contactez l'assistance technique si le problème persiste.", "SSE.Controllers.Main.errorUpdateVersion": "La version du fichier a été changée. La page sera rechargée.", "SSE.Controllers.Main.errorUpdateVersionOnDisconnect": "La connexion internet a été rétablie, la version du fichier est modifiée.
    Avant de continuer, téléchargez le fichier ou copiez le contenu pour vous assurer que tous les changements ont été enregistrés, et rechargez la page.", "SSE.Controllers.Main.errorUserDrop": "Impossible d'accéder au fichier.", @@ -241,11 +243,11 @@ "SSE.Controllers.Main.textClose": "Fermer", "SSE.Controllers.Main.textContactUs": "Contacter l'équipe de ventes", "SSE.Controllers.Main.textCustomLoader": "Veuillez noter que conformément aux clauses du contrat de licence vous n'êtes pas autorisé à changer le chargeur.
    Veuillez contacter notre Service des Ventes pour obtenir le devis.", - "SSE.Controllers.Main.textDone": "Terminé", + "SSE.Controllers.Main.textDone": "Effectué", "SSE.Controllers.Main.textHasMacros": "Le fichier contient des macros automatiques.
    Voulez-vous exécuter les macros ?", "SSE.Controllers.Main.textLoadingDocument": "Chargement feuille de calcul", - "SSE.Controllers.Main.textNoLicenseTitle": "La limite de la licence est atteinte", "SSE.Controllers.Main.textNo": "Non", + "SSE.Controllers.Main.textNoLicenseTitle": "La limite de la licence est atteinte", "SSE.Controllers.Main.textOK": "OK", "SSE.Controllers.Main.textPaidFeature": "Fonction payée", "SSE.Controllers.Main.textPassword": "Mot de passe", @@ -257,7 +259,7 @@ "SSE.Controllers.Main.textUsername": "Nom d'utilisateur", "SSE.Controllers.Main.textYes": "Oui", "SSE.Controllers.Main.titleLicenseExp": "Licence expirée", - "SSE.Controllers.Main.titleServerVersion": "L'éditeur est mis à jour", + "SSE.Controllers.Main.titleServerVersion": "Editeur mis à jour", "SSE.Controllers.Main.titleUpdateVersion": "La version a été modifiée", "SSE.Controllers.Main.txtAccent": "Accent", "SSE.Controllers.Main.txtArt": "Entrez votre texte", @@ -268,7 +270,7 @@ "SSE.Controllers.Main.txtDelimiter": "Délimiteur", "SSE.Controllers.Main.txtDiagramTitle": "Titre du diagramme", "SSE.Controllers.Main.txtEditingMode": "Définition du mode d'édition...", - "SSE.Controllers.Main.txtEncoding": "Codage ", + "SSE.Controllers.Main.txtEncoding": "Encodage ", "SSE.Controllers.Main.txtErrorLoadHistory": "Échec du chargement de l'historique", "SSE.Controllers.Main.txtFiguredArrows": "Flèches figurées", "SSE.Controllers.Main.txtLines": "Lignes", @@ -283,7 +285,7 @@ "SSE.Controllers.Main.txtStyle_Check_Cell": "Vérifier cellule", "SSE.Controllers.Main.txtStyle_Comma": "Virgule", "SSE.Controllers.Main.txtStyle_Currency": "Devise", - "SSE.Controllers.Main.txtStyle_Explanatory_Text": "Texte d'explication", + "SSE.Controllers.Main.txtStyle_Explanatory_Text": "Texte explicatif", "SSE.Controllers.Main.txtStyle_Good": "Correct", "SSE.Controllers.Main.txtStyle_Heading_1": "Titre 1", "SSE.Controllers.Main.txtStyle_Heading_2": "Titre 2", @@ -310,8 +312,8 @@ "SSE.Controllers.Main.uploadImageTextText": "Chargement d'une image en cours...", "SSE.Controllers.Main.uploadImageTitleText": "Chargement d'une image", "SSE.Controllers.Main.waitText": "Veuillez patienter...", - "SSE.Controllers.Main.warnLicenseExp": "Votre licence a expiré.
    Veuillez mettre à jour votre licence et actualisez la page.", "SSE.Controllers.Main.warnLicenseExceeded": "Vous avez dépassé le nombre maximal de connexions simultanées aux éditeurs %1. Ce document sera ouvert à la lecture seulement.
    Contactez votre administrateur pour en savoir davantage.", + "SSE.Controllers.Main.warnLicenseExp": "Votre licence a expiré.
    Veuillez mettre à jour votre licence et actualisez la page.", "SSE.Controllers.Main.warnLicenseUsersExceeded": "Vous avez dépassé le nombre maximal d’utilisateurs des éditeurs %1. Contactez votre administrateur pour en savoir davantage.", "SSE.Controllers.Main.warnNoLicense": "Vous avez dépassé le nombre maximal de connexions simultanées aux éditeurs %1. Ce document sera ouvert à la lecture seulement.
    Contactez l’équipe des ventes %1 pour mettre à jour les termes de la licence.", "SSE.Controllers.Main.warnNoLicenseUsers": "Vous avez dépassé le nombre maximal d’utilisateurs des éditeurs %1. Contactez l’équipe des ventes %1 pour mettre à jour les termes de la licence.", @@ -319,7 +321,7 @@ "SSE.Controllers.Search.textNoTextFound": "Le texte est introuvable", "SSE.Controllers.Search.textReplaceAll": "Remplacer tout", "SSE.Controllers.Settings.notcriticalErrorTitle": "Avertissement", - "SSE.Controllers.Settings.warnDownloadAs": "Si vous continuez à enregistrer dans ce format toutes les fonctions sauf le texte seront perdues.
    Êtes-vous sûr de vouloir continuer ?", + "SSE.Controllers.Settings.warnDownloadAs": "Si vous enregistrez dans ce format, seulement le texte sera conservé.
    Voulez-vous vraiment continuer ?", "SSE.Controllers.Statusbar.cancelButtonText": "Annuler", "SSE.Controllers.Statusbar.errNameExists": "Feuulle de travail portant ce nom existe déjà.", "SSE.Controllers.Statusbar.errNameWrongChar": "Le nom d'une feuille ne peut pas contenir les caractères suivants: \\ / * ? [ ] :", @@ -355,7 +357,7 @@ "SSE.Views.AddFunction.textGroups": "Catégories", "SSE.Views.AddLink.textAddLink": "Ajouter lien", "SSE.Views.AddLink.textAddress": "Adresse", - "SSE.Views.AddLink.textDisplay": "Afficher", + "SSE.Views.AddLink.textDisplay": "Affichage", "SSE.Views.AddLink.textExternalLink": "Lien externe", "SSE.Views.AddLink.textInsert": "Insérer", "SSE.Views.AddLink.textInternalLink": "Plage de données interne", @@ -374,7 +376,7 @@ "SSE.Views.AddOther.textFilter": "Filtre", "SSE.Views.AddOther.textFromLibrary": "Image de la bibliothèque", "SSE.Views.AddOther.textFromURL": "Image à partir d'une URL", - "SSE.Views.AddOther.textImageURL": "URL d'une image", + "SSE.Views.AddOther.textImageURL": "URL image", "SSE.Views.AddOther.textInsert": "Insérer", "SSE.Views.AddOther.textInsertImage": "Insérer une image", "SSE.Views.AddOther.textLink": "Lien", @@ -399,14 +401,14 @@ "SSE.Views.EditCell.textCharacterItalic": "I", "SSE.Views.EditCell.textCharacterUnderline": "U", "SSE.Views.EditCell.textColor": "Couleur", - "SSE.Views.EditCell.textCurrency": "Monétaire", + "SSE.Views.EditCell.textCurrency": "Devise", "SSE.Views.EditCell.textCustomColor": "Couleur personnalisée", "SSE.Views.EditCell.textDate": "Date", - "SSE.Views.EditCell.textDiagDownBorder": "Bordure diagonale bas", - "SSE.Views.EditCell.textDiagUpBorder": "Bordure diagonale haut", + "SSE.Views.EditCell.textDiagDownBorder": "Bordure diagonale vers le bas", + "SSE.Views.EditCell.textDiagUpBorder": "Bordure diagonale vers le haut", "SSE.Views.EditCell.textDollar": "Dollar", "SSE.Views.EditCell.textEuro": "Euro", - "SSE.Views.EditCell.textFillColor": "Couleur de remplissage", + "SSE.Views.EditCell.textFillColor": "Couleur remplissage", "SSE.Views.EditCell.textFonts": "Polices", "SSE.Views.EditCell.textFormat": "Format", "SSE.Views.EditCell.textGeneral": "Général", @@ -452,11 +454,11 @@ "SSE.Views.EditChart.textChart": "Diagramme", "SSE.Views.EditChart.textChartTitle": "Titre du diagramme", "SSE.Views.EditChart.textColor": "Couleur", - "SSE.Views.EditChart.textCrossesValue": "Valeur", + "SSE.Views.EditChart.textCrossesValue": "Valeur croisements", "SSE.Views.EditChart.textCustomColor": "Couleur personnalisée", - "SSE.Views.EditChart.textDataLabels": "Étiquettes de données", - "SSE.Views.EditChart.textDesign": "Design", - "SSE.Views.EditChart.textDisplayUnits": "Unités de l'affichage", + "SSE.Views.EditChart.textDataLabels": "Libellés de données", + "SSE.Views.EditChart.textDesign": "Stylique", + "SSE.Views.EditChart.textDisplayUnits": "Unités affichage", "SSE.Views.EditChart.textFill": "Remplissage", "SSE.Views.EditChart.textForward": "Déplacer vers l'avant", "SSE.Views.EditChart.textGridlines": "Quadrillage", @@ -494,8 +496,8 @@ "SSE.Views.EditChart.textVerAxis": "Axe vertical", "SSE.Views.EditChart.textVertical": "Vertical", "SSE.Views.EditHyperlink.textBack": "Retour en arrière", - "SSE.Views.EditHyperlink.textDisplay": "Afficher", - "SSE.Views.EditHyperlink.textEditLink": "Modifier le lien", + "SSE.Views.EditHyperlink.textDisplay": "Affichage", + "SSE.Views.EditHyperlink.textEditLink": "Editer lien", "SSE.Views.EditHyperlink.textExternalLink": "Lien externe", "SSE.Views.EditHyperlink.textInternalLink": "Plage de données interne", "SSE.Views.EditHyperlink.textLink": "Lien", @@ -511,7 +513,7 @@ "SSE.Views.EditImage.textForward": "Déplacer vers l'avant", "SSE.Views.EditImage.textFromLibrary": "Image de la bibliothèque", "SSE.Views.EditImage.textFromURL": "Image à partir d'une URL", - "SSE.Views.EditImage.textImageURL": "URL d'une image", + "SSE.Views.EditImage.textImageURL": "URL image", "SSE.Views.EditImage.textLinkSettings": "Paramètres de lien", "SSE.Views.EditImage.textRemove": "Supprimer l'image", "SSE.Views.EditImage.textReorder": "Réorganiser", @@ -542,20 +544,20 @@ "SSE.Views.EditText.textCharacterItalic": "I", "SSE.Views.EditText.textCharacterUnderline": "U", "SSE.Views.EditText.textCustomColor": "Couleur personnalisée", - "SSE.Views.EditText.textFillColor": "Couleur de remplissage", + "SSE.Views.EditText.textFillColor": "Couleur remplissage", "SSE.Views.EditText.textFonts": "Polices", "SSE.Views.EditText.textSize": "Taille", "SSE.Views.EditText.textTextColor": "Couleur du texte", "SSE.Views.FilterOptions.textClearFilter": "Effacer filtre", - "SSE.Views.FilterOptions.textDeleteFilter": "Supprimer le filtre", - "SSE.Views.FilterOptions.textFilter": "Options de filtre", + "SSE.Views.FilterOptions.textDeleteFilter": "Supprimer filtre", + "SSE.Views.FilterOptions.textFilter": "Options filtre", "SSE.Views.Search.textByColumns": "Par colonnes", "SSE.Views.Search.textByRows": "Par lignes", - "SSE.Views.Search.textDone": "Terminé", - "SSE.Views.Search.textFind": "Trouver", + "SSE.Views.Search.textDone": "Effectué", + "SSE.Views.Search.textFind": "Rechercher", "SSE.Views.Search.textFindAndReplace": "Rechercher et remplacer", "SSE.Views.Search.textFormulas": "Formules", - "SSE.Views.Search.textHighlightRes": "Surligner les résultats", + "SSE.Views.Search.textHighlightRes": "Surligner résultats", "SSE.Views.Search.textLookIn": "Rechercher dans", "SSE.Views.Search.textMatchCase": "Respecter la casse", "SSE.Views.Search.textMatchCell": "Respecter la cellule", @@ -590,21 +592,21 @@ "SSE.Views.Settings.textDisplayResolvedComments": "Commentaires résolus", "SSE.Views.Settings.textDocInfo": "Infos sur tableur", "SSE.Views.Settings.textDocTitle": "Titre du classeur", - "SSE.Views.Settings.textDone": "Terminé", + "SSE.Views.Settings.textDone": "Effectué", "SSE.Views.Settings.textDownload": "Télécharger", "SSE.Views.Settings.textDownloadAs": "Télécharger comme...", - "SSE.Views.Settings.textEditDoc": "Modifier", + "SSE.Views.Settings.textEditDoc": "Editer document", "SSE.Views.Settings.textEmail": "e-mail", "SSE.Views.Settings.textEnableAll": "Activer tout", "SSE.Views.Settings.textEnableAllMacrosWithoutNotification": "Activer tous les macros sans notification", - "SSE.Views.Settings.textExample": "Example", - "SSE.Views.Settings.textFind": "Trouver", + "SSE.Views.Settings.textExample": "Exemple", + "SSE.Views.Settings.textFind": "Rechercher", "SSE.Views.Settings.textFindAndReplace": "Rechercher et remplacer", "SSE.Views.Settings.textFormat": "Format", - "SSE.Views.Settings.textFormulaLanguage": "La formule de langue", + "SSE.Views.Settings.textFormulaLanguage": "Langage formule", "SSE.Views.Settings.textHelp": "Aide", - "SSE.Views.Settings.textHideGridlines": "Masquer le quadrillage", - "SSE.Views.Settings.textHideHeadings": "Masquer les en-têtes", + "SSE.Views.Settings.textHideGridlines": "Masquer quadrillage", + "SSE.Views.Settings.textHideHeadings": "Masquer en-têtes", "SSE.Views.Settings.textInch": "Pouce", "SSE.Views.Settings.textLandscape": "Paysage", "SSE.Views.Settings.textLastModified": "Dernière modification", diff --git a/apps/spreadsheeteditor/mobile/locale/it.json b/apps/spreadsheeteditor/mobile/locale/it.json index a1ca64ed8..4dd697a24 100644 --- a/apps/spreadsheeteditor/mobile/locale/it.json +++ b/apps/spreadsheeteditor/mobile/locale/it.json @@ -1,11 +1,18 @@ { + "Common.Controllers.Collaboration.textAddReply": "Aggiungi risposta", + "Common.Controllers.Collaboration.textCancel": "Annulla", + "Common.Controllers.Collaboration.textEdit": "Modifica", "Common.Controllers.Collaboration.textEditUser": "Utenti che stanno modificando il file:", + "Common.Controllers.Collaboration.textReopen": "Riapri", + "Common.Controllers.Collaboration.textYes": "Sì", "Common.UI.ThemeColorPalette.textCustomColors": "Colori personalizzati", "Common.UI.ThemeColorPalette.textStandartColors": "Colori standard", "Common.UI.ThemeColorPalette.textThemeColors": "Colori del tema", "Common.Utils.Metric.txtCm": "cm", "Common.Utils.Metric.txtPt": "pt", + "Common.Views.Collaboration.textAddReply": "Aggiungi risposta", "Common.Views.Collaboration.textBack": "Indietro", + "Common.Views.Collaboration.textCancel": "Annulla", "Common.Views.Collaboration.textCollaboration": "Collaborazione", "Common.Views.Collaboration.textEditUsers": "Utenti", "Common.Views.Collaboration.textNoComments": "Questo foglio di calcolo non contiene commenti", @@ -21,9 +28,12 @@ "SSE.Controllers.AddContainer.textShape": "Forma", "SSE.Controllers.AddLink.textInvalidRange": "ERRORE! Intervallo di celle non valido", "SSE.Controllers.AddLink.txtNotUrl": "Questo campo deve essere un URL nel formato 'http://www.example.com'", + "SSE.Controllers.AddOther.textCancel": "Annulla", + "SSE.Controllers.AddOther.textDelete": "Elimina", "SSE.Controllers.AddOther.textEmptyImgUrl": "Specifica URL immagine.", "SSE.Controllers.AddOther.txtNotUrl": "Questo campo deve essere un URL nel formato 'http://www.example.com'", "SSE.Controllers.DocumentHolder.errorCopyCutPaste": "Le azioni di copia, taglia e incolla utilizzando il menu di scelta rapida verranno eseguite solo all'interno del file corrente.", + "SSE.Controllers.DocumentHolder.menuAddComment": "Aggiungi commento", "SSE.Controllers.DocumentHolder.menuAddLink": "Aggiungi collegamento", "SSE.Controllers.DocumentHolder.menuCell": "Cella", "SSE.Controllers.DocumentHolder.menuCopy": "Copia", @@ -221,6 +231,7 @@ "SSE.Controllers.Main.textCustomLoader": "Si prega di notare che, in base ai termini della licenza, non si ha il diritto di modificare il caricatore.
    Si prega di contattare il nostro reparto vendite per ottenere un preventivo.", "SSE.Controllers.Main.textDone": "Fatto", "SSE.Controllers.Main.textLoadingDocument": "Caricamento del foglio di calcolo", + "SSE.Controllers.Main.textNo": "No", "SSE.Controllers.Main.textNoLicenseTitle": "Limite di licenza raggiunto", "SSE.Controllers.Main.textOK": "OK", "SSE.Controllers.Main.textPaidFeature": "Funzionalità a pagamento", @@ -230,6 +241,7 @@ "SSE.Controllers.Main.textStrict": "Modalità Rigorosa", "SSE.Controllers.Main.textTryUndoRedo": "Le funzioni Annulla/Ripristina sono disabilitate per la Modalità di Co-editing Veloce.
    Clicca il pulsante 'Modalità Rigorosa' per passare alla Modalità di Co-editing Rigorosa per poter modificare il file senza l'interferenza di altri utenti e inviare le modifiche solamente dopo averle salvate. Puoi passare da una modalità all'altra di co-editing utilizzando le Impostazioni avanzate dell'editor.", "SSE.Controllers.Main.textUsername": "Nome utente", + "SSE.Controllers.Main.textYes": "Sì", "SSE.Controllers.Main.titleLicenseExp": "La licenza è scaduta", "SSE.Controllers.Main.titleServerVersion": "L'editor è stato aggiornato", "SSE.Controllers.Main.titleUpdateVersion": "Versione Modificata", @@ -284,8 +296,8 @@ "SSE.Controllers.Main.uploadImageTextText": "Caricamento dell'immagine in corso...", "SSE.Controllers.Main.uploadImageTitleText": "Caricamento dell'immagine", "SSE.Controllers.Main.waitText": "Attendere prego...", - "SSE.Controllers.Main.warnLicenseExp": "La tua licenza è scaduta.
    Si prega di aggiornare la licenza e ricaricare la pagina.", "SSE.Controllers.Main.warnLicenseExceeded": "Hai raggiunto il limite per le connessioni simultanee agli editor %1. Questo documento verrà aperto in sola lettura.
    Contatta l’amministratore per saperne di più.", + "SSE.Controllers.Main.warnLicenseExp": "La tua licenza è scaduta.
    Si prega di aggiornare la licenza e ricaricare la pagina.", "SSE.Controllers.Main.warnLicenseUsersExceeded": "Hai raggiunto il limite per gli utenti con accesso agli editor %1. Contatta l’amministratore per saperne di più.", "SSE.Controllers.Main.warnNoLicense": "Hai raggiunto il limite per le connessioni simultanee agli editor %1. Questo documento verrà aperto in sola lettura.
    Contatta il team di vendita di %1 per i termini di aggiornamento personali.", "SSE.Controllers.Main.warnNoLicenseUsers": "Hai raggiunto il limite per gli utenti con accesso agli editor %1. Contatta il team di vendita di %1 per i termini di aggiornamento personali.", @@ -339,8 +351,10 @@ "SSE.Views.AddLink.textSelectedRange": "Intervallo selezionato", "SSE.Views.AddLink.textSheet": "Foglio", "SSE.Views.AddLink.textTip": "Suggerimento ", + "SSE.Views.AddOther.textAddComment": "Aggiungi commento", "SSE.Views.AddOther.textAddress": "Indirizzo", "SSE.Views.AddOther.textBack": "Indietro", + "SSE.Views.AddOther.textComment": "Commento", "SSE.Views.AddOther.textFilter": "Filtro", "SSE.Views.AddOther.textFromLibrary": "Immagine dalla Raccolta", "SSE.Views.AddOther.textFromURL": "Immagine da URL", diff --git a/apps/spreadsheeteditor/mobile/locale/nl.json b/apps/spreadsheeteditor/mobile/locale/nl.json index a6283de5a..fa1d17aa7 100644 --- a/apps/spreadsheeteditor/mobile/locale/nl.json +++ b/apps/spreadsheeteditor/mobile/locale/nl.json @@ -16,6 +16,7 @@ "SSE.Controllers.AddLink.txtNotUrl": "Dit veld moet een URL bevatten in de notatie 'http://www.voorbeeld.com'", "SSE.Controllers.AddOther.textEmptyImgUrl": "U moet een URL opgeven voor de afbeelding.", "SSE.Controllers.AddOther.txtNotUrl": "Dit veld moet een URL bevatten in de notatie 'http://www.voorbeeld.com'", + "SSE.Controllers.DocumentHolder.menuAddComment": "Opmerking toevoegen", "SSE.Controllers.DocumentHolder.menuAddLink": "Koppeling toevoegen", "SSE.Controllers.DocumentHolder.menuCell": "Cel", "SSE.Controllers.DocumentHolder.menuCopy": "Kopiëren", @@ -92,6 +93,7 @@ "SSE.Controllers.EditHyperlink.textInternalLink": "Intern gegevensbereik", "SSE.Controllers.EditHyperlink.textInvalidRange": "Ongeldig celbereik", "SSE.Controllers.EditHyperlink.txtNotUrl": "Dit veld moet een URL bevatten in de notatie \"http://www.voorbeeld.com\"", + "SSE.Controllers.FilterOptions.textEmptyItem": "{Leeg}", "SSE.Controllers.Main.advCSVOptions": "CSV-opties kiezen", "SSE.Controllers.Main.advDRMEnterPassword": "Voer uw wachtwoord in:", "SSE.Controllers.Main.advDRMOptions": "Beschermd bestand", @@ -316,6 +318,7 @@ "SSE.Views.AddLink.textRequired": "Vereist", "SSE.Views.AddLink.textSheet": "Blad", "SSE.Views.AddLink.textTip": "Scherminfo", + "SSE.Views.AddOther.textAddComment": "Opmerking toevoegen", "SSE.Views.AddOther.textAddress": "Adres", "SSE.Views.AddOther.textBack": "Terug", "SSE.Views.AddOther.textFilter": "Filter", @@ -327,6 +330,7 @@ "SSE.Views.AddOther.textLink": "Koppeling", "SSE.Views.AddOther.textSort": "Sorteren en filteren", "SSE.Views.EditCell.textAccounting": "Boekhouding", + "SSE.Views.EditCell.textAddCustomColor": "Aangepaste kleur toevoegen", "SSE.Views.EditCell.textAlignBottom": "Onder uitlijnen", "SSE.Views.EditCell.textAlignCenter": "Midden uitlijnen", "SSE.Views.EditCell.textAlignLeft": "Links uitlijnen", @@ -376,6 +380,7 @@ "SSE.Views.EditCell.textTopBorder": "Bovenrand", "SSE.Views.EditCell.textWrapText": "Tekstterugloop", "SSE.Views.EditCell.textYen": "Yen", + "SSE.Views.EditChart.textAddCustomColor": "Aangepaste kleur toevoegen", "SSE.Views.EditChart.textAuto": "Automatisch", "SSE.Views.EditChart.textAxisCrosses": "Snijpunten assen", "SSE.Views.EditChart.textAxisOptions": "Asopties", @@ -454,6 +459,7 @@ "SSE.Views.EditImage.textReplaceImg": "Afbeelding vervangen", "SSE.Views.EditImage.textToBackground": "Naar achtergrond sturen", "SSE.Views.EditImage.textToForeground": "Naar voorgrond brengen", + "SSE.Views.EditShape.textAddCustomColor": "Aangepaste kleur toevoegen", "SSE.Views.EditShape.textBack": "Terug", "SSE.Views.EditShape.textBackward": "Naar achter verplaatsen", "SSE.Views.EditShape.textBorder": "Rand", diff --git a/apps/spreadsheeteditor/mobile/locale/pt.json b/apps/spreadsheeteditor/mobile/locale/pt.json index 37419e978..df1e13ccc 100644 --- a/apps/spreadsheeteditor/mobile/locale/pt.json +++ b/apps/spreadsheeteditor/mobile/locale/pt.json @@ -282,8 +282,8 @@ "SSE.Controllers.Main.uploadImageTextText": "Carregando imagem...", "SSE.Controllers.Main.uploadImageTitleText": "Carregando imagem", "SSE.Controllers.Main.waitText": "Aguarde...", - "SSE.Controllers.Main.warnLicenseExp": "Sua licença expirou.
    Atualize sua licença e atualize a página.", "SSE.Controllers.Main.warnLicenseExceeded": "Você atingiu o limite de conexões simultâneas para editores %1. Este documento será aberto apenas para visualização.
    Entre em contato com seu administrador para saber mais.", + "SSE.Controllers.Main.warnLicenseExp": "Sua licença expirou.
    Atualize sua licença e atualize a página.", "SSE.Controllers.Main.warnLicenseUsersExceeded": "Você atingiu o limite de usuários para editores %1. Entre em contato com seu administrador para saber mais.", "SSE.Controllers.Main.warnNoLicense": "Você atingiu o limite de conexões simultâneas para editores %1. Este documento será aberto apenas para visualização.
    Entre em contato com a equipe de vendas da %1 para obter os termos de atualização pessoais.", "SSE.Controllers.Main.warnNoLicenseUsers": "Você atingiu o limite de usuários para editores %1.
    Entre em contato com a equipe de vendas da %1 para obter os termos de atualização pessoais.", diff --git a/apps/spreadsheeteditor/mobile/locale/ru.json b/apps/spreadsheeteditor/mobile/locale/ru.json index 118aa017a..ab83cd6fe 100644 --- a/apps/spreadsheeteditor/mobile/locale/ru.json +++ b/apps/spreadsheeteditor/mobile/locale/ru.json @@ -171,6 +171,8 @@ "SSE.Controllers.Main.errorFillRange": "Не удается заполнить выбранный диапазон ячеек.
    Все объединенные ячейки должны быть одного размера.", "SSE.Controllers.Main.errorFormulaName": "Ошибка во введенной формуле.
    Использовано неверное имя формулы.", "SSE.Controllers.Main.errorFormulaParsing": "Внутренняя ошибка при синтаксическом анализе формулы.", + "SSE.Controllers.Main.errorFrmlMaxLength": "Длина формулы превышает ограничение в 8192 символа.
    Отредактируйте ее и повторите попытку.", + "SSE.Controllers.Main.errorFrmlMaxReference": "Нельзя ввести эту формулу, так как она содержит слишком много значений,
    ссылок на ячейки и/или имен.", "SSE.Controllers.Main.errorFrmlMaxTextLength": "Длина текстовых значений в формулах не может превышать 255 символов.
    Используйте функцию СЦЕПИТЬ или оператор сцепления (&).", "SSE.Controllers.Main.errorFrmlWrongReferences": "Функция ссылается на лист, который не существует.
    Проверьте данные и повторите попытку.", "SSE.Controllers.Main.errorInvalidRef": "Введите корректное имя для выделенного диапазона или допустимую ссылку для перехода.", @@ -183,7 +185,8 @@ "SSE.Controllers.Main.errorMaxPoints": "Максимальное число точек в серии для диаграммы составляет 4096.", "SSE.Controllers.Main.errorMoveRange": "Нельзя изменить часть объединенной ячейки", "SSE.Controllers.Main.errorMultiCellFormula": "Формулы массива с несколькими ячейками не разрешаются в таблицах.", - "SSE.Controllers.Main.errorOpenWarning": "Длина одной из формул в файле превышала
    допустимое количество символов, и формула была удалена.", + "SSE.Controllers.Main.errorOpensource": "Используя бесплатную версию Community, вы можете открывать документы только на просмотр. Для доступа к мобильным веб-редакторам требуется коммерческая лицензия.", + "SSE.Controllers.Main.errorOpenWarning": "Одна из формул в файле превышает ограничение в 8192 символа.
    Формула была удалена.", "SSE.Controllers.Main.errorOperandExpected": "Синтаксис введенной функции некорректен. Проверьте, не пропущена ли одна из скобок - '(' или ')'.", "SSE.Controllers.Main.errorPasteMaxRange": "Область копирования не соответствует области вставки.
    Для вставки скопированных ячеек выделите область такого же размера или щелкните по первой ячейке в строке.", "SSE.Controllers.Main.errorPrintMaxPagesCount": "К сожалению, в текущей версии программы нельзя напечатать более 1500 страниц за один раз.
    Это ограничение будет устранено в последующих версиях.", @@ -244,8 +247,8 @@ "SSE.Controllers.Main.textDone": "Готово", "SSE.Controllers.Main.textHasMacros": "Файл содержит автозапускаемые макросы.
    Хотите запустить макросы?", "SSE.Controllers.Main.textLoadingDocument": "Загрузка таблицы", - "SSE.Controllers.Main.textNoLicenseTitle": "Лицензионное ограничение", "SSE.Controllers.Main.textNo": "Нет", + "SSE.Controllers.Main.textNoLicenseTitle": "Лицензионное ограничение", "SSE.Controllers.Main.textOK": "OK", "SSE.Controllers.Main.textPaidFeature": "Платная функция", "SSE.Controllers.Main.textPassword": "Пароль", @@ -310,8 +313,8 @@ "SSE.Controllers.Main.uploadImageTextText": "Загрузка рисунка...", "SSE.Controllers.Main.uploadImageTitleText": "Загрузка рисунка", "SSE.Controllers.Main.waitText": "Пожалуйста, подождите...", - "SSE.Controllers.Main.warnLicenseExp": "Истек срок действия лицензии.
    Обновите лицензию, а затем обновите страницу.", "SSE.Controllers.Main.warnLicenseExceeded": "Вы достигли лимита на одновременные подключения к редакторам %1. Этот документ будет открыт только на просмотр.
    Свяжитесь с администратором, чтобы узнать больше.", + "SSE.Controllers.Main.warnLicenseExp": "Истек срок действия лицензии.
    Обновите лицензию, а затем обновите страницу.", "SSE.Controllers.Main.warnLicenseUsersExceeded": "Вы достигли лимита на количество пользователей редакторов %1.
    Свяжитесь с администратором, чтобы узнать больше.", "SSE.Controllers.Main.warnNoLicense": "Вы достигли лимита на одновременные подключения к редакторам %1. Этот документ будет открыт на просмотр.
    Напишите в отдел продаж %1, чтобы обсудить индивидуальные условия лицензирования.", "SSE.Controllers.Main.warnNoLicenseUsers": "Вы достигли лимита на одновременные подключения к редакторам %1.
    Напишите в отдел продаж %1, чтобы обсудить индивидуальные условия лицензирования.", diff --git a/apps/spreadsheeteditor/mobile/locale/sk.json b/apps/spreadsheeteditor/mobile/locale/sk.json index 4b6f96dfc..ea88efe0d 100644 --- a/apps/spreadsheeteditor/mobile/locale/sk.json +++ b/apps/spreadsheeteditor/mobile/locale/sk.json @@ -183,6 +183,7 @@ "SSE.Controllers.Main.errorMaxPoints": "Maximálny počet bodov v sérii na jeden graf je 4096.", "SSE.Controllers.Main.errorMoveRange": "Nie je možné zmeniť časť zlúčenej bunky", "SSE.Controllers.Main.errorMultiCellFormula": "V tabuľkách nie sú dovolené vzorce pre pole s viacerými bunkami", + "SSE.Controllers.Main.errorOpensource": "Pomocou bezplatnej verzie Community môžete otvoriť dokumenty iba na prezeranie. Na prístup k mobilným webovým editorom je potrebná komerčná licencia.", "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.", @@ -212,12 +213,12 @@ "SSE.Controllers.Main.loadImagesTitleText": "Načítanie obrázkov", "SSE.Controllers.Main.loadImageTextText": "Načítanie obrázku ..", "SSE.Controllers.Main.loadImageTitleText": "Načítavanie obrázku", - "SSE.Controllers.Main.loadingDocumentTextText": "Načítavanie dokumentu ...", + "SSE.Controllers.Main.loadingDocumentTextText": "Načítavanie dokumentu...", "SSE.Controllers.Main.loadingDocumentTitleText": "Načítavanie dokumentu", "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.openErrorText": "Pri otváraní súboru sa vyskytla chyba.", "SSE.Controllers.Main.openTextText": "Otváranie dokumentu...", "SSE.Controllers.Main.openTitleText": "Otváranie dokumentu", "SSE.Controllers.Main.pastInMergeAreaError": "Nie je možné zmeniť časť zlúčenej bunky", @@ -245,7 +246,7 @@ "SSE.Controllers.Main.textHasMacros": "Súbor obsahuje automatické makrá.
    Chcete spustiť makrá?", "SSE.Controllers.Main.textLoadingDocument": "Načítavanie dokumentu", "SSE.Controllers.Main.textNo": "Nie", - "SSE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE obmedzenie pripojenia", + "SSE.Controllers.Main.textNoLicenseTitle": "Bol dosiahnutý limit licencie", "SSE.Controllers.Main.textOK": "OK", "SSE.Controllers.Main.textPaidFeature": "Platená funkcia", "SSE.Controllers.Main.textPassword": "Heslo", @@ -312,7 +313,7 @@ "SSE.Controllers.Main.waitText": "Prosím čakajte...", "SSE.Controllers.Main.warnLicenseExceeded": "Počet súbežných spojení s dokumentovým serverom bol prekročený a dokument bude znovu otvorený iba na prezeranie.
    Pre ďalšie informácie kontaktujte prosím vášho správcu.", "SSE.Controllers.Main.warnLicenseExp": "Vaša licencia vypršala.
    Prosím, aktualizujte si svoju licenciu a obnovte stránku.", - "SSE.Controllers.Main.warnLicenseUsersExceeded": "Počet súbežných užívateľov bol prekročený a dokument bude znovu otvorený len na čítanie.
    Pre ďalšie informácie kontaktujte prosím vášho správcu.", + "SSE.Controllers.Main.warnLicenseUsersExceeded": "Limit %1 súbežných užívateľov bol prekročený.
    Pre ďalšie informácie kontaktujte prosím vášho správcu.", "SSE.Controllers.Main.warnNoLicense": "Táto verzia aplikácie %1 editors má určité obmedzenia pre súbežné pripojenia k dokumentovému serveru.
    Ak potrebujete viac, zvážte aktualizáciu aktuálnej licencie alebo zakúpenie komerčnej.", "SSE.Controllers.Main.warnNoLicenseUsers": "Táto verzia %1 editors má určité obmedzenia pre spolupracujúcich používateľov.
    Ak potrebujete viac, zvážte aktualizáciu vašej aktuálnej licencie alebo kúpu komerčnej.", "SSE.Controllers.Main.warnProcessRightsChange": "Bolo vám zamietnuté právo upravovať súbor.", @@ -507,7 +508,7 @@ "SSE.Views.EditImage.textAddress": "Adresa", "SSE.Views.EditImage.textBack": "Späť", "SSE.Views.EditImage.textBackward": "Posunúť späť", - "SSE.Views.EditImage.textDefault": "Predvolená veľkosť", + "SSE.Views.EditImage.textDefault": "Aktuálna veľkosť", "SSE.Views.EditImage.textForward": "Posunúť vpred", "SSE.Views.EditImage.textFromLibrary": "Obrázok z Knižnice", "SSE.Views.EditImage.textFromURL": "Obrázok z URL adresy", diff --git a/apps/spreadsheeteditor/mobile/locale/sl.json b/apps/spreadsheeteditor/mobile/locale/sl.json index 3918c95fe..d68d27289 100644 --- a/apps/spreadsheeteditor/mobile/locale/sl.json +++ b/apps/spreadsheeteditor/mobile/locale/sl.json @@ -8,8 +8,11 @@ "Common.Controllers.Collaboration.textEditUser": "Uporabniki, ki urejajo datoteko:", "Common.Controllers.Collaboration.textMessageDeleteComment": "Ste prepričani da želite izbrisati ta komentar?", "Common.Controllers.Collaboration.textMessageDeleteReply": "Želite res izbrisati ta odgovor?", + "Common.Controllers.Collaboration.textReopen": "Ponovno odpri", + "Common.Controllers.Collaboration.textResolve": "Razreši", "Common.Controllers.Collaboration.textYes": "Da", "Common.UI.ThemeColorPalette.textCustomColors": "Barve po meri", + "Common.UI.ThemeColorPalette.textStandartColors": "Standardne barve", "Common.Utils.Metric.txtCm": "cm", "Common.Utils.Metric.txtPt": "pt", "Common.Views.Collaboration.textAddReply": "Dodaj odgovor", @@ -22,16 +25,21 @@ "Common.Views.Collaboration.textEditСomment": "Uredi komentar", "Common.Views.Collaboration.textСomments": "Komentarji", "SSE.Controllers.AddChart.txtDiagramTitle": "Naslov grafa", + "SSE.Controllers.AddChart.txtSeries": "Niz", + "SSE.Controllers.AddChart.txtXAxis": "X os", + "SSE.Controllers.AddChart.txtYAxis": "Y os", "SSE.Controllers.AddContainer.textChart": "Graf", "SSE.Controllers.AddContainer.textFormula": "Funkcija", "SSE.Controllers.AddContainer.textImage": "Slika", "SSE.Controllers.AddContainer.textOther": "Drugo", + "SSE.Controllers.AddContainer.textShape": "Oblika", "SSE.Controllers.AddLink.textInvalidRange": "NAPAKA! Neveljaven razpon celic", "SSE.Controllers.AddOther.textCancel": "Prekliči", "SSE.Controllers.AddOther.textContinue": "Nadaljuj", "SSE.Controllers.AddOther.textDelete": "Izbriši", "SSE.Controllers.AddOther.textDeleteDraft": "Ali res želite izbrisati osnutek?", "SSE.Controllers.AddOther.textEmptyImgUrl": "Določiti morate URL slike.", + "SSE.Controllers.DocumentHolder.errorCopyCutPaste": "Dejanja kopiranja, rezanja in lepljenja s kontekstnim menijem se izvajajo samo v trenutni datoteki.", "SSE.Controllers.DocumentHolder.menuAddComment": "Dodaj komentar", "SSE.Controllers.DocumentHolder.menuAddLink": "Dodaj povezavo", "SSE.Controllers.DocumentHolder.menuCell": "Celica", @@ -39,9 +47,12 @@ "SSE.Controllers.DocumentHolder.menuCut": "Izreži", "SSE.Controllers.DocumentHolder.menuDelete": "Izbriši", "SSE.Controllers.DocumentHolder.menuEdit": "Uredi", + "SSE.Controllers.DocumentHolder.menuFreezePanes": "Zamrzni plošče", "SSE.Controllers.DocumentHolder.menuHide": "Skrij", + "SSE.Controllers.DocumentHolder.menuMerge": "Združi", "SSE.Controllers.DocumentHolder.menuMore": "Več", "SSE.Controllers.DocumentHolder.menuOpenLink": "Odpri povezavo", + "SSE.Controllers.DocumentHolder.menuPaste": "Prilepi", "SSE.Controllers.DocumentHolder.menuShow": "Pokaži", "SSE.Controllers.DocumentHolder.menuViewComment": "Ogled komentarja", "SSE.Controllers.DocumentHolder.sheetCancel": "Zapri", @@ -50,6 +61,7 @@ "SSE.Controllers.EditCell.textAuto": "Samodejno", "SSE.Controllers.EditCell.textFonts": "Fonti", "SSE.Controllers.EditCell.textPt": "pt", + "SSE.Controllers.EditChart.errorMaxRows": "NAPAKA! Največje število podatkovnih serij na grafikonu je 255.", "SSE.Controllers.EditChart.errorStockChart": "Nepravilen vrstni red vrstic. Za izgradnjo razpredelnice delnic podatke na strani navedite v sledečem vrstnem redu:
    otvoritvena cena, maksimalna cena, minimalna cena, zaključna cena.", "SSE.Controllers.EditChart.textAuto": "Samodejno", "SSE.Controllers.EditChart.textBetweenTickMarks": "Med obkljukanimi oznakami", @@ -58,6 +70,7 @@ "SSE.Controllers.EditChart.textCenter": "Na sredino", "SSE.Controllers.EditChart.textCross": "Križ", "SSE.Controllers.EditChart.textCustom": "Po meri", + "SSE.Controllers.EditChart.textFixed": "Določeno", "SSE.Controllers.EditChart.textHigh": "Visoko", "SSE.Controllers.EditChart.textHorizontal": "Horizontalen", "SSE.Controllers.EditChart.textHundredMil": "100 000 000", @@ -69,28 +82,40 @@ "SSE.Controllers.EditChart.textLeft": "Levo", "SSE.Controllers.EditChart.textLow": "Nizko", "SSE.Controllers.EditChart.textManual": "Ročno", + "SSE.Controllers.EditChart.textMaxValue": "Maksimalna vrednost", + "SSE.Controllers.EditChart.textMillions": "Milijoni", + "SSE.Controllers.EditChart.textMinValue": "Minimalna vrednost", "SSE.Controllers.EditChart.textNextToAxis": "Poleg osi", "SSE.Controllers.EditChart.textNone": "nič", "SSE.Controllers.EditChart.textNoOverlay": "Ni prekrivanja", "SSE.Controllers.EditChart.textOnTickMarks": "Na obkljukanih oznakah", "SSE.Controllers.EditChart.textOuterTop": "Zunanji vrh", + "SSE.Controllers.EditChart.textRight": "Desno", "SSE.Controllers.EditChart.textTenMillions": "10 000 000", "SSE.Controllers.EditChart.textTenThousands": "10 000", + "SSE.Controllers.EditChart.textThousands": "Tisočine", "SSE.Controllers.EditChart.textTop": "Vrh", "SSE.Controllers.EditChart.textValue": "Vrednost", "SSE.Controllers.EditContainer.textCell": "Celica", "SSE.Controllers.EditContainer.textChart": "Graf", "SSE.Controllers.EditContainer.textHyperlink": "Hiperpovezava", "SSE.Controllers.EditContainer.textImage": "Slika", + "SSE.Controllers.EditContainer.textSettings": "Nastavitve", + "SSE.Controllers.EditContainer.textShape": "Oblika", "SSE.Controllers.EditContainer.textTable": "Tabela", "SSE.Controllers.EditContainer.textText": "Besedilo", + "SSE.Controllers.EditHyperlink.textDefault": "Izbrano območje", "SSE.Controllers.EditHyperlink.textEmptyImgUrl": "Določiti morate URL slike.", "SSE.Controllers.EditHyperlink.textExternalLink": "Zunanja povezava", + "SSE.Controllers.EditHyperlink.textInternalLink": "Notranje območje podatkov", "SSE.Controllers.FilterOptions.textEmptyItem": "{Blanks}", "SSE.Controllers.FilterOptions.textErrorMsg": "Izbrati morate vsaj eno vrednost", "SSE.Controllers.FilterOptions.textErrorTitle": "Opozorilo", + "SSE.Controllers.FilterOptions.textSelectAll": "Izberi vse", "SSE.Controllers.Main.advCSVOptions": "Izberite CSV opcijo", "SSE.Controllers.Main.advDRMEnterPassword": "Vnesite geslo:", + "SSE.Controllers.Main.advDRMOptions": "Zaščitena datoteka", + "SSE.Controllers.Main.advDRMPassword": "Geslo", "SSE.Controllers.Main.applyChangesTextText": "Nalaganje podatkov ...", "SSE.Controllers.Main.applyChangesTitleText": "Nalaganje podatkov", "SSE.Controllers.Main.closeButtonText": "Zapri datoteko", @@ -102,44 +127,85 @@ "SSE.Controllers.Main.downloadTextText": "Prenašanje razpredelnice ...", "SSE.Controllers.Main.downloadTitleText": "Prenašanje razpredelnice", "SSE.Controllers.Main.errorAccessDeny": "Poskušate izvesti dejanje, za katerega nimate pravic.
    Obrnite se na skrbnika strežnika dokumentov.", + "SSE.Controllers.Main.errorArgsRange": "Napaka v vneseni formuli.
    Uporabljen je napačen razpon argumentov.", "SSE.Controllers.Main.errorBadImageUrl": "URL slike je napačen", + "SSE.Controllers.Main.errorCoAuthoringDisconnect": "Povezava s strežnikom izgubljena. Dokumenta v tem trenutku ne morete urejati.", + "SSE.Controllers.Main.errorCountArg": "Napaka v vneseni formuli.
    Uporabljena je nepravilna številka argumentov.", + "SSE.Controllers.Main.errorCountArgExceed": "Napaka v vneseni formuli.
    Število argumentov je preseženo.", + "SSE.Controllers.Main.errorDatabaseConnection": "Zunanja napaka.
    Napaka povezave baze podatkov. V primeru, da napaka ni odpravljena, prosim kontaktirajte ekipo za pomoč.", + "SSE.Controllers.Main.errorDataEncrypted": "Prejete so šifrirane spremembe, ki jih ni mogoče razvozlati.", "SSE.Controllers.Main.errorDataRange": "Nepravilen obseg podatkov.", "SSE.Controllers.Main.errorDefaultMessage": "Koda napake: %1", + "SSE.Controllers.Main.errorEditingDownloadas": "Med delom z dokumentom je prišlo do napake.
    Z možnostjo »Prenos« shranite varnostno kopijo datoteke na trdi disk računalnika.", + "SSE.Controllers.Main.errorFileRequest": "Zunanja napaka.
    Napaka zahteve datoteke. Prosim kontaktirijate pomoč, če napaka ni odpravljena.", + "SSE.Controllers.Main.errorFileVKey": "Zunanja napaka.
    Nepravilen varnostni ključ. Prosim kontaktirajte pomoč, če napaka ni odpravljena.", + "SSE.Controllers.Main.errorFillRange": "Ni bilo mogoče izponiti izbranega območja celic.
    Vse združene celice morajo biti enake velikosti.", + "SSE.Controllers.Main.errorFormulaName": "Napaka v vneseni formuli.
    Uporabljeno je nepravilno ime formule.", + "SSE.Controllers.Main.errorFormulaParsing": "Notranja napaka pri razčlenjevanju formule.", + "SSE.Controllers.Main.errorInvalidRef": "Vnesite pravilno ime za izbiro ali veljavno referenco, ki jo želite najti.", "SSE.Controllers.Main.errorKeyEncrypt": "Neznan ključni deskriptor", + "SSE.Controllers.Main.errorKeyExpire": "Ključni deskriptor je potekel", + "SSE.Controllers.Main.errorMailMergeLoadFile": "Nalaganje dokumenta ni uspelo. Izberite drugo datoteko.", + "SSE.Controllers.Main.errorMailMergeSaveFile": "Spajanje je neuspešno", "SSE.Controllers.Main.errorMoveRange": "Dela združene celice ni mogoče spremeniti", + "SSE.Controllers.Main.errorProcessSaveResult": "Shranjevanje ni bilo uspešno", "SSE.Controllers.Main.errorStockChart": "Nepravilen vrstni red vrstic. Za izgradnjo razpredelnice delnic podatke na strani navedite v sledečem vrstnem redu:
    otvoritvena cena, maksimalna cena, minimalna cena, zaključna cena.", "SSE.Controllers.Main.errorUnexpectedGuid": "Zunanja napaka.
    Nepričakovan GUID. Če težava ni odstranjena prosim kontaktirajte pomoč.", + "SSE.Controllers.Main.errorUpdateVersionOnDisconnect": "Povezava s spletom je bila obnovljena in spremenjena je različica datoteke.
    Preden nadaljujete z delom, morate datoteko prenesti ali kopirati njeno vsebino, da se prepričate, da se nič ne izgubi, in nato znova naložite to stran.", + "SSE.Controllers.Main.errorViewerDisconnect": "Povezava je izgubljena. Dokument si lahko še vedno ogledate,
    vendar ga ne boste mogli prenesti, dokler se povezava ne vzpostavi in ​​stran ponovno naloži.", + "SSE.Controllers.Main.errorWrongBracketsCount": "Napaka v vneseni formuli.
    Uporabljeno je napačno število oklepajev.", + "SSE.Controllers.Main.errorWrongOperator": "Napaka v vneseni formuli.
    Uporabljen je napačen operator.", + "SSE.Controllers.Main.leavePageText": "V tem dokumentu se nahajajo neshranjene spremembe. Kliknite »Ostani na tej strani«, da počakate na samodejno shranjevanje dokumenta. Kliknite »Zapusti to stran«, če želite zavreči vse neshranjene spremembe.", "SSE.Controllers.Main.loadFontsTextText": "Nalaganje podatkov ...", + "SSE.Controllers.Main.loadFontsTitleText": "Nalaganje podatkov", "SSE.Controllers.Main.loadFontTextText": "Nalaganje podatkov ...", "SSE.Controllers.Main.loadFontTitleText": "Nalaganje podatkov", "SSE.Controllers.Main.loadImagesTextText": "Nalaganje slik ...", "SSE.Controllers.Main.loadImagesTitleText": "Nalaganje slik", "SSE.Controllers.Main.loadImageTextText": "Nalaganje slike ...", "SSE.Controllers.Main.loadImageTitleText": "Nalaganje slike", + "SSE.Controllers.Main.loadingDocumentTextText": "Nalaganja preglednice ...", "SSE.Controllers.Main.loadingDocumentTitleText": "Nalaganje razpredelnice", "SSE.Controllers.Main.mailMergeLoadFileText": "Nalaganje vira podatkov ...", "SSE.Controllers.Main.mailMergeLoadFileTitle": "Nalaganje vira podatkov", "SSE.Controllers.Main.notcriticalErrorTitle": "Opozorilo", + "SSE.Controllers.Main.openErrorText": "Prišlo je do težave med odpiranjem datoteke.", "SSE.Controllers.Main.openTextText": "Odpiranje dokumenta ...", "SSE.Controllers.Main.openTitleText": "Odpiranje dokumenta", "SSE.Controllers.Main.pastInMergeAreaError": "Dela združene celice ni mogoče spremeniti", + "SSE.Controllers.Main.printTextText": "Tiskanje dokumenta ...", + "SSE.Controllers.Main.printTitleText": "Tiskanje dokumenta", + "SSE.Controllers.Main.reloadButtonText": "Osveži stran", + "SSE.Controllers.Main.requestEditFailedMessageText": "Nekdo v tem trenutku ureja ta dokument. Prosim ponovno poskusite kasneje.", "SSE.Controllers.Main.requestEditFailedTitleText": "Dostop zavrnjen", + "SSE.Controllers.Main.saveErrorText": "Prišlo je do težave med shranjevanjem datoteke.", + "SSE.Controllers.Main.savePreparingText": "Priprava na shranjevanje", + "SSE.Controllers.Main.savePreparingTitle": "Priprava na shranjevanje. Prosim počakajte ...", + "SSE.Controllers.Main.saveTextText": "Shranjevanje dokumenta ...", + "SSE.Controllers.Main.saveTitleText": "Shranjevanje dokumenta", "SSE.Controllers.Main.textAnonymous": "Anonimno", "SSE.Controllers.Main.textBack": "Nazaj", "SSE.Controllers.Main.textBuyNow": "Obišči spletno mesto", "SSE.Controllers.Main.textCancel": "Zapri", "SSE.Controllers.Main.textClose": "Zapri", "SSE.Controllers.Main.textContactUs": "Kontaktirajte oddelek za prodajo", + "SSE.Controllers.Main.textCustomLoader": "Upoštevajte, da v skladu s pogoji licence niste upravičeni do menjave Loader-ja.
    Za ponudbo se obrnite na naš prodajni oddelek.", "SSE.Controllers.Main.textDone": "Končano", "SSE.Controllers.Main.textLoadingDocument": "Nalaganje razpredelnice", "SSE.Controllers.Main.textNo": "Ne", "SSE.Controllers.Main.textNoLicenseTitle": "%1 omejitev povezave", "SSE.Controllers.Main.textOK": "V redu", + "SSE.Controllers.Main.textPaidFeature": "Plačljive funkcije", + "SSE.Controllers.Main.textPassword": "Geslo", "SSE.Controllers.Main.textPreloader": "Nalaganje ...", + "SSE.Controllers.Main.textRemember": "Zapomni si mojo izbiro", + "SSE.Controllers.Main.textShape": "Oblika", "SSE.Controllers.Main.textUsername": "Uporabniško ime", "SSE.Controllers.Main.textYes": "Da", + "SSE.Controllers.Main.titleLicenseExp": "Licenca je potekla", "SSE.Controllers.Main.titleServerVersion": "Urednik je bil posodobljen", "SSE.Controllers.Main.titleUpdateVersion": "Različica spremenjena", + "SSE.Controllers.Main.txtAccent": "Preglas", "SSE.Controllers.Main.txtArt": "Vaše besedilo pride tukaj.", "SSE.Controllers.Main.txtBasicShapes": "Osnovne oblike", "SSE.Controllers.Main.txtButtons": "Gumbi", @@ -147,10 +213,19 @@ "SSE.Controllers.Main.txtCharts": "Grafi", "SSE.Controllers.Main.txtDelimiter": "Ločilo", "SSE.Controllers.Main.txtDiagramTitle": "Naslov grafa", + "SSE.Controllers.Main.txtEditingMode": "Nastavi način urejanja ...", "SSE.Controllers.Main.txtEncoding": "Kodiranje", + "SSE.Controllers.Main.txtErrorLoadHistory": "Nalaganje zgodovine je bilo neuspešno", "SSE.Controllers.Main.txtFiguredArrows": "Figurirane puščice", + "SSE.Controllers.Main.txtLines": "Vrstice", + "SSE.Controllers.Main.txtMath": "Matematika", + "SSE.Controllers.Main.txtRectangles": "Pravokotniki", + "SSE.Controllers.Main.txtSeries": "Niz", "SSE.Controllers.Main.txtSpace": "Razmik", + "SSE.Controllers.Main.txtStarsRibbons": "Zvezde & Trakovi", + "SSE.Controllers.Main.txtStyle_Bad": "Slabo", "SSE.Controllers.Main.txtStyle_Calculation": "Računaje", + "SSE.Controllers.Main.txtStyle_Check_Cell": "Preveri celico", "SSE.Controllers.Main.txtStyle_Comma": "Vejica", "SSE.Controllers.Main.txtStyle_Currency": "Valuta", "SSE.Controllers.Main.txtStyle_Good": "Dobro", @@ -158,38 +233,61 @@ "SSE.Controllers.Main.txtStyle_Heading_2": "Naslov 2", "SSE.Controllers.Main.txtStyle_Heading_3": "Naslov 3", "SSE.Controllers.Main.txtStyle_Heading_4": "Naslov 4", + "SSE.Controllers.Main.txtStyle_Input": "Vnos", + "SSE.Controllers.Main.txtStyle_Linked_Cell": "Povezana celica", "SSE.Controllers.Main.txtStyle_Normal": "Normalno", "SSE.Controllers.Main.txtStyle_Note": "Opomba", + "SSE.Controllers.Main.txtStyle_Output": "Izpis", + "SSE.Controllers.Main.txtStyle_Percent": "Odstotek", "SSE.Controllers.Main.txtStyle_Title": "Naslov", "SSE.Controllers.Main.txtTab": "Zavihek", + "SSE.Controllers.Main.txtXAxis": "X os", + "SSE.Controllers.Main.txtYAxis": "Y os", "SSE.Controllers.Main.unknownErrorText": "Neznana napaka.", "SSE.Controllers.Main.unsupportedBrowserErrorText": "Vaš brskalnik ni podprt.", "SSE.Controllers.Main.uploadImageExtMessage": "Neznan format slike.", "SSE.Controllers.Main.uploadImageFileCountMessage": "Ni naloženih slik.", + "SSE.Controllers.Main.uploadImageSizeMessage": "Limit maksimalne velikosti slike presežen.", "SSE.Controllers.Main.uploadImageTextText": "Nalaganje slike ...", "SSE.Controllers.Main.uploadImageTitleText": "Nalaganje slike", + "SSE.Controllers.Main.waitText": "Prosimo počakajte ...", + "SSE.Controllers.Main.warnLicenseExceeded": "Dosegli ste omejitev za istočasno povezavo z urejevalniki %1. Ta dokument bo na voljo samo za ogled.
    Če želite izvedeti več, se obrnite na skrbnika.", + "SSE.Controllers.Main.warnLicenseExp": "Vaša licnenca je potekla.
    Prosimo nadgradite licenco in osvežite stran.", + "SSE.Controllers.Main.warnLicenseUsersExceeded": "Dosegli ste omejitev uporabnikov za %1 urednike. Če želite izvedeti več, se obrnite na skrbnika.", + "SSE.Controllers.Main.warnNoLicense": "Dosegli ste omejitev za istočasno povezavo z urejevalniki %1. Ta dokument bo na voljo samo za ogled.
    Za osebne pogoje nadgradnje se obrnite na% 1 prodajno ekipo.", + "SSE.Controllers.Main.warnNoLicenseUsers": "Dosegli ste omejitev uporabnika za %1 urednike. Za osebne pogoje nadgradnje se obrnite na %1 prodajno ekipo.", "SSE.Controllers.Main.warnProcessRightsChange": "Pravica, da urejate datoteko je bila zavrnjena.", "SSE.Controllers.Search.textNoTextFound": "Besedila ni mogoče najti", + "SSE.Controllers.Search.textReplaceAll": "Zamenjaj vse", "SSE.Controllers.Settings.notcriticalErrorTitle": "Opozorilo", "SSE.Controllers.Settings.warnDownloadAs": "Če boste nadaljevali s shranjevanje v tem formatu bodo vse funkcije razen besedila izgubljene.
    Ste prepričani, da želite nadaljevati?", "SSE.Controllers.Statusbar.cancelButtonText": "Zapri", + "SSE.Controllers.Statusbar.errNameWrongChar": "Ime lista ne more vsebovati znakov: \\\\, /, *,?, [,],:", + "SSE.Controllers.Statusbar.errNotEmpty": "Ime lista ne sme biti prazno", "SSE.Controllers.Statusbar.errorLastSheet": "Delovni zvezek mora imeti vsaj eno vidno delovno stran.", "SSE.Controllers.Statusbar.errorRemoveSheet": "Ni mogoče izbrisati delovnega lista.", "SSE.Controllers.Statusbar.menuDelete": "Izbriši", "SSE.Controllers.Statusbar.menuDuplicate": "Podvoji", "SSE.Controllers.Statusbar.menuHide": "Skrij", "SSE.Controllers.Statusbar.menuMore": "Več", + "SSE.Controllers.Statusbar.menuRename": "Preimenuj", "SSE.Controllers.Statusbar.menuUnhide": "Prikaži", "SSE.Controllers.Statusbar.notcriticalErrorTitle": "Opozorilo", "SSE.Controllers.Statusbar.strSheet": "Stran", "SSE.Controllers.Statusbar.strSheetName": "Ime strani", "SSE.Controllers.Statusbar.textExternalLink": "Zunanja povezava", + "SSE.Controllers.Toolbar.dlgLeaveMsgText": "V tem dokumentu se nahajajo neshranjene spremembe. Kliknite »Ostani na tej strani«, da počakate na samodejno shranjevanje dokumenta. Kliknite »Zapusti to stran«, če želite zavreči vse neshranjene spremembe.", "SSE.Controllers.Toolbar.dlgLeaveTitleText": "Zapuščate aplikacijo", + "SSE.Controllers.Toolbar.leaveButtonText": "Zapusti to stran", + "SSE.Controllers.Toolbar.stayButtonText": "Ostani na tej strani", "SSE.Views.AddFunction.sCatDateAndTime": "Datum in čas", "SSE.Views.AddFunction.sCatEngineering": "Inžinirstvo", "SSE.Views.AddFunction.sCatFinancial": "Finance", "SSE.Views.AddFunction.sCatInformation": "Informacije", "SSE.Views.AddFunction.sCatLogical": "Logika", + "SSE.Views.AddFunction.sCatLookupAndReference": "Iskanje in reference", + "SSE.Views.AddFunction.sCatMathematic": "Matematika in trigonometrija", + "SSE.Views.AddFunction.sCatStatistical": "Statistika", "SSE.Views.AddFunction.sCatTextAndData": "Besedilo in podatki", "SSE.Views.AddFunction.textBack": "Nazaj", "SSE.Views.AddFunction.textGroups": "Kategorije", @@ -198,15 +296,22 @@ "SSE.Views.AddLink.textDisplay": "Prikaži", "SSE.Views.AddLink.textExternalLink": "Zunanja povezava", "SSE.Views.AddLink.textInsert": "Vstavi", + "SSE.Views.AddLink.textInternalLink": "Notranje območje podatkov", "SSE.Views.AddLink.textLink": "Povezava", "SSE.Views.AddLink.textLinkType": "Vrsta povezave", + "SSE.Views.AddLink.textRange": "Razpon", + "SSE.Views.AddLink.textRequired": "Zahtevano", + "SSE.Views.AddLink.textSelectedRange": "Izbrano območje", "SSE.Views.AddLink.textSheet": "Stran", + "SSE.Views.AddLink.textTip": "Nasvet", "SSE.Views.AddOther.textAddComment": "Dodaj komentar", "SSE.Views.AddOther.textAddress": "Naslov", "SSE.Views.AddOther.textBack": "Nazaj", "SSE.Views.AddOther.textComment": "Komentar", "SSE.Views.AddOther.textDone": "Končano", "SSE.Views.AddOther.textFilter": "Filter", + "SSE.Views.AddOther.textFromLibrary": "Slika iz knjižnice", + "SSE.Views.AddOther.textFromURL": "Slika iz URL", "SSE.Views.AddOther.textImageURL": "URL naslov slike", "SSE.Views.AddOther.textInsert": "Vstavi", "SSE.Views.AddOther.textInsertImage": "Vstavi sliko", @@ -222,6 +327,8 @@ "SSE.Views.EditCell.textAlignRight": "Poravnaj desno", "SSE.Views.EditCell.textAlignTop": "Poravnaj na vrh", "SSE.Views.EditCell.textAllBorders": "Vse obrobe", + "SSE.Views.EditCell.textAngleClockwise": "Kot v smeri urinega kazalca", + "SSE.Views.EditCell.textAngleCounterclockwise": "Kot v nasprotni smeri urinega kazalca", "SSE.Views.EditCell.textBack": "Nazaj", "SSE.Views.EditCell.textBorderStyle": "Slogi obrob", "SSE.Views.EditCell.textBottomBorder": "Obrobe gumbov", @@ -233,6 +340,8 @@ "SSE.Views.EditCell.textCurrency": "Valuta", "SSE.Views.EditCell.textCustomColor": "Barva po meri", "SSE.Views.EditCell.textDate": "Datum", + "SSE.Views.EditCell.textDiagDownBorder": "Diagonalna spodnja meja", + "SSE.Views.EditCell.textDiagUpBorder": "Diagonalna zgornja meja", "SSE.Views.EditCell.textDollar": "Ameriški dolar ", "SSE.Views.EditCell.textEuro": "Euro", "SSE.Views.EditCell.textFillColor": "Barva za zapolnitev", @@ -240,13 +349,25 @@ "SSE.Views.EditCell.textFormat": "Format", "SSE.Views.EditCell.textGeneral": "Splošno", "SSE.Views.EditCell.textHorizontalText": "Horizontalno besedilo", + "SSE.Views.EditCell.textInBorders": "Vstavi meje", + "SSE.Views.EditCell.textInteger": "Celoštevilčno", + "SSE.Views.EditCell.textJustified": "Obojestransko", + "SSE.Views.EditCell.textMedium": "Srednje", "SSE.Views.EditCell.textNoBorder": "Brez obrob", "SSE.Views.EditCell.textNumber": "Številka", + "SSE.Views.EditCell.textPercentage": "Odstotek", + "SSE.Views.EditCell.textPound": "Britanski funt", + "SSE.Views.EditCell.textScientific": "Znanstveni", "SSE.Views.EditCell.textSize": "Velikost", "SSE.Views.EditCell.textText": "Besedilo", "SSE.Views.EditCell.textTextColor": "Barva besedila", + "SSE.Views.EditCell.textTextFormat": "Besedilna formula", + "SSE.Views.EditCell.textTextOrientation": "Orientacija besedila", + "SSE.Views.EditCell.textThick": "Širok", + "SSE.Views.EditCell.textThin": "Ozek", "SSE.Views.EditCell.textTime": "Čas", "SSE.Views.EditCell.textVerticalText": "Vertikalno besedilo", + "SSE.Views.EditCell.textWrapText": "Ukrivi besedilo", "SSE.Views.EditChart.textAddCustomColor": "Dodaj barvo po meri", "SSE.Views.EditChart.textAuto": "Samodejno", "SSE.Views.EditChart.textAxisCrosses": "Križi osi", @@ -260,37 +381,62 @@ "SSE.Views.EditChart.textChart": "Graf", "SSE.Views.EditChart.textChartTitle": "Naslov grafa", "SSE.Views.EditChart.textColor": "Barva", + "SSE.Views.EditChart.textCrossesValue": "Vrednost preseka", "SSE.Views.EditChart.textCustomColor": "Barva po meri", "SSE.Views.EditChart.textDataLabels": "Oznake podatkov", + "SSE.Views.EditChart.textDesign": "Oblikovanje", "SSE.Views.EditChart.textDisplayUnits": "Prikaži enote", "SSE.Views.EditChart.textFill": "Zapolni", "SSE.Views.EditChart.textForward": "Premakni naprej", + "SSE.Views.EditChart.textGridlines": "Mreža", "SSE.Views.EditChart.textHorAxis": "Horizontalne osi", "SSE.Views.EditChart.textHorizontal": "Horizontalno", + "SSE.Views.EditChart.textLabelOptions": "Možnosti oznake", + "SSE.Views.EditChart.textLabelPos": "Položaj oznake", + "SSE.Views.EditChart.textLayout": "Postavitev", "SSE.Views.EditChart.textLeft": "Levo", + "SSE.Views.EditChart.textLegend": "Legenda", + "SSE.Views.EditChart.textMajor": "Primarni", + "SSE.Views.EditChart.textMajorMinor": "Primarni in sekundarni", + "SSE.Views.EditChart.textMajorType": "Primarna vrsta", + "SSE.Views.EditChart.textMaxValue": "Maksimalna vrednost", + "SSE.Views.EditChart.textMinor": "Majhen", + "SSE.Views.EditChart.textMinorType": "Manjša vrsta", + "SSE.Views.EditChart.textMinValue": "Minimalna vrednost", "SSE.Views.EditChart.textNone": "nič", "SSE.Views.EditChart.textNoOverlay": "Ni prekrivanja", + "SSE.Views.EditChart.textRemoveChart": "Odstrani graf", "SSE.Views.EditChart.textReorder": "Preuredi", + "SSE.Views.EditChart.textRight": "Desno", "SSE.Views.EditChart.textSize": "Velikost", + "SSE.Views.EditChart.textStyle": "Slog", "SSE.Views.EditChart.textToBackground": "Pošlji v ozadje", "SSE.Views.EditChart.textToForeground": "Premakni v ospredje", "SSE.Views.EditChart.textTop": "Vrh", "SSE.Views.EditChart.textValReverseOrder": "Vrednosti v obratnem vrstnem redu", "SSE.Views.EditChart.textVerAxis": "Vertikalne osi", + "SSE.Views.EditChart.textVertical": "Vertikalen", "SSE.Views.EditHyperlink.textBack": "Nazaj", "SSE.Views.EditHyperlink.textDisplay": "Prikaži", "SSE.Views.EditHyperlink.textEditLink": "Uredi povezavo", "SSE.Views.EditHyperlink.textExternalLink": "Zunanja povezava", + "SSE.Views.EditHyperlink.textInternalLink": "Notranje območje podatkov", "SSE.Views.EditHyperlink.textLink": "Povezava", "SSE.Views.EditHyperlink.textLinkType": "Vrsta povezave", + "SSE.Views.EditHyperlink.textRange": "Razpon", + "SSE.Views.EditHyperlink.textRemoveLink": "Odstrani povezavo", + "SSE.Views.EditHyperlink.textScreenTip": "Nasvet", "SSE.Views.EditHyperlink.textSheet": "Stran", "SSE.Views.EditImage.textAddress": "Naslov", "SSE.Views.EditImage.textBack": "Nazaj", "SSE.Views.EditImage.textBackward": "Premakni nazaj", "SSE.Views.EditImage.textDefault": "Dejanska velikost", "SSE.Views.EditImage.textForward": "Premakni naprej", + "SSE.Views.EditImage.textFromLibrary": "Slika iz knjižnice", + "SSE.Views.EditImage.textFromURL": "Slika iz URL", "SSE.Views.EditImage.textImageURL": "URL naslov slike", "SSE.Views.EditImage.textLinkSettings": "Nastavitve povezave", + "SSE.Views.EditImage.textRemove": "Odstrani sliko", "SSE.Views.EditImage.textReorder": "Preuredi", "SSE.Views.EditImage.textReplace": "Zamenjaj", "SSE.Views.EditImage.textReplaceImg": "Zamenjaj sliko", @@ -306,9 +452,11 @@ "SSE.Views.EditShape.textFill": "Zapolni", "SSE.Views.EditShape.textForward": "Premakni naprej", "SSE.Views.EditShape.textOpacity": "Prosojnost", + "SSE.Views.EditShape.textRemoveShape": "Odstrani obliko", "SSE.Views.EditShape.textReorder": "Preuredi", "SSE.Views.EditShape.textReplace": "Zamenjaj", "SSE.Views.EditShape.textSize": "Velikost", + "SSE.Views.EditShape.textStyle": "Slog", "SSE.Views.EditShape.textToBackground": "Pošlji v ozadje", "SSE.Views.EditShape.textToForeground": "Premakni v ospredje", "SSE.Views.EditText.textAddCustomColor": "Dodaj barvo po meri", @@ -322,6 +470,7 @@ "SSE.Views.EditText.textSize": "Velikost", "SSE.Views.EditText.textTextColor": "Barva besedila", "SSE.Views.FilterOptions.textClearFilter": "Počisti filter", + "SSE.Views.FilterOptions.textDeleteFilter": "Odstrani filtre", "SSE.Views.FilterOptions.textFilter": "Možnosti filtra", "SSE.Views.Search.textByColumns": "Po stolpcih", "SSE.Views.Search.textByRows": "Po vrsticah", @@ -332,6 +481,9 @@ "SSE.Views.Search.textHighlightRes": "Označi rezultate", "SSE.Views.Search.textLookIn": "Poglej v", "SSE.Views.Search.textReplace": "Zamenjaj", + "SSE.Views.Search.textSearch": "Iskanje", + "SSE.Views.Search.textSearchBy": "Iskanje", + "SSE.Views.Search.textSearchIn": "Išči v", "SSE.Views.Search.textSheet": "Stran", "SSE.Views.Search.textValues": "Vrednosti", "SSE.Views.Search.textWorkbook": "Delovni zvezek", @@ -356,6 +508,7 @@ "SSE.Views.Settings.textDisableAllMacrosWithNotification": "Onemogoči vse makroje z obvestilom", "SSE.Views.Settings.textDisableAllMacrosWithoutNotification": "Onemogoči vse makroje brez obvestila", "SSE.Views.Settings.textDisplayComments": "Komentarji", + "SSE.Views.Settings.textDisplayResolvedComments": "Reši komentar", "SSE.Views.Settings.textDocInfo": "Informacije o tabeli", "SSE.Views.Settings.textDone": "Končano", "SSE.Views.Settings.textDownload": "Prenesi", @@ -373,11 +526,24 @@ "SSE.Views.Settings.textHideGridlines": "Skrij mrežne črte", "SSE.Views.Settings.textHideHeadings": "Skrij naslove", "SSE.Views.Settings.textInch": "Palec", + "SSE.Views.Settings.textLandscape": "Ležeče", + "SSE.Views.Settings.textLastModified": "Nazadnje spremenjeno", + "SSE.Views.Settings.textLastModifiedBy": "Nazadnje spremenjenil/a", "SSE.Views.Settings.textLeft": "Levo", "SSE.Views.Settings.textLoading": "Nalaganje ...", "SSE.Views.Settings.textMacrosSettings": "Nastavitve makrojev", + "SSE.Views.Settings.textMargins": "Robovi", "SSE.Views.Settings.textOrientation": "Usmerjenost", + "SSE.Views.Settings.textOwner": "Lastnik", + "SSE.Views.Settings.textPoint": "Točka", + "SSE.Views.Settings.textPortrait": "Pokončno", + "SSE.Views.Settings.textPoweredBy": "Poganja", + "SSE.Views.Settings.textPrint": "Natisni", + "SSE.Views.Settings.textRegionalSettings": "Regionalne nastavitve", + "SSE.Views.Settings.textRight": "Desno", + "SSE.Views.Settings.textSettings": "Nastavitve", "SSE.Views.Settings.textShowNotification": "Prikaži obvestila", + "SSE.Views.Settings.textSubject": "Zadeva", "SSE.Views.Settings.textTel": "Telefon", "SSE.Views.Settings.textTitle": "Naslov", "SSE.Views.Settings.textTop": "Vrh", diff --git a/apps/spreadsheeteditor/mobile/locale/zh.json b/apps/spreadsheeteditor/mobile/locale/zh.json index 359c7a2d5..05ab8ec21 100644 --- a/apps/spreadsheeteditor/mobile/locale/zh.json +++ b/apps/spreadsheeteditor/mobile/locale/zh.json @@ -1,13 +1,29 @@ { + "Common.Controllers.Collaboration.textAddReply": "添加回复", + "Common.Controllers.Collaboration.textCancel": "取消", + "Common.Controllers.Collaboration.textDeleteComment": "删除注释", + "Common.Controllers.Collaboration.textDeleteReply": "删除回复", + "Common.Controllers.Collaboration.textDone": "完成", + "Common.Controllers.Collaboration.textEdit": "编辑", "Common.Controllers.Collaboration.textEditUser": "文件正在被多个用户编辑。", + "Common.Controllers.Collaboration.textMessageDeleteComment": "你确定要删除这一注释吗?", + "Common.Controllers.Collaboration.textMessageDeleteReply": "你确定要删除这一回复吗?", + "Common.Controllers.Collaboration.textReopen": "重新打开", + "Common.Controllers.Collaboration.textResolve": "解决", + "Common.Controllers.Collaboration.textYes": "是", "Common.UI.ThemeColorPalette.textCustomColors": "自定义颜色", "Common.UI.ThemeColorPalette.textStandartColors": "标准颜色", "Common.UI.ThemeColorPalette.textThemeColors": "主题颜色", "Common.Utils.Metric.txtCm": "厘米", "Common.Utils.Metric.txtPt": "像素", + "Common.Views.Collaboration.textAddReply": "添加回复", "Common.Views.Collaboration.textBack": "返回", + "Common.Views.Collaboration.textCancel": "取消", "Common.Views.Collaboration.textCollaboration": "协作", + "Common.Views.Collaboration.textDone": "完成", + "Common.Views.Collaboration.textEditReply": "编辑回复", "Common.Views.Collaboration.textEditUsers": "用户", + "Common.Views.Collaboration.textEditСomment": "编辑注释", "Common.Views.Collaboration.textNoComments": "此电子表格不包含评论", "Common.Views.Collaboration.textСomments": "评论", "SSE.Controllers.AddChart.txtDiagramTitle": "图表标题", @@ -21,9 +37,14 @@ "SSE.Controllers.AddContainer.textShape": "形状", "SSE.Controllers.AddLink.textInvalidRange": "错误!无效的单元格范围", "SSE.Controllers.AddLink.txtNotUrl": "此字段应为格式为“http://www.example.com”的网址", + "SSE.Controllers.AddOther.textCancel": "取消", + "SSE.Controllers.AddOther.textContinue": "继续", + "SSE.Controllers.AddOther.textDelete": "删除", + "SSE.Controllers.AddOther.textDeleteDraft": "你确定要删除这一稿吗?", "SSE.Controllers.AddOther.textEmptyImgUrl": "您需要指定图像URL。", "SSE.Controllers.AddOther.txtNotUrl": "此字段应为格式为“http://www.example.com”的网址", "SSE.Controllers.DocumentHolder.errorCopyCutPaste": "使用上下文菜单的复制、剪切和粘贴操作将仅在当前文件中执行。", + "SSE.Controllers.DocumentHolder.menuAddComment": "添加注释", "SSE.Controllers.DocumentHolder.menuAddLink": "增加链接", "SSE.Controllers.DocumentHolder.menuCell": "元件", "SSE.Controllers.DocumentHolder.menuCopy": "复制", @@ -40,6 +61,7 @@ "SSE.Controllers.DocumentHolder.menuUnfreezePanes": "解冻窗格", "SSE.Controllers.DocumentHolder.menuUnmerge": "取消合并", "SSE.Controllers.DocumentHolder.menuUnwrap": "展开", + "SSE.Controllers.DocumentHolder.menuViewComment": "查看注释", "SSE.Controllers.DocumentHolder.menuWrap": "包裹", "SSE.Controllers.DocumentHolder.sheetCancel": "取消", "SSE.Controllers.DocumentHolder.textCopyCutPasteActions": "复制,剪切和粘贴操作", @@ -149,6 +171,7 @@ "SSE.Controllers.Main.errorFillRange": "无法填充所选范围的单元格。
    所有合并的单元格的大小必须相同。", "SSE.Controllers.Main.errorFormulaName": "一个错误的输入公式。< br >正确使用公式名称。", "SSE.Controllers.Main.errorFormulaParsing": "解析公式时出现内部错误。", + "SSE.Controllers.Main.errorFrmlMaxLength": "公式添加失败:公式中字符的长度超出限制。
    请编辑后重试。", "SSE.Controllers.Main.errorFrmlMaxTextLength": "公式中的文本值限制为255个字符。
    使用连接函数或连接运算符(&)。", "SSE.Controllers.Main.errorFrmlWrongReferences": "该功能是指不存在的工作表。
    请检查数据,然后重试。", "SSE.Controllers.Main.errorInvalidRef": "输入选择的正确名称或有效参考。", @@ -161,6 +184,7 @@ "SSE.Controllers.Main.errorMaxPoints": "每个图表序列的最大点值为4096。", "SSE.Controllers.Main.errorMoveRange": "不能改变合并单元的一部分", "SSE.Controllers.Main.errorMultiCellFormula": "表格中不允许使用多单元格数组公式。", + "SSE.Controllers.Main.errorOpensource": "这个免费的社区版本只能够用来查看文件。要想在手机上使用在线编辑工具,请购买商业版。", "SSE.Controllers.Main.errorOpenWarning": "文件中的一个公式的长度超过了
    允许的字符数,并被删除。", "SSE.Controllers.Main.errorOperandExpected": "输入的函数语法不正确。请检查你是否缺少一个括号 - '('或')'。", "SSE.Controllers.Main.errorPasteMaxRange": "复制和粘贴区域不匹配。
    请选择相同尺寸的区域,或单击一行中的第一个单元格以粘贴复制的单元格。", @@ -220,16 +244,20 @@ "SSE.Controllers.Main.textContactUs": "联系销售", "SSE.Controllers.Main.textCustomLoader": "请注意,根据许可条款您无权更改加载程序。
    请联系我们的销售部门获取报价。", "SSE.Controllers.Main.textDone": "完成", + "SSE.Controllers.Main.textHasMacros": "这个文件带有自动宏。
    是否要运行宏?", "SSE.Controllers.Main.textLoadingDocument": "文件加载中", + "SSE.Controllers.Main.textNo": "不", "SSE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE开源版本", "SSE.Controllers.Main.textOK": "确定", "SSE.Controllers.Main.textPaidFeature": "付费功能", "SSE.Controllers.Main.textPassword": "密码", "SSE.Controllers.Main.textPreloader": "载入中……", + "SSE.Controllers.Main.textRemember": "记住我的选择", "SSE.Controllers.Main.textShape": "形状", "SSE.Controllers.Main.textStrict": "严格模式", "SSE.Controllers.Main.textTryUndoRedo": "对于快速的协同编辑模式,取消/重做功能是禁用的。< br >单击“严格模式”按钮切换到严格co-editing模式编辑该文件没有其他用户干扰和发送您的更改只后你拯救他们。您可以使用编辑器高级设置在编辑模式之间切换。", "SSE.Controllers.Main.textUsername": "用户名", + "SSE.Controllers.Main.textYes": "是", "SSE.Controllers.Main.titleLicenseExp": "许可证过期", "SSE.Controllers.Main.titleServerVersion": "编辑器已更新", "SSE.Controllers.Main.titleUpdateVersion": "版本已变化", @@ -303,6 +331,7 @@ "SSE.Controllers.Statusbar.menuDelete": "删除选定的内容", "SSE.Controllers.Statusbar.menuDuplicate": "复制", "SSE.Controllers.Statusbar.menuHide": "隐藏", + "SSE.Controllers.Statusbar.menuMore": "更多", "SSE.Controllers.Statusbar.menuRename": "重命名", "SSE.Controllers.Statusbar.menuUnhide": "取消隐藏", "SSE.Controllers.Statusbar.notcriticalErrorTitle": "警告", @@ -339,8 +368,11 @@ "SSE.Views.AddLink.textSelectedRange": "选择范围", "SSE.Views.AddLink.textSheet": "表格", "SSE.Views.AddLink.textTip": "屏幕提示", + "SSE.Views.AddOther.textAddComment": "添加注释", "SSE.Views.AddOther.textAddress": "地址", "SSE.Views.AddOther.textBack": "返回", + "SSE.Views.AddOther.textComment": "注释", + "SSE.Views.AddOther.textDone": "完成", "SSE.Views.AddOther.textFilter": "过滤", "SSE.Views.AddOther.textFromLibrary": "图库", "SSE.Views.AddOther.textFromURL": "图片来自网络", @@ -359,6 +391,8 @@ "SSE.Views.EditCell.textAlignRight": "右对齐", "SSE.Views.EditCell.textAlignTop": "顶端对齐", "SSE.Views.EditCell.textAllBorders": "所有边框", + "SSE.Views.EditCell.textAngleClockwise": "顺时针方向角", + "SSE.Views.EditCell.textAngleCounterclockwise": "逆时针方向角", "SSE.Views.EditCell.textBack": "返回", "SSE.Views.EditCell.textBorderStyle": "边框风格", "SSE.Views.EditCell.textBottomBorder": "底端边框", @@ -378,6 +412,7 @@ "SSE.Views.EditCell.textFonts": "字体", "SSE.Views.EditCell.textFormat": "格式", "SSE.Views.EditCell.textGeneral": "常规", + "SSE.Views.EditCell.textHorizontalText": "横向文本", "SSE.Views.EditCell.textInBorders": "内陆边界", "SSE.Views.EditCell.textInHorBorder": "水平边框", "SSE.Views.EditCell.textInteger": "整数", @@ -390,16 +425,20 @@ "SSE.Views.EditCell.textPercentage": "百分比", "SSE.Views.EditCell.textPound": "磅", "SSE.Views.EditCell.textRightBorder": "右边界", + "SSE.Views.EditCell.textRotateTextDown": "文本向下旋转", + "SSE.Views.EditCell.textRotateTextUp": "文本向上旋转", "SSE.Views.EditCell.textRouble": "卢布", "SSE.Views.EditCell.textScientific": "科学", "SSE.Views.EditCell.textSize": "大小", "SSE.Views.EditCell.textText": "文本", "SSE.Views.EditCell.textTextColor": "文字颜色", "SSE.Views.EditCell.textTextFormat": "文本格式", + "SSE.Views.EditCell.textTextOrientation": "文本方向", "SSE.Views.EditCell.textThick": "厚", "SSE.Views.EditCell.textThin": "瘦", "SSE.Views.EditCell.textTime": "时间", "SSE.Views.EditCell.textTopBorder": "顶级边界", + "SSE.Views.EditCell.textVerticalText": "纵向文本", "SSE.Views.EditCell.textWrapText": "文字换行", "SSE.Views.EditCell.textYen": "日元", "SSE.Views.EditChart.textAddCustomColor": "\n添加自定义颜色", @@ -546,6 +585,9 @@ "SSE.Views.Settings.textCreateDate": "创建日期", "SSE.Views.Settings.textCustom": "自定义", "SSE.Views.Settings.textCustomSize": "自定义大小", + "SSE.Views.Settings.textDisableAll": "解除所有项目", + "SSE.Views.Settings.textDisableAllMacrosWithNotification": "解除所有带通知的宏", + "SSE.Views.Settings.textDisableAllMacrosWithoutNotification": "解除所有不带通知的宏", "SSE.Views.Settings.textDisplayComments": "评论", "SSE.Views.Settings.textDisplayResolvedComments": "已解决的评论", "SSE.Views.Settings.textDocInfo": "电子表格信息", @@ -555,6 +597,8 @@ "SSE.Views.Settings.textDownloadAs": "下载为...", "SSE.Views.Settings.textEditDoc": "编辑文档", "SSE.Views.Settings.textEmail": "电子邮件", + "SSE.Views.Settings.textEnableAll": "启动所有项目", + "SSE.Views.Settings.textEnableAllMacrosWithoutNotification": "启动所有不带通知的宏", "SSE.Views.Settings.textExample": "列入", "SSE.Views.Settings.textFind": "查找", "SSE.Views.Settings.textFindAndReplace": "查找和替换", @@ -569,6 +613,7 @@ "SSE.Views.Settings.textLastModifiedBy": "上次修改时间", "SSE.Views.Settings.textLeft": "左", "SSE.Views.Settings.textLoading": "载入中……", + "SSE.Views.Settings.textMacrosSettings": "宏设置", "SSE.Views.Settings.textMargins": "边距", "SSE.Views.Settings.textOrientation": "方向", "SSE.Views.Settings.textOwner": "创建者", @@ -580,6 +625,7 @@ "SSE.Views.Settings.textRegionalSettings": "区域设置", "SSE.Views.Settings.textRight": "右", "SSE.Views.Settings.textSettings": "设置", + "SSE.Views.Settings.textShowNotification": "显示通知", "SSE.Views.Settings.textSpreadsheetFormats": "电子表格格式", "SSE.Views.Settings.textSpreadsheetSettings": "表格设置", "SSE.Views.Settings.textSubject": "主题",