',
''].join(''),
diff --git a/apps/common/main/lib/view/Comments.js b/apps/common/main/lib/view/Comments.js
index 164e936ed..efda93c5c 100644
--- a/apps/common/main/lib/view/Comments.js
+++ b/apps/common/main/lib/view/Comments.js
@@ -1370,7 +1370,7 @@ define([
return Common.Utils.String.ellipsis(Common.Utils.String.htmlEncode(quote), 120, true);
},
getUserName: function (username) {
- return Common.Utils.String.ellipsis(Common.Utils.String.htmlEncode(username), 22, true);
+ return Common.Utils.String.htmlEncode(username);
},
pickLink: function (message) {
diff --git a/apps/common/main/lib/view/Header.js b/apps/common/main/lib/view/Header.js
index 1bf226196..6ebc539ba 100644
--- a/apps/common/main/lib/view/Header.js
+++ b/apps/common/main/lib/view/Header.js
@@ -223,8 +223,6 @@ define([
appConfig = mode;
var me = this;
- if ( !(me.branding && me.branding.goback && me.branding.goback.text) )
- me.btnGoBack.updateHint(me.textBack);
me.btnGoBack.on('click', function (e) {
Common.NotificationCenter.trigger('goback');
});
@@ -552,10 +550,6 @@ define([
element.css({'background-image': 'none', width: 'auto'});
}
}
-
- if ( !!value.goback && value.goback.text) {
- this.btnGoBack.updateHint(value.goback.text);
- }
}
},
@@ -587,9 +581,11 @@ define([
this.labelDocName.text(_name);
},
- setCanBack: function (value) {
+ setCanBack: function (value, text) {
this.options.canBack = value;
this.btnGoBack[value ? 'show' : 'hide']();
+ if (value)
+ this.btnGoBack.updateHint((text && typeof text == 'string') ? text : this.textBack);
return this;
},
diff --git a/apps/common/main/resources/less/chat.less b/apps/common/main/resources/less/chat.less
index 150cc3c52..68adc3702 100644
--- a/apps/common/main/resources/less/chat.less
+++ b/apps/common/main/resources/less/chat.less
@@ -52,22 +52,24 @@
}
.color {
+ position: absolute;
+ top: 0;
+ left: 0;
+ margin-top: 1px;
width: 12px;
height: 12px;
- display: inline-block;
- vertical-align: middle;
border: 1px solid @gray-dark;
}
.name {
display: block;
- padding-left: 16px;
+ position: relative;
+ padding: 0 10px 0 16px;
margin-top: -2px;
white-space: nowrap;
text-overflow: ellipsis;
+ overflow: hidden;
font-weight: bold;
- vertical-align: middle;
-
}
}
@@ -94,6 +96,8 @@
.user {
font-weight: bold;
white-space: nowrap;
+ overflow: hidden;
+ text-overflow: ellipsis;
}
.message {
diff --git a/apps/common/main/resources/less/comments.less b/apps/common/main/resources/less/comments.less
index 4cc965474..6fdc89c6f 100644
--- a/apps/common/main/resources/less/comments.less
+++ b/apps/common/main/resources/less/comments.less
@@ -113,10 +113,9 @@
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
- padding: 10px 0px 0 0px;
+ padding: 10px 65px 0 0px;
height: 26px;
cursor: default;
- max-width: 155px;
}
.user-name-colored {
diff --git a/apps/common/main/resources/less/history.less b/apps/common/main/resources/less/history.less
index 340c64b37..7b2289279 100644
--- a/apps/common/main/resources/less/history.less
+++ b/apps/common/main/resources/less/history.less
@@ -121,8 +121,8 @@
font-size: 12px;
cursor: pointer;
color: @gray-darker;
- max-width: 210px;
text-overflow: ellipsis;
+ padding-right: 35px;
}
.color {
diff --git a/apps/documenteditor/main/app/controller/Main.js b/apps/documenteditor/main/app/controller/Main.js
index 7aab45054..2d20955d0 100644
--- a/apps/documenteditor/main/app/controller/Main.js
+++ b/apps/documenteditor/main/app/controller/Main.js
@@ -217,6 +217,8 @@ define([
$(document.body).on('blur', 'input, textarea', function(e) {
if (!me.isModalShowed) {
+ if (/form-control/.test(e.target.className))
+ me.inFormControl = false;
if (!e.relatedTarget ||
!/area_id/.test(e.target.id) && ($(e.target).parent().find(e.relatedTarget).length<1 || e.target.localName == 'textarea') /* Check if focus in combobox goes from input to it's menu button or menu items, or from comment editing area to Ok/Cancel button */
&& (e.relatedTarget.localName != 'input' || !/form-control/.test(e.relatedTarget.className)) /* Check if focus goes to text input with class "form-control" */
@@ -228,8 +230,6 @@ define([
me.dontCloseDummyComment = false;
else if (/chat-msg-text/.test(e.target.id))
me.dontCloseChat = false;
- else if (/form-control/.test(e.target.className))
- me.inFormControl = false;
}
}
}).on('dragover', function(e) {
@@ -313,7 +313,7 @@ define([
this.plugins = this.editorConfig.plugins;
appHeader = this.getApplication().getController('Viewport').getView('Common.Views.Header');
- appHeader.setCanBack(this.appOptions.canBackToFolder === true)
+ appHeader.setCanBack(this.appOptions.canBackToFolder === true, (this.appOptions.canBackToFolder) ? this.editorConfig.customization.goback.text : '')
.setUserName(this.appOptions.user.fullname);
if (this.editorConfig.lang)
diff --git a/apps/documenteditor/main/app/view/DocumentHolder.js b/apps/documenteditor/main/app/view/DocumentHolder.js
index 35787eb77..11fd1c0eb 100644
--- a/apps/documenteditor/main/app/view/DocumentHolder.js
+++ b/apps/documenteditor/main/app/view/DocumentHolder.js
@@ -617,6 +617,7 @@ define([
if (pasteContainer.length < 1) {
me._arrSpecialPaste = [];
me._arrSpecialPaste[Asc.c_oSpecialPasteProps.paste] = me.textPaste;
+ me._arrSpecialPaste[Asc.c_oSpecialPasteProps.sourceformatting] = me.txtPasteSourceFormat;
me._arrSpecialPaste[Asc.c_oSpecialPasteProps.keepTextOnly] = me.txtKeepTextOnly;
me._arrSpecialPaste[Asc.c_oSpecialPasteProps.insertAsNestedTable] = me.textNest;
me._arrSpecialPaste[Asc.c_oSpecialPasteProps.overwriteCells] = me.txtOverwriteCells;
@@ -3726,7 +3727,8 @@ define([
textUpdatePages: 'Refresh page numbers only',
textTOCSettings: 'Table of contents settings',
textTOC: 'Table of contents',
- textRefreshField: 'Refresh field'
+ textRefreshField: 'Refresh field',
+ txtPasteSourceFormat: 'Keep source formatting'
}, DE.Views.DocumentHolder || {}));
});
\ No newline at end of file
diff --git a/apps/documenteditor/main/app/view/TableOfContentsSettings.js b/apps/documenteditor/main/app/view/TableOfContentsSettings.js
index 0527ffcb3..e7aa47d80 100644
--- a/apps/documenteditor/main/app/view/TableOfContentsSettings.js
+++ b/apps/documenteditor/main/app/view/TableOfContentsSettings.js
@@ -316,7 +316,7 @@ define([
'
',
'
<%= name %>
',
'
'
@@ -593,7 +593,7 @@ define([
if(!/[1-9]/.test(charCode) && !e.ctrlKey && e.keyCode !== Common.UI.Keys.DELETE && e.keyCode !== Common.UI.Keys.BACKSPACE &&
e.keyCode !== Common.UI.Keys.LEFT && e.keyCode !== Common.UI.Keys.RIGHT && e.keyCode !== Common.UI.Keys.HOME &&
e.keyCode !== Common.UI.Keys.END && e.keyCode !== Common.UI.Keys.ESC && e.keyCode !== Common.UI.Keys.INSERT &&
- e.keyCode !== Common.UI.Keys.TAB || input.val().length>1){
+ e.keyCode !== Common.UI.Keys.TAB){
e.preventDefault();
e.stopPropagation();
}
@@ -628,8 +628,10 @@ define([
onItemChange: function(listView, itemView, record) {
this.addEvents(listView, itemView, record);
+ var inp = itemView.$el.find('input');
setTimeout(function(){
- itemView.$el.find('input').focus();
+ inp.focus();
+ inp[0].selectionStart = inp[0].selectionEnd = inp[0].value.length;
}, 10);
},
diff --git a/apps/documenteditor/main/locale/de.json b/apps/documenteditor/main/locale/de.json
index 78fcc1584..7a6ed86cd 100644
--- a/apps/documenteditor/main/locale/de.json
+++ b/apps/documenteditor/main/locale/de.json
@@ -978,6 +978,7 @@
"DE.Views.DocumentHolder.txtMatrixAlign": "Matrixausrichtung",
"DE.Views.DocumentHolder.txtOverbar": "Linie über dem Text",
"DE.Views.DocumentHolder.txtOverwriteCells": "Zellen überschreiben",
+ "DE.Views.DocumentHolder.txtPasteSourceFormat": "Ursprüngliche Formatierung beibehalten",
"DE.Views.DocumentHolder.txtPressLink": "Drücken Sie STRG und klicken Sie auf den Link",
"DE.Views.DocumentHolder.txtRemFractionBar": "Bruchstrich entfernen",
"DE.Views.DocumentHolder.txtRemLimit": "Grenzwert entfernen",
diff --git a/apps/documenteditor/main/locale/en.json b/apps/documenteditor/main/locale/en.json
index 7f15075c5..c7ae5eb0e 100644
--- a/apps/documenteditor/main/locale/en.json
+++ b/apps/documenteditor/main/locale/en.json
@@ -986,6 +986,7 @@
"DE.Views.DocumentHolder.txtMatrixAlign": "Matrix alignment",
"DE.Views.DocumentHolder.txtOverbar": "Bar over text",
"DE.Views.DocumentHolder.txtOverwriteCells": "Overwrite cells",
+ "DE.Views.DocumentHolder.txtPasteSourceFormat": "Keep source formatting",
"DE.Views.DocumentHolder.txtPressLink": "Press CTRL and click link",
"DE.Views.DocumentHolder.txtRemFractionBar": "Remove fraction bar",
"DE.Views.DocumentHolder.txtRemLimit": "Remove limit",
diff --git a/apps/documenteditor/main/locale/es.json b/apps/documenteditor/main/locale/es.json
index 70a9c3a24..571f9697b 100644
--- a/apps/documenteditor/main/locale/es.json
+++ b/apps/documenteditor/main/locale/es.json
@@ -177,45 +177,78 @@
"Common.Views.LanguageDialog.btnOk": "OK",
"Common.Views.LanguageDialog.labelSelect": "Seleccionar el idioma de documento",
"Common.Views.OpenDialog.cancelButtonText": "Cancelar",
+ "Common.Views.OpenDialog.closeButtonText": "Cerrar archivo",
"Common.Views.OpenDialog.okButtonText": "Aceptar",
"Common.Views.OpenDialog.txtEncoding": "Codificación",
"Common.Views.OpenDialog.txtIncorrectPwd": "La contraseña es incorrecta",
"Common.Views.OpenDialog.txtPassword": "Contraseña",
+ "Common.Views.OpenDialog.txtPreview": "Vista previa",
"Common.Views.OpenDialog.txtTitle": "Elegir opciones de %1",
"Common.Views.OpenDialog.txtTitleProtected": "Archivo protegido",
+ "Common.Views.PasswordDialog.cancelButtonText": "Cancelar",
+ "Common.Views.PasswordDialog.okButtonText": "OK",
+ "Common.Views.PasswordDialog.txtDescription": "Establezca una contraseña para proteger",
+ "Common.Views.PasswordDialog.txtIncorrectPwd": "La contraseña de confirmación es",
+ "Common.Views.PasswordDialog.txtPassword": "Contraseña",
+ "Common.Views.PasswordDialog.txtRepeat": "Repita la contraseña",
+ "Common.Views.PasswordDialog.txtTitle": "Establezca una contraseña",
"Common.Views.PluginDlg.textLoading": "Cargando",
"Common.Views.Plugins.groupCaption": "Extensiones",
"Common.Views.Plugins.strPlugins": "Plugins",
"Common.Views.Plugins.textLoading": "Cargando",
"Common.Views.Plugins.textStart": "Iniciar",
"Common.Views.Plugins.textStop": "Detener",
+ "Common.Views.Protection.hintAddPwd": "Encriptar con contraseña",
+ "Common.Views.Protection.hintPwd": "Cambie o elimine la contraseña",
+ "Common.Views.Protection.hintSignature": "Añadir firma digital o",
+ "Common.Views.Protection.txtAddPwd": "Añadir contraseña",
+ "Common.Views.Protection.txtChangePwd": "Cambie la contraseña",
+ "Common.Views.Protection.txtDeletePwd": "Eliminar contraseña",
+ "Common.Views.Protection.txtEncrypt": "Encriptar",
+ "Common.Views.Protection.txtInvisibleSignature": "Añadir firma digital",
+ "Common.Views.Protection.txtSignature": "Firma",
+ "Common.Views.Protection.txtSignatureLine": "Línea de la firma",
"Common.Views.RenameDialog.cancelButtonText": "Cancelar",
"Common.Views.RenameDialog.okButtonText": "Aceptar",
"Common.Views.RenameDialog.textName": "Nombre de archivo",
"Common.Views.RenameDialog.txtInvalidName": "El nombre de archivo no debe contener los símbolos siguientes:",
"Common.Views.ReviewChanges.hintNext": "Al siguiente cambio",
"Common.Views.ReviewChanges.hintPrev": "Al cambio anterior",
+ "Common.Views.ReviewChanges.strFast": "Rápido",
+ "Common.Views.ReviewChanges.strFastDesc": "Co-edición a tiempo real. Todos",
+ "Common.Views.ReviewChanges.strStrict": "Estricto",
+ "Common.Views.ReviewChanges.strStrictDesc": "Use el botón \"Guardar\" para",
"Common.Views.ReviewChanges.tipAcceptCurrent": "Aceptar cambio actual",
+ "Common.Views.ReviewChanges.tipCoAuthMode": "Establezca el modo de co-edición",
+ "Common.Views.ReviewChanges.tipHistory": "Mostrar historial de versiones",
"Common.Views.ReviewChanges.tipRejectCurrent": "Rechazar cambio actual",
"Common.Views.ReviewChanges.tipReview": "Seguimiento a cambios",
"Common.Views.ReviewChanges.tipReviewView": "Seleccionar el modo en el que quiere que se presenten los cambios",
"Common.Views.ReviewChanges.tipSetDocLang": "Establecer el idioma de documento",
"Common.Views.ReviewChanges.tipSetSpelling": "Сorrección ortográfica",
+ "Common.Views.ReviewChanges.tipSharing": "Gestionar derechos de acceso al documento",
"Common.Views.ReviewChanges.txtAccept": "Aceptar",
"Common.Views.ReviewChanges.txtAcceptAll": "Aceptar Todos los Cambios",
"Common.Views.ReviewChanges.txtAcceptChanges": "Aceptar cambios",
"Common.Views.ReviewChanges.txtAcceptCurrent": "Aceptar Cambios Actuales",
+ "Common.Views.ReviewChanges.txtChat": "Chat",
"Common.Views.ReviewChanges.txtClose": "Cerrar",
+ "Common.Views.ReviewChanges.txtCoAuthMode": "Modo de co-edición",
"Common.Views.ReviewChanges.txtDocLang": "Idioma",
"Common.Views.ReviewChanges.txtFinal": "Todos los cambio aceptados (vista previa)",
+ "Common.Views.ReviewChanges.txtFinalCap": "Final",
+ "Common.Views.ReviewChanges.txtHistory": "Historial de versiones",
"Common.Views.ReviewChanges.txtMarkup": "Todos los cambios (Edición)",
- "Common.Views.ReviewChanges.txtNext": "Para Cambio Siguiente",
+ "Common.Views.ReviewChanges.txtMarkupCap": "Margen",
+ "Common.Views.ReviewChanges.txtNext": "Al siguiente cambio",
"Common.Views.ReviewChanges.txtOriginal": "Todos los cambios rechazados (Vista previa)",
- "Common.Views.ReviewChanges.txtPrev": "Cambio anterior",
+ "Common.Views.ReviewChanges.txtOriginalCap": "Original",
+ "Common.Views.ReviewChanges.txtPrev": "Al cambio anterior",
"Common.Views.ReviewChanges.txtReject": "Rechazar",
"Common.Views.ReviewChanges.txtRejectAll": "Rechazar todos los cambios",
"Common.Views.ReviewChanges.txtRejectChanges": "Rechazar cambios",
"Common.Views.ReviewChanges.txtRejectCurrent": "Rechazar Cambio Actual",
+ "Common.Views.ReviewChanges.txtSharing": "Compartir",
"Common.Views.ReviewChanges.txtSpelling": "Сorrección ortográfica",
"Common.Views.ReviewChanges.txtTurnon": "Seguimiento a cambios",
"Common.Views.ReviewChanges.txtView": "Modo de visualización",
@@ -282,6 +315,7 @@
"DE.Controllers.Main.errorDataRange": "Rango de datos incorrecto.",
"DE.Controllers.Main.errorDefaultMessage": "Código de error: %1",
"DE.Controllers.Main.errorFilePassProtect": "El documento está protegido por una contraseña y no puede ser abierto.",
+ "DE.Controllers.Main.errorForceSave": "Ha ocurrido un error mientras",
"DE.Controllers.Main.errorKeyEncrypt": "Descriptor de clave desconocido",
"DE.Controllers.Main.errorKeyExpire": "Descriptor de clave ha expirado",
"DE.Controllers.Main.errorMailMergeLoadFile": "Error de carga",
@@ -336,7 +370,7 @@
"DE.Controllers.Main.textCloseTip": "Pulse para cerrar el consejo",
"DE.Controllers.Main.textContactUs": "Contactar con equipo de ventas",
"DE.Controllers.Main.textLoadingDocument": "Cargando documento",
- "DE.Controllers.Main.textNoLicenseTitle": "Limitación en conexiones de ONLYOFFICE",
+ "DE.Controllers.Main.textNoLicenseTitle": "Conexión ONLYOFFICE",
"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.",
@@ -351,6 +385,7 @@
"DE.Controllers.Main.txtButtons": "Botones",
"DE.Controllers.Main.txtCallouts": "Llamadas",
"DE.Controllers.Main.txtCharts": "Gráficos",
+ "DE.Controllers.Main.txtCurrentDocument": "Documento actual",
"DE.Controllers.Main.txtDiagramTitle": "Título de diagrama",
"DE.Controllers.Main.txtEditingMode": "Establecer el modo de edición...",
"DE.Controllers.Main.txtErrorLoadHistory": "Historia de carga falló",
@@ -362,6 +397,7 @@
"DE.Controllers.Main.txtLines": "Líneas",
"DE.Controllers.Main.txtMath": "Matemáticas",
"DE.Controllers.Main.txtNeedSynchronize": "Usted tiene actualizaciones",
+ "DE.Controllers.Main.txtNoTableOfContents": "No hay entradas en la tabla de contenido",
"DE.Controllers.Main.txtOddPage": "Página impar",
"DE.Controllers.Main.txtOnPage": "en la página",
"DE.Controllers.Main.txtRectangles": "Rectángulos",
@@ -369,6 +405,7 @@
"DE.Controllers.Main.txtSection": "-Sección",
"DE.Controllers.Main.txtSeries": "Serie",
"DE.Controllers.Main.txtStarsRibbons": "Cintas y estrellas",
+ "DE.Controllers.Main.txtStyle_footnote_text": "Texto a pie de página",
"DE.Controllers.Main.txtStyle_Heading_1": "Título 1",
"DE.Controllers.Main.txtStyle_Heading_2": "Título 2",
"DE.Controllers.Main.txtStyle_Heading_3": "Título 3",
@@ -385,6 +422,7 @@
"DE.Controllers.Main.txtStyle_Quote": "Cita",
"DE.Controllers.Main.txtStyle_Subtitle": "Subtítulo",
"DE.Controllers.Main.txtStyle_Title": "Título",
+ "DE.Controllers.Main.txtTableOfContents": "Tabla de contenidos",
"DE.Controllers.Main.txtXAxis": "Eje X",
"DE.Controllers.Main.txtYAxis": "Eje Y",
"DE.Controllers.Main.unknownErrorText": "Error desconocido.",
@@ -397,8 +435,11 @@
"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.warnLicenseExp": "Su licencia ha expirado.
Por favor, actualice su licencia y después recargue la página.",
- "DE.Controllers.Main.warnNoLicense": "Esta versión de ONLYOFFICE Editors tiene ciertas limitaciones respecto a la cantidad de conexiones concurrentes al servidor de documentos.
Si requiere más, por favor considere mejorar su licencia actual o adquirir una comercial.",
+ "DE.Controllers.Main.warnNoLicense": "Esta versión tiene limitaciones respecto a la cantidad de conexiones concurrentes al servidor del documentos.
Si se requiere más, considere la posibilidad de actualizar la licencia actual o de adquirir la licencia comercial.",
+ "DE.Controllers.Main.warnNoLicenseUsers": "Esta versión de",
"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",
"DE.Controllers.Statusbar.textHasChanges": "Nuevos cambios han sido encontrado",
"DE.Controllers.Statusbar.textTrackChanges": "El documento se abre con el modo de cambio de pista activado",
"DE.Controllers.Statusbar.tipReview": "Seguimiento a cambios",
@@ -764,6 +805,14 @@
"DE.Views.ChartSettings.txtTight": "Estrecho",
"DE.Views.ChartSettings.txtTitle": "Gráfico",
"DE.Views.ChartSettings.txtTopAndBottom": "Superior e inferior",
+ "DE.Views.ControlSettingsDialog.cancelButtonText": "Cancelar",
+ "DE.Views.ControlSettingsDialog.okButtonText": "Ok",
+ "DE.Views.ControlSettingsDialog.textLock": "Cerrando",
+ "DE.Views.ControlSettingsDialog.textName": "Título",
+ "DE.Views.ControlSettingsDialog.textTag": "Etiqueta",
+ "DE.Views.ControlSettingsDialog.textTitle": "Ajustes de control de contenido",
+ "DE.Views.ControlSettingsDialog.txtLockDelete": "El control de contenido no puede",
+ "DE.Views.ControlSettingsDialog.txtLockEdit": "Los contenidos no se pueden editar",
"DE.Views.CustomColumnsDialog.cancelButtonText": "Cancelar",
"DE.Views.CustomColumnsDialog.okButtonText": "OK",
"DE.Views.CustomColumnsDialog.textColumns": "Número de columnas",
@@ -830,6 +879,10 @@
"DE.Views.DocumentHolder.spellcheckText": "Сorrección ortográfica",
"DE.Views.DocumentHolder.splitCellsText": "Dividir celda...",
"DE.Views.DocumentHolder.splitCellTitleText": "Dividir celda",
+ "DE.Views.DocumentHolder.strDelete": "Elimine la firma",
+ "DE.Views.DocumentHolder.strDetails": "Detalles de la firma",
+ "DE.Views.DocumentHolder.strSetup": "Preparación de la firma",
+ "DE.Views.DocumentHolder.strSign": "Firmar",
"DE.Views.DocumentHolder.styleText": "Formateando como Estilo",
"DE.Views.DocumentHolder.tableText": "Tabla",
"DE.Views.DocumentHolder.textAlign": "Alinear",
@@ -838,19 +891,33 @@
"DE.Views.DocumentHolder.textArrangeBackward": "Enviar atrás",
"DE.Views.DocumentHolder.textArrangeForward": "Traer adelante",
"DE.Views.DocumentHolder.textArrangeFront": "Traer al primer plano",
+ "DE.Views.DocumentHolder.textContentControls": "Control de contenido",
"DE.Views.DocumentHolder.textCopy": "Copiar",
"DE.Views.DocumentHolder.textCut": "Cortar",
+ "DE.Views.DocumentHolder.textDistributeCols": "Distribuir columnas",
+ "DE.Views.DocumentHolder.textDistributeRows": "Distribuir filas",
+ "DE.Views.DocumentHolder.textEditControls": "Los ajustes del control de contenido",
"DE.Views.DocumentHolder.textEditWrapBoundary": "Editar límite de ajuste",
+ "DE.Views.DocumentHolder.textNest": "Tabla nido",
"DE.Views.DocumentHolder.textNextPage": "Página siguiente",
"DE.Views.DocumentHolder.textPaste": "Pegar",
"DE.Views.DocumentHolder.textPrevPage": "Página anterior",
+ "DE.Views.DocumentHolder.textRefreshField": "Actualize el campo",
+ "DE.Views.DocumentHolder.textRemove": "Eliminar",
+ "DE.Views.DocumentHolder.textRemoveControl": "Elimine el control de contenido",
+ "DE.Views.DocumentHolder.textSettings": "Ajustes",
"DE.Views.DocumentHolder.textShapeAlignBottom": "Alinear en la parte inferior",
"DE.Views.DocumentHolder.textShapeAlignCenter": "Alinear al centro",
"DE.Views.DocumentHolder.textShapeAlignLeft": "Alinear a la izquierda",
"DE.Views.DocumentHolder.textShapeAlignMiddle": "Alinear al medio",
"DE.Views.DocumentHolder.textShapeAlignRight": "Alinear a la derecha",
"DE.Views.DocumentHolder.textShapeAlignTop": "Alinear en la parte superior",
+ "DE.Views.DocumentHolder.textTOC": "Tabla de contenidos",
+ "DE.Views.DocumentHolder.textTOCSettings": "Ajustes de la tabla de contenidos",
"DE.Views.DocumentHolder.textUndo": "Deshacer",
+ "DE.Views.DocumentHolder.textUpdateAll": "Actualize toda la tabla",
+ "DE.Views.DocumentHolder.textUpdatePages": "Actualize solo los números de página",
+ "DE.Views.DocumentHolder.textUpdateTOC": "Actualize la tabla de contenidos",
"DE.Views.DocumentHolder.textWrap": "Ajuste de texto",
"DE.Views.DocumentHolder.tipIsLocked": "Otro usuario está editando este elemento ahora.",
"DE.Views.DocumentHolder.txtAddBottom": "Add bottom border",
@@ -910,6 +977,8 @@
"DE.Views.DocumentHolder.txtMatchBrackets": "Combinar cochetes a la altura de argumento",
"DE.Views.DocumentHolder.txtMatrixAlign": "Alineación de la matriz",
"DE.Views.DocumentHolder.txtOverbar": "Barra sobre texto",
+ "DE.Views.DocumentHolder.txtOverwriteCells": "Sobreescribir las celdas",
+ "DE.Views.DocumentHolder.txtPasteSourceFormat": "Mantener el formato original",
"DE.Views.DocumentHolder.txtPressLink": "Pulse CTRL y haga clic en el enlace",
"DE.Views.DocumentHolder.txtRemFractionBar": "Quitar la barra de fracción",
"DE.Views.DocumentHolder.txtRemLimit": "Eliminar límite",
@@ -988,7 +1057,7 @@
"DE.Views.FileMenu.btnHistoryCaption": "Historial de las Versiones",
"DE.Views.FileMenu.btnInfoCaption": "Info sobre documento...",
"DE.Views.FileMenu.btnPrintCaption": "Imprimir",
- "DE.Views.FileMenu.btnProtectCaption": "Proteger\\Firmar",
+ "DE.Views.FileMenu.btnProtectCaption": "Proteger",
"DE.Views.FileMenu.btnRecentFilesCaption": "Abrir reciente...",
"DE.Views.FileMenu.btnRenameCaption": "Renombrar...",
"DE.Views.FileMenu.btnReturnCaption": "Volver a Documento",
@@ -1018,8 +1087,17 @@
"DE.Views.FileMenuPanels.DocumentInfo.txtWords": "Palabras",
"DE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Cambiar derechos de acceso",
"DE.Views.FileMenuPanels.DocumentRights.txtRights": "Personas que tienen derechos",
+ "DE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Aviso",
+ "DE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "Con contraseña",
"DE.Views.FileMenuPanels.ProtectDoc.strProtect": "Proteger Documento",
- "DE.Views.FileMenuPanels.ProtectDoc.strSignature": "Firma",
+ "DE.Views.FileMenuPanels.ProtectDoc.strSignature": "Con firma",
+ "DE.Views.FileMenuPanels.ProtectDoc.txtEdit": "Editar documento",
+ "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.txtView": "Ver firmas",
"DE.Views.FileMenuPanels.Settings.okButtonText": "Aplicar",
"DE.Views.FileMenuPanels.Settings.strAlignGuides": "Activar guías de alineación",
"DE.Views.FileMenuPanels.Settings.strAutoRecover": "Activar autorecuperación",
@@ -1064,17 +1142,23 @@
"DE.Views.FileMenuPanels.Settings.txtWin": "como Windows",
"DE.Views.HeaderFooterSettings.textBottomCenter": "Inferior centro",
"DE.Views.HeaderFooterSettings.textBottomLeft": "Inferior izquierdo",
+ "DE.Views.HeaderFooterSettings.textBottomPage": "Final de la página",
"DE.Views.HeaderFooterSettings.textBottomRight": "Inferior derecho",
"DE.Views.HeaderFooterSettings.textDiffFirst": "Primera página diferente",
"DE.Views.HeaderFooterSettings.textDiffOdd": "Páginas impares y pares diferentes",
+ "DE.Views.HeaderFooterSettings.textFrom": "Empezar a",
"DE.Views.HeaderFooterSettings.textHeaderFromBottom": "Pie de página desde abajo",
"DE.Views.HeaderFooterSettings.textHeaderFromTop": "Encabezado desde arriba",
+ "DE.Views.HeaderFooterSettings.textInsertCurrent": "Introducir en la posición actual",
"DE.Views.HeaderFooterSettings.textOptions": "Opciones",
"DE.Views.HeaderFooterSettings.textPageNum": "Insertar número de página",
+ "DE.Views.HeaderFooterSettings.textPageNumbering": "Numeración de páginas",
"DE.Views.HeaderFooterSettings.textPosition": "Posición",
+ "DE.Views.HeaderFooterSettings.textPrev": "Continuar desde el anterior",
"DE.Views.HeaderFooterSettings.textSameAs": "Enlazar con anterior",
"DE.Views.HeaderFooterSettings.textTopCenter": "Superior centro",
"DE.Views.HeaderFooterSettings.textTopLeft": "Superior izquierdo",
+ "DE.Views.HeaderFooterSettings.textTopPage": "Principio de la página",
"DE.Views.HeaderFooterSettings.textTopRight": "Superior derecho",
"DE.Views.HyperlinkSettingsDialog.cancelButtonText": "Cancelar",
"DE.Views.HyperlinkSettingsDialog.okButtonText": "Aceptar",
@@ -1182,6 +1266,23 @@
"DE.Views.LeftMenu.tipTitles": "Títulos",
"DE.Views.LeftMenu.txtDeveloper": "MODO DE DESARROLLO",
"DE.Views.LeftMenu.txtTrial": "MODO DE PRUEBA",
+ "DE.Views.Links.capBtnContentsUpdate": "Actualizar",
+ "DE.Views.Links.capBtnInsContents": "Tabla de contenidos",
+ "DE.Views.Links.capBtnInsFootnote": "Nota a pie de página",
+ "DE.Views.Links.capBtnInsLink": "Hiperenlace",
+ "DE.Views.Links.confirmDeleteFootnotes": "¿Usted desea eliminar todas",
+ "DE.Views.Links.mniDelFootnote": "Eliminar todas las notas al pie de página",
+ "DE.Views.Links.mniInsFootnote": "Introducir nota a pie de página",
+ "DE.Views.Links.mniNoteSettings": "Ajustes de notas",
+ "DE.Views.Links.textContentsRemove": "Elimine la tabla de contenidos",
+ "DE.Views.Links.textContentsSettings": "Ajustes",
+ "DE.Views.Links.textGotoFootnote": "Ir a las notas a pie de página",
+ "DE.Views.Links.textUpdateAll": "Actualize toda la tabla",
+ "DE.Views.Links.textUpdatePages": "Actualize solo los números de página",
+ "DE.Views.Links.tipContents": "Introducir tabla de contenidos",
+ "DE.Views.Links.tipContentsUpdate": "Actualize la tabla de contenidos",
+ "DE.Views.Links.tipInsertHyperlink": "Añadir hiperenlace",
+ "DE.Views.Links.tipNotes": "Introducir o editar notas a pie de página",
"DE.Views.MailMergeEmailDlg.cancelButtonText": "Cancelar",
"DE.Views.MailMergeEmailDlg.filePlaceholder": "PDF",
"DE.Views.MailMergeEmailDlg.okButtonText": "Enviar",
@@ -1234,6 +1335,17 @@
"DE.Views.MailMergeSettings.txtPrev": "a registro anterior",
"DE.Views.MailMergeSettings.txtUntitled": "Sin título",
"DE.Views.MailMergeSettings.warnProcessMailMerge": "Imposible empezar fusión",
+ "DE.Views.Navigation.txtCollapse": "Desplegar todo",
+ "DE.Views.Navigation.txtDemote": "Degradar",
+ "DE.Views.Navigation.txtEmpty": "Este documento no",
+ "DE.Views.Navigation.txtEmptyItem": "Encabezado vacío",
+ "DE.Views.Navigation.txtExpand": "Expandir todo",
+ "DE.Views.Navigation.txtExpandToLevel": "Expandir a nivel...",
+ "DE.Views.Navigation.txtHeadingAfter": "Título nuevo después ",
+ "DE.Views.Navigation.txtHeadingBefore": "Título nuevo antes",
+ "DE.Views.Navigation.txtNewHeading": "Subtítulo nuevo",
+ "DE.Views.Navigation.txtPromote": "Promover",
+ "DE.Views.Navigation.txtSelect": "Seleccione contenido",
"DE.Views.NoteSettingsDialog.textApply": "Aplicar",
"DE.Views.NoteSettingsDialog.textApplyTo": "Aplicar cambios a",
"DE.Views.NoteSettingsDialog.textCancel": "Cancelar",
@@ -1312,8 +1424,10 @@
"DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Espaciado entre caracteres",
"DE.Views.ParagraphSettingsAdvanced.textDefault": "Tabulador Predeterminado",
"DE.Views.ParagraphSettingsAdvanced.textEffects": "Efectos",
+ "DE.Views.ParagraphSettingsAdvanced.textLeader": "Director",
"DE.Views.ParagraphSettingsAdvanced.textLeft": "Izquierdo",
"DE.Views.ParagraphSettingsAdvanced.textNewColor": "Añadir Color Personalizado Nuevo",
+ "DE.Views.ParagraphSettingsAdvanced.textNone": "Ninguno",
"DE.Views.ParagraphSettingsAdvanced.textPosition": "Posición",
"DE.Views.ParagraphSettingsAdvanced.textRemove": "Eliminar",
"DE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Eliminar todo",
@@ -1394,11 +1508,21 @@
"DE.Views.ShapeSettings.txtTight": "Estrecho",
"DE.Views.ShapeSettings.txtTopAndBottom": "Superior e inferior",
"DE.Views.ShapeSettings.txtWood": "Madera",
+ "DE.Views.SignatureSettings.notcriticalErrorTitle": "Aviso",
+ "DE.Views.SignatureSettings.strDelete": "Elimine la firma",
+ "DE.Views.SignatureSettings.strDetails": "Detalles de la firma",
"DE.Views.SignatureSettings.strInvalid": "Firmas invalidas",
"DE.Views.SignatureSettings.strRequested": "Firmas requeridas",
+ "DE.Views.SignatureSettings.strSetup": "Preparación de la firma",
"DE.Views.SignatureSettings.strSign": "Firmar",
"DE.Views.SignatureSettings.strSignature": "Firma",
+ "DE.Views.SignatureSettings.strSigner": "Firmante",
"DE.Views.SignatureSettings.strValid": "Firmas valida",
+ "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.Statusbar.goToPageText": "Ir a página",
"DE.Views.Statusbar.pageIndexText": "Página {0} de {1}",
"DE.Views.Statusbar.tipFitPage": "Ajustar a la página",
@@ -1413,6 +1537,26 @@
"DE.Views.StyleTitleDialog.textTitle": "Title",
"DE.Views.StyleTitleDialog.txtEmpty": "Este campo es obligatorio",
"DE.Views.StyleTitleDialog.txtNotEmpty": "El campo no puede estar vacío",
+ "DE.Views.TableOfContentsSettings.cancelButtonText": "Cancelar",
+ "DE.Views.TableOfContentsSettings.okButtonText ": "OK",
+ "DE.Views.TableOfContentsSettings.strAlign": "Alinee los números de página a la derecha",
+ "DE.Views.TableOfContentsSettings.strLinks": "Formatear tabla de contenidos",
+ "DE.Views.TableOfContentsSettings.strShowPages": "Mostrar números de página",
+ "DE.Views.TableOfContentsSettings.textBuildTable": "Crear tabla de contenidos desde",
+ "DE.Views.TableOfContentsSettings.textLeader": "Director",
+ "DE.Views.TableOfContentsSettings.textLevel": "Nivel",
+ "DE.Views.TableOfContentsSettings.textLevels": "Niveles",
+ "DE.Views.TableOfContentsSettings.textNone": "Ninguna",
+ "DE.Views.TableOfContentsSettings.textRadioLevels": "Niveles de perfil",
+ "DE.Views.TableOfContentsSettings.textRadioStyles": "Seleccione estilos",
+ "DE.Views.TableOfContentsSettings.textStyle": "Estilo",
+ "DE.Views.TableOfContentsSettings.textStyles": "Estilos",
+ "DE.Views.TableOfContentsSettings.textTitle": "Tabla de contenidos",
+ "DE.Views.TableOfContentsSettings.txtClassic": "Clásico",
+ "DE.Views.TableOfContentsSettings.txtCurrent": "Actual",
+ "DE.Views.TableOfContentsSettings.txtModern": "Moderna",
+ "DE.Views.TableOfContentsSettings.txtSimple": "Simple",
+ "DE.Views.TableOfContentsSettings.txtStandard": "Estándar",
"DE.Views.TableSettings.deleteColumnText": "Borrar columna",
"DE.Views.TableSettings.deleteRowText": "Borrar fila",
"DE.Views.TableSettings.deleteTableText": "Borrar tabla",
@@ -1434,11 +1578,15 @@
"DE.Views.TableSettings.textBorderColor": "Color",
"DE.Views.TableSettings.textBorders": "Estilo de bordes",
"DE.Views.TableSettings.textCancel": "Cancelar",
+ "DE.Views.TableSettings.textCellSize": "Tamaño de la celda",
"DE.Views.TableSettings.textColumns": "Columnas",
+ "DE.Views.TableSettings.textDistributeCols": "Distribuir columnas",
+ "DE.Views.TableSettings.textDistributeRows": "Distribuir filas",
"DE.Views.TableSettings.textEdit": "Filas y columnas",
"DE.Views.TableSettings.textEmptyTemplate": "Sin plantillas",
"DE.Views.TableSettings.textFirst": "primero",
"DE.Views.TableSettings.textHeader": "Encabezado",
+ "DE.Views.TableSettings.textHeight": "Altura",
"DE.Views.TableSettings.textLast": "Última",
"DE.Views.TableSettings.textNewColor": "Añadir Color Personalizado Nuevo",
"DE.Views.TableSettings.textOK": "Aceptar",
@@ -1446,6 +1594,7 @@
"DE.Views.TableSettings.textSelectBorders": "Seleccione bordes que usted desea cambiar aplicando estilo seleccionado",
"DE.Views.TableSettings.textTemplate": "Seleccionar de plantilla",
"DE.Views.TableSettings.textTotal": "Total",
+ "DE.Views.TableSettings.textWidth": "Ancho",
"DE.Views.TableSettings.tipAll": "Fijar borde exterior y todas líneas interiores ",
"DE.Views.TableSettings.tipBottom": "Fijar sólo borde exterior inferior",
"DE.Views.TableSettings.tipInner": "Fijar sólo líneas interiores",
@@ -1555,6 +1704,7 @@
"DE.Views.Toolbar.capBtnColumns": "Columnas",
"DE.Views.Toolbar.capBtnComment": "Comentario",
"DE.Views.Toolbar.capBtnInsChart": "Diagram",
+ "DE.Views.Toolbar.capBtnInsControls": "Controles de contenido",
"DE.Views.Toolbar.capBtnInsDropcap": "Quitar capitlización",
"DE.Views.Toolbar.capBtnInsEquation": "Ecuación",
"DE.Views.Toolbar.capBtnInsHeader": "Encabezado/Pie de página",
@@ -1573,6 +1723,7 @@
"DE.Views.Toolbar.capImgGroup": "Agrupar",
"DE.Views.Toolbar.capImgWrapping": "Ajustando",
"DE.Views.Toolbar.mniCustomTable": "Insertar tabla personalizada",
+ "DE.Views.Toolbar.mniEditControls": "Ajustes de control",
"DE.Views.Toolbar.mniEditDropCap": "Ajustes de letra capital",
"DE.Views.Toolbar.mniEditFooter": "Editar pie de página",
"DE.Views.Toolbar.mniEditHeader": "Editar encabezado",
@@ -1626,8 +1777,11 @@
"DE.Views.Toolbar.textPageMarginsCustom": "Márgenes personalizados",
"DE.Views.Toolbar.textPageSizeCustom": "Tamaño de página personalizado",
"DE.Views.Toolbar.textPie": "Gráfico circular",
+ "DE.Views.Toolbar.textPlainControl": "Introducir contenido de texto simple",
"DE.Views.Toolbar.textPoint": "XY (Dispersión)",
"DE.Views.Toolbar.textPortrait": "Vertical",
+ "DE.Views.Toolbar.textRemoveControl": "Elimine el control de contenido",
+ "DE.Views.Toolbar.textRichControl": "Introducir contenido de texto rico",
"DE.Views.Toolbar.textRight": "Derecho: ",
"DE.Views.Toolbar.textStock": "De cotizaciones",
"DE.Views.Toolbar.textStrikeout": "Tachado",
@@ -1640,10 +1794,13 @@
"DE.Views.Toolbar.textSubscript": "Subíndice",
"DE.Views.Toolbar.textSuperscript": "Sobreíndice",
"DE.Views.Toolbar.textSurface": "Superficie",
+ "DE.Views.Toolbar.textTabCollaboration": "Colaboración",
"DE.Views.Toolbar.textTabFile": "Archivo",
"DE.Views.Toolbar.textTabHome": "Inicio",
"DE.Views.Toolbar.textTabInsert": "Insertar",
"DE.Views.Toolbar.textTabLayout": "Diseño",
+ "DE.Views.Toolbar.textTabLinks": "Referencias",
+ "DE.Views.Toolbar.textTabProtect": "Proteción",
"DE.Views.Toolbar.textTabReview": "Revisar",
"DE.Views.Toolbar.textTitleError": "Error",
"DE.Views.Toolbar.textToCurrent": "A la posición actual",
@@ -1660,6 +1817,7 @@
"DE.Views.Toolbar.tipClearStyle": "Borrar estilo",
"DE.Views.Toolbar.tipColorSchemas": "Cambiar combinación de colores",
"DE.Views.Toolbar.tipColumns": "Insertar columnas",
+ "DE.Views.Toolbar.tipControls": "Introducir controles de contenido",
"DE.Views.Toolbar.tipCopy": "Copiar",
"DE.Views.Toolbar.tipCopyStyle": "Copiar estilo",
"DE.Views.Toolbar.tipDecFont": "Reducir tamaño de letra",
@@ -1682,7 +1840,7 @@
"DE.Views.Toolbar.tipInsertNum": "Insertar número de página",
"DE.Views.Toolbar.tipInsertShape": "Insertar autoforma",
"DE.Views.Toolbar.tipInsertTable": "Insertar tabla",
- "DE.Views.Toolbar.tipInsertText": "Insertar texto",
+ "DE.Views.Toolbar.tipInsertText": "Insertar cuadro de texto",
"DE.Views.Toolbar.tipInsertTextArt": "Insertar Texto Arte",
"DE.Views.Toolbar.tipLineSpace": "Espaciado de línea de párrafo",
"DE.Views.Toolbar.tipMailRecepients": "Combinación de Correspondencia",
diff --git a/apps/documenteditor/main/locale/fr.json b/apps/documenteditor/main/locale/fr.json
index aacda211e..736fc4882 100644
--- a/apps/documenteditor/main/locale/fr.json
+++ b/apps/documenteditor/main/locale/fr.json
@@ -976,6 +976,7 @@
"DE.Views.DocumentHolder.txtMatrixAlign": "Alignement de la matrice",
"DE.Views.DocumentHolder.txtOverbar": "Barre au-dessus d'un texte",
"DE.Views.DocumentHolder.txtOverwriteCells": "Remplacer les cellules",
+ "DE.Views.DocumentHolder.txtPasteSourceFormat": "Garder la mise en forme source",
"DE.Views.DocumentHolder.txtPressLink": "Appuyez sur Ctrl et cliquez sur le lien",
"DE.Views.DocumentHolder.txtRemFractionBar": "Supprimer la barre de fraction",
"DE.Views.DocumentHolder.txtRemLimit": "Supprimer la limite",
diff --git a/apps/documenteditor/main/locale/it.json b/apps/documenteditor/main/locale/it.json
index 86d6c1c3a..0b6f0cef2 100644
--- a/apps/documenteditor/main/locale/it.json
+++ b/apps/documenteditor/main/locale/it.json
@@ -974,6 +974,7 @@
"DE.Views.DocumentHolder.txtMatrixAlign": "Matrix alignment",
"DE.Views.DocumentHolder.txtOverbar": "Barra sopra al testo",
"DE.Views.DocumentHolder.txtOverwriteCells": "Sovrascrivi celle",
+ "DE.Views.DocumentHolder.txtPasteSourceFormat": "Mantieni la formattazione sorgente",
"DE.Views.DocumentHolder.txtPressLink": "Premi CTRL e clicca sul collegamento",
"DE.Views.DocumentHolder.txtRemFractionBar": "Rimuovi la barra di frazione",
"DE.Views.DocumentHolder.txtRemLimit": "Remove limit",
diff --git a/apps/documenteditor/main/locale/lv.json b/apps/documenteditor/main/locale/lv.json
index 5b4cb20ff..e2d3acdd2 100644
--- a/apps/documenteditor/main/locale/lv.json
+++ b/apps/documenteditor/main/locale/lv.json
@@ -32,7 +32,7 @@
"Common.Controllers.ReviewChanges.textImage": "Image",
"Common.Controllers.ReviewChanges.textIndentLeft": "Indent left",
"Common.Controllers.ReviewChanges.textIndentRight": "Indent right",
- "Common.Controllers.ReviewChanges.textInserted": "
Inserted:",
+ "Common.Controllers.ReviewChanges.textInserted": "
Ievietots:",
"Common.Controllers.ReviewChanges.textItalic": "Italic",
"Common.Controllers.ReviewChanges.textJustify": "Align justify",
"Common.Controllers.ReviewChanges.textKeepLines": "Keep lines together",
@@ -47,9 +47,9 @@
"Common.Controllers.ReviewChanges.textNot": "Not ",
"Common.Controllers.ReviewChanges.textNoWidow": "No widow control",
"Common.Controllers.ReviewChanges.textNum": "Change numbering",
- "Common.Controllers.ReviewChanges.textParaDeleted": "
Paragraph Deleted ",
+ "Common.Controllers.ReviewChanges.textParaDeleted": "
Dzēsta rindkopa ",
"Common.Controllers.ReviewChanges.textParaFormatted": "Paragraph Formatted",
- "Common.Controllers.ReviewChanges.textParaInserted": "
Paragraph Inserted ",
+ "Common.Controllers.ReviewChanges.textParaInserted": "
Ievietota rindkopa ",
"Common.Controllers.ReviewChanges.textPosition": "Position",
"Common.Controllers.ReviewChanges.textRight": "Align right",
"Common.Controllers.ReviewChanges.textShape": "Shape",
@@ -177,15 +177,17 @@
"Common.Views.LanguageDialog.btnOk": "OK",
"Common.Views.LanguageDialog.labelSelect": "Izvēlēties dokumenta valodu",
"Common.Views.OpenDialog.cancelButtonText": "Cancel",
+ "Common.Views.OpenDialog.closeButtonText": "Aizvērt failu",
"Common.Views.OpenDialog.okButtonText": "OK",
"Common.Views.OpenDialog.txtEncoding": "Encoding ",
"Common.Views.OpenDialog.txtIncorrectPwd": "Parole nav pareiza.",
"Common.Views.OpenDialog.txtPassword": "Parole",
+ "Common.Views.OpenDialog.txtPreview": "Priekšskatījums",
"Common.Views.OpenDialog.txtTitle": "Choose %1 options",
"Common.Views.OpenDialog.txtTitleProtected": "Aizsargāts fails",
"Common.Views.PasswordDialog.cancelButtonText": "Atcelt",
"Common.Views.PasswordDialog.okButtonText": "OK",
- "Common.Views.PasswordDialog.txtDescription": "Lai atvērtu šo dokumentu, ir nepieciešama parole",
+ "Common.Views.PasswordDialog.txtDescription": "Lai pasargātu šo dokumentu, uzstādiet paroli",
"Common.Views.PasswordDialog.txtIncorrectPwd": "Apstiprinājuma parole nesakrīt",
"Common.Views.PasswordDialog.txtPassword": "Parole",
"Common.Views.PasswordDialog.txtRepeat": "Atkārtot paroli",
@@ -212,27 +214,41 @@
"Common.Views.RenameDialog.txtInvalidName": "Faila nosaukums nedrīkst saturēt šādas zīmes:",
"Common.Views.ReviewChanges.hintNext": "Uz nākamo izmaiņu",
"Common.Views.ReviewChanges.hintPrev": "Uz iepriekšējo izmaiņu",
+ "Common.Views.ReviewChanges.strFast": "Ātri",
+ "Common.Views.ReviewChanges.strFastDesc": "Kopīga rediģēšana reāllaikā. Visas izmaiņas tiek automātiski saglabātas.",
+ "Common.Views.ReviewChanges.strStrict": "Strikti",
+ "Common.Views.ReviewChanges.strStrictDesc": "Izmantojiet \"Saglabāt\" taustiņu, lai sinhronizētu sevis un citu veiktās izmaiņas.",
"Common.Views.ReviewChanges.tipAcceptCurrent": "Pieņemt šībrīža izmaiņas",
+ "Common.Views.ReviewChanges.tipCoAuthMode": "Uzstādīt kopīgās rediģēšanas režīmu",
+ "Common.Views.ReviewChanges.tipHistory": "Parādīt versiju vēsturi",
"Common.Views.ReviewChanges.tipRejectCurrent": "Noraidīt šībrīža izmaiņas",
"Common.Views.ReviewChanges.tipReview": "Izmaiņu reģistrēšana",
"Common.Views.ReviewChanges.tipReviewView": "Izvēlēties režīmu, kurā vēlaties atainot izmaiņas",
"Common.Views.ReviewChanges.tipSetDocLang": "Uzstādīt dokumenta valodu",
"Common.Views.ReviewChanges.tipSetSpelling": "Pareizrakstības pārbaude",
+ "Common.Views.ReviewChanges.tipSharing": "Pārvaldīt dokumenta piekļuves tiesības",
"Common.Views.ReviewChanges.txtAccept": "Accept",
"Common.Views.ReviewChanges.txtAcceptAll": "Accept All Changes",
"Common.Views.ReviewChanges.txtAcceptChanges": "Pieņemt izmaiņas",
"Common.Views.ReviewChanges.txtAcceptCurrent": "Accept Current Changes",
+ "Common.Views.ReviewChanges.txtChat": "Čats",
"Common.Views.ReviewChanges.txtClose": "Close",
+ "Common.Views.ReviewChanges.txtCoAuthMode": "Kopīgās rediģēšanas režīms",
"Common.Views.ReviewChanges.txtDocLang": "Valoda",
"Common.Views.ReviewChanges.txtFinal": "Visas izmaiņas pieņemtas (priekšskats)",
+ "Common.Views.ReviewChanges.txtFinalCap": "Gala",
+ "Common.Views.ReviewChanges.txtHistory": "Versiju vēsture",
"Common.Views.ReviewChanges.txtMarkup": "Visas izmaiņas (rediģēšana)",
+ "Common.Views.ReviewChanges.txtMarkupCap": "Atzīme",
"Common.Views.ReviewChanges.txtNext": "To Next Change",
"Common.Views.ReviewChanges.txtOriginal": "Visas izmaiņas noraidīts (priekšskats)",
+ "Common.Views.ReviewChanges.txtOriginalCap": "Oriģināls",
"Common.Views.ReviewChanges.txtPrev": "To Previous Change",
"Common.Views.ReviewChanges.txtReject": "Reject",
"Common.Views.ReviewChanges.txtRejectAll": "Reject All Changes",
"Common.Views.ReviewChanges.txtRejectChanges": "Noraidīt izmaiņas",
"Common.Views.ReviewChanges.txtRejectCurrent": "Reject Current Changes",
+ "Common.Views.ReviewChanges.txtSharing": "Kopīgošana",
"Common.Views.ReviewChanges.txtSpelling": "Pareizrakstības pārbaude",
"Common.Views.ReviewChanges.txtTurnon": "Izmaiņu reģistrēšana",
"Common.Views.ReviewChanges.txtView": "Attēlošanas režīms",
@@ -299,6 +315,7 @@
"DE.Controllers.Main.errorDataRange": "Incorrect data range.",
"DE.Controllers.Main.errorDefaultMessage": "Kļūdas kods: %1",
"DE.Controllers.Main.errorFilePassProtect": "The document is password protected and could not be opened.",
+ "DE.Controllers.Main.errorForceSave": "Faila noglabāšanas laikā radās kļūda. Lūdzu, izmantojiet iespēju \"Lejupielādēt kā\", lai noglabātu failu datora cietajā diskā, vai mēģiniet vēlāk vēlreiz.",
"DE.Controllers.Main.errorKeyEncrypt": "Unknown key descriptor",
"DE.Controllers.Main.errorKeyExpire": "Key descriptor expired",
"DE.Controllers.Main.errorMailMergeLoadFile": "Loading failed",
@@ -368,6 +385,7 @@
"DE.Controllers.Main.txtButtons": "Buttons",
"DE.Controllers.Main.txtCallouts": "Callouts",
"DE.Controllers.Main.txtCharts": "Charts",
+ "DE.Controllers.Main.txtCurrentDocument": "Pašreizējais dokuments",
"DE.Controllers.Main.txtDiagramTitle": "Chart Title",
"DE.Controllers.Main.txtEditingMode": "Set editing mode...",
"DE.Controllers.Main.txtErrorLoadHistory": "History loading failed",
@@ -379,6 +397,7 @@
"DE.Controllers.Main.txtLines": "Lines",
"DE.Controllers.Main.txtMath": "Math",
"DE.Controllers.Main.txtNeedSynchronize": "Jums ir atjauninājumi",
+ "DE.Controllers.Main.txtNoTableOfContents": "Nav satura rādītāja ierakstu.",
"DE.Controllers.Main.txtOddPage": "Nepāra lappuse",
"DE.Controllers.Main.txtOnPage": "lapā",
"DE.Controllers.Main.txtRectangles": "Rectangles",
@@ -386,15 +405,16 @@
"DE.Controllers.Main.txtSection": "-sadaļā",
"DE.Controllers.Main.txtSeries": "Series",
"DE.Controllers.Main.txtStarsRibbons": "Stars & Ribbons",
- "DE.Controllers.Main.txtStyle_Heading_1": "Galvene 1",
- "DE.Controllers.Main.txtStyle_Heading_2": "Galvene 2",
- "DE.Controllers.Main.txtStyle_Heading_3": "Galvene 3",
+ "DE.Controllers.Main.txtStyle_footnote_text": "Apakšējās piezīmes teksts",
+ "DE.Controllers.Main.txtStyle_Heading_1": "Virsraksts 1",
+ "DE.Controllers.Main.txtStyle_Heading_2": "Virsraksts 2",
+ "DE.Controllers.Main.txtStyle_Heading_3": "Virsraksts 3",
"DE.Controllers.Main.txtStyle_Heading_4": "Galvene 4",
- "DE.Controllers.Main.txtStyle_Heading_5": "Galvene 5",
- "DE.Controllers.Main.txtStyle_Heading_6": "Galvene 6",
- "DE.Controllers.Main.txtStyle_Heading_7": "Galvene 7",
- "DE.Controllers.Main.txtStyle_Heading_8": "Galvene 8",
- "DE.Controllers.Main.txtStyle_Heading_9": "Galvene 9",
+ "DE.Controllers.Main.txtStyle_Heading_5": "Virsraksts 5",
+ "DE.Controllers.Main.txtStyle_Heading_6": "Virsraksts 6",
+ "DE.Controllers.Main.txtStyle_Heading_7": "Virsraksts 7",
+ "DE.Controllers.Main.txtStyle_Heading_8": "Virsraksts 8",
+ "DE.Controllers.Main.txtStyle_Heading_9": "Virsraksts 9",
"DE.Controllers.Main.txtStyle_Intense_Quote": "Izcelts citāts",
"DE.Controllers.Main.txtStyle_List_Paragraph": "Saraksta rindkopa",
"DE.Controllers.Main.txtStyle_No_Spacing": "Bez atstarpēm",
@@ -402,6 +422,7 @@
"DE.Controllers.Main.txtStyle_Quote": "Citāts",
"DE.Controllers.Main.txtStyle_Subtitle": "Apakšvirsraksts",
"DE.Controllers.Main.txtStyle_Title": "Nosaukums",
+ "DE.Controllers.Main.txtTableOfContents": "Satura rādītājs",
"DE.Controllers.Main.txtXAxis": "X Axis",
"DE.Controllers.Main.txtYAxis": "Y Axis",
"DE.Controllers.Main.unknownErrorText": "Nezināma kļūda.",
@@ -417,6 +438,8 @@
"DE.Controllers.Main.warnNoLicense": "Šai ONLYOFFICE Editors versijai ir noteikti ierobežojumi saistībā ar vienlaicīgu pieslēgšanos dokumentu serverim.
Ja jums ir nepieciešams vairāk, lūdzu, apsveriet Jūsu šībrīža licences līmeņa paaugstināšanu vai komerciālās licences iegādi.",
"DE.Controllers.Main.warnNoLicenseUsers": "Šai ONLYOFFICE Editors versijai ir noteikti ierobežojumi saistībā ar vairāku lietotāju vienlaicīgu darbību.
Ja jums ir nepieciešams vairāk, lūdzu, apsveriet paaugstināt šībrīža licences līmeni vai komerciālās licences iegādi.",
"DE.Controllers.Main.warnProcessRightsChange": "You have been denied the right to edit the file.",
+ "DE.Controllers.Navigation.txtBeginning": "Dokumenta sākums",
+ "DE.Controllers.Navigation.txtGotoBeginning": "Doties uz dokumenta sākumu",
"DE.Controllers.Statusbar.textHasChanges": "New changes have been tracked",
"DE.Controllers.Statusbar.textTrackChanges": "The document is opened with the Track Changes mode enabled",
"DE.Controllers.Statusbar.tipReview": "Izmaiņu reģistrēšana",
@@ -451,7 +474,7 @@
"DE.Controllers.Toolbar.txtAccent_CurveBracketBot": "Underbrace",
"DE.Controllers.Toolbar.txtAccent_CurveBracketTop": "Overbrace",
"DE.Controllers.Toolbar.txtAccent_Custom_1": "Vector A",
- "DE.Controllers.Toolbar.txtAccent_Custom_2": "ABC With Overbar",
+ "DE.Controllers.Toolbar.txtAccent_Custom_2": "ABC ar augšējo joslu",
"DE.Controllers.Toolbar.txtAccent_Custom_3": "x XOR y With Overbar",
"DE.Controllers.Toolbar.txtAccent_DDDot": "Triple Dot",
"DE.Controllers.Toolbar.txtAccent_DDot": "Double Dot",
@@ -613,28 +636,28 @@
"DE.Controllers.Toolbar.txtLimitLog_Min": "Minimum",
"DE.Controllers.Toolbar.txtMarginsH": "Top and bottom margins are too high for a given page height",
"DE.Controllers.Toolbar.txtMarginsW": "Left and right margins are too wide for a given page width",
- "DE.Controllers.Toolbar.txtMatrix_1_2": "1x2 Empty Matrix",
- "DE.Controllers.Toolbar.txtMatrix_1_3": "1x3 Empty Matrix",
- "DE.Controllers.Toolbar.txtMatrix_2_1": "2x1 Empty Matrix",
- "DE.Controllers.Toolbar.txtMatrix_2_2": "2x2 Empty Matrix",
+ "DE.Controllers.Toolbar.txtMatrix_1_2": "Tukša matrica 1 x 2",
+ "DE.Controllers.Toolbar.txtMatrix_1_3": "1x3 tukša matrica",
+ "DE.Controllers.Toolbar.txtMatrix_2_1": "2x1 tukša matrica",
+ "DE.Controllers.Toolbar.txtMatrix_2_2": "2x2 tukša matrica",
"DE.Controllers.Toolbar.txtMatrix_2_2_DLineBracket": "Empty Matrix with Brackets",
"DE.Controllers.Toolbar.txtMatrix_2_2_LineBracket": "Empty Matrix with Brackets",
"DE.Controllers.Toolbar.txtMatrix_2_2_RoundBracket": "Empty Matrix with Brackets",
"DE.Controllers.Toolbar.txtMatrix_2_2_SquareBracket": "Empty Matrix with Brackets",
- "DE.Controllers.Toolbar.txtMatrix_2_3": "2x3 Empty Matrix",
- "DE.Controllers.Toolbar.txtMatrix_3_1": "3x1 Empty Matrix",
- "DE.Controllers.Toolbar.txtMatrix_3_2": "3x2 Empty Matrix",
- "DE.Controllers.Toolbar.txtMatrix_3_3": "3x3 Empty Matrix",
+ "DE.Controllers.Toolbar.txtMatrix_2_3": "2x3 tukša matrica",
+ "DE.Controllers.Toolbar.txtMatrix_3_1": "3x1 tukša matrica",
+ "DE.Controllers.Toolbar.txtMatrix_3_2": "3x2 tukša matrica",
+ "DE.Controllers.Toolbar.txtMatrix_3_3": "3x3 tukša matrica",
"DE.Controllers.Toolbar.txtMatrix_Dots_Baseline": "Baseline Dots",
"DE.Controllers.Toolbar.txtMatrix_Dots_Center": "Midline Dots",
"DE.Controllers.Toolbar.txtMatrix_Dots_Diagonal": "Diagonal Dots",
"DE.Controllers.Toolbar.txtMatrix_Dots_Vertical": "Vertical Dots",
"DE.Controllers.Toolbar.txtMatrix_Flat_Round": "Sparse Matrix",
"DE.Controllers.Toolbar.txtMatrix_Flat_Square": "Sparse Matrix",
- "DE.Controllers.Toolbar.txtMatrix_Identity_2": "2x2 Identity Matrix",
- "DE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros": "3x3 Identity Matrix",
- "DE.Controllers.Toolbar.txtMatrix_Identity_3": "3x3 Identity Matrix",
- "DE.Controllers.Toolbar.txtMatrix_Identity_3_NoZeros": "3x3 Identity Matrix",
+ "DE.Controllers.Toolbar.txtMatrix_Identity_2": "2x2 identitātes matrica",
+ "DE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros": "3x3 identitātes matrica",
+ "DE.Controllers.Toolbar.txtMatrix_Identity_3": "3x3 identitātes matrica",
+ "DE.Controllers.Toolbar.txtMatrix_Identity_3_NoZeros": "3x3 identitātes matrica",
"DE.Controllers.Toolbar.txtOperator_ArrowD_Bot": "Right-Left Arrow Below",
"DE.Controllers.Toolbar.txtOperator_ArrowD_Top": "Right-Left Arrow Above",
"DE.Controllers.Toolbar.txtOperator_ArrowL_Bot": "Leftwards Arrow Below",
@@ -871,11 +894,15 @@
"DE.Views.DocumentHolder.textContentControls": "Satura kontrole",
"DE.Views.DocumentHolder.textCopy": "Copy",
"DE.Views.DocumentHolder.textCut": "Cut",
+ "DE.Views.DocumentHolder.textDistributeCols": "Izplatīt kolonnas",
+ "DE.Views.DocumentHolder.textDistributeRows": "Izplatīt rindas",
"DE.Views.DocumentHolder.textEditControls": "Satura kontroles uzstādījumi",
"DE.Views.DocumentHolder.textEditWrapBoundary": "Edit Wrap Boundary",
+ "DE.Views.DocumentHolder.textNest": "Tabula tabulā",
"DE.Views.DocumentHolder.textNextPage": "Next Page",
"DE.Views.DocumentHolder.textPaste": "Paste",
"DE.Views.DocumentHolder.textPrevPage": "Previous Page",
+ "DE.Views.DocumentHolder.textRefreshField": "Atsvaidzināt lauku",
"DE.Views.DocumentHolder.textRemove": "Dzēst",
"DE.Views.DocumentHolder.textRemoveControl": "Noņemt satura kontroles elementu",
"DE.Views.DocumentHolder.textSettings": "Iestatījumi",
@@ -885,7 +912,12 @@
"DE.Views.DocumentHolder.textShapeAlignMiddle": "Align Middle",
"DE.Views.DocumentHolder.textShapeAlignRight": "Align Right",
"DE.Views.DocumentHolder.textShapeAlignTop": "Align Top",
+ "DE.Views.DocumentHolder.textTOC": "Satura rādītājs",
+ "DE.Views.DocumentHolder.textTOCSettings": "Satura rādītāja uzstādījumi",
"DE.Views.DocumentHolder.textUndo": "Atsaukt",
+ "DE.Views.DocumentHolder.textUpdateAll": "Atsvaidzināt visu tabulu",
+ "DE.Views.DocumentHolder.textUpdatePages": "Atsvaidzināt vienīgi lappušu numurus",
+ "DE.Views.DocumentHolder.textUpdateTOC": "Atsvaidzināt satura rādītāju",
"DE.Views.DocumentHolder.textWrap": "Wrapping Style",
"DE.Views.DocumentHolder.tipIsLocked": "Šo elementu šobrīd rediģē cits lietotājs.",
"DE.Views.DocumentHolder.txtAddBottom": "Add bottom border",
@@ -945,6 +977,8 @@
"DE.Views.DocumentHolder.txtMatchBrackets": "Match brackets to argument height",
"DE.Views.DocumentHolder.txtMatrixAlign": "Matrix alignment",
"DE.Views.DocumentHolder.txtOverbar": "Bar over text",
+ "DE.Views.DocumentHolder.txtOverwriteCells": "Pārrakstīt šūnas",
+ "DE.Views.DocumentHolder.txtPasteSourceFormat": "Atstāt sākotnējo formatējumu",
"DE.Views.DocumentHolder.txtPressLink": "Nospiediet CTRL un noklikšķiniet saiti",
"DE.Views.DocumentHolder.txtRemFractionBar": "Remove fraction bar",
"DE.Views.DocumentHolder.txtRemLimit": "Remove limit",
@@ -1108,17 +1142,23 @@
"DE.Views.FileMenuPanels.Settings.txtWin": "as Windows",
"DE.Views.HeaderFooterSettings.textBottomCenter": "apakšā centrā",
"DE.Views.HeaderFooterSettings.textBottomLeft": "apakšā pa kreisi",
+ "DE.Views.HeaderFooterSettings.textBottomPage": "Lapas apakša",
"DE.Views.HeaderFooterSettings.textBottomRight": "apakšā pa labi",
"DE.Views.HeaderFooterSettings.textDiffFirst": "Atšķirīga pirmā lappuse",
"DE.Views.HeaderFooterSettings.textDiffOdd": "Dažādi nepāra un pāra lapas",
+ "DE.Views.HeaderFooterSettings.textFrom": "Sākt ar",
"DE.Views.HeaderFooterSettings.textHeaderFromBottom": "Galvene no apakša",
"DE.Views.HeaderFooterSettings.textHeaderFromTop": "Galvene no augša",
+ "DE.Views.HeaderFooterSettings.textInsertCurrent": "Ievietot šībrīža pozīcijā",
"DE.Views.HeaderFooterSettings.textOptions": "Opcijas",
"DE.Views.HeaderFooterSettings.textPageNum": "Ievietot lappuses numuru",
+ "DE.Views.HeaderFooterSettings.textPageNumbering": "Lappušu numerācija",
"DE.Views.HeaderFooterSettings.textPosition": "Pozicija",
+ "DE.Views.HeaderFooterSettings.textPrev": "Turpināt no iepriekšējās sadaļas",
"DE.Views.HeaderFooterSettings.textSameAs": "Link to Previous",
"DE.Views.HeaderFooterSettings.textTopCenter": "augšā centrā",
"DE.Views.HeaderFooterSettings.textTopLeft": "augšā pa kreisi",
+ "DE.Views.HeaderFooterSettings.textTopPage": "Lappuses augšpuse",
"DE.Views.HeaderFooterSettings.textTopRight": "augšā pa labi",
"DE.Views.HyperlinkSettingsDialog.cancelButtonText": "Atcelt",
"DE.Views.HyperlinkSettingsDialog.okButtonText": "Ok",
@@ -1217,7 +1257,7 @@
"DE.Views.ImageSettingsAdvanced.textWrapThroughTooltip": "Through",
"DE.Views.ImageSettingsAdvanced.textWrapTightTooltip": "Tight",
"DE.Views.ImageSettingsAdvanced.textWrapTopbottomTooltip": "Top and Bottom",
- "DE.Views.LeftMenu.tipAbout": "About",
+ "DE.Views.LeftMenu.tipAbout": "Par",
"DE.Views.LeftMenu.tipChat": "Čats",
"DE.Views.LeftMenu.tipComments": "Komentāri",
"DE.Views.LeftMenu.tipPlugins": "Spraudņi",
@@ -1226,6 +1266,23 @@
"DE.Views.LeftMenu.tipTitles": "Nosaukumi",
"DE.Views.LeftMenu.txtDeveloper": "IZSTRĀDĀTĀJA REŽĪMS",
"DE.Views.LeftMenu.txtTrial": "IZMĒĢINĀJUMA REŽĪMS",
+ "DE.Views.Links.capBtnContentsUpdate": "Atsvaidzināt",
+ "DE.Views.Links.capBtnInsContents": "Satura rādītājs",
+ "DE.Views.Links.capBtnInsFootnote": "Apakšējā piezīme",
+ "DE.Views.Links.capBtnInsLink": "Hipersaite",
+ "DE.Views.Links.confirmDeleteFootnotes": "Vai vēlaties dzēst visas zemsvītras piezīmes?",
+ "DE.Views.Links.mniDelFootnote": "Dzēst visas zemteksta piezīmes",
+ "DE.Views.Links.mniInsFootnote": "Ievietot apakšējo piezīmi",
+ "DE.Views.Links.mniNoteSettings": "Piezīmju uzstādījumi",
+ "DE.Views.Links.textContentsRemove": "Dzēst satura rādītāju",
+ "DE.Views.Links.textContentsSettings": "Iestatījumi",
+ "DE.Views.Links.textGotoFootnote": "Doties uz apakšējām piezīmēm",
+ "DE.Views.Links.textUpdateAll": "Atsvaidzināt visu tabulu",
+ "DE.Views.Links.textUpdatePages": "Atsvaidzināt vienīgi lappušu numurus",
+ "DE.Views.Links.tipContents": "Ievietot satura rādītāju",
+ "DE.Views.Links.tipContentsUpdate": "Atsvaidzināt satura rādītāju",
+ "DE.Views.Links.tipInsertHyperlink": "Pievienot hipersaiti",
+ "DE.Views.Links.tipNotes": "Ievietot vai rediģēt apakšējās piezīmes",
"DE.Views.MailMergeEmailDlg.cancelButtonText": "Cancel",
"DE.Views.MailMergeEmailDlg.filePlaceholder": "PDF",
"DE.Views.MailMergeEmailDlg.okButtonText": "Send",
@@ -1278,6 +1335,17 @@
"DE.Views.MailMergeSettings.txtPrev": "To previous record",
"DE.Views.MailMergeSettings.txtUntitled": "Untitled",
"DE.Views.MailMergeSettings.warnProcessMailMerge": "Starting merge failed",
+ "DE.Views.Navigation.txtCollapse": "Slēpt visas",
+ "DE.Views.Navigation.txtDemote": "Pazemināt",
+ "DE.Views.Navigation.txtEmpty": "Šajā dokumentā nav virsrakstu",
+ "DE.Views.Navigation.txtEmptyItem": "Tukšs virsraksts",
+ "DE.Views.Navigation.txtExpand": "Parādīt visas",
+ "DE.Views.Navigation.txtExpandToLevel": "Parādīt līdz līmenim...",
+ "DE.Views.Navigation.txtHeadingAfter": "Jauns virsraksts pēc",
+ "DE.Views.Navigation.txtHeadingBefore": "Jauns virsraksts pirms",
+ "DE.Views.Navigation.txtNewHeading": "Jauns apakšvirsraksts",
+ "DE.Views.Navigation.txtPromote": "Veicināt",
+ "DE.Views.Navigation.txtSelect": "Izvēlēties saturu",
"DE.Views.NoteSettingsDialog.textApply": "Piemērot",
"DE.Views.NoteSettingsDialog.textApplyTo": "Piemērot izmaiņas",
"DE.Views.NoteSettingsDialog.textCancel": "Atcelt",
@@ -1356,8 +1424,10 @@
"DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Character Spacing",
"DE.Views.ParagraphSettingsAdvanced.textDefault": "Default Tab",
"DE.Views.ParagraphSettingsAdvanced.textEffects": "Effects",
+ "DE.Views.ParagraphSettingsAdvanced.textLeader": "Vadītājs",
"DE.Views.ParagraphSettingsAdvanced.textLeft": "Left",
"DE.Views.ParagraphSettingsAdvanced.textNewColor": "Pievienot jauno krāsu",
+ "DE.Views.ParagraphSettingsAdvanced.textNone": "Neviens",
"DE.Views.ParagraphSettingsAdvanced.textPosition": "Position",
"DE.Views.ParagraphSettingsAdvanced.textRemove": "Remove",
"DE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Remove All",
@@ -1467,6 +1537,26 @@
"DE.Views.StyleTitleDialog.textTitle": "Title",
"DE.Views.StyleTitleDialog.txtEmpty": "This field is required",
"DE.Views.StyleTitleDialog.txtNotEmpty": "Field must not be empty",
+ "DE.Views.TableOfContentsSettings.cancelButtonText": "Atcelt",
+ "DE.Views.TableOfContentsSettings.okButtonText ": "OK",
+ "DE.Views.TableOfContentsSettings.strAlign": "Lappušu numuru labais izlīdzinājums",
+ "DE.Views.TableOfContentsSettings.strLinks": "Formatēt satura rādītāju kā saites",
+ "DE.Views.TableOfContentsSettings.strShowPages": "Rādīt lappušu numurus",
+ "DE.Views.TableOfContentsSettings.textBuildTable": "Izveidot satura rādītāju no",
+ "DE.Views.TableOfContentsSettings.textLeader": "Vadītājs",
+ "DE.Views.TableOfContentsSettings.textLevel": "Līmenis",
+ "DE.Views.TableOfContentsSettings.textLevels": "Līmeņi",
+ "DE.Views.TableOfContentsSettings.textNone": "Neviens",
+ "DE.Views.TableOfContentsSettings.textRadioLevels": "Kontūras līmeņi",
+ "DE.Views.TableOfContentsSettings.textRadioStyles": "Izvēlētie stili",
+ "DE.Views.TableOfContentsSettings.textStyle": "Stils",
+ "DE.Views.TableOfContentsSettings.textStyles": "Stili",
+ "DE.Views.TableOfContentsSettings.textTitle": "Satura rādītājs",
+ "DE.Views.TableOfContentsSettings.txtClassic": "Klasiskais",
+ "DE.Views.TableOfContentsSettings.txtCurrent": "Pašreizējais",
+ "DE.Views.TableOfContentsSettings.txtModern": "Moderns",
+ "DE.Views.TableOfContentsSettings.txtSimple": "Vienkāršs",
+ "DE.Views.TableOfContentsSettings.txtStandard": "Standarta",
"DE.Views.TableSettings.deleteColumnText": "Dzēst kolonnu",
"DE.Views.TableSettings.deleteRowText": "Dzēst rindu",
"DE.Views.TableSettings.deleteTableText": "Dzēst tabulu",
@@ -1488,11 +1578,15 @@
"DE.Views.TableSettings.textBorderColor": "Krāsa",
"DE.Views.TableSettings.textBorders": "Apmales stils",
"DE.Views.TableSettings.textCancel": "Atcelt",
+ "DE.Views.TableSettings.textCellSize": "Šūnas izmērs",
"DE.Views.TableSettings.textColumns": "Columns",
+ "DE.Views.TableSettings.textDistributeCols": "Izplatīt kolonnas",
+ "DE.Views.TableSettings.textDistributeRows": "Izplatīt rindas",
"DE.Views.TableSettings.textEdit": "Rindas & Kolonnas",
"DE.Views.TableSettings.textEmptyTemplate": "No templates",
"DE.Views.TableSettings.textFirst": "First",
"DE.Views.TableSettings.textHeader": "Header",
+ "DE.Views.TableSettings.textHeight": "Augstums",
"DE.Views.TableSettings.textLast": "Last",
"DE.Views.TableSettings.textNewColor": "Pievienot jauno krāsu",
"DE.Views.TableSettings.textOK": "OK",
@@ -1500,6 +1594,7 @@
"DE.Views.TableSettings.textSelectBorders": "Apmales stilu piemerošanai",
"DE.Views.TableSettings.textTemplate": "Select From Template",
"DE.Views.TableSettings.textTotal": "Total",
+ "DE.Views.TableSettings.textWidth": "Platums",
"DE.Views.TableSettings.tipAll": "Set Outer Border and All Inner Lines",
"DE.Views.TableSettings.tipBottom": "Set Outer Bottom Border Only",
"DE.Views.TableSettings.tipInner": "Set Inner Lines Only",
@@ -1699,10 +1794,12 @@
"DE.Views.Toolbar.textSubscript": "Apakšraksts",
"DE.Views.Toolbar.textSuperscript": "Augšraksts",
"DE.Views.Toolbar.textSurface": "Virsma",
+ "DE.Views.Toolbar.textTabCollaboration": "Sadarbība",
"DE.Views.Toolbar.textTabFile": "Fails",
"DE.Views.Toolbar.textTabHome": "Sākums",
"DE.Views.Toolbar.textTabInsert": "Ievietot",
"DE.Views.Toolbar.textTabLayout": "Izklājums",
+ "DE.Views.Toolbar.textTabLinks": "Atsauces",
"DE.Views.Toolbar.textTabProtect": "Aizsardzība",
"DE.Views.Toolbar.textTabReview": "Apskats",
"DE.Views.Toolbar.textTitleError": "Kļūda",
@@ -1743,7 +1840,7 @@
"DE.Views.Toolbar.tipInsertNum": "Ievietot lapas numuru",
"DE.Views.Toolbar.tipInsertShape": "Insert Autoshape",
"DE.Views.Toolbar.tipInsertTable": "Ievietot tabulu",
- "DE.Views.Toolbar.tipInsertText": "Insert Text",
+ "DE.Views.Toolbar.tipInsertText": "Ievadīt tekstlodziņu",
"DE.Views.Toolbar.tipInsertTextArt": "Ievietot Text Art objektu",
"DE.Views.Toolbar.tipLineSpace": "Rindkopas rindstarpa",
"DE.Views.Toolbar.tipMailRecepients": "Mail Merge",
diff --git a/apps/documenteditor/main/locale/ru.json b/apps/documenteditor/main/locale/ru.json
index 913326fbb..052afbf75 100644
--- a/apps/documenteditor/main/locale/ru.json
+++ b/apps/documenteditor/main/locale/ru.json
@@ -978,6 +978,7 @@
"DE.Views.DocumentHolder.txtMatrixAlign": "Выравнивание матрицы",
"DE.Views.DocumentHolder.txtOverbar": "Черта над текстом",
"DE.Views.DocumentHolder.txtOverwriteCells": "Заменить содержимое ячеек",
+ "DE.Views.DocumentHolder.txtPasteSourceFormat": "Сохранить исходное форматирование",
"DE.Views.DocumentHolder.txtPressLink": "Нажмите CTRL и щелкните по ссылке",
"DE.Views.DocumentHolder.txtRemFractionBar": "Удалить дробную черту",
"DE.Views.DocumentHolder.txtRemLimit": "Удалить предел",
diff --git a/apps/documenteditor/main/resources/help/en/Contents.json b/apps/documenteditor/main/resources/help/en/Contents.json
index 071d6eb35..45f80b50a 100644
--- a/apps/documenteditor/main/resources/help/en/Contents.json
+++ b/apps/documenteditor/main/resources/help/en/Contents.json
@@ -3,8 +3,9 @@
{"src": "ProgramInterface/FileTab.htm", "name": "File tab"},
{"src": "ProgramInterface/HomeTab.htm", "name": "Home Tab"},
{"src": "ProgramInterface/InsertTab.htm", "name": "Insert tab"},
- {"src": "ProgramInterface/LayoutTab.htm", "name": "Layout tab"},
- {"src": "ProgramInterface/ReviewTab.htm", "name": "Review tab"},
+ {"src": "ProgramInterface/LayoutTab.htm", "name": "Layout tab" },
+ {"src": "ProgramInterface/ReferencesTab.htm", "name": "References tab"},
+ {"src": "ProgramInterface/ReviewTab.htm", "name": "Collaboration tab"},
{"src": "ProgramInterface/PluginsTab.htm", "name": "Plugins tab"},
{"src": "UsageInstructions/ChangeColorScheme.htm", "name": "Change color scheme", "headername": "Basic operations"},
{"src": "UsageInstructions/CopyPasteUndoRedo.htm", "name": "Copy/paste text passages, undo/redo your actions"},
@@ -34,6 +35,8 @@
{"src": "UsageInstructions/InsertAutoshapes.htm", "name": "Insert autoshapes"},
{"src": "UsageInstructions/InsertCharts.htm", "name": "Insert charts" },
{"src": "UsageInstructions/InsertTextObjects.htm", "name": "Insert text objects" },
+ {"src": "UsageInstructions/InsertContentControls.htm", "name": "Insert content controls" },
+ {"src": "UsageInstructions/CreateTableOfContents.htm", "name": "Create table of contents" },
{"src": "UsageInstructions/AlignArrangeObjects.htm", "name": "Align and arrange objects on a page" },
{"src": "UsageInstructions/ChangeWrappingStyle.htm", "name": "Change wrapping style" },
{"src": "UsageInstructions/UseMailMerge.htm", "name": "Use mail merge", "headername": "Mail Merge"},
diff --git a/apps/documenteditor/main/resources/help/en/HelpfulHints/CollaborativeEditing.htm b/apps/documenteditor/main/resources/help/en/HelpfulHints/CollaborativeEditing.htm
index d5e003e32..5efa4d43d 100644
--- a/apps/documenteditor/main/resources/help/en/HelpfulHints/CollaborativeEditing.htm
+++ b/apps/documenteditor/main/resources/help/en/HelpfulHints/CollaborativeEditing.htm
@@ -24,10 +24,11 @@
Co-editing
-
Document Editor allows to select one of the two available co-editing modes. Fast is used by default and shows the changes made by other users in realtime. Strict is selected to hide other user changes until you click the Save
icon to save your own changes and accept the changes made by others. The mode can be selected in the Advanced Settings.
+
Document Editor allows to select one of the two available co-editing modes. Fast is used by default and shows the changes made by other users in realtime. Strict is selected to hide other user changes until you click the Save
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:
+

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 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
.
+
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 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 realtime collaboration changes. Selecting View all changes, all the changes made during the current session will be highlighted. Selecting View last changes, only the changes made since you last time clicked the
icon will be highlighted. Selecting View None changes, changes made during the current session will not be highlighted.
Chat
@@ -35,19 +36,21 @@
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,
+ - 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.
+
To close the panel with chat messages, click the
icon at the left sidebar or the
Chat button at the top toolbar once again.
To leave a comment,
- select a text passage where you think there is an error or problem,
-
- switch to the Insert or Review tab of the top toolbar and click the
Comment button, or
+ 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,
diff --git a/apps/documenteditor/main/resources/help/en/HelpfulHints/Review.htm b/apps/documenteditor/main/resources/help/en/HelpfulHints/Review.htm
index c6162da52..7e46ee77f 100644
--- a/apps/documenteditor/main/resources/help/en/HelpfulHints/Review.htm
+++ b/apps/documenteditor/main/resources/help/en/HelpfulHints/Review.htm
@@ -21,15 +21,15 @@
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 Review tab at the top toolbar and press the
Track Changes button.
+ - 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.
Choose the changes display mode
Click the
Display Mode button at the top toolbar and select one of the available modes from the list:
- - All changes (Editing) - this option is selected by default. It allows both to view suggested changes and edit the document.
- - All changes accepted (Preview) - this mode is used to display all the changes as if they were accepted. This option does not actually accept all changes, it only allows you to see how the document will look like after you accept all the changes. In this mode, you cannot edit the document.
- - All changes rejected (Preview) - this mode is used to display all the changes as if they were rejected. This option does not actually reject all changes, it only allows you to view the document without changes. In this mode, you cannot edit the document.
+ - 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.
diff --git a/apps/documenteditor/main/resources/help/en/HelpfulHints/SpellChecking.htm b/apps/documenteditor/main/resources/help/en/HelpfulHints/SpellChecking.htm
index cc9266342..5ad6c6295 100644
--- a/apps/documenteditor/main/resources/help/en/HelpfulHints/SpellChecking.htm
+++ b/apps/documenteditor/main/resources/help/en/HelpfulHints/SpellChecking.htm
@@ -15,12 +15,11 @@
diff --git a/apps/documenteditor/main/resources/help/en/ProgramInterface/InsertTab.htm b/apps/documenteditor/main/resources/help/en/ProgramInterface/InsertTab.htm
index 57924c6b1..1e2e32785 100644
--- a/apps/documenteditor/main/resources/help/en/ProgramInterface/InsertTab.htm
+++ b/apps/documenteditor/main/resources/help/en/ProgramInterface/InsertTab.htm
@@ -21,8 +21,8 @@