diff --git a/apps/common/main/lib/controller/HintManager.js b/apps/common/main/lib/controller/HintManager.js index e9241a7ac..5d8dbfd9f 100644 --- a/apps/common/main/lib/controller/HintManager.js +++ b/apps/common/main/lib/controller/HintManager.js @@ -675,7 +675,9 @@ Common.UI.HintManager = new(function() { $('.hint-div').remove(); } if ($('iframe').length > 0) { - $('iframe').contents().find('.hint-div').remove(); + try { + $('iframe').contents().find('.hint-div').remove(); + } catch (e) {} } }; diff --git a/apps/common/main/lib/controller/ReviewChanges.js b/apps/common/main/lib/controller/ReviewChanges.js index 8597fd11e..9cd921188 100644 --- a/apps/common/main/lib/controller/ReviewChanges.js +++ b/apps/common/main/lib/controller/ReviewChanges.js @@ -550,7 +550,7 @@ define([ if (item.value === 'all') { this.api.asc_AcceptAllChanges(); } else { - this.api.asc_AcceptChanges(); + this.api.asc_AcceptChangesBySelection(true); // accept and move to the next change } } else { this.api.asc_AcceptChanges(menu); @@ -565,7 +565,7 @@ define([ if (item.value === 'all') { this.api.asc_RejectAllChanges(); } else { - this.api.asc_RejectChanges(); + this.api.asc_RejectChangesBySelection(true); // reject and move to the next change } } else { this.api.asc_RejectChanges(menu); diff --git a/apps/common/main/lib/view/Header.js b/apps/common/main/lib/view/Header.js index 2d39995ca..f433be058 100644 --- a/apps/common/main/lib/view/Header.js +++ b/apps/common/main/lib/view/Header.js @@ -543,7 +543,7 @@ define([ if ( !$labelDocName ) { $labelDocName = $html.find('#rib-doc-name'); if ( me.documentCaption ) { - me.setDocTitle(me.documentCaption); + setTimeout(function() { me.setDocTitle(me.documentCaption); }, 50); } } else { $html.find('#rib-doc-name').hide(); @@ -621,7 +621,7 @@ define([ !!$labelDocName && $labelDocName.hide().off(); // hide document title if it was created in right box $labelDocName = $html.find('#title-doc-name'); - me.setDocTitle( me.documentCaption ); + setTimeout(function() { me.setDocTitle(me.documentCaption); }, 50); me.options.wopi && $labelDocName.attr('maxlength', me.options.wopi.FileNameMaxLength); @@ -791,12 +791,9 @@ define([ }, setDocTitle: function(name){ - if(name) - $labelDocName.val(name); - else - name = $labelDocName.val(); - var width = this.getTextWidth(name); + var width = this.getTextWidth(name || $labelDocName.val()); (width>=0) && $labelDocName.width(width); + name && (width>=0) && $labelDocName.val(name); if (this._showImgCrypted && width>=0) { this.imgCrypted.toggleClass('hidden', false); this._showImgCrypted = false; diff --git a/apps/common/main/lib/view/ListSettingsDialog.js b/apps/common/main/lib/view/ListSettingsDialog.js index 9fe04b56a..8a0feeecb 100644 --- a/apps/common/main/lib/view/ListSettingsDialog.js +++ b/apps/common/main/lib/view/ListSettingsDialog.js @@ -60,7 +60,7 @@ define([ Common.Views.ListSettingsDialog = Common.UI.Window.extend(_.extend({ options: { type: 0, // 0 - markers, 1 - numbers - width: 280, + width: 285, height: 261, style: 'min-width: 240px;', cls: 'modal-dlg', @@ -87,9 +87,9 @@ define([ '', '', '', - '', - '
', - '
', + '', + '
', + '
', '', '', '', @@ -97,8 +97,8 @@ define([ '', '', '', - '', - '
', + '', + '
', '', '', '', @@ -106,7 +106,7 @@ define([ '', '', '', - '', + '', '
', '', '', @@ -117,7 +117,7 @@ define([ '', '', '', - '', + '', '
', '', '', @@ -126,7 +126,7 @@ define([ '', '', '', - '', + '', '
', '', '', @@ -215,7 +215,7 @@ define([ this.cmbBulletFormat = new Common.UI.ComboBoxCustom({ el : $('#id-dlg-list-bullet-format'), menuStyle : 'min-width: 100%;max-height: 183px;', - style : "width: 100px;", + style : "width: 105px;", editable : false, takeFocusOnClose: true, template : _.template(template.join('')), @@ -239,7 +239,7 @@ define([ if (record.get('value')===_BulletTypes.symbol) formcontrol[0].innerHTML = record.get('displayValue') + '' + record.get('symbol') + ''; else if (record.get('value')===_BulletTypes.image) { - formcontrol[0].innerHTML = record.get('displayValue') + ''; + formcontrol[0].innerHTML = record.get('displayValue') + ''; var bullet = new Asc.asc_CBullet(); bullet.asc_fillBulletImage(me.imageProps.id); bullet.drawSquareImage('id-dlg-list-bullet-combo-preview'); @@ -278,6 +278,9 @@ define([ idx = store.indexOf(store.findWhere({value: _BulletTypes.newSymbol})); store.add({ displayValue: me.txtSymbol + ': ', value: _BulletTypes.symbol, symbol: props.symbol, font: props.font }, {at: idx}); } + if (me.imageProps) + me.imageProps.redraw = true; + combo.setData(store.models); combo.selectRecord(combo.store.findWhere({value: _BulletTypes.symbol, symbol: props.symbol, font: props.font})); }, @@ -316,7 +319,7 @@ define([ this.spnSize = new Common.UI.MetricSpinner({ el : $window.find('#id-dlg-list-size'), step : 1, - width : 100, + width : 105, value : 100, defaultUnit : '', maxValue : 400, @@ -342,7 +345,7 @@ define([ this.spnStart = new Common.UI.MetricSpinner({ el : $window.find('#id-dlg-list-start'), step : 1, - width : 100, + width : 105, value : 1, defaultUnit : '', maxValue : 32767, @@ -360,7 +363,7 @@ define([ caption: this.textSelect, style: 'width: 100%;', menu: new Common.UI.Menu({ - style: 'min-width: 100px;', + style: 'min-width: 105px;', maxHeight: 200, additionalAlign: this.menuAddAlign, items: [ diff --git a/apps/common/mobile/lib/component/ThemeColorPalette.jsx b/apps/common/mobile/lib/component/ThemeColorPalette.jsx index 3c53ff558..814c0e899 100644 --- a/apps/common/mobile/lib/component/ThemeColorPalette.jsx +++ b/apps/common/mobile/lib/component/ThemeColorPalette.jsx @@ -5,7 +5,7 @@ import { useTranslation } from 'react-i18next'; const ThemeColors = ({ themeColors, onColorClick, curColor, isTypeColors, isTypeCustomColors }) => { return (
- {themeColors.map((row, rowIndex) => { + {themeColors?.length && themeColors.map((row, rowIndex) => { return(
{row.map((effect, index) => { @@ -27,7 +27,7 @@ const ThemeColors = ({ themeColors, onColorClick, curColor, isTypeColors, isType const StandartColors = ({ options, standartColors, onColorClick, curColor }) => { return (
- {standartColors.map((color, index) => { + {standartColors?.length && standartColors.map((color, index) => { return( index === 0 && options.transparent ? const CustomColors = ({ options, customColors, isTypeColors, onColorClick, curColor }) => { const colors = customColors.length > 0 ? customColors : []; const emptyItems = []; + if (colors.length < options.customcolors) { for (let i = colors.length; i < options.customcolors; i++) { emptyItems.push( - {colors && colors.length > 0 && colors.map((color, index) => { + {colors?.length && colors.map((color, index) => { return( { const themeColors = []; const effectColors = Common.Utils.ThemeColor.getEffectColors(); let row = -1; - effectColors.forEach((effect, index) => { - if (0 == index % options.themecolors) { - themeColors.push([]); - row++; - } - themeColors[row].push(effect); - }); + + if(effectColors?.length) { + effectColors.forEach((effect, index) => { + if (0 == index % options.themecolors) { + themeColors.push([]); + row++; + } + themeColors[row].push(effect); + }); + } + const standartColors = Common.Utils.ThemeColor.getStandartColors(); - let isTypeColors = standartColors.some( value => value === curColor ); + let isTypeColors = standartColors?.length && standartColors.some( value => value === curColor ); // custom color let customColors = props.customColors; + if (customColors.length < 1) { customColors = localStorage.getItem('mobile-custom-colors'); customColors = customColors ? customColors.toLowerCase().split(',') : []; @@ -142,14 +148,18 @@ const CustomColorPicker = props => { }; let currentColor = props.currentColor; + if (props.autoColor) { currentColor = rgb2hex(props.autoColor); } + if (currentColor === 'transparent' || !currentColor) { currentColor = 'ffffff'; } + const countDynamicColors = props.countdynamiccolors || 10; const [stateColor, setColor] = useState(`#${currentColor}`); + useEffect(() => { if (document.getElementsByClassName('color-picker-wheel').length < 1) { const colorPicker = f7.colorPicker.create({ @@ -165,6 +175,7 @@ const CustomColorPicker = props => { }); } }); + const addNewColor = (color) => { let colors = localStorage.getItem('mobile-custom-colors'); colors = colors ? colors.split(',') : []; @@ -173,7 +184,8 @@ const CustomColorPicker = props => { localStorage.setItem('mobile-custom-colors', colors.join().toLowerCase()); props.onAddNewColor && props.onAddNewColor(colors, newColor); }; - return( + + return (
diff --git a/apps/common/mobile/resources/less/common.less b/apps/common/mobile/resources/less/common.less index 880c93eda..65dcf4142 100644 --- a/apps/common/mobile/resources/less/common.less +++ b/apps/common/mobile/resources/less/common.less @@ -1099,11 +1099,15 @@ input[type="number"]::-webkit-inner-spin-button { } // Sharing Settings - .sharing-placeholder { height: 100%; } +// Comment List +.sheet-modal .page-current-comment { + padding-bottom: 60px; +} + diff --git a/apps/documenteditor/embed/js/SearchBar.js b/apps/documenteditor/embed/js/SearchBar.js index a9e980d51..06d5a6f61 100644 --- a/apps/documenteditor/embed/js/SearchBar.js +++ b/apps/documenteditor/embed/js/SearchBar.js @@ -109,7 +109,7 @@ }; var onInputSearchChange = function (text) { - if (_state.searchText !== text) { + if ((text && _state.searchText !== text) || (!text && _state.newSearchText)) { _state.newSearchText = text; _lastInputChange = (new Date()); if (_searchTimer === undefined) { @@ -117,7 +117,11 @@ if ((new Date()) - _lastInputChange < 400) return; _state.searchText = _state.newSearchText; - (_state.newSearchText !== '') && onQuerySearch(); + if (_state.newSearchText !== '') { + onQuerySearch(); + } else { + api.asc_endFindText(); + } clearInterval(_searchTimer); _searchTimer = undefined; }, 10); diff --git a/apps/documenteditor/embed/locale/eu.json b/apps/documenteditor/embed/locale/eu.json index 0392bc18e..b98020ed1 100644 --- a/apps/documenteditor/embed/locale/eu.json +++ b/apps/documenteditor/embed/locale/eu.json @@ -19,7 +19,7 @@ "DE.ApplicationController.errorLoadingFont": "Letra-tipoak ez dira kargatu.
Jarri zure dokumentu-zerbitzariaren administratzailearekin harremanetan.", "DE.ApplicationController.errorSubmit": "Huts egin du bidaltzean.", "DE.ApplicationController.errorTokenExpire": "Dokumentuaren segurtasun-tokena iraungi da.
Jarri zure dokumentu-zerbitzariaren administratzailearekin harremanetan.", - "DE.ApplicationController.errorUpdateVersionOnDisconnect": "Interneteko konexioa berrezarri da eta fitxategiaren bertsioa aldatu da.
Lanean jarraitu aurretik, beharrezkoa da fitxategia deskargatzea edo edukia kopiatzea, ezer ez dela galduko ziurtatzeko, eta gero orri hau berriro kargatzea.", + "DE.ApplicationController.errorUpdateVersionOnDisconnect": "Konexioa berrezarri da eta fitxategiaren bertsioa aldatu da.
Lanean jarraitu aurretik, beharrezkoa da fitxategia deskargatzea edo edukia kopiatzea, ezer ez dela galduko ziurtatzeko, eta gero orri hau berriro kargatzea.", "DE.ApplicationController.errorUserDrop": "Ezin da fitxategia atzitu une honetan.", "DE.ApplicationController.notcriticalErrorTitle": "Abisua", "DE.ApplicationController.openErrorText": "Errore bat gertatu da fitxategia irekitzean.", diff --git a/apps/documenteditor/embed/locale/hy.json b/apps/documenteditor/embed/locale/hy.json index 450a6d147..1a0ce5fa9 100644 --- a/apps/documenteditor/embed/locale/hy.json +++ b/apps/documenteditor/embed/locale/hy.json @@ -19,7 +19,7 @@ "DE.ApplicationController.errorLoadingFont": "Տառատեսակները բեռնված չեն:
Խնդրում ենք կապվել ձեր փաստաթղթերի սերվերի ադմինիստրատորի հետ:", "DE.ApplicationController.errorSubmit": "Չհաջողվեց հաստատել", "DE.ApplicationController.errorTokenExpire": "Փաստաթղթի անվտանգության կտրոնի ժամկետն անցել է։
Դիմեք փաստաթղթերի սպասարկիչի ձեր վարիչին։", - "DE.ApplicationController.errorUpdateVersionOnDisconnect": "Համացանցային կապը վերահաստատվել է,և ֆայլի տարբերակը փոխվել է։
Նախքան աշխատանքը շարունակելը ներբեռնեք նիշքը կամ պատճենեք դրա պարունակությունը՝ վստահ լինելու, որ ոչինչ չի կորել, և ապա նորից բեռնեք այս էջը։", + "DE.ApplicationController.errorUpdateVersionOnDisconnect": "Կապը վերահաստատվել է,և ֆայլի տարբերակը փոխվել է։
Նախքան աշխատանքը շարունակելը ներբեռնեք ֆայլը կամ պատճենեք դրա պարունակությունը՝ վստահ լինելու, որ ոչինչ չի կորել, և ապա նորից բեռնեք այս էջը։", "DE.ApplicationController.errorUserDrop": "Այս պահին ֆայլն անհասանելի է։", "DE.ApplicationController.notcriticalErrorTitle": "Զգուշացում", "DE.ApplicationController.openErrorText": "Ֆայլը բացելիս սխալ է տեղի ունեցել:", diff --git a/apps/documenteditor/embed/locale/ms.json b/apps/documenteditor/embed/locale/ms.json index a8a16ec64..35f7bc2b1 100644 --- a/apps/documenteditor/embed/locale/ms.json +++ b/apps/documenteditor/embed/locale/ms.json @@ -19,7 +19,7 @@ "DE.ApplicationController.errorLoadingFont": "Fon tidak dimuatkan.
Sila hubungi pentadbir Pelayan Dokumen anda.", "DE.ApplicationController.errorSubmit": "Serahan telah gagal.", "DE.ApplicationController.errorTokenExpire": "Dokumen token keselamatan telah tamat tempoh.
Sila hubungi pentadbir Pelayan Dokumen.", - "DE.ApplicationController.errorUpdateVersionOnDisconnect": "Sambungan internet telah dipulihkan, dan versi fail telah berubah.
Sebelum anda boleh terus bekerja, anda perlu memuat turun fail atau menyalin kandungannya untuk memastikan tiada ada yang hilang, dan kemudian muat semula halaman ini.", + "DE.ApplicationController.errorUpdateVersionOnDisconnect": "Sambungan telah dipulihkan, dan versi fail telah berubah.
Sebelum anda boleh terus bekerja, anda perlu memuat turun fail atau menyalin kandungannya untuk memastikan tiada ada yang hilang, dan kemudian muat semula halaman ini.", "DE.ApplicationController.errorUserDrop": "Fail tidak boleh diakses sekarang.", "DE.ApplicationController.notcriticalErrorTitle": "Amaran", "DE.ApplicationController.openErrorText": "Ralat telah berlaku semasa membuka fail.", diff --git a/apps/documenteditor/forms/locale/ca.json b/apps/documenteditor/forms/locale/ca.json index 34afd944e..d87380af1 100644 --- a/apps/documenteditor/forms/locale/ca.json +++ b/apps/documenteditor/forms/locale/ca.json @@ -37,8 +37,10 @@ "Common.UI.SearchBar.tipNextResult": "El resultat següent", "Common.UI.SearchBar.tipPreviousResult": "El resultat anterior", "Common.UI.Themes.txtThemeClassicLight": "Llum clàssica", + "Common.UI.Themes.txtThemeContrastDark": "Contrast fosc", "Common.UI.Themes.txtThemeDark": "Fosc", "Common.UI.Themes.txtThemeLight": "Clar", + "Common.UI.Themes.txtThemeSystem": "Igual que el sistema", "Common.UI.Window.cancelButtonText": "Cancel·la", "Common.UI.Window.closeButtonText": "Tanca", "Common.UI.Window.noButtonText": "No", @@ -100,13 +102,13 @@ "DE.Controllers.ApplicationController.errorSessionIdle": "Fa temps que no s'obre el document. Torneu a carregar la pàgina.", "DE.Controllers.ApplicationController.errorSessionToken": "S'ha interromput la connexió amb el servidor. Torneu a carregar la pàgina.", "DE.Controllers.ApplicationController.errorSubmit": "No s'ha pogut enviar.", + "DE.Controllers.ApplicationController.errorTextFormWrongFormat": "El valor introduït no es correspon amb el format del camp", "DE.Controllers.ApplicationController.errorToken": "El testimoni de seguretat del document no s'ha format correctament.
Contacteu amb l'administrador del servidor de documents.", "DE.Controllers.ApplicationController.errorTokenExpire": "El testimoni de seguretat del document ha caducat.
Contacteu amb l'administrador del servidor de documents.", "DE.Controllers.ApplicationController.errorUpdateVersion": "S'ha canviat la versió del fitxer. La pàgina es tornarà a carregar.", "DE.Controllers.ApplicationController.errorUpdateVersionOnDisconnect": "La connexió a internet s'ha restaurat i la versió del fitxer s'ha canviat.
Abans de continuar treballant, heu de descarregar el fitxer o copiar-ne el contingut per assegurar-vos que no es perdi res i, després, tornar a carregar aquesta pàgina.", "DE.Controllers.ApplicationController.errorUserDrop": "No es pot accedir al fitxer.", "DE.Controllers.ApplicationController.errorViewerDisconnect": "S'ha perdut la connexió. Encara podeu visualitzar el document,
però no el podreu baixar ni imprimir fins que no es restableixi la connexió i es torni a carregar la pàgina.", - "DE.Controllers.ApplicationController.errorTextFormWrongFormat": "El valor introduït no es correspon amb el format del camp", "DE.Controllers.ApplicationController.mniImageFromFile": "Imatge del fitxer", "DE.Controllers.ApplicationController.mniImageFromStorage": "Imatge de l'emmagatzematge", "DE.Controllers.ApplicationController.mniImageFromUrl": "Imatge d'URL", diff --git a/apps/documenteditor/forms/locale/en.json b/apps/documenteditor/forms/locale/en.json index 63f721bb6..35aae0701 100644 --- a/apps/documenteditor/forms/locale/en.json +++ b/apps/documenteditor/forms/locale/en.json @@ -102,13 +102,13 @@ "DE.Controllers.ApplicationController.errorSessionIdle": "The document has not been edited for quite a long time. Please reload the page.", "DE.Controllers.ApplicationController.errorSessionToken": "The connection to the server has been interrupted. Please reload the page.", "DE.Controllers.ApplicationController.errorSubmit": "Submit failed.", + "DE.Controllers.ApplicationController.errorTextFormWrongFormat": "The value entered does not match the format of the field.", "DE.Controllers.ApplicationController.errorToken": "The document security token is not correctly formed.
Please contact your Document Server administrator.", "DE.Controllers.ApplicationController.errorTokenExpire": "The document security token has expired.
Please contact your Document Server administrator.", "DE.Controllers.ApplicationController.errorUpdateVersion": "The file version has been changed. The page will be reloaded.", "DE.Controllers.ApplicationController.errorUpdateVersionOnDisconnect": "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.", "DE.Controllers.ApplicationController.errorUserDrop": "The file cannot be accessed right now.", "DE.Controllers.ApplicationController.errorViewerDisconnect": "Connection is lost. You can still view the document,
but will not be able to download or print it until the connection is restored and page is reloaded.", - "DE.Controllers.ApplicationController.errorTextFormWrongFormat": "The value entered does not match the format of the field.", "DE.Controllers.ApplicationController.mniImageFromFile": "Image from File", "DE.Controllers.ApplicationController.mniImageFromStorage": "Image from Storage", "DE.Controllers.ApplicationController.mniImageFromUrl": "Image from URL", diff --git a/apps/documenteditor/forms/locale/es.json b/apps/documenteditor/forms/locale/es.json index 75c0e13eb..b0d394af1 100644 --- a/apps/documenteditor/forms/locale/es.json +++ b/apps/documenteditor/forms/locale/es.json @@ -102,13 +102,13 @@ "DE.Controllers.ApplicationController.errorSessionIdle": "El documento no ha sido editado durante bastante tiempo. Por favor, recargue la página.", "DE.Controllers.ApplicationController.errorSessionToken": "Se ha interrumpido la conexión con el servidor. Por favor, recargue la página.", "DE.Controllers.ApplicationController.errorSubmit": "Error al enviar.", + "DE.Controllers.ApplicationController.errorTextFormWrongFormat": "El valor introducido no se corresponde con el formato del campo", "DE.Controllers.ApplicationController.errorToken": "El token de seguridad de documento tiene un formato incorrecto.
Por favor, contacte con el Administrador del Servidor de Documentos.", "DE.Controllers.ApplicationController.errorTokenExpire": "El token de seguridad del documento ha expirado.
Por favor, póngase en contacto con el administrador del Servidor de Documentos.", "DE.Controllers.ApplicationController.errorUpdateVersion": "Se ha cambiado la versión del archivo. La página será actualizada.", "DE.Controllers.ApplicationController.errorUpdateVersionOnDisconnect": "Se ha restablecido la conexión a Internet y se ha cambiado la versión del archivo.
Para poder seguir trabajando, es necesario descargar el archivo o copiar su contenido para asegurarse de que no se ha perdido nada, y luego volver a cargar esta página.", "DE.Controllers.ApplicationController.errorUserDrop": "No se puede acceder al archivo en este momento.", "DE.Controllers.ApplicationController.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.", - "DE.Controllers.ApplicationController.errorTextFormWrongFormat": "El valor introducido no se corresponde con el formato del campo", "DE.Controllers.ApplicationController.mniImageFromFile": "Imagen desde archivo", "DE.Controllers.ApplicationController.mniImageFromStorage": "Imagen de Almacenamiento", "DE.Controllers.ApplicationController.mniImageFromUrl": "Imagen de URL", diff --git a/apps/documenteditor/forms/locale/eu.json b/apps/documenteditor/forms/locale/eu.json index beb694249..5e6d08263 100644 --- a/apps/documenteditor/forms/locale/eu.json +++ b/apps/documenteditor/forms/locale/eu.json @@ -102,13 +102,13 @@ "DE.Controllers.ApplicationController.errorSessionIdle": "Dokumentua ez da editatu denbora luzean. Kargatu orria berriro.", "DE.Controllers.ApplicationController.errorSessionToken": "Zerbitzarirako konexioa eten da. Mesedez kargatu berriz orria.", "DE.Controllers.ApplicationController.errorSubmit": "Huts egin du bidaltzean.", + "DE.Controllers.ApplicationController.errorTextFormWrongFormat": "Sartutako balioa ez dator bat eremuaren formatuarekin.", "DE.Controllers.ApplicationController.errorToken": "Dokumentuaren segurtasun tokena ez dago ondo osatua.
Jarri harremanetan zure zerbitzariaren administratzailearekin.", "DE.Controllers.ApplicationController.errorTokenExpire": "Dokumentuaren segurtasun-tokena iraungi da.
Jarri zure dokumentu-zerbitzariaren administratzailearekin harremanetan.", "DE.Controllers.ApplicationController.errorUpdateVersion": "Fitxategiaren bertsioa aldatu da. Orria berriz kargatuko da.", - "DE.Controllers.ApplicationController.errorUpdateVersionOnDisconnect": "Interneteko konexioa berrezarri da eta fitxategiaren bertsioa aldatu da.
Lanean jarraitu aurretik, beharrezkoa da fitxategia deskargatzea edo edukia kopiatzea, ezer ez dela galduko ziurtatzeko, eta gero orri hau berriro kargatzea.", + "DE.Controllers.ApplicationController.errorUpdateVersionOnDisconnect": "Konexioa berrezarri da eta fitxategiaren bertsioa aldatu da.
Lanean jarraitu aurretik, beharrezkoa da fitxategia deskargatzea edo edukia kopiatzea, ezer ez dela galduko ziurtatzeko, eta gero orri hau berriro kargatzea.", "DE.Controllers.ApplicationController.errorUserDrop": "Ezin da fitxategia atzitu une honetan.", "DE.Controllers.ApplicationController.errorViewerDisconnect": "Konexioa galdu da. Dokumentua ikusi dezakezu oraindik,
baina ezingo duzu deskargatu edo inprimatu konexioa berrezarri eta orria berriz kargatu arte.", - "DE.Controllers.ApplicationController.errorTextFormWrongFormat": "Sartutako balioa ez dator bat eremuaren formatuarekin.", "DE.Controllers.ApplicationController.mniImageFromFile": "Irudia fitxategitik", "DE.Controllers.ApplicationController.mniImageFromStorage": "Irudia biltegitik", "DE.Controllers.ApplicationController.mniImageFromUrl": "Irudia URLtik", diff --git a/apps/documenteditor/forms/locale/fr.json b/apps/documenteditor/forms/locale/fr.json index e6f6617a3..ac69e85f0 100644 --- a/apps/documenteditor/forms/locale/fr.json +++ b/apps/documenteditor/forms/locale/fr.json @@ -102,6 +102,7 @@ "DE.Controllers.ApplicationController.errorSessionIdle": "Le document n'a pas été modifié depuis trop longtemps. Veuillez recharger la page.", "DE.Controllers.ApplicationController.errorSessionToken": "La connexion au serveur a été interrompue. Veuillez recharger la page.", "DE.Controllers.ApplicationController.errorSubmit": "Échec de soumission", + "DE.Controllers.ApplicationController.errorTextFormWrongFormat": "La valeur saisie ne correspond pas au format du champ.", "DE.Controllers.ApplicationController.errorToken": "Le jeton de sécurité du document n’était pas formé correctement.
Veuillez contacter votre administrateur de Document Server.", "DE.Controllers.ApplicationController.errorTokenExpire": "Le jeton de sécurité du document a expiré.
Veuillez contactez l'administrateur de Document Server.", "DE.Controllers.ApplicationController.errorUpdateVersion": "La version du fichier a été changée. La page sera rechargée.", diff --git a/apps/documenteditor/forms/locale/hy.json b/apps/documenteditor/forms/locale/hy.json index b3d93ffc0..91a272de0 100644 --- a/apps/documenteditor/forms/locale/hy.json +++ b/apps/documenteditor/forms/locale/hy.json @@ -37,8 +37,10 @@ "Common.UI.SearchBar.tipNextResult": "Հաջորդ արդյունքը", "Common.UI.SearchBar.tipPreviousResult": "Նախորդ արդյունքը", "Common.UI.Themes.txtThemeClassicLight": "Դասական լույս", + "Common.UI.Themes.txtThemeContrastDark": "Մութ հակադրություն", "Common.UI.Themes.txtThemeDark": "Մուգ", "Common.UI.Themes.txtThemeLight": "Լույս", + "Common.UI.Themes.txtThemeSystem": "Նույնը, ինչ համակարգը", "Common.UI.Window.cancelButtonText": "Չեղարկել", "Common.UI.Window.closeButtonText": "Փակել", "Common.UI.Window.noButtonText": "Ոչ", @@ -46,7 +48,7 @@ "Common.UI.Window.textConfirmation": "Հաստատում", "Common.UI.Window.textDontShow": "Այս գրությունն այլևս ցույց չտալ", "Common.UI.Window.textError": "Սխալ", - "Common.UI.Window.textInformation": "Տեղեկատվություն ", + "Common.UI.Window.textInformation": "Տեղեկատվություն", "Common.UI.Window.textWarning": "Զգուշացում", "Common.UI.Window.yesButtonText": "Այո", "Common.Views.CopyWarningDialog.textDontShow": "Այս գրությունն այլևս ցույց չտալ", @@ -100,10 +102,11 @@ "DE.Controllers.ApplicationController.errorSessionIdle": "Փաստաթուղթը երկար ժամանակ չի խմբագրվել։ Նորի՛ց բեռնեք էջը։", "DE.Controllers.ApplicationController.errorSessionToken": "Սպասարկիչի հետ կապն ընդհատվել է։ Խնդրում ենք վերբեռնել էջը:", "DE.Controllers.ApplicationController.errorSubmit": "Չհաջողվեց հաստատել", + "DE.Controllers.ApplicationController.errorTextFormWrongFormat": "Մուտքագրված արժեքը չի համապատասխանում դաշտի ձևաչափին:", "DE.Controllers.ApplicationController.errorToken": "Փաստաթղթի անվտանգության կտրոնը ճիշտ չի ձևակերպված։
Դիմեք փաստաթղթերի սպասարկիչի ձեր վարիչին։", "DE.Controllers.ApplicationController.errorTokenExpire": "Փաստաթղթի անվտանգության կտրոնի ժամկետն անցել է։
Դիմեք փաստաթղթերի սպասարկիչի ձեր վարիչին։", "DE.Controllers.ApplicationController.errorUpdateVersion": "Ֆայլի տարբերակը փոխվել է։ Էջը նորից կբեռնվի։", - "DE.Controllers.ApplicationController.errorUpdateVersionOnDisconnect": "Համացանցային կապը վերահաստատվել է,և ֆայլի տարբերակը փոխվել է։
Նախքան աշխատանքը շարունակելը ներբեռնեք նիշքը կամ պատճենեք դրա պարունակությունը՝ վստահ լինելու, որ ոչինչ չի կորել, և ապա նորից բեռնեք այս էջը։", + "DE.Controllers.ApplicationController.errorUpdateVersionOnDisconnect": "Կապը վերահաստատվել է,և ֆայլի տարբերակը փոխվել է։
Նախքան աշխատանքը շարունակելը ներբեռնեք ֆայլը կամ պատճենեք դրա պարունակությունը՝ վստահ լինելու, որ ոչինչ չի կորել, և ապա նորից բեռնեք այս էջը։", "DE.Controllers.ApplicationController.errorUserDrop": "Այս պահին ֆայլն անհասանելի է։", "DE.Controllers.ApplicationController.errorViewerDisconnect": "Միացումն ընդհատվել է։ Դուք կարող եք շարունակել դիտել փաստաթուղթը,
բայց չեք կարողանա ներբեռնել կամ տպել, մինչև միացումը չվերականգնվի։", "DE.Controllers.ApplicationController.mniImageFromFile": "Նկար նիշքից", diff --git a/apps/documenteditor/forms/locale/it.json b/apps/documenteditor/forms/locale/it.json index 035609108..885b4e5d6 100644 --- a/apps/documenteditor/forms/locale/it.json +++ b/apps/documenteditor/forms/locale/it.json @@ -102,6 +102,7 @@ "DE.Controllers.ApplicationController.errorSessionIdle": "Il documento non è stato modificato per molto tempo. Ti preghiamo di ricaricare la pagina.", "DE.Controllers.ApplicationController.errorSessionToken": "La connessione con il server è stata interrotta, è necessario ricaricare la pagina.", "DE.Controllers.ApplicationController.errorSubmit": "Invio fallito.", + "DE.Controllers.ApplicationController.errorTextFormWrongFormat": "Il valore inserito non corrisponde al formato del campo.", "DE.Controllers.ApplicationController.errorToken": "Il token di sicurezza del documento non è formato correttamente.
Si prega di contattare l'amministratore di Document Server.", "DE.Controllers.ApplicationController.errorTokenExpire": "Il token di sicurezza del documento è scaduto.
Si prega di contattare l'amministratore di Document Server.", "DE.Controllers.ApplicationController.errorUpdateVersion": "La versione del file è stata cambiata. La pagina verrà ricaricata.", diff --git a/apps/documenteditor/forms/locale/ja.json b/apps/documenteditor/forms/locale/ja.json index c66425c32..4c813a3c5 100644 --- a/apps/documenteditor/forms/locale/ja.json +++ b/apps/documenteditor/forms/locale/ja.json @@ -100,13 +100,13 @@ "DE.Controllers.ApplicationController.errorSessionIdle": "このドキュメントはかなり長い間編集されていませんでした。このページをリロードしてください。", "DE.Controllers.ApplicationController.errorSessionToken": "サーバーとの接続が中断されました。このページをリロードしてください。", "DE.Controllers.ApplicationController.errorSubmit": "送信に失敗しました。", + "DE.Controllers.ApplicationController.errorTextFormWrongFormat": "入力された値がフィールドのフォーマットと一致しません。", "DE.Controllers.ApplicationController.errorToken": "ドキュメント・セキュリティ・トークンが正しく形成されていません。
ドキュメントサーバーの管理者にご連絡ください。", "DE.Controllers.ApplicationController.errorTokenExpire": "ドキュメント・セキュリティ・トークンの有効期限が切れています。
ドキュメントサーバーの管理者に連絡してください。", "DE.Controllers.ApplicationController.errorUpdateVersion": "ファイルが変更されました。ページがリロードされます。", "DE.Controllers.ApplicationController.errorUpdateVersionOnDisconnect": "インターネット接続が復旧し、ファイルのバージョンが更新されています。
作業を継続する前に、ファイルをダウンロードするか内容をコピーして変更が失われていないことを確認してから、このページを再読み込みしてください。", "DE.Controllers.ApplicationController.errorUserDrop": "今、ファイルにアクセスすることはできません。", "DE.Controllers.ApplicationController.errorViewerDisconnect": "接続が失われました。文書の表示は可能ですが、
再度接続されてページが再ロードされるまで、ダウンロードまたは印刷することはできません。", - "DE.Controllers.ApplicationController.errorTextFormWrongFormat": "入力された値がフィールドのフォーマットと一致しません。", "DE.Controllers.ApplicationController.mniImageFromFile": "ファイルからの画像", "DE.Controllers.ApplicationController.mniImageFromStorage": "ストレージから画像を読み込む", "DE.Controllers.ApplicationController.mniImageFromUrl": "URLから画像を読み込む", diff --git a/apps/documenteditor/forms/locale/ms.json b/apps/documenteditor/forms/locale/ms.json index 377290383..2c17abd73 100644 --- a/apps/documenteditor/forms/locale/ms.json +++ b/apps/documenteditor/forms/locale/ms.json @@ -105,7 +105,7 @@ "DE.Controllers.ApplicationController.errorToken": "Dokumen token keselamatan kini tidak dibentuk.
Sila hubungi pentadbir Pelayan Dokumen.", "DE.Controllers.ApplicationController.errorTokenExpire": "Dokumen token keselamatan telah tamat tempoh.
Sila hubungi pentadbir Pelayan Dokumen.", "DE.Controllers.ApplicationController.errorUpdateVersion": "Versi fail telah berubah. Halaman akan dimuatkan semula.", - "DE.Controllers.ApplicationController.errorUpdateVersionOnDisconnect": "Sambungan internet telah dipulihkan, dan versi fail telah berubah.
Sebelum anda boleh terus bekerja, anda perlu memuat turun fail atau menyalin kandungannya untuk memastikan tiada ada yang hilang, dan kemudian muat semula halaman ini.", + "DE.Controllers.ApplicationController.errorUpdateVersionOnDisconnect": "Sambungan telah dipulihkan, dan versi fail telah berubah.
Sebelum anda boleh terus bekerja, anda perlu memuat turun fail atau menyalin kandungannya untuk memastikan tiada ada yang hilang, dan kemudian muat semula halaman ini.", "DE.Controllers.ApplicationController.errorUserDrop": "Fail tidak boleh diakses sekarang.", "DE.Controllers.ApplicationController.errorViewerDisconnect": "Sambungan telah hilang. Anda masih boleh melihat dokumen,
tetapi tidak dapat muat turun atau cetaknya sehingga sambungan dipulihkan dan halaman dimuat semua.", "DE.Controllers.ApplicationController.mniImageFromFile": "Imej daripada Fail", diff --git a/apps/documenteditor/forms/locale/pt.json b/apps/documenteditor/forms/locale/pt.json index 76a6ec46b..154a25d24 100644 --- a/apps/documenteditor/forms/locale/pt.json +++ b/apps/documenteditor/forms/locale/pt.json @@ -102,6 +102,7 @@ "DE.Controllers.ApplicationController.errorSessionIdle": "O documento ficou sem edição por muito tempo. Por favor atualize a página.", "DE.Controllers.ApplicationController.errorSessionToken": "A conexão com o servidor foi interrompida. Por favor atualize a página.", "DE.Controllers.ApplicationController.errorSubmit": "Falha no envio.", + "DE.Controllers.ApplicationController.errorTextFormWrongFormat": "O valor inserido não corresponde ao formato do campo.", "DE.Controllers.ApplicationController.errorToken": "O token de segurança do documento não foi formado corretamente.
Entre em contato com o administrador do Document Server.", "DE.Controllers.ApplicationController.errorTokenExpire": "O token de segurança do documento expirou.
Entre em contato com o administrador do Document Server.", "DE.Controllers.ApplicationController.errorUpdateVersion": "A versão do arquivo foi alterada. A página será recarregada.", diff --git a/apps/documenteditor/forms/locale/ru.json b/apps/documenteditor/forms/locale/ru.json index a2afab864..5f1b7b09d 100644 --- a/apps/documenteditor/forms/locale/ru.json +++ b/apps/documenteditor/forms/locale/ru.json @@ -102,13 +102,13 @@ "DE.Controllers.ApplicationController.errorSessionIdle": "Документ долгое время не редактировался. Пожалуйста, обновите страницу.", "DE.Controllers.ApplicationController.errorSessionToken": "Подключение к серверу было прервано. Пожалуйста, обновите страницу.", "DE.Controllers.ApplicationController.errorSubmit": "Не удалось отправить.", + "DE.Controllers.ApplicationController.errorTextFormWrongFormat": "Введенное значение не соответствует формату поля.", "DE.Controllers.ApplicationController.errorToken": "Токен безопасности документа имеет неправильный формат.
Пожалуйста, обратитесь к администратору Сервера документов.", "DE.Controllers.ApplicationController.errorTokenExpire": "Истек срок действия токена безопасности документа.
Пожалуйста, обратитесь к администратору Сервера документов.", "DE.Controllers.ApplicationController.errorUpdateVersion": "Версия файла была изменена. Страница будет перезагружена.", "DE.Controllers.ApplicationController.errorUpdateVersionOnDisconnect": "Соединение было восстановлено, и версия файла изменилась.
Прежде чем продолжить работу, надо скачать файл или скопировать его содержимое, чтобы обеспечить сохранность данных, а затем перезагрузить страницу.", "DE.Controllers.ApplicationController.errorUserDrop": "В настоящий момент файл недоступен.", "DE.Controllers.ApplicationController.errorViewerDisconnect": "Подключение прервано. Вы по-прежнему можете просматривать документ,
но не сможете скачать или напечатать его до восстановления подключения и обновления страницы.", - "DE.Controllers.ApplicationController.errorTextFormWrongFormat": "Введенное значение не соответствует формату поля.", "DE.Controllers.ApplicationController.mniImageFromFile": "Изображение из файла", "DE.Controllers.ApplicationController.mniImageFromStorage": "Изображение из хранилища", "DE.Controllers.ApplicationController.mniImageFromUrl": "Изображение по URL", diff --git a/apps/documenteditor/forms/locale/zh.json b/apps/documenteditor/forms/locale/zh.json index 043efd064..8c5541737 100644 --- a/apps/documenteditor/forms/locale/zh.json +++ b/apps/documenteditor/forms/locale/zh.json @@ -102,6 +102,7 @@ "DE.Controllers.ApplicationController.errorSessionIdle": "该文件没编辑比较长时间。请重新加载页面。", "DE.Controllers.ApplicationController.errorSessionToken": "与服务器的连接已中断。请重新加载页面。", "DE.Controllers.ApplicationController.errorSubmit": "提交失败", + "DE.Controllers.ApplicationController.errorTextFormWrongFormat": "输入的值与该字段的格式不一致。", "DE.Controllers.ApplicationController.errorToken": "文档安全令牌形成不正确。
请联系文档服务器管理员。", "DE.Controllers.ApplicationController.errorTokenExpire": "文档安全令牌已过期。
请联系文档服务器管理员。", "DE.Controllers.ApplicationController.errorUpdateVersion": "\n该文件版本已更改。该页面将重新加载。", diff --git a/apps/documenteditor/main/app/controller/DocumentHolder.js b/apps/documenteditor/main/app/controller/DocumentHolder.js index 37ff686d0..c42c99a88 100644 --- a/apps/documenteditor/main/app/controller/DocumentHolder.js +++ b/apps/documenteditor/main/app/controller/DocumentHolder.js @@ -1774,9 +1774,9 @@ define([ onAcceptRejectChange: function(item, e) { if (this.api) { if (item.value == 'accept') - this.api.asc_AcceptChanges(); + this.api.asc_AcceptChangesBySelection(false); else if (item.value == 'reject') - this.api.asc_RejectChanges(); + this.api.asc_RejectChangesBySelection(false); } this.editComplete(); }, diff --git a/apps/documenteditor/main/app/controller/Search.js b/apps/documenteditor/main/app/controller/Search.js index 38d2de4ab..aa35b2b1b 100644 --- a/apps/documenteditor/main/app/controller/Search.js +++ b/apps/documenteditor/main/app/controller/Search.js @@ -169,7 +169,7 @@ define([ onInputSearchChange: function (text) { var me = this; - if (this._state.searchText !== text) { + if ((text && this._state.searchText !== text) || (!text && this._state.newSearchText)) { this._state.newSearchText = text; this._lastInputChange = (new Date()); if (this.searchTimer === undefined) { @@ -179,6 +179,8 @@ define([ me.checkPunctuation(me._state.newSearchText); me._state.searchText = me._state.newSearchText; if (!(me._state.newSearchText !== '' && me.onQuerySearch()) && me._state.newSearchText === '') { + me.api.asc_endFindText(); + me.hideResults(); me.view.updateResultsNumber('no-results'); me.view.disableNavButtons(); me.view.disableReplaceButtons(true); diff --git a/apps/documenteditor/main/app/controller/Toolbar.js b/apps/documenteditor/main/app/controller/Toolbar.js index 6be815ed4..6812ef505 100644 --- a/apps/documenteditor/main/app/controller/Toolbar.js +++ b/apps/documenteditor/main/app/controller/Toolbar.js @@ -740,7 +740,8 @@ define([ spectype = control_props ? control_props.get_SpecificType() : Asc.c_oAscContentControlSpecificType.None; this.toolbar.lockToolbar(Common.enumLock.inSpecificForm, spectype==Asc.c_oAscContentControlSpecificType.CheckBox || spectype==Asc.c_oAscContentControlSpecificType.Picture || spectype==Asc.c_oAscContentControlSpecificType.ComboBox || spectype==Asc.c_oAscContentControlSpecificType.DropDownList || spectype==Asc.c_oAscContentControlSpecificType.DateTime, {array: this.btnsComment}); - } + } else + this.toolbar.lockToolbar(Common.enumLock.inSpecificForm, false, {array: this.btnsComment}); this.toolbar.lockToolbar(Common.enumLock.paragraphLock, paragraph_locked, {array: this.btnsComment}); this.toolbar.lockToolbar(Common.enumLock.headerLock, header_locked, {array: this.btnsComment}); this.toolbar.lockToolbar(Common.enumLock.richEditLock, rich_edit_lock, {array: this.btnsComment}); @@ -907,7 +908,8 @@ define([ this.toolbar.lockToolbar(Common.enumLock.inSpecificForm, spectype==Asc.c_oAscContentControlSpecificType.CheckBox || spectype==Asc.c_oAscContentControlSpecificType.Picture || spectype==Asc.c_oAscContentControlSpecificType.ComboBox || spectype==Asc.c_oAscContentControlSpecificType.DropDownList || spectype==Asc.c_oAscContentControlSpecificType.DateTime, {array: this.btnsComment}); - } + } else + this.toolbar.lockToolbar(Common.enumLock.inSpecificForm, false, {array: this.btnsComment}); } if (frame_pr) { this._state.suppress_num = !!frame_pr.get_SuppressLineNumbers(); diff --git a/apps/documenteditor/main/app/view/FileMenuPanels.js b/apps/documenteditor/main/app/view/FileMenuPanels.js index eb5ab2551..46f03cfca 100644 --- a/apps/documenteditor/main/app/view/FileMenuPanels.js +++ b/apps/documenteditor/main/app/view/FileMenuPanels.js @@ -2115,7 +2115,7 @@ define([ me.iFrame.src = '../../common/main/resources/help/download.html'; else { store.contentLang = store.contentLang === lang ? '{{DEFAULT_LANG}}' : lang; - me.urlPref = Common.Controllers.Desktop.helpUrl() + '/' + lang + '/'; + me.urlPref = Common.Controllers.Desktop.helpUrl() + '/' + store.contentLang + '/'; store.url = me.urlPref + 'Contents.json'; store.fetch(config); } diff --git a/apps/documenteditor/main/app/view/Toolbar.js b/apps/documenteditor/main/app/view/Toolbar.js index c7deb133b..a0efea64b 100644 --- a/apps/documenteditor/main/app/view/Toolbar.js +++ b/apps/documenteditor/main/app/view/Toolbar.js @@ -2106,7 +2106,7 @@ define([ cls: 'shifted-left', style: 'min-width: 177px', items: [ - {template: _.template('')}, + {template: _.template('')}, {caption: '--'}, this.mnuMultiChangeLevel = new Common.UI.MenuItem({ caption: this.textChangeLevel, @@ -2287,7 +2287,11 @@ define([ {id: 'id-multilevels-' + Common.UI.getId(), data: {type: 2, subtype: -1}, skipRenderOnChange: true, tip: this.textNone}, {id: 'id-multilevels-' + Common.UI.getId(), data: {type: 2, subtype: 1}, skipRenderOnChange: true, tip: this.tipMultiLevelVarious}, {id: 'id-multilevels-' + Common.UI.getId(), data: {type: 2, subtype: 2}, skipRenderOnChange: true, tip: this.tipMultiLevelNumbered}, - {id: 'id-multilevels-' + Common.UI.getId(), data: {type: 2, subtype: 3}, skipRenderOnChange: true, tip: this.tipMultiLevelSymbols} + {id: 'id-multilevels-' + Common.UI.getId(), data: {type: 2, subtype: 3}, skipRenderOnChange: true, tip: this.tipMultiLevelSymbols}, + {id: 'id-multilevels-' + Common.UI.getId(), data: {type: 2, subtype: 4}, skipRenderOnChange: true, tip: this.tipMultiLevelArticl}, + {id: 'id-multilevels-' + Common.UI.getId(), data: {type: 2, subtype: 5}, skipRenderOnChange: true, tip: this.tipMultiLevelChapter}, + {id: 'id-multilevels-' + Common.UI.getId(), data: {type: 2, subtype: 6}, skipRenderOnChange: true, tip: this.tipMultiLevelHeadings}, + {id: 'id-multilevels-' + Common.UI.getId(), data: {type: 2, subtype: 7}, skipRenderOnChange: true, tip: this.tipMultiLevelHeadVarious} ]), itemTemplate: _.template('
') }); @@ -2884,7 +2888,11 @@ define([ tipRusUpperPoints: 'А. Б. В.', tipRusUpperParentheses: 'А) Б) В)', tipRusLowerPoints: 'а. б. в.', - tipRusLowerParentheses: 'а) б) в)' + tipRusLowerParentheses: 'а) б) в)', + tipMultiLevelArticl: '', + tipMultiLevelChapter: '', + tipMultiLevelHeadings: '', + tipMultiLevelHeadVarious: '' } })(), DE.Views.Toolbar || {})); }); diff --git a/apps/documenteditor/main/locale/ca.json b/apps/documenteditor/main/locale/ca.json index baf828a37..b235a9c97 100644 --- a/apps/documenteditor/main/locale/ca.json +++ b/apps/documenteditor/main/locale/ca.json @@ -2875,6 +2875,10 @@ "DE.Views.Toolbar.tipMarkersFSquare": "Pics quadrats plens", "DE.Views.Toolbar.tipMarkersHRound": "Pics rodons buits", "DE.Views.Toolbar.tipMarkersStar": "Pics d'estrella", + "DE.Views.Toolbar.tipMultiLevelArticl": "Articles enumerats de diversos nivells", + "DE.Views.Toolbar.tipMultiLevelChapter": "Capítols enumerats de diversos nivells", + "DE.Views.Toolbar.tipMultiLevelHeadings": "Títols enumerats de diversos nivells", + "DE.Views.Toolbar.tipMultiLevelHeadVarious": "Títols enumerats de diversos nivells", "DE.Views.Toolbar.tipMultiLevelNumbered": "Pics numerats multinivell ", "DE.Views.Toolbar.tipMultilevels": "Llista amb diversos nivells", "DE.Views.Toolbar.tipMultiLevelSymbols": "Pics de símbols multinivell", diff --git a/apps/documenteditor/main/locale/en.json b/apps/documenteditor/main/locale/en.json index 92876a062..3ddc137f6 100644 --- a/apps/documenteditor/main/locale/en.json +++ b/apps/documenteditor/main/locale/en.json @@ -2902,6 +2902,10 @@ "DE.Views.Toolbar.tipMarkersFSquare": "Filled square bullets", "DE.Views.Toolbar.tipMarkersHRound": "Hollow round bullets", "DE.Views.Toolbar.tipMarkersStar": "Star bullets", + "DE.Views.Toolbar.tipMultiLevelArticl": "Multi-level numbered articles", + "DE.Views.Toolbar.tipMultiLevelChapter": "Multi-level numbered chapters", + "DE.Views.Toolbar.tipMultiLevelHeadings": "Multi-level numbered headings", + "DE.Views.Toolbar.tipMultiLevelHeadVarious": "Multi-level various numbered headings", "DE.Views.Toolbar.tipMultiLevelNumbered": "Multi-level numbered bullets", "DE.Views.Toolbar.tipMultilevels": "Multilevel list", "DE.Views.Toolbar.tipMultiLevelSymbols": "Multi-level symbols bullets", diff --git a/apps/documenteditor/main/locale/es.json b/apps/documenteditor/main/locale/es.json index db036cacf..5630f94b6 100644 --- a/apps/documenteditor/main/locale/es.json +++ b/apps/documenteditor/main/locale/es.json @@ -2875,6 +2875,10 @@ "DE.Views.Toolbar.tipMarkersFSquare": "Viñetas cuadradas rellenas", "DE.Views.Toolbar.tipMarkersHRound": "Viñetas redondas huecas", "DE.Views.Toolbar.tipMarkersStar": "Viñetas de estrella", + "DE.Views.Toolbar.tipMultiLevelArticl": "Artículos enumerados en varios niveles", + "DE.Views.Toolbar.tipMultiLevelChapter": "Capítulos enumerados en varios niveles", + "DE.Views.Toolbar.tipMultiLevelHeadings": "Títulos enumerados en varios niveles", + "DE.Views.Toolbar.tipMultiLevelHeadVarious": "Títulos enumerados en varios niveles", "DE.Views.Toolbar.tipMultiLevelNumbered": "Viñetas numeradas de varios niveles", "DE.Views.Toolbar.tipMultilevels": "Esquema", "DE.Views.Toolbar.tipMultiLevelSymbols": "Viñetas de símbolos de varios niveles", diff --git a/apps/documenteditor/main/locale/eu.json b/apps/documenteditor/main/locale/eu.json index c5c7e77d5..0cdfc02c2 100644 --- a/apps/documenteditor/main/locale/eu.json +++ b/apps/documenteditor/main/locale/eu.json @@ -603,7 +603,7 @@ "DE.Controllers.Main.errorToken": "Dokumentuaren segurtasun tokena ez dago ondo osatua.
Jarri harremanetan zure zerbitzariaren administratzailearekin.", "DE.Controllers.Main.errorTokenExpire": "Dokumentuaren segurtasun-tokena iraungi da.
Jarri zure dokumentu-zerbitzariaren administratzailearekin harremanetan.", "DE.Controllers.Main.errorUpdateVersion": "Fitxategiaren bertsioa aldatu da. Orria berriz kargatuko da.", - "DE.Controllers.Main.errorUpdateVersionOnDisconnect": "Interneteko konexioa berrezarri da eta fitxategiaren bertsioa aldatu da.
Lanean jarraitu aurretik, beharrezkoa da fitxategia deskargatzea edo edukia kopiatzea, ezer ez dela galduko ziurtatzeko, eta gero orri hau berriro kargatzea.", + "DE.Controllers.Main.errorUpdateVersionOnDisconnect": "Konexioa berrezarri da eta fitxategiaren bertsioa aldatu da.
Lanean jarraitu aurretik, beharrezkoa da fitxategia deskargatzea edo edukia kopiatzea, ezer ez dela galduko ziurtatzeko, eta gero orri hau berriro kargatzea.", "DE.Controllers.Main.errorUserDrop": "Ezin da fitxategia atzitu une honetan.", "DE.Controllers.Main.errorUsersExceed": "Ordainketa planak onartzen duen erabiltzaile kopurua gainditu da", "DE.Controllers.Main.errorViewerDisconnect": "Konexioa galdu da. Dokumentua ikusi dezakezu oraindik,
baina ezingo duzu deskargatu edo inprimatu konexioa berrezarri eta orria berriz kargatu arte.", @@ -2875,6 +2875,10 @@ "DE.Views.Toolbar.tipMarkersFSquare": "Betetako lauki buletak", "DE.Views.Toolbar.tipMarkersHRound": "Biribil huts buletak", "DE.Views.Toolbar.tipMarkersStar": "Izar-buletak", + "DE.Views.Toolbar.tipMultiLevelArticl": "Hainbat mailatan zerrendatutako artikuluak", + "DE.Views.Toolbar.tipMultiLevelChapter": "Hainbat mailatan zerrendatutako kapituluak", + "DE.Views.Toolbar.tipMultiLevelHeadings": "Hainbat mailatan zerrendatutako tituluak", + "DE.Views.Toolbar.tipMultiLevelHeadVarious": "Hainbat mailatan zerrendatutako tituluak", "DE.Views.Toolbar.tipMultiLevelNumbered": "Maila anitzeko zenbakitutako buletak", "DE.Views.Toolbar.tipMultilevels": "Maila anitzeko zerrenda", "DE.Views.Toolbar.tipMultiLevelSymbols": "Maila anitzeko ikur-buletak", diff --git a/apps/documenteditor/main/locale/fr.json b/apps/documenteditor/main/locale/fr.json index 8623d7360..d1c7d750e 100644 --- a/apps/documenteditor/main/locale/fr.json +++ b/apps/documenteditor/main/locale/fr.json @@ -599,6 +599,7 @@ "DE.Controllers.Main.errorSetPassword": "Le mot de passe ne peut pas être configuré", "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.errorSubmit": "Échec de soumission", + "DE.Controllers.Main.errorTextFormWrongFormat": "La valeur saisie ne correspond pas au format du champ.", "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.", @@ -1846,6 +1847,7 @@ "DE.Views.FormSettings.textColor": "Couleur de bordure.", "DE.Views.FormSettings.textComb": "Peigne de caractères ", "DE.Views.FormSettings.textCombobox": "Zone de liste déroulante", + "DE.Views.FormSettings.textComplex": "Champ complexe", "DE.Views.FormSettings.textConnected": "Champs connectés", "DE.Views.FormSettings.textDelete": "Supprimer", "DE.Views.FormSettings.textDigits": "Chiffres", @@ -1855,6 +1857,7 @@ "DE.Views.FormSettings.textField": "Champ texte", "DE.Views.FormSettings.textFixed": "Taille de champ fixe", "DE.Views.FormSettings.textFormat": "Format", + "DE.Views.FormSettings.textFormatSymbols": "Symboles autorisés", "DE.Views.FormSettings.textFromFile": "Depuis un fichier", "DE.Views.FormSettings.textFromStorage": "A partir de l'espace de stockage", "DE.Views.FormSettings.textFromUrl": "A partir d'une URL", @@ -1863,12 +1866,15 @@ "DE.Views.FormSettings.textKey": "Clé", "DE.Views.FormSettings.textLetters": "Lettres", "DE.Views.FormSettings.textLock": "Verrou ", + "DE.Views.FormSettings.textMask": "Masque arbitraire", "DE.Views.FormSettings.textMaxChars": "Limite de caractères", "DE.Views.FormSettings.textMulti": "Champ de saisie à plusieurs lignes", "DE.Views.FormSettings.textNever": "Jamais", "DE.Views.FormSettings.textNoBorder": "Sans bordures", + "DE.Views.FormSettings.textNone": "Aucun", "DE.Views.FormSettings.textPlaceholder": "Espace réservé", "DE.Views.FormSettings.textRadiobox": "Bouton radio", + "DE.Views.FormSettings.textReg": "Expression régulière", "DE.Views.FormSettings.textRequired": "Requis", "DE.Views.FormSettings.textScale": "Mise à l'échelle", "DE.Views.FormSettings.textSelectImage": "Sélectionner une image", @@ -1885,6 +1891,7 @@ "DE.Views.FormSettings.textWidth": "Largeur de cellule", "DE.Views.FormsTab.capBtnCheckBox": "Case à cocher", "DE.Views.FormsTab.capBtnComboBox": "Zone de liste déroulante", + "DE.Views.FormsTab.capBtnComplex": "Champ complexe", "DE.Views.FormsTab.capBtnDownloadForm": "Télécharger comme oform", "DE.Views.FormsTab.capBtnDropDown": "Déroulant", "DE.Views.FormsTab.capBtnEmail": "Adresse E-mail", @@ -1907,10 +1914,13 @@ "DE.Views.FormsTab.textSubmited": "Formulaire soumis avec succès", "DE.Views.FormsTab.tipCheckBox": "Insérer une case à cocher", "DE.Views.FormsTab.tipComboBox": "Insérer une zone de liste déroulante", + "DE.Views.FormsTab.tipComplexField": "Insérer un champ complexe", "DE.Views.FormsTab.tipDownloadForm": "Télécharger un fichier sous forme de document OFORM à remplir", "DE.Views.FormsTab.tipDropDown": "Insérer une liste déroulante", + "DE.Views.FormsTab.tipEmailField": "Insérer l'adresse e-mail", "DE.Views.FormsTab.tipImageField": "Insérer une image", "DE.Views.FormsTab.tipNextForm": "Allez au champ suivant", + "DE.Views.FormsTab.tipPhoneField": "Insérer le numéro de téléphone", "DE.Views.FormsTab.tipPrevForm": "Allez au champs précédent", "DE.Views.FormsTab.tipRadioBox": "Insérer bouton radio", "DE.Views.FormsTab.tipSaveForm": "Enregistrer un fichier en tant que document OFORM remplissable", @@ -2865,6 +2875,10 @@ "DE.Views.Toolbar.tipMarkersFSquare": "Puces carrées remplies", "DE.Views.Toolbar.tipMarkersHRound": "Puces rondes vides", "DE.Views.Toolbar.tipMarkersStar": "Puces en étoile", + "DE.Views.Toolbar.tipMultiLevelArticl": "Articles numérotés à plusieurs niveaux", + "DE.Views.Toolbar.tipMultiLevelChapter": "Chapitres numérotés à plusieurs niveaux", + "DE.Views.Toolbar.tipMultiLevelHeadings": "Titres numérotés à plusieurs niveaux", + "DE.Views.Toolbar.tipMultiLevelHeadVarious": "Diverses en-têtes numérotées à plusieurs niveaux", "DE.Views.Toolbar.tipMultiLevelNumbered": "Puces numérotées à plusieurs niveaux", "DE.Views.Toolbar.tipMultilevels": "Liste multiniveau", "DE.Views.Toolbar.tipMultiLevelSymbols": "Puces de symboles à plusieurs niveaux", diff --git a/apps/documenteditor/main/locale/hy.json b/apps/documenteditor/main/locale/hy.json index 5154b2009..add0ca15a 100644 --- a/apps/documenteditor/main/locale/hy.json +++ b/apps/documenteditor/main/locale/hy.json @@ -207,7 +207,7 @@ "Common.UI.Window.textConfirmation": "Հաստատում", "Common.UI.Window.textDontShow": "Այս գրությունն այլևս ցույց չտալ", "Common.UI.Window.textError": "Սխալ", - "Common.UI.Window.textInformation": "Տեղեկատվություն ", + "Common.UI.Window.textInformation": "Տեղեկատվություն", "Common.UI.Window.textWarning": "Զգուշացում", "Common.UI.Window.yesButtonText": "Այո", "Common.Utils.Metric.txtCm": "սմ", @@ -260,7 +260,7 @@ "Common.Views.Comments.mniPositionAsc": "Վերևում ", "Common.Views.Comments.mniPositionDesc": "Ներքևից ", "Common.Views.Comments.textAdd": "Հավելել", - "Common.Views.Comments.textAddComment": "Ավելացնել մեկնաբանություն", + "Common.Views.Comments.textAddComment": "Ավելացնել", "Common.Views.Comments.textAddCommentToDoc": "Փաստաթղթում կցել մեկնաբանություն", "Common.Views.Comments.textAddReply": "Ավելացնել պատասխան", "Common.Views.Comments.textAll": "Բոլորը", @@ -471,6 +471,7 @@ "Common.Views.SaveAsDlg.textTitle": "Պահպանման պանակ", "Common.Views.SearchPanel.textCaseSensitive": "Դուրճազգայուն", "Common.Views.SearchPanel.textCloseSearch": "Փակել որոնումը", + "Common.Views.SearchPanel.textContentChanged": "Փաստաթուղթը փոխվել է", "Common.Views.SearchPanel.textFind": "Գտնել", "Common.Views.SearchPanel.textFindAndReplace": "Գտնել և փոխարինել", "Common.Views.SearchPanel.textMatchUsingRegExp": "Համեմատել՝ օգտագործելով կանոնավոր արտահայտություններ", @@ -479,6 +480,7 @@ "Common.Views.SearchPanel.textReplace": "Փոխարինել", "Common.Views.SearchPanel.textReplaceAll": "Փոխարինել բոլորը", "Common.Views.SearchPanel.textReplaceWith": "Փոխարինել հետևյալով", + "Common.Views.SearchPanel.textSearchAgain": "{0}Կատարել նոր որոնում{1}ճշգրիտ արդյունքների համար:", "Common.Views.SearchPanel.textSearchHasStopped": "Որոնումը դադարեցվել է", "Common.Views.SearchPanel.textSearchResults": "Որոնման արդյունքներ՝ {0}/{1}", "Common.Views.SearchPanel.textTooManyResults": "Այստեղ ցուցադրելու համար չափազանց շատ արդյունքներ կան", @@ -597,10 +599,11 @@ "DE.Controllers.Main.errorSetPassword": "Գաղտնաբառը չհաջողվեց սահմանել:", "DE.Controllers.Main.errorStockChart": "Տողերի սխալ կարգ։ Բորսայի գծապատկեր ստանալու համար տվյալները թերթի վրա դասավորեք հետևյալ կերպ՝
բացման գին, առավելագույն գին, նվազագույն գին, փակման գին։ ", "DE.Controllers.Main.errorSubmit": "Չհաջողվեց հաստատել", + "DE.Controllers.Main.errorTextFormWrongFormat": "Մուտքագրված արժեքը չի համապատասխանում դաշտի ձևաչափին:", "DE.Controllers.Main.errorToken": "Փաստաթղթի անվտանգության կտրոնը ճիշտ չի ձևակերպված։
Դիմեք փաստաթղթերի սպասարկիչի ձեր վարիչին։", "DE.Controllers.Main.errorTokenExpire": "Փաստաթղթի անվտանգության կտրոնի ժամկետն անցել է։
Դիմեք փաստաթղթերի սպասարկիչի ձեր վարիչին։", "DE.Controllers.Main.errorUpdateVersion": "Ֆայլի տարբերակը փոխվել է։ Էջը նորից կբեռնվի։", - "DE.Controllers.Main.errorUpdateVersionOnDisconnect": "Համացանցային կապը վերահաստատվել է,և ֆայլի տարբերակը փոխվել է։
Նախքան աշխատանքը շարունակելը ներբեռնեք նիշքը կամ պատճենեք դրա պարունակությունը՝ վստահ լինելու, որ ոչինչ չի կորել, և ապա նորից բեռնեք այս էջը։", + "DE.Controllers.Main.errorUpdateVersionOnDisconnect": "Կապը վերահաստատվել է,և ֆայլի տարբերակը փոխվել է։
Նախքան աշխատանքը շարունակելը ներբեռնեք ֆայլը կամ պատճենեք դրա պարունակությունը՝ վստահ լինելու, որ ոչինչ չի կորել, և ապա նորից բեռնեք այս էջը։", "DE.Controllers.Main.errorUserDrop": "Այս պահին ֆայլն անհասանելի է։", "DE.Controllers.Main.errorUsersExceed": "Օգտատերերի՝ սակագնային պլանով թույլատրված քանակը գերազանցվել է։", "DE.Controllers.Main.errorViewerDisconnect": "Միացումը ընդհատվել է։ Դուք կարող եք շարունակել դիտել փաստաթուղթը,
բայց չեք կարողանա ներբեռնել կամ տպել, մինչև կապը վերականգնվի և էջը վերաբեռնվի:", @@ -1844,26 +1847,34 @@ "DE.Views.FormSettings.textColor": "Եզրագծի գույն", "DE.Views.FormSettings.textComb": "Սյուների ձուլում", "DE.Views.FormSettings.textCombobox": "Համակցված տուփ", + "DE.Views.FormSettings.textComplex": "Համալիր դաշտ", "DE.Views.FormSettings.textConnected": "Դաշտերը միացված են", "DE.Views.FormSettings.textDelete": "Ջնջել", + "DE.Views.FormSettings.textDigits": "Թվանիշեր", "DE.Views.FormSettings.textDisconnect": "Անջատել", "DE.Views.FormSettings.textDropDown": "Բացվող", "DE.Views.FormSettings.textExact": "ճշգրիտ", "DE.Views.FormSettings.textField": "Տեքստի դաշտ", "DE.Views.FormSettings.textFixed": "ֆիքսված չափի դաշտ", + "DE.Views.FormSettings.textFormat": "Ձևաչափ", + "DE.Views.FormSettings.textFormatSymbols": "Թույլատրված նշաններ", "DE.Views.FormSettings.textFromFile": "Ֆայլից", "DE.Views.FormSettings.textFromStorage": "Պահպանումից", "DE.Views.FormSettings.textFromUrl": "URL-ից", "DE.Views.FormSettings.textGroupKey": "Խմբի բանալի", "DE.Views.FormSettings.textImage": "Նկար", "DE.Views.FormSettings.textKey": "Բանալի ", + "DE.Views.FormSettings.textLetters": "Նամակներ", "DE.Views.FormSettings.textLock": "Արգելափակել ", + "DE.Views.FormSettings.textMask": "Կամայական դիմակ", "DE.Views.FormSettings.textMaxChars": "Նիշերի սահման", "DE.Views.FormSettings.textMulti": "Բազմագիծ դաշտ", "DE.Views.FormSettings.textNever": "Երբեք", "DE.Views.FormSettings.textNoBorder": "Առանց եզրագծի", + "DE.Views.FormSettings.textNone": "Ոչ մեկը", "DE.Views.FormSettings.textPlaceholder": "Տեղապահ ", "DE.Views.FormSettings.textRadiobox": "Ընտրանքի կոճակ ", + "DE.Views.FormSettings.textReg": "Կանոնավոր արտահայտություն", "DE.Views.FormSettings.textRequired": "Պարտադիր", "DE.Views.FormSettings.textScale": "Երբ սանդղել", "DE.Views.FormSettings.textSelectImage": "Ընտրել պատկեր", @@ -1880,10 +1891,13 @@ "DE.Views.FormSettings.textWidth": "Վանդակի լայնությունը", "DE.Views.FormsTab.capBtnCheckBox": "Ստուգանիշ", "DE.Views.FormsTab.capBtnComboBox": "Համակցված տուփ", + "DE.Views.FormsTab.capBtnComplex": "Համալիր դաշտ", "DE.Views.FormsTab.capBtnDownloadForm": "Ներբեռնել որպես oform", "DE.Views.FormsTab.capBtnDropDown": "Բացվող", + "DE.Views.FormsTab.capBtnEmail": "էլ. հասցե", "DE.Views.FormsTab.capBtnImage": "Նկար", "DE.Views.FormsTab.capBtnNext": "Հաջորդ դաշտ", + "DE.Views.FormsTab.capBtnPhone": "Հեռախոսահամար", "DE.Views.FormsTab.capBtnPrev": "Նախորդ դաշտ", "DE.Views.FormsTab.capBtnRadioBox": "Ընտրանքի կոճակ ", "DE.Views.FormsTab.capBtnSaveForm": "Պահպանել, ինչպես oform", @@ -1900,10 +1914,13 @@ "DE.Views.FormsTab.textSubmited": "Ձևը հաջողությամբ ներկայացված է", "DE.Views.FormsTab.tipCheckBox": "Տեղադրել ստուգանիշ ", "DE.Views.FormsTab.tipComboBox": "Տեղադրել համակցված տուփ ", + "DE.Views.FormsTab.tipComplexField": "Զետեղել բարդ դաշտ", "DE.Views.FormsTab.tipDownloadForm": "Ներբեռնել ֆայլը որպես լրացվող OFORM փաստաթուղթ", "DE.Views.FormsTab.tipDropDown": "Տեղադրել բացվող ցուցակ", + "DE.Views.FormsTab.tipEmailField": "Զետեղել էլ. հասցե", "DE.Views.FormsTab.tipImageField": "Զետեղել նկար", "DE.Views.FormsTab.tipNextForm": "Գնալ հաջորդ դաշտ", + "DE.Views.FormsTab.tipPhoneField": "Զետեղել հեռախոսահամար", "DE.Views.FormsTab.tipPrevForm": "Գնալ նախորդ դաշտ", "DE.Views.FormsTab.tipRadioBox": "Տեղադրել ընտրանքի կոճակ ", "DE.Views.FormsTab.tipSaveForm": "Պահպանել ֆայլը, որպես լրացվող OFORM փաստաթուղթ", @@ -2858,6 +2875,10 @@ "DE.Views.Toolbar.tipMarkersFSquare": "Լցված քառակուսի պարբերակներ", "DE.Views.Toolbar.tipMarkersHRound": "Դատարկ կլոր պարբերակներ", "DE.Views.Toolbar.tipMarkersStar": "Աստղաձև պարբերակներ", + "DE.Views.Toolbar.tipMultiLevelArticl": "Բազմամակարդակ համարակալված հոդվածներ ", + "DE.Views.Toolbar.tipMultiLevelChapter": "Բազմամակարդակ համարակալված գլուխներ", + "DE.Views.Toolbar.tipMultiLevelHeadings": "Բազմամակարդակ համարակալված վերնագրեր", + "DE.Views.Toolbar.tipMultiLevelHeadVarious": "Բազմամակարդակ համարակալված բազմազան վերնագրեր", "DE.Views.Toolbar.tipMultiLevelNumbered": "Բազմաստիճան համարակալված պարբերակներ", "DE.Views.Toolbar.tipMultilevels": "Բազմամակարդակ ցուցակ", "DE.Views.Toolbar.tipMultiLevelSymbols": "Բազմաստիճան նիշերի պարբերակներ", @@ -2918,6 +2939,11 @@ "DE.Views.ViewTab.textRulers": "Քանոններ", "DE.Views.ViewTab.textStatusBar": "Վիճակագոտի", "DE.Views.ViewTab.textZoom": "Խոշորացնել", + "DE.Views.ViewTab.tipDarkDocument": "Մուգ փաստաթուղթ", + "DE.Views.ViewTab.tipFitToPage": "Հարմարեցնել էջին", + "DE.Views.ViewTab.tipFitToWidth": "Հարմարեցնել լայնությանը", + "DE.Views.ViewTab.tipHeadings": "Վերնագրեր", + "DE.Views.ViewTab.tipInterfaceTheme": "Ինտերֆեյսի ոճ", "DE.Views.WatermarkSettingsDialog.textAuto": "Ինքնաշխատ", "DE.Views.WatermarkSettingsDialog.textBold": "Թավ", "DE.Views.WatermarkSettingsDialog.textColor": "Տեքստի գույն", diff --git a/apps/documenteditor/main/locale/it.json b/apps/documenteditor/main/locale/it.json index 7c6d820f0..c7206dbb0 100644 --- a/apps/documenteditor/main/locale/it.json +++ b/apps/documenteditor/main/locale/it.json @@ -479,6 +479,7 @@ "Common.Views.SearchPanel.textReplace": "Sostituisci", "Common.Views.SearchPanel.textReplaceAll": "Sostituisci tutto", "Common.Views.SearchPanel.textReplaceWith": "Sostituire con", + "Common.Views.SearchPanel.textSearchAgain": "{0}Esegui una nuova ricerca{1} per ottenere risultati accurati.", "Common.Views.SearchPanel.textSearchHasStopped": "La ricerca è stata interrotta", "Common.Views.SearchPanel.textSearchResults": "Risultati della ricerca: {0}/{1}", "Common.Views.SearchPanel.textTooManyResults": "Ci sono troppi risultati per essere mostrati qui", @@ -1852,6 +1853,7 @@ "DE.Views.FormSettings.textField": "‎Campo di testo‎", "DE.Views.FormSettings.textFixed": "Dimensione di campo fissa", "DE.Views.FormSettings.textFormat": "Formato", + "DE.Views.FormSettings.textFormatSymbols": "Simboli consentiti", "DE.Views.FormSettings.textFromFile": "Da file", "DE.Views.FormSettings.textFromStorage": "Da spazio di archiviazione", "DE.Views.FormSettings.textFromUrl": "Da URL", diff --git a/apps/documenteditor/main/locale/ms.json b/apps/documenteditor/main/locale/ms.json index 7a0363acf..5771359be 100644 --- a/apps/documenteditor/main/locale/ms.json +++ b/apps/documenteditor/main/locale/ms.json @@ -600,7 +600,7 @@ "DE.Controllers.Main.errorToken": "Dokumen token keselamatan kini tidak dibentuk.
Sila hubungi pentadbir Pelayan Dokumen.", "DE.Controllers.Main.errorTokenExpire": "Dokumen token keselamatan telah tamat tempoh.
Sila hubungi pentadbir Pelayan Dokumen.", "DE.Controllers.Main.errorUpdateVersion": "Versi fail telah berubah. Halaman akan dimuatkan semula.", - "DE.Controllers.Main.errorUpdateVersionOnDisconnect": "Sambungan internet telah dipulihkan, dan versi fail telah berubah.
Sebelum anda boleh terus bekerja, anda perlu memuat turun fail atau menyalin kandungannya untuk memastikan tiada ada yang hilang, dan kemudian muat semula halaman ini.", + "DE.Controllers.Main.errorUpdateVersionOnDisconnect": "Sambungan telah dipulihkan, dan versi fail telah berubah.
Sebelum anda boleh terus bekerja, anda perlu memuat turun fail atau menyalin kandungannya untuk memastikan tiada ada yang hilang, dan kemudian muat semula halaman ini.", "DE.Controllers.Main.errorUserDrop": "Fail tidak boleh diakses sekarang.", "DE.Controllers.Main.errorUsersExceed": "Bilangan pengguna yang didizinkan mengikut pelan pembayaran telah lebih", "DE.Controllers.Main.errorViewerDisconnect": "Sambungan telah hilang. Anda masih boleh melihat dokumen,
tetapi tidak dapat muat turun atau cetaknya sehingga sambungan dipulihkan dan halaman dimuat semua.", @@ -1846,22 +1846,26 @@ "DE.Views.FormSettings.textCombobox": "Kotak kombo", "DE.Views.FormSettings.textConnected": "Medan disambungkan", "DE.Views.FormSettings.textDelete": "Padam", + "DE.Views.FormSettings.textDigits": "Digit", "DE.Views.FormSettings.textDisconnect": "Nyahsambungan", "DE.Views.FormSettings.textDropDown": "Juntai bawah", "DE.Views.FormSettings.textExact": "tepat sekali", "DE.Views.FormSettings.textField": "Medan Teks", "DE.Views.FormSettings.textFixed": "Tetapkan saiz medan", + "DE.Views.FormSettings.textFormat": "Format", "DE.Views.FormSettings.textFromFile": "Dari Fail", "DE.Views.FormSettings.textFromStorage": "Dari Simpanan", "DE.Views.FormSettings.textFromUrl": "Dari URL", "DE.Views.FormSettings.textGroupKey": "Kumpulan kunci", "DE.Views.FormSettings.textImage": "Imej", "DE.Views.FormSettings.textKey": "Kunci", + "DE.Views.FormSettings.textLetters": "Surat", "DE.Views.FormSettings.textLock": "Kunci", "DE.Views.FormSettings.textMaxChars": "Had aksara", "DE.Views.FormSettings.textMulti": "Medan pelbagai garis", "DE.Views.FormSettings.textNever": "Tidak pernah", "DE.Views.FormSettings.textNoBorder": "Tiada Sempadan", + "DE.Views.FormSettings.textNone": "Tiada", "DE.Views.FormSettings.textPlaceholder": "Pemegang tempat", "DE.Views.FormSettings.textRadiobox": "Butang Radio", "DE.Views.FormSettings.textRequired": "Memerlukan", @@ -1882,8 +1886,10 @@ "DE.Views.FormsTab.capBtnComboBox": "Kotak kombo", "DE.Views.FormsTab.capBtnDownloadForm": "Muat turun sebagai oform", "DE.Views.FormsTab.capBtnDropDown": "Juntai bawah", + "DE.Views.FormsTab.capBtnEmail": "Alamat e-mel", "DE.Views.FormsTab.capBtnImage": "Imej", "DE.Views.FormsTab.capBtnNext": "Medan seterusnya", + "DE.Views.FormsTab.capBtnPhone": "Nombor telefon", "DE.Views.FormsTab.capBtnPrev": "Medan Sebelumnya", "DE.Views.FormsTab.capBtnRadioBox": "Butang Radio", "DE.Views.FormsTab.capBtnSaveForm": "Simpan sebagai oform", @@ -2918,6 +2924,11 @@ "DE.Views.ViewTab.textRulers": "Pembaris", "DE.Views.ViewTab.textStatusBar": "Bar Status", "DE.Views.ViewTab.textZoom": "Zum", + "DE.Views.ViewTab.tipDarkDocument": "Dokumen gelap", + "DE.Views.ViewTab.tipFitToPage": "Muat kepada Halaman", + "DE.Views.ViewTab.tipFitToWidth": "Muat kepada Kelebaran", + "DE.Views.ViewTab.tipHeadings": "Pengepala", + "DE.Views.ViewTab.tipInterfaceTheme": "Tema antara muka", "DE.Views.WatermarkSettingsDialog.textAuto": "Auto", "DE.Views.WatermarkSettingsDialog.textBold": "Tebal", "DE.Views.WatermarkSettingsDialog.textColor": "Warna teks", diff --git a/apps/documenteditor/main/locale/pt-pt.json b/apps/documenteditor/main/locale/pt-pt.json index f52f79d6e..0380a9235 100644 --- a/apps/documenteditor/main/locale/pt-pt.json +++ b/apps/documenteditor/main/locale/pt-pt.json @@ -425,14 +425,14 @@ "Common.Views.ReviewChanges.txtMarkupCap": "Marcação e balões", "Common.Views.ReviewChanges.txtMarkupSimple": "Todas as alterações {0}
Não há balões", "Common.Views.ReviewChanges.txtMarkupSimpleCap": "Apenas marcação", - "Common.Views.ReviewChanges.txtNext": "To Next Change", + "Common.Views.ReviewChanges.txtNext": "Para a próxima alteração", "Common.Views.ReviewChanges.txtOff": "Desligado pra mim", "Common.Views.ReviewChanges.txtOffGlobal": "Desligado pra mim e para todos", "Common.Views.ReviewChanges.txtOn": "Ligado para mim", "Common.Views.ReviewChanges.txtOnGlobal": "Ligado para mim e para todos", "Common.Views.ReviewChanges.txtOriginal": "Todas as alterações recusadas {0}", "Common.Views.ReviewChanges.txtOriginalCap": "Original", - "Common.Views.ReviewChanges.txtPrev": "To Previous Change", + "Common.Views.ReviewChanges.txtPrev": "Para a alteração anterior", "Common.Views.ReviewChanges.txtPreview": "Pré-visualizar", "Common.Views.ReviewChanges.txtReject": "Rejeitar", "Common.Views.ReviewChanges.txtRejectAll": "Rejeitar todas as alterações", diff --git a/apps/documenteditor/main/locale/pt.json b/apps/documenteditor/main/locale/pt.json index 4fd774bf8..dd337b84a 100644 --- a/apps/documenteditor/main/locale/pt.json +++ b/apps/documenteditor/main/locale/pt.json @@ -5,83 +5,83 @@ "Common.Controllers.ExternalDiagramEditor.textClose": "Fechar", "Common.Controllers.ExternalDiagramEditor.warningText": "O objeto está desabilitado por que está sendo editado por outro usuário.", "Common.Controllers.ExternalDiagramEditor.warningTitle": "Aviso", - "Common.Controllers.ExternalMergeEditor.textAnonymous": "Anonymous", - "Common.Controllers.ExternalMergeEditor.textClose": "Close", - "Common.Controllers.ExternalMergeEditor.warningText": "The object is disabled because it is being edited by another user.", - "Common.Controllers.ExternalMergeEditor.warningTitle": "Warning", + "Common.Controllers.ExternalMergeEditor.textAnonymous": "Anônimo", + "Common.Controllers.ExternalMergeEditor.textClose": "Fechar", + "Common.Controllers.ExternalMergeEditor.warningText": "O objeto está desabilitado por que está sendo editado por outro usuário.", + "Common.Controllers.ExternalMergeEditor.warningTitle": "Aviso", "Common.Controllers.ExternalOleEditor.textAnonymous": "Anônimo", "Common.Controllers.ExternalOleEditor.textClose": "Fechar", "Common.Controllers.ExternalOleEditor.warningText": "O objeto está desabilitado por que está sendo editado por outro usuário.", "Common.Controllers.ExternalOleEditor.warningTitle": "Aviso", - "Common.Controllers.History.notcriticalErrorTitle": "Warning", + "Common.Controllers.History.notcriticalErrorTitle": "Aviso", "Common.Controllers.ReviewChanges.textAcceptBeforeCompare": "Para comparar os documentos, todas as alterações neles serão consideradas aceitas. Deseja continuar?", - "Common.Controllers.ReviewChanges.textAtLeast": "at least", + "Common.Controllers.ReviewChanges.textAtLeast": "pelo menos", "Common.Controllers.ReviewChanges.textAuto": "auto", - "Common.Controllers.ReviewChanges.textBaseline": "Baseline", - "Common.Controllers.ReviewChanges.textBold": "Bold", - "Common.Controllers.ReviewChanges.textBreakBefore": "Page break before", - "Common.Controllers.ReviewChanges.textCaps": "All caps", + "Common.Controllers.ReviewChanges.textBaseline": "Linha de base", + "Common.Controllers.ReviewChanges.textBold": "Negrito", + "Common.Controllers.ReviewChanges.textBreakBefore": "Quebra de página antes", + "Common.Controllers.ReviewChanges.textCaps": "Todas maiúsculas", "Common.Controllers.ReviewChanges.textCenter": "Alinhar ao centro", "Common.Controllers.ReviewChanges.textChar": "Nivel de caracter", - "Common.Controllers.ReviewChanges.textChart": "Chart", - "Common.Controllers.ReviewChanges.textColor": "Font color", - "Common.Controllers.ReviewChanges.textContextual": "Don't add interval between paragraphs of the same style", + "Common.Controllers.ReviewChanges.textChart": "Gráfico", + "Common.Controllers.ReviewChanges.textColor": "Cor da fonte", + "Common.Controllers.ReviewChanges.textContextual": "Não adicionar intervalo entre parágrafos do mesmo estilo", "Common.Controllers.ReviewChanges.textDeleted": "Excluído:", "Common.Controllers.ReviewChanges.textDStrikeout": "Tachado duplo", "Common.Controllers.ReviewChanges.textEquation": "Equação", - "Common.Controllers.ReviewChanges.textExact": "exactly", - "Common.Controllers.ReviewChanges.textFirstLine": "First line", - "Common.Controllers.ReviewChanges.textFontSize": "Font size", + "Common.Controllers.ReviewChanges.textExact": "exatamente", + "Common.Controllers.ReviewChanges.textFirstLine": "Primeira linha", + "Common.Controllers.ReviewChanges.textFontSize": "Tamanho da fonte", "Common.Controllers.ReviewChanges.textFormatted": "Formatado", - "Common.Controllers.ReviewChanges.textHighlight": "Highlight color", - "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.textItalic": "Italic", + "Common.Controllers.ReviewChanges.textHighlight": "Cor de realce", + "Common.Controllers.ReviewChanges.textImage": "Imagem", + "Common.Controllers.ReviewChanges.textIndentLeft": "Recuo à esquerda", + "Common.Controllers.ReviewChanges.textIndentRight": "Recuo à direita", + "Common.Controllers.ReviewChanges.textInserted": "Inserido:", + "Common.Controllers.ReviewChanges.textItalic": "Itálico", "Common.Controllers.ReviewChanges.textJustify": "Alinhamento justificado", - "Common.Controllers.ReviewChanges.textKeepLines": "Keep lines together", - "Common.Controllers.ReviewChanges.textKeepNext": "Keep with next", + "Common.Controllers.ReviewChanges.textKeepLines": "Manter as linhas juntas", + "Common.Controllers.ReviewChanges.textKeepNext": "Manter com o próximo", "Common.Controllers.ReviewChanges.textLeft": "Alinhar à esquerda", - "Common.Controllers.ReviewChanges.textLineSpacing": "Line Spacing: ", - "Common.Controllers.ReviewChanges.textMultiple": "multiple", - "Common.Controllers.ReviewChanges.textNoBreakBefore": "No page break before", + "Common.Controllers.ReviewChanges.textLineSpacing": "Espaçamento de linha:", + "Common.Controllers.ReviewChanges.textMultiple": "múltiplo", + "Common.Controllers.ReviewChanges.textNoBreakBefore": "Sem quebra de página antes", "Common.Controllers.ReviewChanges.textNoContextual": "Adicionar intervalo entre parágrafos do mesmo estilo", - "Common.Controllers.ReviewChanges.textNoKeepLines": "Don't keep lines together", - "Common.Controllers.ReviewChanges.textNoKeepNext": "Don't keep with next", - "Common.Controllers.ReviewChanges.textNot": "Not ", - "Common.Controllers.ReviewChanges.textNoWidow": "No widow control", - "Common.Controllers.ReviewChanges.textNum": "Change numbering", + "Common.Controllers.ReviewChanges.textNoKeepLines": "Não mantenha linhas juntas", + "Common.Controllers.ReviewChanges.textNoKeepNext": "Não mantenha com o próximo", + "Common.Controllers.ReviewChanges.textNot": "Não", + "Common.Controllers.ReviewChanges.textNoWidow": "Sem controle de linhas órfãs/viúvas", + "Common.Controllers.ReviewChanges.textNum": "Alterar numeração", "Common.Controllers.ReviewChanges.textOff": "{0} não está mais usando o controle de alterações.", "Common.Controllers.ReviewChanges.textOffGlobal": "{0} Rastreamento de alterações desabilitado para todos. ", "Common.Controllers.ReviewChanges.textOn": "{0} usando controle de alterações. ", "Common.Controllers.ReviewChanges.textOnGlobal": "{0} Rastreamento de alterações habilitado para todos. ", "Common.Controllers.ReviewChanges.textParaDeleted": "Parágrafo apagado", - "Common.Controllers.ReviewChanges.textParaFormatted": "Paragraph Formatted", + "Common.Controllers.ReviewChanges.textParaFormatted": "Parágrafo formatado", "Common.Controllers.ReviewChanges.textParaInserted": "Parágrafo Inserido", "Common.Controllers.ReviewChanges.textParaMoveFromDown": "Movido Para Baixo:", "Common.Controllers.ReviewChanges.textParaMoveFromUp": "Movido Para Cima:", "Common.Controllers.ReviewChanges.textParaMoveTo": "Movido:", - "Common.Controllers.ReviewChanges.textPosition": "Position", + "Common.Controllers.ReviewChanges.textPosition": "Posição", "Common.Controllers.ReviewChanges.textRight": "Alinhar à direita", - "Common.Controllers.ReviewChanges.textShape": "Shape", - "Common.Controllers.ReviewChanges.textShd": "Background color", + "Common.Controllers.ReviewChanges.textShape": "Forma", + "Common.Controllers.ReviewChanges.textShd": "Cor do plano de fundo", "Common.Controllers.ReviewChanges.textShow": "Mostrar mudanças em", - "Common.Controllers.ReviewChanges.textSmallCaps": "Small caps", - "Common.Controllers.ReviewChanges.textSpacing": "Spacing", - "Common.Controllers.ReviewChanges.textSpacingAfter": "Spacing after", - "Common.Controllers.ReviewChanges.textSpacingBefore": "Spacing before", + "Common.Controllers.ReviewChanges.textSmallCaps": "Versalete", + "Common.Controllers.ReviewChanges.textSpacing": "Espaçamento", + "Common.Controllers.ReviewChanges.textSpacingAfter": "Espaçamento depois", + "Common.Controllers.ReviewChanges.textSpacingBefore": "Espaçamento antes", "Common.Controllers.ReviewChanges.textStrikeout": "Taxado", - "Common.Controllers.ReviewChanges.textSubScript": "Subscript", - "Common.Controllers.ReviewChanges.textSuperScript": "Superscript", + "Common.Controllers.ReviewChanges.textSubScript": "Subscrito", + "Common.Controllers.ReviewChanges.textSuperScript": "Sobrescrito", "Common.Controllers.ReviewChanges.textTableChanged": "Configurações da Tabela Alteradas", "Common.Controllers.ReviewChanges.textTableRowsAdd": "Linhas da Tabela Incluídas", "Common.Controllers.ReviewChanges.textTableRowsDel": "Linhas da Tabela Excluídas", - "Common.Controllers.ReviewChanges.textTabs": "Change tabs", + "Common.Controllers.ReviewChanges.textTabs": "Alterar guias", "Common.Controllers.ReviewChanges.textTitleComparison": "Configurações de Comparação", - "Common.Controllers.ReviewChanges.textUnderline": "Underline", + "Common.Controllers.ReviewChanges.textUnderline": "Sublinhado", "Common.Controllers.ReviewChanges.textUrl": "Colar um arquivo URL", - "Common.Controllers.ReviewChanges.textWidow": "Widow control", + "Common.Controllers.ReviewChanges.textWidow": "Controle de linhas órfãs/viúvas", "Common.Controllers.ReviewChanges.textWord": "Nível de palavra", "Common.define.chartData.textArea": "Área", "Common.define.chartData.textAreaStacked": "Área empilhada", @@ -290,7 +290,7 @@ "Common.Views.ExternalDiagramEditor.textClose": "Fechar", "Common.Views.ExternalDiagramEditor.textSave": "Salvar e Sair", "Common.Views.ExternalDiagramEditor.textTitle": "Editor de gráfico", - "Common.Views.ExternalMergeEditor.textClose": "Close", + "Common.Views.ExternalMergeEditor.textClose": "Fechar", "Common.Views.ExternalMergeEditor.textSave": "Save & Exit", "Common.Views.ExternalMergeEditor.textTitle": "Mail Merge Recepients", "Common.Views.ExternalOleEditor.textClose": "Fechar", @@ -305,7 +305,7 @@ "Common.Views.Header.textHideStatusBar": "Ocultar Barra de Status", "Common.Views.Header.textRemoveFavorite": "Remover dos Favoritos", "Common.Views.Header.textShare": "Compartilhar", - "Common.Views.Header.textZoom": "Zoom", + "Common.Views.Header.textZoom": "Ampliação", "Common.Views.Header.tipAccessRights": "Gerenciar direitos de acesso ao documento", "Common.Views.Header.tipDownload": "Baixar arquivo", "Common.Views.Header.tipGoEdit": "Editar arquivo atual", @@ -403,7 +403,7 @@ "Common.Views.ReviewChanges.txtAcceptChanges": "Aceitar as alterações", "Common.Views.ReviewChanges.txtAcceptCurrent": "Aceitar alterações atuais", "Common.Views.ReviewChanges.txtChat": "Chat", - "Common.Views.ReviewChanges.txtClose": "Close", + "Common.Views.ReviewChanges.txtClose": "Fechar", "Common.Views.ReviewChanges.txtCoAuthMode": "Modo de Coedição", "Common.Views.ReviewChanges.txtCommentRemAll": "Excluir Todos os Comentários", "Common.Views.ReviewChanges.txtCommentRemCurrent": "Excluir comentários atuais", @@ -425,14 +425,14 @@ "Common.Views.ReviewChanges.txtMarkupCap": "Marcação", "Common.Views.ReviewChanges.txtMarkupSimple": "Todas as mudanças {0}
Não há balões", "Common.Views.ReviewChanges.txtMarkupSimpleCap": "Somente marcação", - "Common.Views.ReviewChanges.txtNext": "To Next Change", + "Common.Views.ReviewChanges.txtNext": "Para a próxima alteração", "Common.Views.ReviewChanges.txtOff": "Desligado pra mim", "Common.Views.ReviewChanges.txtOffGlobal": "Desligado pra mim e para todos", "Common.Views.ReviewChanges.txtOn": "Ligado pra mim", "Common.Views.ReviewChanges.txtOnGlobal": "Ligado para mim e para todos", "Common.Views.ReviewChanges.txtOriginal": "Todas as alterações rejeitadas {0}", "Common.Views.ReviewChanges.txtOriginalCap": "Original", - "Common.Views.ReviewChanges.txtPrev": "To Previous Change", + "Common.Views.ReviewChanges.txtPrev": "Para a alteração anterior", "Common.Views.ReviewChanges.txtPreview": "Pré-visualizar", "Common.Views.ReviewChanges.txtReject": "Rejeitar", "Common.Views.ReviewChanges.txtRejectAll": "Rejeitar todas as alterações", @@ -471,6 +471,7 @@ "Common.Views.SaveAsDlg.textTitle": "Pasta para salvar", "Common.Views.SearchPanel.textCaseSensitive": "Maiúsculas e Minúsculas", "Common.Views.SearchPanel.textCloseSearch": "Fechar pesquisa", + "Common.Views.SearchPanel.textContentChanged": "Documento alterado.", "Common.Views.SearchPanel.textFind": "Localizar", "Common.Views.SearchPanel.textFindAndReplace": "Localizar e substituir", "Common.Views.SearchPanel.textMatchUsingRegExp": "Corresponder usando expressões regulares", @@ -479,6 +480,7 @@ "Common.Views.SearchPanel.textReplace": "Substituir", "Common.Views.SearchPanel.textReplaceAll": "Substituir tudo", "Common.Views.SearchPanel.textReplaceWith": "Substituir com", + "Common.Views.SearchPanel.textSearchAgain": "{0}Realize uma nova pesquisa{1} para obter resultados precisos.", "Common.Views.SearchPanel.textSearchHasStopped": "A pesquisa parou", "Common.Views.SearchPanel.textSearchResults": "Resultados da pesquisa: {0}/{1}", "Common.Views.SearchPanel.textTooManyResults": "Há muitos resultados para mostrar aqui", @@ -541,9 +543,9 @@ "Common.Views.UserNameDialog.textDontShow": "Não perguntar novamente", "Common.Views.UserNameDialog.textLabel": "Rótulo:", "Common.Views.UserNameDialog.textLabelError": "O rótulo não pode estar vazio.", - "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.leavePageText": "Todas as alterações não salvas neste documento serão perdidas.
Clique em \"Cancelar\" e depois em \"Salvar\" para salvá-las. Clique em \"OK\" para descartar todas as alterações não salvas.", "DE.Controllers.LeftMenu.newDocumentTitle": "Documento sem nome", - "DE.Controllers.LeftMenu.notcriticalErrorTitle": "Warning", + "DE.Controllers.LeftMenu.notcriticalErrorTitle": "Aviso", "DE.Controllers.LeftMenu.requestEditRightsText": "Solicitando direitos de edição...", "DE.Controllers.LeftMenu.textLoadHistory": "Carregando o histórico de versões...", "DE.Controllers.LeftMenu.textNoTextFound": "Os dados que você tem estado procurando não podem ser encontrados. Ajuste suas opções de pesquisa.", @@ -551,7 +553,7 @@ "DE.Controllers.LeftMenu.textReplaceSuccess": "A pesquisa foi realizada. Ocorrências substituídas: {0}", "DE.Controllers.LeftMenu.txtCompatible": "O documento será salvo em novo formato. Isto permitirá usar todos os recursos de editor, mas pode afetar o layout do documento.
Use a opção de 'Compatibilidade' para configurações avançadas se deseja tornar o arquivo compatível com versões antigas do MS Word.", "DE.Controllers.LeftMenu.txtUntitled": "Sem título", - "DE.Controllers.LeftMenu.warnDownloadAs": "If you continue saving in this format all features except the text will be lost.
Are you sure you want to continue?", + "DE.Controllers.LeftMenu.warnDownloadAs": "Se você continuar salvando neste formato algumas formatações podem ser perdidas.
Você tem certeza que deseja continuar?", "DE.Controllers.LeftMenu.warnDownloadAsPdf": "O documento resultante será otimizado para permitir que você edite o texto, portanto, não gráficos exatamente iguais ao original, se o arquivo original contiver muitos gráficos.", "DE.Controllers.LeftMenu.warnDownloadAsRTF": "Se você continuar salvando neste formato algumas formatações podem ser perdidas.
Você tem certeza que deseja continuar?", "DE.Controllers.LeftMenu.warnReplaceString": "{0} não é um caractere especial válido para o campo de substituição.", @@ -597,6 +599,7 @@ "DE.Controllers.Main.errorSetPassword": "Não foi possível definir a senha.", "DE.Controllers.Main.errorStockChart": "Ordem da linha incorreta. Para criar um gráfico de ações coloque os dados na planilha na seguinte ordem:
preço de abertura, preço máx., preço mín., preço de fechamento.", "DE.Controllers.Main.errorSubmit": "Falha no envio.", + "DE.Controllers.Main.errorTextFormWrongFormat": "O valor inserido não corresponde ao formato do campo.", "DE.Controllers.Main.errorToken": "O token de segurança do documento não foi formado corretamente.
Entre em contato com o administrador do Document Server.", "DE.Controllers.Main.errorTokenExpire": "O token de segurança do documento expirou.
Entre em contato com o administrador do Document Server.", "DE.Controllers.Main.errorUpdateVersion": "A versão do arquivo foi alterada. A página será recarregada.", @@ -944,8 +947,8 @@ "DE.Controllers.Statusbar.textSetTrackChanges": "Você está em modo de rastreamento de alterações", "DE.Controllers.Statusbar.textTrackChanges": "The document is opened with the Track Changes mode enabled", "DE.Controllers.Statusbar.tipReview": "Rastrear alterações", - "DE.Controllers.Statusbar.zoomText": "Zoom {0}%", - "DE.Controllers.Toolbar.confirmAddFontName": "The font you are going to save is not available on the current device.
The text style will be displayed using one of the device fonts, the saved font will be used when it is available.
Do you want to continue?", + "DE.Controllers.Statusbar.zoomText": "Ampliação {0}%", + "DE.Controllers.Toolbar.confirmAddFontName": "A fonte que você vai salvar não está disponível no dispositivo atual.
O estilo de texto será exibido usando uma das fontes do sistema, a fonte salva será usada quando ela estiver disponível.
Você deseja continuar?", "DE.Controllers.Toolbar.dataUrl": "Colar uma URL de dados", "DE.Controllers.Toolbar.notcriticalErrorTitle": "Aviso", "DE.Controllers.Toolbar.textAccent": "Destaques", @@ -1712,7 +1715,7 @@ "DE.Views.FileMenu.btnCloseMenuCaption": "Fechar menu", "DE.Views.FileMenu.btnCreateNewCaption": "Criar novo", "DE.Views.FileMenu.btnDownloadCaption": "Baixar como", - "DE.Views.FileMenu.btnExitCaption": "Encerrar", + "DE.Views.FileMenu.btnExitCaption": "Fechar", "DE.Views.FileMenu.btnFileOpenCaption": "Abrir", "DE.Views.FileMenu.btnHelpCaption": "Ajuda", "DE.Views.FileMenu.btnHistoryCaption": "Histórico de Versão", @@ -1844,6 +1847,7 @@ "DE.Views.FormSettings.textColor": "Cor da borda", "DE.Views.FormSettings.textComb": "Conjunto de Caracteres", "DE.Views.FormSettings.textCombobox": "Caixa de combinação", + "DE.Views.FormSettings.textComplex": "Campo complexo", "DE.Views.FormSettings.textConnected": "Campos conectados", "DE.Views.FormSettings.textDelete": "Excluir", "DE.Views.FormSettings.textDigits": "Dígitos", @@ -1852,13 +1856,17 @@ "DE.Views.FormSettings.textExact": "Exatamente", "DE.Views.FormSettings.textField": "Campo de texto", "DE.Views.FormSettings.textFixed": "Campo de tamanho fixo", + "DE.Views.FormSettings.textFormat": "Formato", + "DE.Views.FormSettings.textFormatSymbols": "Símbolos permitidos", "DE.Views.FormSettings.textFromFile": "Do Arquivo", "DE.Views.FormSettings.textFromStorage": "De armazenamento", "DE.Views.FormSettings.textFromUrl": "Da URL", "DE.Views.FormSettings.textGroupKey": "Chave de grupo", "DE.Views.FormSettings.textImage": "Imagem", "DE.Views.FormSettings.textKey": "Chave", + "DE.Views.FormSettings.textLetters": "Cartas", "DE.Views.FormSettings.textLock": "Bloquear", + "DE.Views.FormSettings.textMask": "Máscara arbitrária", "DE.Views.FormSettings.textMaxChars": "Limite de caracteres", "DE.Views.FormSettings.textMulti": "Campo multilinha", "DE.Views.FormSettings.textNever": "Nunca", @@ -1866,6 +1874,7 @@ "DE.Views.FormSettings.textNone": "Nenhum", "DE.Views.FormSettings.textPlaceholder": "Marcador de posição", "DE.Views.FormSettings.textRadiobox": "Botao de radio", + "DE.Views.FormSettings.textReg": "Expressão regular", "DE.Views.FormSettings.textRequired": "Necessário", "DE.Views.FormSettings.textScale": "Quando escalar", "DE.Views.FormSettings.textSelectImage": "Selecionar Imagem", @@ -1882,6 +1891,7 @@ "DE.Views.FormSettings.textWidth": "Largura da célula", "DE.Views.FormsTab.capBtnCheckBox": "Caixa de seleção", "DE.Views.FormsTab.capBtnComboBox": "Caixa de combinação", + "DE.Views.FormsTab.capBtnComplex": "Campo complexo", "DE.Views.FormsTab.capBtnDownloadForm": "Baixe como oform", "DE.Views.FormsTab.capBtnDropDown": "Suspenso", "DE.Views.FormsTab.capBtnEmail": "Endereço de e-mail", @@ -1904,10 +1914,13 @@ "DE.Views.FormsTab.textSubmited": "Formulário enviado com sucesso", "DE.Views.FormsTab.tipCheckBox": "Inserir caixa de seleção", "DE.Views.FormsTab.tipComboBox": "Inserir caixa de combinação", + "DE.Views.FormsTab.tipComplexField": "Inserir campo complexo", "DE.Views.FormsTab.tipDownloadForm": "Baixar um arquivo como um documento FORM preenchível", "DE.Views.FormsTab.tipDropDown": "Inserir lista suspensa", + "DE.Views.FormsTab.tipEmailField": "Inserir endereço de e-mail", "DE.Views.FormsTab.tipImageField": "Inserir imagem", "DE.Views.FormsTab.tipNextForm": "Ir para o próximo campo", + "DE.Views.FormsTab.tipPhoneField": "Inserir número de telefone", "DE.Views.FormsTab.tipPrevForm": "Ir para o campo anterior", "DE.Views.FormsTab.tipRadioBox": "Inserir botão de rádio", "DE.Views.FormsTab.tipSaveForm": "Salvar um arquivo como um documento OFORM preenchível", @@ -2082,7 +2095,7 @@ "DE.Views.LineNumbersDialog.textSection": "Seção atual", "DE.Views.LineNumbersDialog.textStartAt": "Começar em", "DE.Views.LineNumbersDialog.textTitle": "Números de Linhas", - "DE.Views.LineNumbersDialog.txtAutoText": "Auto", + "DE.Views.LineNumbersDialog.txtAutoText": "Automático", "DE.Views.Links.capBtnAddText": "Adicionar Texto", "DE.Views.Links.capBtnBookmarks": "Favorito", "DE.Views.Links.capBtnCaption": "Legenda", @@ -2151,11 +2164,11 @@ "DE.Views.MailMergeEmailDlg.textSubject": "Subject Line", "DE.Views.MailMergeEmailDlg.textTitle": "Send to Email", "DE.Views.MailMergeEmailDlg.textTo": "To", - "DE.Views.MailMergeEmailDlg.textWarning": "Warning!", + "DE.Views.MailMergeEmailDlg.textWarning": "Aviso!", "DE.Views.MailMergeEmailDlg.textWarningMsg": "Por favor, observe que o envio não poderá ser parado após clicar o botão 'Enviar'.", "DE.Views.MailMergeSettings.downloadMergeTitle": "Merging", "DE.Views.MailMergeSettings.errorMailMergeSaveFile": "Merge failed.", - "DE.Views.MailMergeSettings.notcriticalErrorTitle": "Warning", + "DE.Views.MailMergeSettings.notcriticalErrorTitle": "Aviso", "DE.Views.MailMergeSettings.textAddRecipients": "Add some recipients to the list first", "DE.Views.MailMergeSettings.textAll": "Todos os registros", "DE.Views.MailMergeSettings.textCurrent": "Registro atual", @@ -2464,7 +2477,7 @@ "DE.Views.Statusbar.tipHandTool": "Ferramenta de mão", "DE.Views.Statusbar.tipSelectTool": "Selecionar ferramenta", "DE.Views.Statusbar.tipSetLang": "Definir idioma do texto", - "DE.Views.Statusbar.tipZoomFactor": "Zoom", + "DE.Views.Statusbar.tipZoomFactor": "Ampliação", "DE.Views.Statusbar.tipZoomIn": "Ampliar", "DE.Views.Statusbar.tipZoomOut": "Reduzir", "DE.Views.Statusbar.txtPageNumInvalid": "Número da página inválido", @@ -2653,22 +2666,22 @@ "DE.Views.TextArtSettings.strTransparency": "Opacity", "DE.Views.TextArtSettings.strType": "Tipo", "DE.Views.TextArtSettings.textAngle": "Ângulo", - "DE.Views.TextArtSettings.textBorderSizeErr": "The entered value is incorrect.
Please enter a value between 0 pt and 1584 pt.", - "DE.Views.TextArtSettings.textColor": "Color Fill", - "DE.Views.TextArtSettings.textDirection": "Direction", + "DE.Views.TextArtSettings.textBorderSizeErr": "O valor inserido está incorreto.
Insira um valor entre 0 pt e 1.584 pt.", + "DE.Views.TextArtSettings.textColor": "Preenchimento de cor", + "DE.Views.TextArtSettings.textDirection": "Direção", "DE.Views.TextArtSettings.textGradient": "Pontos de gradiente", - "DE.Views.TextArtSettings.textGradientFill": "Gradient Fill", + "DE.Views.TextArtSettings.textGradientFill": "Preenchimento gradiente", "DE.Views.TextArtSettings.textLinear": "Linear", "DE.Views.TextArtSettings.textNoFill": "No Fill", "DE.Views.TextArtSettings.textPosition": "Posição", "DE.Views.TextArtSettings.textRadial": "Radial", - "DE.Views.TextArtSettings.textSelectTexture": "Select", - "DE.Views.TextArtSettings.textStyle": "Style", - "DE.Views.TextArtSettings.textTemplate": "Template", + "DE.Views.TextArtSettings.textSelectTexture": "Selecionar", + "DE.Views.TextArtSettings.textStyle": "Estilo", + "DE.Views.TextArtSettings.textTemplate": "Modelo", "DE.Views.TextArtSettings.textTransform": "Transform", "DE.Views.TextArtSettings.tipAddGradientPoint": "Adicionar ponto de gradiente", "DE.Views.TextArtSettings.tipRemoveGradientPoint": "Remover ponto de gradiente", - "DE.Views.TextArtSettings.txtNoBorders": "No Line", + "DE.Views.TextArtSettings.txtNoBorders": "Sem linha", "DE.Views.TextToTableDialog.textAutofit": "Comportamento de Auto-ajuste", "DE.Views.TextToTableDialog.textColumns": "Colunas", "DE.Views.TextToTableDialog.textContents": "Adaptação automática ao conteúdo", @@ -2793,7 +2806,7 @@ "DE.Views.Toolbar.textStyleMenuDelete": "Excluir estilo", "DE.Views.Toolbar.textStyleMenuDeleteAll": "Excluir todos os estilos personalizados", "DE.Views.Toolbar.textStyleMenuNew": "New style from selection", - "DE.Views.Toolbar.textStyleMenuRestore": "Restore to default", + "DE.Views.Toolbar.textStyleMenuRestore": "Restaurar padrão", "DE.Views.Toolbar.textStyleMenuRestoreAll": "Restore all to default styles", "DE.Views.Toolbar.textStyleMenuUpdate": "Update from selection", "DE.Views.Toolbar.textSubscript": "Subscrito", @@ -2862,6 +2875,10 @@ "DE.Views.Toolbar.tipMarkersFSquare": "Balas quadradas cheias", "DE.Views.Toolbar.tipMarkersHRound": "Balas redondas ocas", "DE.Views.Toolbar.tipMarkersStar": "Balas de estrelas", + "DE.Views.Toolbar.tipMultiLevelArticl": "Artigos numerados em vários níveis", + "DE.Views.Toolbar.tipMultiLevelChapter": "Capítulos numerados em vários níveis", + "DE.Views.Toolbar.tipMultiLevelHeadings": "Títulos numerados em vários níveis", + "DE.Views.Toolbar.tipMultiLevelHeadVarious": "Vários títulos numerados de vários níveis", "DE.Views.Toolbar.tipMultiLevelNumbered": "Marcadores numerados de vários níveis", "DE.Views.Toolbar.tipMultilevels": "Contorno", "DE.Views.Toolbar.tipMultiLevelSymbols": "Marcadores de símbolos de vários níveis", @@ -2921,7 +2938,7 @@ "DE.Views.ViewTab.textOutline": "Cabeçalhos", "DE.Views.ViewTab.textRulers": "Regras", "DE.Views.ViewTab.textStatusBar": "Barra de status", - "DE.Views.ViewTab.textZoom": "Zoom", + "DE.Views.ViewTab.textZoom": "Ampliação", "DE.Views.ViewTab.tipDarkDocument": "Documento escuro", "DE.Views.ViewTab.tipFitToPage": "Ajustar a página", "DE.Views.ViewTab.tipFitToWidth": "Ajustar largura", diff --git a/apps/documenteditor/main/locale/ru.json b/apps/documenteditor/main/locale/ru.json index 4b5091dff..7960e3973 100644 --- a/apps/documenteditor/main/locale/ru.json +++ b/apps/documenteditor/main/locale/ru.json @@ -2875,9 +2875,13 @@ "DE.Views.Toolbar.tipMarkersFSquare": "Заполненные квадратные маркеры", "DE.Views.Toolbar.tipMarkersHRound": "Пустые круглые маркеры", "DE.Views.Toolbar.tipMarkersStar": "Маркеры-звездочки", + "DE.Views.Toolbar.tipMultiLevelArticl": "Многоуровневые нумерованные статьи", + "DE.Views.Toolbar.tipMultiLevelChapter": "Многоуровневые нумерованные главы", + "DE.Views.Toolbar.tipMultiLevelHeadings": "Многоуровневые нумерованные заголовки", + "DE.Views.Toolbar.tipMultiLevelHeadVarious": "Многоуровневые разные нумерованные заголовки", "DE.Views.Toolbar.tipMultiLevelNumbered": "Многоуровневые нумерованные маркеры", "DE.Views.Toolbar.tipMultilevels": "Многоуровневый список", - "DE.Views.Toolbar.tipMultiLevelSymbols": "Многоуровневые маркеры-сивволы", + "DE.Views.Toolbar.tipMultiLevelSymbols": "Многоуровневые маркеры-символы", "DE.Views.Toolbar.tipMultiLevelVarious": "Многоуровневые разные нумерованные маркеры", "DE.Views.Toolbar.tipNumbers": "Нумерованный список", "DE.Views.Toolbar.tipPageBreak": "Вставить разрыв страницы или раздела", diff --git a/apps/documenteditor/main/locale/zh-tw.json b/apps/documenteditor/main/locale/zh-tw.json index ed919e0fc..482657003 100644 --- a/apps/documenteditor/main/locale/zh-tw.json +++ b/apps/documenteditor/main/locale/zh-tw.json @@ -2924,6 +2924,8 @@ "DE.Views.ViewTab.textStatusBar": "狀態欄", "DE.Views.ViewTab.textZoom": "放大", "DE.Views.ViewTab.tipDarkDocument": "夜間模式文件", + "DE.Views.ViewTab.tipFitToPage": "配合紙張大小", + "DE.Views.ViewTab.tipFitToWidth": "配合寬度", "DE.Views.ViewTab.tipHeadings": "標題", "DE.Views.ViewTab.tipInterfaceTheme": "介面主題", "DE.Views.WatermarkSettingsDialog.textAuto": "自動", diff --git a/apps/documenteditor/main/locale/zh.json b/apps/documenteditor/main/locale/zh.json index b663f4f77..176f8745b 100644 --- a/apps/documenteditor/main/locale/zh.json +++ b/apps/documenteditor/main/locale/zh.json @@ -599,6 +599,7 @@ "DE.Controllers.Main.errorSetPassword": "未能成功设置密码", "DE.Controllers.Main.errorStockChart": "行顺序不正确。建立股票图表将数据按照以下顺序放置在表格上:
开盘价,最高价格,最低价格,收盘价。", "DE.Controllers.Main.errorSubmit": "提交失败", + "DE.Controllers.Main.errorTextFormWrongFormat": "输入的值与该字段的格式不一致。", "DE.Controllers.Main.errorToken": "文档安全令牌未正确形成。
请与您的文件服务器管理员联系。", "DE.Controllers.Main.errorTokenExpire": "文档安全令牌已过期。
请与您的文档服务器管理员联系。", "DE.Controllers.Main.errorUpdateVersion": "该文件版本已经改变了。该页面将被重新加载。", @@ -1846,6 +1847,7 @@ "DE.Views.FormSettings.textColor": "边框颜色", "DE.Views.FormSettings.textComb": "字符组合", "DE.Views.FormSettings.textCombobox": "\n组合框", + "DE.Views.FormSettings.textComplex": "复合字段", "DE.Views.FormSettings.textConnected": "关联字段", "DE.Views.FormSettings.textDelete": "删除", "DE.Views.FormSettings.textDigits": "数字", @@ -1855,19 +1857,24 @@ "DE.Views.FormSettings.textField": "文字字段", "DE.Views.FormSettings.textFixed": "固定填充框大小", "DE.Views.FormSettings.textFormat": "格式", + "DE.Views.FormSettings.textFormatSymbols": "可用符号", "DE.Views.FormSettings.textFromFile": "从文件导入", "DE.Views.FormSettings.textFromStorage": "来自存储设备", "DE.Views.FormSettings.textFromUrl": "从URL", "DE.Views.FormSettings.textGroupKey": "群组密钥", "DE.Views.FormSettings.textImage": "图片", "DE.Views.FormSettings.textKey": "密钥", + "DE.Views.FormSettings.textLetters": "文字", "DE.Views.FormSettings.textLock": "锁定", + "DE.Views.FormSettings.textMask": "任意掩码", "DE.Views.FormSettings.textMaxChars": "字数限制", "DE.Views.FormSettings.textMulti": "多行填充框", "DE.Views.FormSettings.textNever": "从不", "DE.Views.FormSettings.textNoBorder": "无边框", + "DE.Views.FormSettings.textNone": "无", "DE.Views.FormSettings.textPlaceholder": "占位符", "DE.Views.FormSettings.textRadiobox": "单选框", + "DE.Views.FormSettings.textReg": "正则表达式", "DE.Views.FormSettings.textRequired": "必填", "DE.Views.FormSettings.textScale": "何时按倍缩放?", "DE.Views.FormSettings.textSelectImage": "选择图像", @@ -1884,11 +1891,13 @@ "DE.Views.FormSettings.textWidth": "单元格宽度", "DE.Views.FormsTab.capBtnCheckBox": "多选框", "DE.Views.FormsTab.capBtnComboBox": "组合框", + "DE.Views.FormsTab.capBtnComplex": "复合字段", "DE.Views.FormsTab.capBtnDownloadForm": "下载为oform", "DE.Views.FormsTab.capBtnDropDown": "候选列表", "DE.Views.FormsTab.capBtnEmail": "Email地址", "DE.Views.FormsTab.capBtnImage": "图片", "DE.Views.FormsTab.capBtnNext": "下一填充框", + "DE.Views.FormsTab.capBtnPhone": "电话号码", "DE.Views.FormsTab.capBtnPrev": "上一填充框", "DE.Views.FormsTab.capBtnRadioBox": "单选框", "DE.Views.FormsTab.capBtnSaveForm": "另存为oform", @@ -1905,10 +1914,13 @@ "DE.Views.FormsTab.textSubmited": "成功提交表单", "DE.Views.FormsTab.tipCheckBox": "插入多选框", "DE.Views.FormsTab.tipComboBox": "插入组合框", + "DE.Views.FormsTab.tipComplexField": "插入复合字段", "DE.Views.FormsTab.tipDownloadForm": "下载一个文件填写", "DE.Views.FormsTab.tipDropDown": "插入候选列表", + "DE.Views.FormsTab.tipEmailField": "插入电邮地址", "DE.Views.FormsTab.tipImageField": "插入图片", "DE.Views.FormsTab.tipNextForm": "前往下一填充框", + "DE.Views.FormsTab.tipPhoneField": "插入电话号码", "DE.Views.FormsTab.tipPrevForm": "回到上一填充框", "DE.Views.FormsTab.tipRadioBox": "添加单选框", "DE.Views.FormsTab.tipSaveForm": "将文件保存为可填充的OFORM文件", @@ -2863,6 +2875,10 @@ "DE.Views.Toolbar.tipMarkersFSquare": "实心方形项目符号", "DE.Views.Toolbar.tipMarkersHRound": "空心圆形项目符号", "DE.Views.Toolbar.tipMarkersStar": "星形项目符号", + "DE.Views.Toolbar.tipMultiLevelArticl": "多层次编号的文章", + "DE.Views.Toolbar.tipMultiLevelChapter": "多层次编号的章节", + "DE.Views.Toolbar.tipMultiLevelHeadings": "多层次编号的标题", + "DE.Views.Toolbar.tipMultiLevelHeadVarious": "多层次各种编号的标题", "DE.Views.Toolbar.tipMultiLevelNumbered": "多级编号", "DE.Views.Toolbar.tipMultilevels": "多级列表", "DE.Views.Toolbar.tipMultiLevelSymbols": "多级项目符号", diff --git a/apps/documenteditor/mobile/locale/az.json b/apps/documenteditor/mobile/locale/az.json index 753e35fe3..a5a240051 100644 --- a/apps/documenteditor/mobile/locale/az.json +++ b/apps/documenteditor/mobile/locale/az.json @@ -243,7 +243,7 @@ "textEmptyImgUrl": "Təsvir URL-ni göstərməlisiniz.", "textFill": "Doldurun", "textFirstColumn": "Birinci Sütun", - "textFirstLine": "BirinciSətir", + "textFirstLine": "Birinci Sətir", "textFlow": "Axın", "textFontColor": "Şriftin rəngi", "textFontColors": "Şriftin Rəngləri", diff --git a/apps/documenteditor/mobile/locale/be.json b/apps/documenteditor/mobile/locale/be.json index e364d3a65..2cf53e714 100644 --- a/apps/documenteditor/mobile/locale/be.json +++ b/apps/documenteditor/mobile/locale/be.json @@ -342,7 +342,7 @@ "textDistinctive": "Distinctive", "textDone": "Done", "textEnterTitleNewStyle": "Enter title of a new style", - "textFirstLine": "FirstLine", + "textFirstLine": "First Line", "textFormal": "Formal", "textLeader": "Leader", "textLevels": "Levels", @@ -402,13 +402,13 @@ "errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.", "errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.", "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.", + "errorTextFormWrongFormat": "The value entered does not match the format of the field.", "errorUserDrop": "The file can't be accessed right now.", "errorViewerDisconnect": "Connection is lost. You can still view the document,
but you won't be able to download or print it until the connection is restored and the page is reloaded.", "openErrorText": "An error has occurred while opening the file", "saveErrorText": "An error has occurred while saving the file", "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.", - "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.", - "errorTextFormWrongFormat": "The value entered does not match the format of the field." + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." }, "LongActions": { "applyChangesTextText": "Загрузка даных…", diff --git a/apps/documenteditor/mobile/locale/en.json b/apps/documenteditor/mobile/locale/en.json index 1f5b86fdf..027c09915 100644 --- a/apps/documenteditor/mobile/locale/en.json +++ b/apps/documenteditor/mobile/locale/en.json @@ -264,7 +264,7 @@ "textFebruary": "February", "textFill": "Fill", "textFirstColumn": "First Column", - "textFirstLine": "FirstLine", + "textFirstLine": "First Line", "textFlow": "Flow", "textFontColor": "Font Color", "textFontColors": "Font Colors", @@ -428,11 +428,11 @@ "errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.", "errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.", "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.", + "errorTextFormWrongFormat": "The value entered does not match the format of the field.", "errorUpdateVersionOnDisconnect": "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.", "errorUserDrop": "The file can't be accessed right now.", "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", "errorViewerDisconnect": "Connection is lost. You can still view the document,
but you won't be able to download or print it until the connection is restored and the page is reloaded.", - "errorTextFormWrongFormat": "The value entered does not match the format of the field.", "notcriticalErrorTitle": "Warning", "openErrorText": "An error has occurred while opening the file", "saveErrorText": "An error has occurred while saving the file", diff --git a/apps/documenteditor/mobile/locale/es.json b/apps/documenteditor/mobile/locale/es.json index 00227fab3..bc3fe572d 100644 --- a/apps/documenteditor/mobile/locale/es.json +++ b/apps/documenteditor/mobile/locale/es.json @@ -258,7 +258,7 @@ "textFebruary": "febrero", "textFill": "Rellenar", "textFirstColumn": "Primera columna", - "textFirstLine": "PrimeraLínea", + "textFirstLine": "Primera Línea", "textFlow": "Flujo", "textFontColor": "Color de fuente", "textFontColors": "Colores de fuente", diff --git a/apps/documenteditor/mobile/locale/fr.json b/apps/documenteditor/mobile/locale/fr.json index ca154d3ac..dae97ab76 100644 --- a/apps/documenteditor/mobile/locale/fr.json +++ b/apps/documenteditor/mobile/locale/fr.json @@ -393,6 +393,7 @@ "errorSessionIdle": "Le document n'a pas été modifié depuis trop longtemps. Veuillez recharger la page.", "errorSessionToken": "La connexion au serveur a été interrompue. Veuillez recharger la page.", "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.", + "errorTextFormWrongFormat": "La valeur saisie ne correspond pas au format du champ.", "errorUpdateVersionOnDisconnect": "La connexion a été rétablie et la version du fichier a été modifiée.
Avant de pouvoir continuer à travailler, vous devez télécharger le fichier ou copier son contenu pour vous assurer que rien n'est perdu, puis recharger cette page.", "errorUserDrop": "Le fichier ne peut pas être accédé tout de suite.", "errorUsersExceed": "Le nombre d'utilisateurs autorisés par le plan tarifaire a été dépassé", @@ -407,8 +408,7 @@ "unknownErrorText": "Erreur inconnue.", "uploadImageExtMessage": "Format d'image inconnu.", "uploadImageFileCountMessage": "Aucune image chargée.", - "uploadImageSizeMessage": "L'image est trop grande. La taille limite est de 25 Mo.", - "errorTextFormWrongFormat": "The value entered does not match the format of the field." + "uploadImageSizeMessage": "L'image est trop grande. La taille limite est de 25 Mo." }, "LongActions": { "applyChangesTextText": "Chargement des données en cours...", @@ -607,6 +607,7 @@ "textMargins": "Marges", "textMarginsH": "Les marges supérieure et inférieure sont trop élevés pour une hauteur de page donnée", "textMarginsW": "Les marges gauche et droite sont trop larges pour une largeur de page donnée", + "textMobileView": "Affichage mobile", "textNavigation": "Navigation", "textNo": "Non", "textNoCharacters": "Caractères non imprimables", @@ -670,8 +671,7 @@ "txtScheme6": "Rotonde", "txtScheme7": "Capitaux", "txtScheme8": "Flux", - "txtScheme9": "Fonderie", - "textMobileView": "Mobile View" + "txtScheme9": "Fonderie" }, "Toolbar": { "dlgLeaveMsgText": "Vous avez des modifications non enregistrées dans ce document. Cliquez sur Rester sur cette page et attendez l'enregistrement automatique. Cliquez sur Quitter cette page pour annuler toutes les modifications non enregistrées.", @@ -679,7 +679,7 @@ "leaveButtonText": "Quitter cette page", "stayButtonText": "Rester sur cette page", "textOk": "OK", - "textSwitchedMobileView": "Switched to Mobile view", - "textSwitchedStandardView": "Switched to Standard view" + "textSwitchedMobileView": "Passé à l'affichage mobile", + "textSwitchedStandardView": "Passé à l'affichage standard" } } \ No newline at end of file diff --git a/apps/documenteditor/mobile/locale/it.json b/apps/documenteditor/mobile/locale/it.json index 7d1bcb9c2..35e879087 100644 --- a/apps/documenteditor/mobile/locale/it.json +++ b/apps/documenteditor/mobile/locale/it.json @@ -258,7 +258,7 @@ "textFebruary": "Febbraio", "textFill": "Riempire", "textFirstColumn": "Prima colonna", - "textFirstLine": "PrimaLinea", + "textFirstLine": "Prima Linea", "textFlow": "Flusso", "textFontColor": "Colore di carattere", "textFontColors": "Colori di carattere", diff --git a/apps/documenteditor/mobile/locale/ms.json b/apps/documenteditor/mobile/locale/ms.json index 6d2738991..a7a07133e 100644 --- a/apps/documenteditor/mobile/locale/ms.json +++ b/apps/documenteditor/mobile/locale/ms.json @@ -258,7 +258,7 @@ "textFebruary": "Februari", "textFill": "Isi", "textFirstColumn": "Lajur Pertama", - "textFirstLine": "GarisPertama", + "textFirstLine": "Garis Pertama", "textFlow": "Aliran", "textFontColor": "Warna Fon", "textFontColors": "Warna Fon", diff --git a/apps/documenteditor/mobile/locale/ru.json b/apps/documenteditor/mobile/locale/ru.json index aabcb60d0..ad98b2bb9 100644 --- a/apps/documenteditor/mobile/locale/ru.json +++ b/apps/documenteditor/mobile/locale/ru.json @@ -393,11 +393,11 @@ "errorSessionIdle": "Документ долгое время не редактировался. Пожалуйста, обновите страницу.", "errorSessionToken": "Подключение к серверу было прервано. Пожалуйста, обновите страницу.", "errorStockChart": "Неверный порядок строк. Чтобы создать биржевую диаграмму, расположите данные на листе в следующем порядке:
цена открытия, максимальная цена, минимальная цена, цена закрытия.", + "errorTextFormWrongFormat": "Введенное значение не соответствует формату поля.", "errorUpdateVersionOnDisconnect": "Соединение было восстановлено, и версия файла изменилась.
Прежде чем продолжить работу, надо скачать файл или скопировать его содержимое, чтобы обеспечить сохранность данных, а затем перезагрузить страницу.", "errorUserDrop": "В настоящий момент файл недоступен.", "errorUsersExceed": "Превышено количество пользователей, разрешенных согласно тарифному плану", "errorViewerDisconnect": "Подключение прервано. Вы можете просматривать документ,
но не сможете скачать или напечатать его до восстановления подключения и обновления страницы.", - "errorTextFormWrongFormat": "Введенное значение не соответствует формату поля.", "notcriticalErrorTitle": "Внимание", "openErrorText": "При открытии файла произошла ошибка", "saveErrorText": "При сохранении файла произошла ошибка", diff --git a/apps/documenteditor/mobile/locale/sl.json b/apps/documenteditor/mobile/locale/sl.json index 236bcd8b3..cac344f42 100644 --- a/apps/documenteditor/mobile/locale/sl.json +++ b/apps/documenteditor/mobile/locale/sl.json @@ -261,7 +261,7 @@ "textFebruary": "February", "textFill": "Fill", "textFirstColumn": "First Column", - "textFirstLine": "FirstLine", + "textFirstLine": "First Line", "textFlow": "Flow", "textFontColor": "Font Color", "textFontColors": "Font Colors", @@ -621,6 +621,7 @@ "errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.", "errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.", "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.", + "errorTextFormWrongFormat": "The value entered does not match the format of the field.", "errorUpdateVersionOnDisconnect": "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.", "errorUserDrop": "The file can't be accessed right now.", "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", @@ -635,8 +636,7 @@ "unknownErrorText": "Unknown error.", "uploadImageExtMessage": "Unknown image format.", "uploadImageFileCountMessage": "No images uploaded.", - "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.", - "errorTextFormWrongFormat": "The value entered does not match the format of the field." + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." }, "LongActions": { "applyChangesTextText": "Loading data...", diff --git a/apps/documenteditor/mobile/locale/zh.json b/apps/documenteditor/mobile/locale/zh.json index f80724622..8d6310aac 100644 --- a/apps/documenteditor/mobile/locale/zh.json +++ b/apps/documenteditor/mobile/locale/zh.json @@ -393,6 +393,7 @@ "errorSessionIdle": "该文档已经有一段时间没有编辑了。请刷新该页。", "errorSessionToken": "与服务器的链接被打断。请刷新该页。", "errorStockChart": "行的顺序有误。要想建立股票图表,请将数据按照如下顺序安放到表格中:
开盘价格,最高价格,最低价格,收盘价格。", + "errorTextFormWrongFormat": "输入的值与该字段的格式不一致。", "errorUpdateVersionOnDisconnect": "网络连接已恢复,文件版本已变更。
在继续工作之前,需要下载文件或复制其内容以避免丢失数据,然后重新加载此页。", "errorUserDrop": "当前不能访问该文件。", "errorUsersExceed": "超过了定价计划允许的用户数", @@ -407,8 +408,7 @@ "unknownErrorText": "未知错误。", "uploadImageExtMessage": "未知图像格式。", "uploadImageFileCountMessage": "没有图片上传", - "uploadImageSizeMessage": "图片太大了。最大允许的大小是 25 MB.", - "errorTextFormWrongFormat": "The value entered does not match the format of the field." + "uploadImageSizeMessage": "图片太大了。最大允许的大小是 25 MB." }, "LongActions": { "applyChangesTextText": "数据加载中…", diff --git a/apps/documenteditor/mobile/src/controller/Main.jsx b/apps/documenteditor/mobile/src/controller/Main.jsx index 4a9b0e39a..3706d958b 100644 --- a/apps/documenteditor/mobile/src/controller/Main.jsx +++ b/apps/documenteditor/mobile/src/controller/Main.jsx @@ -214,7 +214,16 @@ class MainController extends Component { this.applyMode(storeAppOptions); - this.api.asc_addRestriction(Asc.c_oAscRestrictionType.View); + const storeDocumentInfo = this.props.storeDocumentInfo; + const dataDoc = storeDocumentInfo.dataDoc; + const isExtRestriction = dataDoc.fileType !== 'oform'; + + if(isExtRestriction) { + this.api.asc_addRestriction(Asc.c_oAscRestrictionType.View); + } else { + this.api.asc_addRestriction(Asc.c_oAscRestrictionType.OnlyForms) + } + this.api.asc_LoadDocument(); this.api.Resize(); }; diff --git a/apps/documenteditor/mobile/src/view/settings/DocumentInfo.jsx b/apps/documenteditor/mobile/src/view/settings/DocumentInfo.jsx index be1a4e671..fe45f5191 100644 --- a/apps/documenteditor/mobile/src/view/settings/DocumentInfo.jsx +++ b/apps/documenteditor/mobile/src/view/settings/DocumentInfo.jsx @@ -40,7 +40,7 @@ const PageDocumentInfo = (props) => { return ( - {dataDoc.title ? ( + {dataDoc?.title ? ( {_t.textDocumentTitle} @@ -48,7 +48,7 @@ const PageDocumentInfo = (props) => { ) : null} - {dataDoc.info.author || dataDoc.info.owner ? ( + {dataDoc?.info?.author || dataDoc?.info?.owner ? ( {_t.textOwner} @@ -56,7 +56,7 @@ const PageDocumentInfo = (props) => { ) : null} - {dataDoc.info.folder ? ( + {dataDoc?.info?.folder ? ( {_t.textLocation} @@ -64,7 +64,7 @@ const PageDocumentInfo = (props) => { ) : null} - {dataDoc.info.uploaded || dataDoc.info.created ? ( + {dataDoc?.info?.uploaded || dataDoc?.info?.created ? ( {_t.textUploaded} diff --git a/apps/presentationeditor/embed/js/SearchBar.js b/apps/presentationeditor/embed/js/SearchBar.js index d56663f19..d182da950 100644 --- a/apps/presentationeditor/embed/js/SearchBar.js +++ b/apps/presentationeditor/embed/js/SearchBar.js @@ -107,7 +107,7 @@ }; var onInputSearchChange = function (text) { - if (_state.searchText !== text) { + if ((text && _state.searchText !== text) || (!text && _state.newSearchText)) { _state.newSearchText = text; _lastInputChange = (new Date()); if (_searchTimer === undefined) { @@ -115,7 +115,11 @@ if ((new Date()) - _lastInputChange < 400) return; _state.searchText = _state.newSearchText; - (_state.newSearchText !== '') && onQuerySearch(); + if (_state.newSearchText !== '') { + onQuerySearch(); + } else { + api.asc_endFindText(); + } clearInterval(_searchTimer); _searchTimer = undefined; }, 10); diff --git a/apps/presentationeditor/embed/locale/eu.json b/apps/presentationeditor/embed/locale/eu.json index 0c8409ab6..50d3684b4 100644 --- a/apps/presentationeditor/embed/locale/eu.json +++ b/apps/presentationeditor/embed/locale/eu.json @@ -17,7 +17,7 @@ "PE.ApplicationController.errorForceSave": "Errore bat gertatu da dokumentua gordetzean.
Erabili 'Deskargatu honela' aukera fitxategia zure ordenagailuko disko gogorrean gordetzeko edo saiatu berriro geroago.", "PE.ApplicationController.errorLoadingFont": "Letra-tipoak ez dira kargatu.
Jarri zure dokumentu-zerbitzariaren administratzailearekin harremanetan.", "PE.ApplicationController.errorTokenExpire": "Dokumentuaren segurtasun-tokena iraungi da.
Jarri zure dokumentu-zerbitzariaren administratzailearekin harremanetan.", - "PE.ApplicationController.errorUpdateVersionOnDisconnect": "Interneteko konexioa berrezarri da eta fitxategiaren bertsioa aldatu da.
Lanean jarraitu aurretik, beharrezkoa da fitxategia deskargatzea edo edukia kopiatzea, ezer ez dela galduko ziurtatzeko, eta gero orri hau berriro kargatzea.", + "PE.ApplicationController.errorUpdateVersionOnDisconnect": "Konexioa berrezarri da eta fitxategiaren bertsioa aldatu da.
Lanean jarraitu aurretik, beharrezkoa da fitxategia deskargatzea edo edukia kopiatzea, ezer ez dela galduko ziurtatzeko, eta gero orri hau berriro kargatzea.", "PE.ApplicationController.errorUserDrop": "Ezin da fitxategia atzitu une honetan.", "PE.ApplicationController.notcriticalErrorTitle": "Abisua", "PE.ApplicationController.openErrorText": "Errore bat gertatu da fitxategia irekitzean.", diff --git a/apps/presentationeditor/embed/locale/hy.json b/apps/presentationeditor/embed/locale/hy.json index 71da76b6c..52a9e9d34 100644 --- a/apps/presentationeditor/embed/locale/hy.json +++ b/apps/presentationeditor/embed/locale/hy.json @@ -17,7 +17,7 @@ "PE.ApplicationController.errorForceSave": "Սխալ է տեղի ունեցել ֆայլը պահելիս:Խնդրում ենք օգտագործել «Ներբեռնել որպես» տարբերակը՝ ֆայլը ձեր համակարգչի կոշտ սկավառակում պահելու համար կամ ավելի ուշ նորից փորձեք:", "PE.ApplicationController.errorLoadingFont": "Տառատեսակները բեռնված չեն:
Խնդրում ենք կապվել ձեր փաստաթղթերի սերվերի ադմինիստրատորի հետ:", "PE.ApplicationController.errorTokenExpire": "Փաստաթղթի անվտանգության կտրոնի ժամկետն անցել է։
Դիմեք փաստաթղթերի սպասարկիչի ձեր վարիչին։", - "PE.ApplicationController.errorUpdateVersionOnDisconnect": "Համացանցային կապը վերահաստատվել է,և ֆայլի տարբերակը փոխվել է։
Նախքան աշխատանքը շարունակելը ներբեռնեք նիշքը կամ պատճենեք դրա պարունակությունը՝ վստահ լինելու, որ ոչինչ չի կորել, և ապա նորից բեռնեք այս էջը։", + "PE.ApplicationController.errorUpdateVersionOnDisconnect": "Կապը վերահաստատվել է,և ֆայլի տարբերակը փոխվել է։
Նախքան աշխատանքը շարունակելը ներբեռնեք ֆայլը կամ պատճենեք դրա պարունակությունը՝ վստահ լինելու, որ ոչինչ չի կորել, և ապա նորից բեռնեք այս էջը։", "PE.ApplicationController.errorUserDrop": "Այս պահին նիշքն անհասանելի է։", "PE.ApplicationController.notcriticalErrorTitle": "Զգուշացում", "PE.ApplicationController.openErrorText": "Ֆայլը բացելիս սխալ է տեղի ունեցել:", diff --git a/apps/presentationeditor/embed/locale/ms.json b/apps/presentationeditor/embed/locale/ms.json index 5165b0987..54a2b81ba 100644 --- a/apps/presentationeditor/embed/locale/ms.json +++ b/apps/presentationeditor/embed/locale/ms.json @@ -17,7 +17,7 @@ "PE.ApplicationController.errorForceSave": "Terdapat ralat yang berlaku semasa menyimpan fail. Sila gunakan pilihan 'Download as' untuk menyimpan salinan fail sandaran ke pemacu keras komputer anda dan cuba semula nanti.", "PE.ApplicationController.errorLoadingFont": "Fon tidak dimuatkan.
Sila hubungi pentadbir Pelayan Dokumen anda.", "PE.ApplicationController.errorTokenExpire": "Dokumen token keselamatan telah tamat tempoh.
Sila hubungi pentadbir Pelayan Dokumen.", - "PE.ApplicationController.errorUpdateVersionOnDisconnect": "Sambungan internet telah dipulihkan, dan versi fail telah berubah.
Sebelum anda boleh terus bekerja, anda perlu memuat turun fail atau menyalin kandungannya untuk memastikan tiada ada yang hilang, dan kemudian muat semula halaman ini.", + "PE.ApplicationController.errorUpdateVersionOnDisconnect": "Sambungan telah dipulihkan, dan versi fail telah berubah.
Sebelum anda boleh terus bekerja, anda perlu memuat turun fail atau menyalin kandungannya untuk memastikan tiada ada yang hilang, dan kemudian muat semula halaman ini.", "PE.ApplicationController.errorUserDrop": "Fail tidak boleh diakses sekarang.", "PE.ApplicationController.notcriticalErrorTitle": "Amaran", "PE.ApplicationController.openErrorText": "Ralat telah berlaku semasa membuka fail.", diff --git a/apps/presentationeditor/main/app/controller/Search.js b/apps/presentationeditor/main/app/controller/Search.js index a948ecc63..5ef890f18 100644 --- a/apps/presentationeditor/main/app/controller/Search.js +++ b/apps/presentationeditor/main/app/controller/Search.js @@ -166,7 +166,7 @@ define([ onInputSearchChange: function (text) { var me = this; - if (this._state.searchText !== text) { + if ((text && this._state.searchText !== text) || (!text && this._state.newSearchText)) { this._state.newSearchText = text; this._lastInputChange = (new Date()); if (this.searchTimer === undefined) { @@ -176,6 +176,8 @@ define([ me.checkPunctuation(me._state.newSearchText); me._state.searchText = me._state.newSearchText; if (!(me._state.newSearchText !== '' && me.onQuerySearch()) && me._state.newSearchText === '') { + me.api.asc_endFindText(); + me.hideResults(); me.view.updateResultsNumber('no-results'); me.view.disableNavButtons(); me.view.disableReplaceButtons(true); diff --git a/apps/presentationeditor/main/app/view/FileMenuPanels.js b/apps/presentationeditor/main/app/view/FileMenuPanels.js index bc3690f07..dcf044ba1 100644 --- a/apps/presentationeditor/main/app/view/FileMenuPanels.js +++ b/apps/presentationeditor/main/app/view/FileMenuPanels.js @@ -1614,7 +1614,7 @@ define([ me.iFrame.src = '../../common/main/resources/help/download.html'; else { store.contentLang = store.contentLang === lang ? '{{DEFAULT_LANG}}' : lang; - me.urlPref = Common.Controllers.Desktop.helpUrl() + '/' + lang + '/'; + me.urlPref = Common.Controllers.Desktop.helpUrl() + '/' + store.contentLang + '/'; store.url = me.urlPref + 'Contents.json'; store.fetch(config); } diff --git a/apps/presentationeditor/main/locale/eu.json b/apps/presentationeditor/main/locale/eu.json index c1faff438..d590d87c7 100644 --- a/apps/presentationeditor/main/locale/eu.json +++ b/apps/presentationeditor/main/locale/eu.json @@ -671,7 +671,7 @@ "PE.Controllers.Main.errorToken": "Dokumentuaren segurtasun tokena ez dago ondo osatua.
Jarri harremanetan zure zerbitzariaren administratzailearekin.", "PE.Controllers.Main.errorTokenExpire": "Dokumentuaren segurtasun-tokena iraungi da.
Jarri zure dokumentu-zerbitzariaren administratzailearekin harremanetan.", "PE.Controllers.Main.errorUpdateVersion": "Fitxategiaren bertsioa aldatu da. Orria berriz kargatuko da.", - "PE.Controllers.Main.errorUpdateVersionOnDisconnect": "Interneteko konexioa berrezarri da eta fitxategiaren bertsioa aldatu da.
Lanean jarraitu aurretik, beharrezkoa da fitxategia deskargatzea edo edukia kopiatzea, ezer ez dela galduko ziurtatzeko, eta gero orri hau berriro kargatzea.", + "PE.Controllers.Main.errorUpdateVersionOnDisconnect": "Konexioa berrezarri da eta fitxategiaren bertsioa aldatu da.
Lanean jarraitu aurretik, beharrezkoa da fitxategia deskargatzea edo edukia kopiatzea, ezer ez dela galduko ziurtatzeko, eta gero orri hau berriro kargatzea.", "PE.Controllers.Main.errorUserDrop": "Ezin da fitxategia atzitu une honetan.", "PE.Controllers.Main.errorUsersExceed": "Ordainketa planak onartzen duen erabiltzaile kopurua gainditu da", "PE.Controllers.Main.errorViewerDisconnect": "Konexioa galdu da. Dokumentua ikusi dezakezu oraindik,
baina ezingo duzu deskargatu edo inprimatu konexioa berrezarri eta orria berriz kargatu arte.", diff --git a/apps/presentationeditor/main/locale/fr.json b/apps/presentationeditor/main/locale/fr.json index 907032b7d..c1ee08100 100644 --- a/apps/presentationeditor/main/locale/fr.json +++ b/apps/presentationeditor/main/locale/fr.json @@ -148,8 +148,8 @@ "Common.define.effectData.textInvertedSquare": "Carré inversé", "Common.define.effectData.textInvertedTriangle": "Triangle inversé", "Common.define.effectData.textLeft": "Gauche", - "Common.define.effectData.textLeftDown": "Gauche bas", - "Common.define.effectData.textLeftUp": "Gauche haut", + "Common.define.effectData.textLeftDown": "De gauche vers le bas", + "Common.define.effectData.textLeftUp": "De gauche vers le haut", "Common.define.effectData.textLighten": "Éclaircir", "Common.define.effectData.textLineColor": "Couleur du trait", "Common.define.effectData.textLines": "Lignes", @@ -184,9 +184,9 @@ "Common.define.effectData.textPulse": "Pulsation", "Common.define.effectData.textRandomBars": "Barres aléatoires", "Common.define.effectData.textRight": "À droite", - "Common.define.effectData.textRightDown": " Droit bas", + "Common.define.effectData.textRightDown": "De droite vers le bas", "Common.define.effectData.textRightTriangle": "Triangle rectangle", - "Common.define.effectData.textRightUp": "Droit haut", + "Common.define.effectData.textRightUp": "De droite vers le haut", "Common.define.effectData.textRiseUp": "Élever", "Common.define.effectData.textSCurve1": "Courbe S 1", "Common.define.effectData.textSCurve2": "Courbe S 2", @@ -326,7 +326,7 @@ "Common.Views.AutoCorrectDialog.textHyphens": "Traits d’union (--) par un tiret (—)", "Common.Views.AutoCorrectDialog.textMathCorrect": "AutoMaths", "Common.Views.AutoCorrectDialog.textNumbered": "Listes numérotées automatiquement", - "Common.Views.AutoCorrectDialog.textQuotes": "\"Guillemets typographiques\" par des \"guillemets\"", + "Common.Views.AutoCorrectDialog.textQuotes": "Guillemets dactylographiques par guillemets typographiques", "Common.Views.AutoCorrectDialog.textRecognized": "Fonctions reconnues", "Common.Views.AutoCorrectDialog.textRecognizedDesc": "Les expressions suivantes sont les expressions mathématiques reconnues. Elles ne seront pas mises en italique automatiquement.", "Common.Views.AutoCorrectDialog.textReplace": "Remplacer", @@ -435,12 +435,14 @@ "Common.Views.ListSettingsDialog.textFromStorage": "A partir de l'espace de stockage", "Common.Views.ListSettingsDialog.textFromUrl": "D'une URL", "Common.Views.ListSettingsDialog.textNumbering": "Numéroté", + "Common.Views.ListSettingsDialog.textSelect": "Sélectionner à partir de", "Common.Views.ListSettingsDialog.tipChange": "Changer de puce", "Common.Views.ListSettingsDialog.txtBullet": "Puce", "Common.Views.ListSettingsDialog.txtColor": "Couleur", "Common.Views.ListSettingsDialog.txtImage": "Image", "Common.Views.ListSettingsDialog.txtImport": "Importer", "Common.Views.ListSettingsDialog.txtNewBullet": "Nouvelle puce", + "Common.Views.ListSettingsDialog.txtNewImage": "Nouvelle image", "Common.Views.ListSettingsDialog.txtNone": "Rien", "Common.Views.ListSettingsDialog.txtOfText": "% de texte", "Common.Views.ListSettingsDialog.txtSize": "Taille", @@ -875,7 +877,7 @@ "PE.Controllers.Main.txtShape_mathNotEqual": "Différent de", "PE.Controllers.Main.txtShape_mathPlus": "Plus", "PE.Controllers.Main.txtShape_moon": "Lune", - "PE.Controllers.Main.txtShape_noSmoking": "Signe \"Interdiction\"", + "PE.Controllers.Main.txtShape_noSmoking": "Symbole \"non\"", "PE.Controllers.Main.txtShape_notchedRightArrow": "Flèche droite à entaille\t", "PE.Controllers.Main.txtShape_octagon": "Octogone", "PE.Controllers.Main.txtShape_parallelogram": "Parallélogramme", diff --git a/apps/presentationeditor/main/locale/hy.json b/apps/presentationeditor/main/locale/hy.json index b3cf45bec..d3c51c946 100644 --- a/apps/presentationeditor/main/locale/hy.json +++ b/apps/presentationeditor/main/locale/hy.json @@ -167,6 +167,9 @@ "Common.define.effectData.textOutToScreenCenter": "Դեպի դուրս՝ էկրանի կենտրոնական մաս", "Common.define.effectData.textParallelogram": "Քառանկյունի", "Common.define.effectData.textPath": "Շարժման ուղիներ", + "Common.define.effectData.textPathCurve": "Կոր", + "Common.define.effectData.textPathLine": "Գիծ", + "Common.define.effectData.textPathScribble": "Խզբզանք", "Common.define.effectData.textPeanut": "Գետնանուշ", "Common.define.effectData.textPeekIn": "Ծագ", "Common.define.effectData.textPeekOut": "Դուրս նայել", @@ -347,7 +350,7 @@ "Common.Views.Comments.mniPositionAsc": "Վերևից", "Common.Views.Comments.mniPositionDesc": "Ներքևից", "Common.Views.Comments.textAdd": "Հավելել", - "Common.Views.Comments.textAddComment": "Կցել մեկնաբանություն", + "Common.Views.Comments.textAddComment": "Ավելացնել", "Common.Views.Comments.textAddCommentToDoc": "Փաստաթղթում կցել մեկնաբանություն", "Common.Views.Comments.textAddReply": "Պատասխանել", "Common.Views.Comments.textAll": "Բոլորը", @@ -428,11 +431,18 @@ "Common.Views.InsertTableDialog.txtTitleSplit": "Տրոհել վանդակը", "Common.Views.LanguageDialog.labelSelect": "Ընտրել փաստաթղթի լեզուն", "Common.Views.ListSettingsDialog.textBulleted": "Պարբերանշված", + "Common.Views.ListSettingsDialog.textFromFile": "Ֆայլից", + "Common.Views.ListSettingsDialog.textFromStorage": "Պահեստից", + "Common.Views.ListSettingsDialog.textFromUrl": "URL-ից", "Common.Views.ListSettingsDialog.textNumbering": "Համարակալված", + "Common.Views.ListSettingsDialog.textSelect": "Ընտրել", "Common.Views.ListSettingsDialog.tipChange": "Փոխել պարբերակը", "Common.Views.ListSettingsDialog.txtBullet": "Պարբերակ", "Common.Views.ListSettingsDialog.txtColor": "Գույն", + "Common.Views.ListSettingsDialog.txtImage": "Նկար", + "Common.Views.ListSettingsDialog.txtImport": "Ներմուծել", "Common.Views.ListSettingsDialog.txtNewBullet": "Նոր պարբերակ", + "Common.Views.ListSettingsDialog.txtNewImage": "Նոր պատկեր ", "Common.Views.ListSettingsDialog.txtNone": "Ոչ մեկը", "Common.Views.ListSettingsDialog.txtOfText": "գրվածքի %", "Common.Views.ListSettingsDialog.txtSize": "Չափ", @@ -544,6 +554,7 @@ "Common.Views.SaveAsDlg.textTitle": "Պահպանման պանակ", "Common.Views.SearchPanel.textCaseSensitive": "Դուրճազգայուն", "Common.Views.SearchPanel.textCloseSearch": "Փակել որոնումը", + "Common.Views.SearchPanel.textContentChanged": "Փաստաթուղթը փոխվել է", "Common.Views.SearchPanel.textFind": "Գտնել", "Common.Views.SearchPanel.textFindAndReplace": "Գտնել և փոխարինել", "Common.Views.SearchPanel.textMatchUsingRegExp": "Համեմատել՝ օգտագործելով կանոնավոր արտահայտություններ", @@ -552,6 +563,7 @@ "Common.Views.SearchPanel.textReplace": "Փոխարինել", "Common.Views.SearchPanel.textReplaceAll": "Փոխարինել բոլորը", "Common.Views.SearchPanel.textReplaceWith": "Փոխարինել հետևյալով", + "Common.Views.SearchPanel.textSearchAgain": "{0}Կատարել նոր որոնում{1}ճշգրիտ արդյունքների համար:", "Common.Views.SearchPanel.textSearchHasStopped": "Որոնումը դադարեցվել է", "Common.Views.SearchPanel.textSearchResults": "Որոնման արդյունքներ՝ {0}/{1}", "Common.Views.SearchPanel.textTooManyResults": "Այստեղ ցուցադրելու համար չափազանց շատ արդյունքներ կան", @@ -659,7 +671,7 @@ "PE.Controllers.Main.errorToken": "Փաստաթղթի անվտանգության կտրոնը ճիշտ չի ձևակերպված։
Դիմեք փաստաթղթերի սպասարկիչի ձեր վարիչին։", "PE.Controllers.Main.errorTokenExpire": "Փաստաթղթի անվտանգության կտրոնի ժամկետն անցել է։
Դիմեք փաստաթղթերի սպասարկիչի ձեր վարիչին։", "PE.Controllers.Main.errorUpdateVersion": "Նիշքի տարբերակը փոխվել է։ Էջը նորից կբեռնվի։", - "PE.Controllers.Main.errorUpdateVersionOnDisconnect": "Համացանցային կապը վերահաստատվել է, նիշքի տարբերակը՝ փոփոխվել։
Նախքան աշխատանքը շարունակելը ներբեռնեք նիշքը կամ պատճենեք դրա պարունակությունը՝ վստահ լինելու, որ ոչինչ չի կորել, և ապա նորից բեռնեք այս էջը։", + "PE.Controllers.Main.errorUpdateVersionOnDisconnect": "Կապը վերահաստատվել է,և ֆայլի տարբերակը փոխվել է։
Նախքան աշխատանքը շարունակելը ներբեռնեք ֆայլը կամ պատճենեք դրա պարունակությունը՝ վստահ լինելու, որ ոչինչ չի կորել, և ապա նորից բեռնեք այս էջը։", "PE.Controllers.Main.errorUserDrop": "Այս պահին նիշքն անհասանելի է։", "PE.Controllers.Main.errorUsersExceed": "Օգտատերերի՝ սակագնային պլանով թույլատրված քանակը գերազանցվել է։", "PE.Controllers.Main.errorViewerDisconnect": "Միացումն ընդհատվել է։ Դուք կարող եք շարունակել դիտել փաստաթուղթը,
բայց չեք կարողանա ներբեռնել կամ տպել, մինչև միացումը չվերականգնվի։", @@ -2368,5 +2380,8 @@ "PE.Views.ViewTab.textNotes": "Նշումներ", "PE.Views.ViewTab.textRulers": "Քանոններ", "PE.Views.ViewTab.textStatusBar": "Վիճակագոտի", - "PE.Views.ViewTab.textZoom": "Խոշորացնել" + "PE.Views.ViewTab.textZoom": "Խոշորացնել", + "PE.Views.ViewTab.tipFitToSlide": "Հարմարեցնել լուսապատկերին", + "PE.Views.ViewTab.tipFitToWidth": "Հարմարեցնել լայնությանը", + "PE.Views.ViewTab.tipInterfaceTheme": "Ինտերֆեյսի ոճ" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/ms.json b/apps/presentationeditor/main/locale/ms.json index df5eb9781..c0b0a465b 100644 --- a/apps/presentationeditor/main/locale/ms.json +++ b/apps/presentationeditor/main/locale/ms.json @@ -435,11 +435,14 @@ "Common.Views.ListSettingsDialog.textFromStorage": "Dari Simpanan", "Common.Views.ListSettingsDialog.textFromUrl": "Dari URL", "Common.Views.ListSettingsDialog.textNumbering": "Bernombor", + "Common.Views.ListSettingsDialog.textSelect": "Pilih daripada", "Common.Views.ListSettingsDialog.tipChange": "Ubah bulet", "Common.Views.ListSettingsDialog.txtBullet": "Bulet", "Common.Views.ListSettingsDialog.txtColor": "Warna", "Common.Views.ListSettingsDialog.txtImage": "Imej", + "Common.Views.ListSettingsDialog.txtImport": "Import", "Common.Views.ListSettingsDialog.txtNewBullet": "Bulet Baharu", + "Common.Views.ListSettingsDialog.txtNewImage": "Imej Baru", "Common.Views.ListSettingsDialog.txtNone": "Tiada", "Common.Views.ListSettingsDialog.txtOfText": "Teks %", "Common.Views.ListSettingsDialog.txtSize": "Saiz", @@ -666,7 +669,7 @@ "PE.Controllers.Main.errorToken": "Dokumen token keselamatan kini tidak dibentuk.
Sila hubungi pentadbir Pelayan Dokumen.", "PE.Controllers.Main.errorTokenExpire": "Dokumen token keselamatan telah tamat tempoh.
Sila hubungi pentadbir Pelayan Dokumen.", "PE.Controllers.Main.errorUpdateVersion": "Versi fail telah berubah. Halaman akan dimuatkan semula.", - "PE.Controllers.Main.errorUpdateVersionOnDisconnect": "Sambungan internet telah dipulihkan, dan versi fail telah berubah.
Sebelum anda boleh terus bekerja, anda perlu memuat turun fail atau menyalin kandungannya untuk memastikan tiada ada yang hilang, dan kemudian muat semula halaman ini.", + "PE.Controllers.Main.errorUpdateVersionOnDisconnect": "Sambungan telah dipulihkan, dan versi fail telah berubah.
Sebelum anda boleh terus bekerja, anda perlu memuat turun fail atau menyalin kandungannya untuk memastikan tiada ada yang hilang, dan kemudian muat semula halaman ini.", "PE.Controllers.Main.errorUserDrop": "Fail tidak boleh diakses sekarang.", "PE.Controllers.Main.errorUsersExceed": "Bilangan pengguna yang didizinkan mengikut pelan pembayaran telah lebih", "PE.Controllers.Main.errorViewerDisconnect": "Sambungan telah hilang. Anda masih boleh melihat dokumen,
tetapi tidak dapat muat turun atau cetaknya sehingga sambungan dipulihkan dan halaman dimuat semua.", diff --git a/apps/presentationeditor/main/locale/pt.json b/apps/presentationeditor/main/locale/pt.json index eff7f8c41..27d52ed7e 100644 --- a/apps/presentationeditor/main/locale/pt.json +++ b/apps/presentationeditor/main/locale/pt.json @@ -435,11 +435,14 @@ "Common.Views.ListSettingsDialog.textFromStorage": "De armazenamento", "Common.Views.ListSettingsDialog.textFromUrl": "Da URL", "Common.Views.ListSettingsDialog.textNumbering": "Numerado", + "Common.Views.ListSettingsDialog.textSelect": "Selecione de", "Common.Views.ListSettingsDialog.tipChange": "Alterar marcador", "Common.Views.ListSettingsDialog.txtBullet": "Marcador", "Common.Views.ListSettingsDialog.txtColor": "Cor", "Common.Views.ListSettingsDialog.txtImage": "Imagem", + "Common.Views.ListSettingsDialog.txtImport": "Importação", "Common.Views.ListSettingsDialog.txtNewBullet": "Novo marcador", + "Common.Views.ListSettingsDialog.txtNewImage": "Nova imagem", "Common.Views.ListSettingsDialog.txtNone": "nenhum", "Common.Views.ListSettingsDialog.txtOfText": "% do texto", "Common.Views.ListSettingsDialog.txtSize": "Tamanho", @@ -551,6 +554,7 @@ "Common.Views.SaveAsDlg.textTitle": "Pasta para salvar", "Common.Views.SearchPanel.textCaseSensitive": "Diferenciar maiúsculas de minúsculas", "Common.Views.SearchPanel.textCloseSearch": "Fechar pesquisa", + "Common.Views.SearchPanel.textContentChanged": "Documento alterado.", "Common.Views.SearchPanel.textFind": "Localizar", "Common.Views.SearchPanel.textFindAndReplace": "Localizar e substituir", "Common.Views.SearchPanel.textMatchUsingRegExp": "Corresponder usando expressões regulares", @@ -559,6 +563,7 @@ "Common.Views.SearchPanel.textReplace": "Substituir", "Common.Views.SearchPanel.textReplaceAll": "Substituir tudo", "Common.Views.SearchPanel.textReplaceWith": "Substituir com", + "Common.Views.SearchPanel.textSearchAgain": "{0}Realize uma nova pesquisa{1} para obter resultados precisos.", "Common.Views.SearchPanel.textSearchHasStopped": "A pesquisa parou", "Common.Views.SearchPanel.textSearchResults": "Resultados da pesquisa: {0}/{1}", "Common.Views.SearchPanel.textTooManyResults": "Há muitos resultados para mostrar aqui", @@ -2136,8 +2141,8 @@ "PE.Views.TextArtSettings.textColor": "Color Fill", "PE.Views.TextArtSettings.textDirection": "Direction", "PE.Views.TextArtSettings.textEmptyPattern": "No Pattern", - "PE.Views.TextArtSettings.textFromFile": "From File", - "PE.Views.TextArtSettings.textFromUrl": "From URL", + "PE.Views.TextArtSettings.textFromFile": "Do Arquivo", + "PE.Views.TextArtSettings.textFromUrl": "Da URL", "PE.Views.TextArtSettings.textGradient": "Pontos de gradiente", "PE.Views.TextArtSettings.textGradientFill": "Gradient Fill", "PE.Views.TextArtSettings.textImageTexture": "Picture or Texture", @@ -2189,7 +2194,7 @@ "PE.Views.Toolbar.capTabInsert": "Inserir", "PE.Views.Toolbar.mniCapitalizeWords": "Utilize cada palavra", "PE.Views.Toolbar.mniCustomTable": "Inserir tabela personalizada", - "PE.Views.Toolbar.mniImageFromFile": "Imagem do Arquivo", + "PE.Views.Toolbar.mniImageFromFile": "Imagem do arquivo", "PE.Views.Toolbar.mniImageFromStorage": "Imagem de Armazenamento", "PE.Views.Toolbar.mniImageFromUrl": "Imagem da URL", "PE.Views.Toolbar.mniInsertSSE": "Inserir planilha", diff --git a/apps/presentationeditor/main/locale/zh-tw.json b/apps/presentationeditor/main/locale/zh-tw.json index e33bba665..e3d8829e9 100644 --- a/apps/presentationeditor/main/locale/zh-tw.json +++ b/apps/presentationeditor/main/locale/zh-tw.json @@ -2376,5 +2376,6 @@ "PE.Views.ViewTab.textStatusBar": "狀態欄", "PE.Views.ViewTab.textZoom": "放大", "PE.Views.ViewTab.tipFitToSlide": "與投影片切合", + "PE.Views.ViewTab.tipFitToWidth": "配合寬度", "PE.Views.ViewTab.tipInterfaceTheme": "介面主題" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/zh.json b/apps/presentationeditor/main/locale/zh.json index 871de1286..c6ba8ef08 100644 --- a/apps/presentationeditor/main/locale/zh.json +++ b/apps/presentationeditor/main/locale/zh.json @@ -433,13 +433,16 @@ "Common.Views.ListSettingsDialog.textBulleted": "已添加项目符号", "Common.Views.ListSettingsDialog.textFromFile": "从文件导入", "Common.Views.ListSettingsDialog.textFromStorage": "来自存储设备", + "Common.Views.ListSettingsDialog.textFromUrl": "从URL", "Common.Views.ListSettingsDialog.textNumbering": "标号", + "Common.Views.ListSettingsDialog.textSelect": "选择", "Common.Views.ListSettingsDialog.tipChange": "修改项目点", "Common.Views.ListSettingsDialog.txtBullet": "项目符号", "Common.Views.ListSettingsDialog.txtColor": "颜色", "Common.Views.ListSettingsDialog.txtImage": "图片", "Common.Views.ListSettingsDialog.txtImport": "导入", "Common.Views.ListSettingsDialog.txtNewBullet": "添加一个新的项目点", + "Common.Views.ListSettingsDialog.txtNewImage": "新图片", "Common.Views.ListSettingsDialog.txtNone": "无", "Common.Views.ListSettingsDialog.txtOfText": "文本的%", "Common.Views.ListSettingsDialog.txtSize": "大小", diff --git a/apps/presentationeditor/mobile/src/view/settings/PresentationInfo.jsx b/apps/presentationeditor/mobile/src/view/settings/PresentationInfo.jsx index 325374c06..34e904e8e 100644 --- a/apps/presentationeditor/mobile/src/view/settings/PresentationInfo.jsx +++ b/apps/presentationeditor/mobile/src/view/settings/PresentationInfo.jsx @@ -13,7 +13,7 @@ const PagePresentationInfo = (props) => { return ( - {dataDoc.title ? ( + {dataDoc?.title ? ( {_t.textPresentationTitle} @@ -21,7 +21,7 @@ const PagePresentationInfo = (props) => { ) : null} - {dataDoc.info.author || dataDoc.info.owner ? ( + {dataDoc?.info?.author || dataDoc?.info?.owner ? ( {_t.textOwner} @@ -29,7 +29,7 @@ const PagePresentationInfo = (props) => { ) : null} - {dataDoc.info.folder ? ( + {dataDoc?.info?.folder ? ( {_t.textLocation} @@ -37,7 +37,7 @@ const PagePresentationInfo = (props) => { ) : null} - {dataDoc.info.uploaded || dataDoc.info.created ? ( + {dataDoc?.info?.uploaded || dataDoc?.info?.created ? ( {_t.textUploaded} diff --git a/apps/spreadsheeteditor/embed/locale/eu.json b/apps/spreadsheeteditor/embed/locale/eu.json index 058fd49d9..0b32879b4 100644 --- a/apps/spreadsheeteditor/embed/locale/eu.json +++ b/apps/spreadsheeteditor/embed/locale/eu.json @@ -17,7 +17,7 @@ "SSE.ApplicationController.errorForceSave": "Errore bat gertatu da dokumentua gordetzean.
Erabili 'Deskargatu honela' aukera fitxategia zure ordenagailuko disko gogorrean gordetzeko edo saiatu berriro geroago.", "SSE.ApplicationController.errorLoadingFont": "Letra-tipoak ez dira kargatu.
Jarri zure dokumentu-zerbitzariaren administratzailearekin harremanetan.", "SSE.ApplicationController.errorTokenExpire": "Dokumentuaren segurtasun-tokena iraungi da.
Jarri zure dokumentu-zerbitzariaren administratzailearekin harremanetan.", - "SSE.ApplicationController.errorUpdateVersionOnDisconnect": "Interneteko konexioa berrezarri da eta fitxategiaren bertsioa aldatu da.
Lanean jarraitu aurretik, beharrezkoa da fitxategia deskargatzea edo edukia kopiatzea, ezer ez dela galduko ziurtatzeko, eta gero orri hau berriro kargatzea.", + "SSE.ApplicationController.errorUpdateVersionOnDisconnect": "Konexioa berrezarri da eta fitxategiaren bertsioa aldatu da.
Lanean jarraitu aurretik, beharrezkoa da fitxategia deskargatzea edo edukia kopiatzea, ezer ez dela galduko ziurtatzeko, eta gero orri hau berriro kargatzea.", "SSE.ApplicationController.errorUserDrop": "Ezin da fitxategia atzitu une honetan.", "SSE.ApplicationController.notcriticalErrorTitle": "Abisua", "SSE.ApplicationController.openErrorText": "Errore bat gertatu da fitxategia irekitzean.", diff --git a/apps/spreadsheeteditor/embed/locale/hy.json b/apps/spreadsheeteditor/embed/locale/hy.json index d74f5b3d1..a951b5ebf 100644 --- a/apps/spreadsheeteditor/embed/locale/hy.json +++ b/apps/spreadsheeteditor/embed/locale/hy.json @@ -17,7 +17,7 @@ "SSE.ApplicationController.errorForceSave": "Սխալ է տեղի ունեցել ֆայլը պահելիս:Խնդրում ենք օգտագործել «Ներբեռնել որպես» տարբերակը՝ ֆայլը ձեր համակարգչի կոշտ սկավառակում պահելու համար կամ ավելի ուշ նորից փորձեք:", "SSE.ApplicationController.errorLoadingFont": "Տառատեսակները բեռնված չեն:
Խնդրում ենք կապվել ձեր փաստաթղթերի սերվերի ադմինիստրատորի հետ:", "SSE.ApplicationController.errorTokenExpire": "Փաստաթղթի անվտանգության կտրոնի ժամկետն անցել է։
Դիմեք փաստաթղթերի սպասարկիչի ձեր վարիչին։", - "SSE.ApplicationController.errorUpdateVersionOnDisconnect": "Համացանցային կապը վերահաստատվել է,և ֆայլի տարբերակը փոխվել է։
Նախքան աշխատանքը շարունակելը ներբեռնեք նիշքը կամ պատճենեք դրա պարունակությունը՝ վստահ լինելու, որ ոչինչ չի կորել, և ապա նորից բեռնեք այս էջը։", + "SSE.ApplicationController.errorUpdateVersionOnDisconnect": "Կապը վերահաստատվել է,և ֆայլի տարբերակը փոխվել է։
Նախքան աշխատանքը շարունակելը ներբեռնեք ֆայլը կամ պատճենեք դրա պարունակությունը՝ վստահ լինելու, որ ոչինչ չի կորել, և ապա նորից բեռնեք այս էջը։", "SSE.ApplicationController.errorUserDrop": "Այս պահին ֆայլն անհասանելի է։", "SSE.ApplicationController.notcriticalErrorTitle": "Զգուշացում", "SSE.ApplicationController.openErrorText": "Ֆայլը բացելիս սխալ է տեղի ունեցել:", diff --git a/apps/spreadsheeteditor/embed/locale/ms.json b/apps/spreadsheeteditor/embed/locale/ms.json index 5b6b932b1..441551f0b 100644 --- a/apps/spreadsheeteditor/embed/locale/ms.json +++ b/apps/spreadsheeteditor/embed/locale/ms.json @@ -17,7 +17,7 @@ "SSE.ApplicationController.errorForceSave": "Terdapat ralat yang berlaku semasa menyimpan fail. Sila gunakan pilihan 'Download as' untuk menyimpan salinan fail sandaran ke pemacu keras komputer anda dan cuba semula nanti.", "SSE.ApplicationController.errorLoadingFont": "Fon tidak dimuatkan.
Sila hubungi pentadbir Pelayan Dokumen anda.", "SSE.ApplicationController.errorTokenExpire": "Dokumen token keselamatan telah tamat tempoh.
Sila hubungi pentadbir Pelayan Dokumen.", - "SSE.ApplicationController.errorUpdateVersionOnDisconnect": "Sambungan internet telah dipulihkan, dan versi fail telah berubah.
Sebelum anda boleh terus bekerja, anda perlu memuat turun fail atau menyalin kandungannya untuk memastikan tiada ada yang hilang, dan kemudian muat semula halaman ini.", + "SSE.ApplicationController.errorUpdateVersionOnDisconnect": "Sambungan telah dipulihkan, dan versi fail telah berubah.
Sebelum anda boleh terus bekerja, anda perlu memuat turun fail atau menyalin kandungannya untuk memastikan tiada ada yang hilang, dan kemudian muat semula halaman ini.", "SSE.ApplicationController.errorUserDrop": "Fail tidak boleh diakses sekarang.", "SSE.ApplicationController.notcriticalErrorTitle": "Amaran", "SSE.ApplicationController.openErrorText": "Ralat telah berlaku semasa membuka fail.", diff --git a/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js b/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js index b39b9267c..471066cd4 100644 --- a/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js +++ b/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js @@ -1988,7 +1988,7 @@ SSE.Views.FileMenuPanels.RecentFiles = Common.UI.BaseView.extend({ me.iFrame.src = '../../common/main/resources/help/download.html'; else { store.contentLang = store.contentLang === lang ? '{{DEFAULT_LANG}}' : lang; - me.urlPref = Common.Controllers.Desktop.helpUrl() + '/' + lang + '/'; + me.urlPref = Common.Controllers.Desktop.helpUrl() + '/' + store.contentLang + '/'; store.url = me.urlPref + 'Contents.json'; store.fetch(config); } diff --git a/apps/spreadsheeteditor/main/locale/az.json b/apps/spreadsheeteditor/main/locale/az.json index 884b73d67..0b8860a60 100644 --- a/apps/spreadsheeteditor/main/locale/az.json +++ b/apps/spreadsheeteditor/main/locale/az.json @@ -100,6 +100,7 @@ "Common.define.conditionalData.textUnique": "Unikal", "Common.define.conditionalData.textValue": "Dəyər budur", "Common.define.conditionalData.textYesterday": "Dünən", + "Common.Translation.textMoreButton": "Daha çox", "Common.Translation.warnFileLocked": "Fayl başqa proqramda redaktə olunur. Siz redaktə etməyə davam edə və onu surət kimi saxlaya bilərsiniz.", "Common.Translation.warnFileLockedBtnEdit": "Kopyasını yaradın", "Common.Translation.warnFileLockedBtnView": "Baxmaq üçün açın", diff --git a/apps/spreadsheeteditor/main/locale/bg.json b/apps/spreadsheeteditor/main/locale/bg.json index 7f0d06686..d2be62a78 100644 --- a/apps/spreadsheeteditor/main/locale/bg.json +++ b/apps/spreadsheeteditor/main/locale/bg.json @@ -17,6 +17,7 @@ "Common.define.chartData.textWinLossSpark": "Печалба/Загуба", "Common.define.conditionalData.textError": "Грешка", "Common.define.conditionalData.textFormula": "Формула", + "Common.Translation.textMoreButton": "Повече", "Common.UI.ButtonColored.textAutoColor": "Автоматичен", "Common.UI.ButtonColored.textNewColor": "Нов Потребителски Цвят", "Common.UI.ComboBorderSize.txtNoBorders": "Няма граници", diff --git a/apps/spreadsheeteditor/main/locale/ca.json b/apps/spreadsheeteditor/main/locale/ca.json index ca6ce090d..aa02c7724 100644 --- a/apps/spreadsheeteditor/main/locale/ca.json +++ b/apps/spreadsheeteditor/main/locale/ca.json @@ -100,6 +100,7 @@ "Common.define.conditionalData.textUnique": "Únic", "Common.define.conditionalData.textValue": "El valor és", "Common.define.conditionalData.textYesterday": "Ahir", + "Common.Translation.textMoreButton": "Més", "Common.Translation.warnFileLocked": "El document és obert en una altra aplicació. Pots continuar editant i guardar-lo com a còpia.", "Common.Translation.warnFileLockedBtnEdit": "Crea una còpia", "Common.Translation.warnFileLockedBtnView": "Obre per a la seva visualització", diff --git a/apps/spreadsheeteditor/main/locale/cs.json b/apps/spreadsheeteditor/main/locale/cs.json index 7b3c384de..76faffaf5 100644 --- a/apps/spreadsheeteditor/main/locale/cs.json +++ b/apps/spreadsheeteditor/main/locale/cs.json @@ -100,6 +100,7 @@ "Common.define.conditionalData.textUnique": "Neopakující se", "Common.define.conditionalData.textValue": "Hodnota je", "Common.define.conditionalData.textYesterday": "Včera", + "Common.Translation.textMoreButton": "Více", "Common.Translation.warnFileLocked": "Soubor je upravován v jiné aplikaci. Můžete pokračovat v úpravách a uložit ho jako kopii.", "Common.Translation.warnFileLockedBtnEdit": "Vytvořit kopii", "Common.Translation.warnFileLockedBtnView": "Otevřít pro náhled", diff --git a/apps/spreadsheeteditor/main/locale/da.json b/apps/spreadsheeteditor/main/locale/da.json index af51c55bf..8630df99e 100644 --- a/apps/spreadsheeteditor/main/locale/da.json +++ b/apps/spreadsheeteditor/main/locale/da.json @@ -100,6 +100,7 @@ "Common.define.conditionalData.textUnique": "Enestående", "Common.define.conditionalData.textValue": "Værdi er", "Common.define.conditionalData.textYesterday": "I går", + "Common.Translation.textMoreButton": "Mere", "Common.Translation.warnFileLocked": "Dokumentet er i brug af en anden applikation. Du kan fortsætte med at redigere og gemme en kopi.", "Common.Translation.warnFileLockedBtnEdit": "Opret en kopi", "Common.Translation.warnFileLockedBtnView": "Åben for visning", diff --git a/apps/spreadsheeteditor/main/locale/de.json b/apps/spreadsheeteditor/main/locale/de.json index 8e59b7d57..c2cd14e4e 100644 --- a/apps/spreadsheeteditor/main/locale/de.json +++ b/apps/spreadsheeteditor/main/locale/de.json @@ -100,6 +100,7 @@ "Common.define.conditionalData.textUnique": "Eindeutig", "Common.define.conditionalData.textValue": "Wert ist", "Common.define.conditionalData.textYesterday": "Gestern", + "Common.Translation.textMoreButton": "Mehr", "Common.Translation.warnFileLocked": "Die Datei wird in einer anderen App bearbeitet. Sie können die Bearbeitung fortsetzen und die Kopie dieser Datei speichern.", "Common.Translation.warnFileLockedBtnEdit": "Kopie erstellen", "Common.Translation.warnFileLockedBtnView": "Schreibgeschützt öffnen", diff --git a/apps/spreadsheeteditor/main/locale/en.json b/apps/spreadsheeteditor/main/locale/en.json index 3dfb8cfc8..9ea34733c 100644 --- a/apps/spreadsheeteditor/main/locale/en.json +++ b/apps/spreadsheeteditor/main/locale/en.json @@ -100,6 +100,7 @@ "Common.define.conditionalData.textUnique": "Unique", "Common.define.conditionalData.textValue": "Value is", "Common.define.conditionalData.textYesterday": "Yesterday", + "Common.Translation.textMoreButton": "More", "Common.Translation.warnFileLocked": "The file is being edited in another app. You can continue editing and save it as a copy.", "Common.Translation.warnFileLockedBtnEdit": "Create a copy", "Common.Translation.warnFileLockedBtnView": "Open for viewing", diff --git a/apps/spreadsheeteditor/main/locale/es.json b/apps/spreadsheeteditor/main/locale/es.json index a0fb7e8fa..136324702 100644 --- a/apps/spreadsheeteditor/main/locale/es.json +++ b/apps/spreadsheeteditor/main/locale/es.json @@ -100,6 +100,7 @@ "Common.define.conditionalData.textUnique": "Único", "Common.define.conditionalData.textValue": "El valor es", "Common.define.conditionalData.textYesterday": "Ayer", + "Common.Translation.textMoreButton": "Más", "Common.Translation.warnFileLocked": "El archivo está siendo editado en otra aplicación. Puede continuar editándolo y guardarlo como una copia.", "Common.Translation.warnFileLockedBtnEdit": "Crear copia", "Common.Translation.warnFileLockedBtnView": "Abrir para visualizar", diff --git a/apps/spreadsheeteditor/main/locale/eu.json b/apps/spreadsheeteditor/main/locale/eu.json index 4daa8891a..7aa11371b 100644 --- a/apps/spreadsheeteditor/main/locale/eu.json +++ b/apps/spreadsheeteditor/main/locale/eu.json @@ -100,6 +100,7 @@ "Common.define.conditionalData.textUnique": "Bakarra", "Common.define.conditionalData.textValue": "Balioa da", "Common.define.conditionalData.textYesterday": "Atzo", + "Common.Translation.textMoreButton": "Gehiago", "Common.Translation.warnFileLocked": "Fitxategia beste aplikazio batean editatua izaten ari da. Editatzen jarraitu dezakezu eta kopia bezala gorde.", "Common.Translation.warnFileLockedBtnEdit": "Sortu kopia", "Common.Translation.warnFileLockedBtnView": "Ireki ikusteko", @@ -780,7 +781,7 @@ "SSE.Controllers.Main.errorTokenExpire": "Dokumentuaren segurtasun-tokena iraungi da.
Jarri zure dokumentu-zerbitzariaren administratzailearekin harremanetan.", "SSE.Controllers.Main.errorUnexpectedGuid": "Kanpoko errorea.
Ustekabeko GUIDa. Jarri laguntza-zerbitzuarekin harremanetan erroreak jarraitzen badu.", "SSE.Controllers.Main.errorUpdateVersion": "Fitxategiaren bertsioa aldatu da. Orria berriz kargatuko da.", - "SSE.Controllers.Main.errorUpdateVersionOnDisconnect": "Interneteko konexioa berrezarri da eta fitxategiaren bertsioa aldatu da.
Lanean jarraitu aurretik, beharrezkoa da fitxategia deskargatzea edo edukia kopiatzea, ezer ez dela galduko ziurtatzeko, eta gero orri hau berriro kargatzea.", + "SSE.Controllers.Main.errorUpdateVersionOnDisconnect": "Konexioa berrezarri da eta fitxategiaren bertsioa aldatu da.
Lanean jarraitu aurretik, beharrezkoa da fitxategia deskargatzea edo edukia kopiatzea, ezer ez dela galduko ziurtatzeko, eta gero orri hau berriro kargatzea.", "SSE.Controllers.Main.errorUserDrop": "Ezin da fitxategia atzitu une honetan.", "SSE.Controllers.Main.errorUsersExceed": "Prezio-planean baimendutako erabiltzaile-kopurua gainditu da", "SSE.Controllers.Main.errorViewerDisconnect": "Konexioa galdu da. Dokumentua ikusi dezakezu oraindik,
baina ezingo duzu deskargatu edo inprimatu konexioa berrezarri eta orria berriz kargatu arte.", diff --git a/apps/spreadsheeteditor/main/locale/fr.json b/apps/spreadsheeteditor/main/locale/fr.json index 02bb37fb6..d06d3e8a7 100644 --- a/apps/spreadsheeteditor/main/locale/fr.json +++ b/apps/spreadsheeteditor/main/locale/fr.json @@ -100,6 +100,7 @@ "Common.define.conditionalData.textUnique": "Unique", "Common.define.conditionalData.textValue": "Valeur est ", "Common.define.conditionalData.textYesterday": "Hier", + "Common.Translation.textMoreButton": "Plus", "Common.Translation.warnFileLocked": "Ce fichier a été modifié avec une autre application. Vous pouvez continuer à le modifier et l'enregistrer comme une copie.", "Common.Translation.warnFileLockedBtnEdit": "Créer une copie", "Common.Translation.warnFileLockedBtnView": "Ouvrir pour visualisation", @@ -267,12 +268,14 @@ "Common.Views.ListSettingsDialog.textFromStorage": "A partir de l'espace de stockage", "Common.Views.ListSettingsDialog.textFromUrl": "D'une URL", "Common.Views.ListSettingsDialog.textNumbering": "Numéroté", + "Common.Views.ListSettingsDialog.textSelect": "Sélectionner à partir de", "Common.Views.ListSettingsDialog.tipChange": "Changer de puce", "Common.Views.ListSettingsDialog.txtBullet": "Puce", "Common.Views.ListSettingsDialog.txtColor": "Couleur", "Common.Views.ListSettingsDialog.txtImage": "Image", "Common.Views.ListSettingsDialog.txtImport": "Importer", "Common.Views.ListSettingsDialog.txtNewBullet": "Nouvelle puce", + "Common.Views.ListSettingsDialog.txtNewImage": "Nouvelle image", "Common.Views.ListSettingsDialog.txtNone": "Rien", "Common.Views.ListSettingsDialog.txtOfText": "% de texte", "Common.Views.ListSettingsDialog.txtSize": "Taille", diff --git a/apps/spreadsheeteditor/main/locale/hy.json b/apps/spreadsheeteditor/main/locale/hy.json index eef5a8d62..395bc107d 100644 --- a/apps/spreadsheeteditor/main/locale/hy.json +++ b/apps/spreadsheeteditor/main/locale/hy.json @@ -100,6 +100,7 @@ "Common.define.conditionalData.textUnique": "Յուրահատուկ", "Common.define.conditionalData.textValue": "Արժեքն է", "Common.define.conditionalData.textYesterday": "Երեկ", + "Common.Translation.textMoreButton": "Ավելին", "Common.Translation.warnFileLocked": "Ֆայլը խմբագրվում է մեկ այլ հավելվածում:Դուք կարող եք շարունակել խմբագրումը և պահպանել այն որպես պատճեն:", "Common.Translation.warnFileLockedBtnEdit": "Ստեղծել պատճեն", "Common.Translation.warnFileLockedBtnView": "Բացել դիտման համար", @@ -148,7 +149,7 @@ "Common.UI.Window.textConfirmation": "Հաստատում", "Common.UI.Window.textDontShow": "Այս գրությունն այլևս ցույց չտալ", "Common.UI.Window.textError": "Սխալ", - "Common.UI.Window.textInformation": "Տեղեկատվություն ", + "Common.UI.Window.textInformation": "Տեղեկատվություն", "Common.UI.Window.textWarning": "Զգուշացում", "Common.UI.Window.yesButtonText": "Այո", "Common.Utils.Metric.txtCm": "սմ", @@ -195,7 +196,7 @@ "Common.Views.Comments.mniPositionAsc": "Վերևից", "Common.Views.Comments.mniPositionDesc": "Ներքևից ", "Common.Views.Comments.textAdd": "Հավելել", - "Common.Views.Comments.textAddComment": "Կցել մեկնաբանություն", + "Common.Views.Comments.textAddComment": "Ավելացնել", "Common.Views.Comments.textAddCommentToDoc": "Փաստաթղթում կցել մեկնաբանություն", "Common.Views.Comments.textAddReply": "Պատասխանել", "Common.Views.Comments.textAll": "Բոլորը", @@ -263,11 +264,18 @@ "Common.Views.ImageFromUrlDialog.txtEmpty": "Պահանջվում է լրացնել այս դաշտը:", "Common.Views.ImageFromUrlDialog.txtNotUrl": "Այս դաշտը պետք է լինի URL \"http://www.example.com\" ձևաչափով", "Common.Views.ListSettingsDialog.textBulleted": "Պարբերանշված", + "Common.Views.ListSettingsDialog.textFromFile": "Ֆայլից", + "Common.Views.ListSettingsDialog.textFromStorage": "Պահեստից", + "Common.Views.ListSettingsDialog.textFromUrl": "URL-ից", "Common.Views.ListSettingsDialog.textNumbering": "Համարակալված", + "Common.Views.ListSettingsDialog.textSelect": "Ընտրել", "Common.Views.ListSettingsDialog.tipChange": "Փոխել պարբերակը", "Common.Views.ListSettingsDialog.txtBullet": "Պարբերակ", "Common.Views.ListSettingsDialog.txtColor": "Գույն", + "Common.Views.ListSettingsDialog.txtImage": "Նկար", + "Common.Views.ListSettingsDialog.txtImport": "Ներմուծել", "Common.Views.ListSettingsDialog.txtNewBullet": "Նոր պարբերակ", + "Common.Views.ListSettingsDialog.txtNewImage": "Նոր պատկեր ", "Common.Views.ListSettingsDialog.txtNone": "Ոչ մեկը", "Common.Views.ListSettingsDialog.txtOfText": "գրվածքի %", "Common.Views.ListSettingsDialog.txtSize": "Չափ", @@ -395,6 +403,7 @@ "Common.Views.SearchPanel.textCaseSensitive": "Հաշվի առնել տառաշարը", "Common.Views.SearchPanel.textCell": "Վանդակ", "Common.Views.SearchPanel.textCloseSearch": "Փակել որոնումը", + "Common.Views.SearchPanel.textContentChanged": "Փաստաթուղթը փոխվել է", "Common.Views.SearchPanel.textFind": "Գտնել", "Common.Views.SearchPanel.textFindAndReplace": "Գտնել և փոխարինել", "Common.Views.SearchPanel.textFormula": "Բանաձև ", @@ -409,6 +418,7 @@ "Common.Views.SearchPanel.textReplaceAll": "Փոխարինել բոլորը", "Common.Views.SearchPanel.textReplaceWith": "Փոխարինել հետևյալով", "Common.Views.SearchPanel.textSearch": "Որոնել", + "Common.Views.SearchPanel.textSearchAgain": "{0}Կատարել նոր որոնում{1}ճշգրիտ արդյունքների համար:", "Common.Views.SearchPanel.textSearchHasStopped": "Որոնումը դադարեցվել է", "Common.Views.SearchPanel.textSearchOptions": "Որոնման ընտրանքներ", "Common.Views.SearchPanel.textSearchResults": "Որոնման արդյունքներ՝ {0}/{1}", @@ -657,7 +667,7 @@ "SSE.Controllers.FormulaDialog.sCategoryDateAndTime": "Ամսաթիվ և ժամ", "SSE.Controllers.FormulaDialog.sCategoryEngineering": "Ճարտարագիտական", "SSE.Controllers.FormulaDialog.sCategoryFinancial": "Ֆինանսական", - "SSE.Controllers.FormulaDialog.sCategoryInformation": "Տեղեկատվություն ", + "SSE.Controllers.FormulaDialog.sCategoryInformation": "Տեղեկատվություն", "SSE.Controllers.FormulaDialog.sCategoryLast10": "Վերջին 10 օգտագործվածներ", "SSE.Controllers.FormulaDialog.sCategoryLogical": "Տրամաբանական", "SSE.Controllers.FormulaDialog.sCategoryLookupAndReference": "Որոնում և հղումներ", @@ -771,7 +781,7 @@ "SSE.Controllers.Main.errorTokenExpire": "Փաստաթղթի անվտանգության կտրոնի ժամկետն անցել է։
Դիմեք փաստաթղթերի սպասարկիչի ձեր վարիչին։", "SSE.Controllers.Main.errorUnexpectedGuid": "Արտաքին սխալ։
Անսպասելի GUID։ Եթե սխալը շարունակվի, դիմեք աջակցության ծառայությանը։", "SSE.Controllers.Main.errorUpdateVersion": "Նիշքի տարբերակը փոխվել է։ Էջը նորից կբեռնվի։", - "SSE.Controllers.Main.errorUpdateVersionOnDisconnect": "Համացանցային կապը վերահաստատվել է,և ֆայլի տարբերակը փոխվել է։
Նախքան աշխատանքը շարունակելը ներբեռնեք ֆայլը կամ պատճենեք դրա պարունակությունը՝ վստահ լինելու, որ ոչինչ չի կորել, և ապա նորից բեռնեք այս էջը։", + "SSE.Controllers.Main.errorUpdateVersionOnDisconnect": "Կապը վերահաստատվել է,և ֆայլի տարբերակը փոխվել է։
Նախքան աշխատանքը շարունակելը ներբեռնեք ֆայլը կամ պատճենեք դրա պարունակությունը՝ վստահ լինելու, որ ոչինչ չի կորել, և ապա նորից բեռնեք այս էջը։", "SSE.Controllers.Main.errorUserDrop": "Այս պահին նիշքն անհասանելի է։", "SSE.Controllers.Main.errorUsersExceed": "Օգտատերերի՝ սակագնային պլանով թույլատրված քանակը գերազանցվել է։", "SSE.Controllers.Main.errorViewerDisconnect": "Միացումն ընդհատվել է։ Դուք կարող եք շարունակել դիտել փաստաթուղթը,
բայց չեք կարողանա ներբեռնել կամ տպել, մինչև միացումը չվերականգնվի։", @@ -3491,6 +3501,7 @@ "SSE.Views.Toolbar.tipFontColor": "Տառատեսակի գույն", "SSE.Views.Toolbar.tipFontName": "Տառատեսակ ", "SSE.Views.Toolbar.tipFontSize": "Տառատեսակի չափ", + "SSE.Views.Toolbar.tipHAlighOle": "Հորիզոնական հավասարեցում", "SSE.Views.Toolbar.tipImgAlign": "Հավասարեցնել առարկաները", "SSE.Views.Toolbar.tipImgGroup": "Խմբավորել օբյեկտները", "SSE.Views.Toolbar.tipIncDecimal": "Մեծացնել տասնորդական", @@ -3530,6 +3541,7 @@ "SSE.Views.Toolbar.tipTextFormatting": "Տեքստի ձևաչափման ավելի շատ գործիքներ", "SSE.Views.Toolbar.tipTextOrientation": "Կողմնորոշում", "SSE.Views.Toolbar.tipUndo": "Հետարկել", + "SSE.Views.Toolbar.tipVAlighOle": "Հավասարեցնել ուղղաձիգ ", "SSE.Views.Toolbar.tipVisibleArea": "Տեսանելի տարածք", "SSE.Views.Toolbar.tipWrap": "Տեքստի ծալում", "SSE.Views.Toolbar.txtAccounting": "Հաշվապահություն", @@ -3676,6 +3688,7 @@ "SSE.Views.ViewTab.tipClose": "Փակել թերթի տեսքը", "SSE.Views.ViewTab.tipCreate": "Ստեղծել թերթիկի տեսք", "SSE.Views.ViewTab.tipFreeze": "Փեղկերի սառեցում", + "SSE.Views.ViewTab.tipInterfaceTheme": "Ինտերֆեյսի ոճ", "SSE.Views.ViewTab.tipSheetView": "Թերթի տեսք", "SSE.Views.WBProtection.hintAllowRanges": "Թույլատրել խմբագրել ընդգրկույթները", "SSE.Views.WBProtection.hintProtectSheet": "Պաշտպանել թերթը", diff --git a/apps/spreadsheeteditor/main/locale/it.json b/apps/spreadsheeteditor/main/locale/it.json index bc9a9537c..d397bfea0 100644 --- a/apps/spreadsheeteditor/main/locale/it.json +++ b/apps/spreadsheeteditor/main/locale/it.json @@ -100,6 +100,7 @@ "Common.define.conditionalData.textUnique": "Unico", "Common.define.conditionalData.textValue": "Valore è", "Common.define.conditionalData.textYesterday": "Ieri", + "Common.Translation.textMoreButton": "più", "Common.Translation.warnFileLocked": "Il file è in fase di modifica in un'altra applicazione. Puoi continuare a modificarlo e salvarlo come copia.", "Common.Translation.warnFileLockedBtnEdit": "Crea una copia", "Common.Translation.warnFileLockedBtnView": "‎Aperto per la visualizzazione‎", diff --git a/apps/spreadsheeteditor/main/locale/ja.json b/apps/spreadsheeteditor/main/locale/ja.json index 649a858ab..cf5ecdb6d 100644 --- a/apps/spreadsheeteditor/main/locale/ja.json +++ b/apps/spreadsheeteditor/main/locale/ja.json @@ -100,6 +100,7 @@ "Common.define.conditionalData.textUnique": "一意", "Common.define.conditionalData.textValue": "値が", "Common.define.conditionalData.textYesterday": "昨日", + "Common.Translation.textMoreButton": "もっと", "Common.Translation.warnFileLocked": "文書が他のアプリで編集されています。編集を続けて、コピーとして保存できます。", "Common.Translation.warnFileLockedBtnEdit": "コピーを作成する", "Common.Translation.warnFileLockedBtnView": "見に開く", diff --git a/apps/spreadsheeteditor/main/locale/lo.json b/apps/spreadsheeteditor/main/locale/lo.json index 636b7ba80..8895d7c53 100644 --- a/apps/spreadsheeteditor/main/locale/lo.json +++ b/apps/spreadsheeteditor/main/locale/lo.json @@ -100,6 +100,7 @@ "Common.define.conditionalData.textUnique": "ເອກະລັກ", "Common.define.conditionalData.textValue": "ຄ່າແມ່ນ", "Common.define.conditionalData.textYesterday": "ມື້ວານນີ້", + "Common.Translation.textMoreButton": "ຫຼາຍກວ່າ", "Common.Translation.warnFileLocked": "ແຟ້ມ ກຳ ລັງຖືກດັດແກ້ຢູ່ໃນແອັບ ອື່ນ. ທ່ານສາມາດສືບຕໍ່ດັດແກ້ແລະບັນທຶກເປັນ ສຳ ເນົາ", "Common.Translation.warnFileLockedBtnEdit": "ສ້າງສຳເນົາ", "Common.Translation.warnFileLockedBtnView": "ເປີດເບິ່ງ", @@ -225,6 +226,7 @@ "Common.Views.Header.textSaveChanged": "ແກ້ໄຂ", "Common.Views.Header.textSaveEnd": "ບັນທຶກການປ່ຽນແປງທັງໝົດ", "Common.Views.Header.textSaveExpander": "ບັນທຶກການປ່ຽນແປງທັງໝົດ", + "Common.Views.Header.textShare": "ແບ່ງປັນ", "Common.Views.Header.textZoom": "ຂະຫຍາຍ ", "Common.Views.Header.tipAccessRights": "ຄຸ້ມຄອງສິດໃນການເຂົ້າເຖິງເອກະສານ", "Common.Views.Header.tipDownload": "ດາວໂຫຼດຟາຍ", @@ -253,6 +255,7 @@ "Common.Views.ListSettingsDialog.tipChange": "ປ່ຽນສັນຍາລັກສະແດງຫົວຂໍ້ຍ່ອຍ", "Common.Views.ListSettingsDialog.txtBullet": "ຂີດໜ້າ", "Common.Views.ListSettingsDialog.txtColor": "ສີ", + "Common.Views.ListSettingsDialog.txtImage": "ຮູບພາບ", "Common.Views.ListSettingsDialog.txtNewBullet": "ຂີດຫຍໍ້ໜ້າໃໝ່", "Common.Views.ListSettingsDialog.txtNone": "ບໍ່ມີ", "Common.Views.ListSettingsDialog.txtOfText": "% ຂໍ້ຄວາມ ", @@ -375,6 +378,10 @@ "Common.Views.ReviewPopover.txtEditTip": "ແກ້ໄຂ", "Common.Views.SaveAsDlg.textLoading": "ກຳລັງໂຫລດ", "Common.Views.SaveAsDlg.textTitle": "ແຟ້ມສຳລັບບັນທຶກ", + "Common.Views.SearchPanel.textCell": "ແຊວ", + "Common.Views.SearchPanel.textFormula": "ສູດ", + "Common.Views.SearchPanel.textName": "ຊື່", + "Common.Views.SearchPanel.textReplaceAll": "ປ່ຽນແທນທັງໝົດ", "Common.Views.SelectFileDlg.textLoading": "ກຳລັງໂຫລດ", "Common.Views.SelectFileDlg.textTitle": "ເລືອກແຫຼ່ງຂໍ້ມູນ", "Common.Views.SignDialog.textBold": "ໂຕຊໍ້າ ", @@ -3308,6 +3315,7 @@ "SSE.Views.Toolbar.textDelUp": "ເລື່ອນເຊວໄປດ້ານເທິງ", "SSE.Views.Toolbar.textDiagDownBorder": "ເສັ້ນຂອບຂວາງດ້ານລຸ່ມ", "SSE.Views.Toolbar.textDiagUpBorder": "ເສັ້ນຂອບຂວາງດ້ານເທຶງ", + "SSE.Views.Toolbar.textDone": "ສໍາເລັດ", "SSE.Views.Toolbar.textEntireCol": "ຖັນທັງໝົດ", "SSE.Views.Toolbar.textEntireRow": "ແຖວທັງໝົດ", "SSE.Views.Toolbar.textFewPages": "ຫລາຍໜ້າ", @@ -3401,6 +3409,7 @@ "SSE.Views.Toolbar.tipFontColor": "ສີຂອງຕົວອັກສອນ", "SSE.Views.Toolbar.tipFontName": "ຕົວອັກສອນ", "SSE.Views.Toolbar.tipFontSize": "ຂະໜາດຕົວອັກສອນ", + "SSE.Views.Toolbar.tipHAlighOle": "ຈັດວາງແນວນອນ", "SSE.Views.Toolbar.tipImgAlign": "ຈັດຕຳແໜ່ງວັດຖຸ", "SSE.Views.Toolbar.tipImgGroup": "ປະທານກຸ່ມ", "SSE.Views.Toolbar.tipIncDecimal": "ເພີ່ມທົດນິຍົມ", @@ -3438,6 +3447,7 @@ "SSE.Views.Toolbar.tipSynchronize": "ເອກະສານດັ່ງກ່າວໄດ້ຖືກປ່ຽນໂດຍຜູ້ໃຊ້ຄົນອື່ນ. ກະລຸນາກົດເພື່ອບັນທຶກການປ່ຽນແປງຂອງທ່ານ ແລະ ໂຫຼດໃໝ່.", "SSE.Views.Toolbar.tipTextOrientation": "ການຈັດວາງ", "SSE.Views.Toolbar.tipUndo": "ຍົກເລີກ", + "SSE.Views.Toolbar.tipVAlighOle": "ຈັດຕາມແນວນອນ", "SSE.Views.Toolbar.tipWrap": "ຕັດຂໍ້ຄວາມ", "SSE.Views.Toolbar.txtAccounting": "ການບັນຊີ", "SSE.Views.Toolbar.txtAdditional": "ເພີ່ມເຕີມ", diff --git a/apps/spreadsheeteditor/main/locale/ms.json b/apps/spreadsheeteditor/main/locale/ms.json index dd0ee3200..6fa2bc3e0 100644 --- a/apps/spreadsheeteditor/main/locale/ms.json +++ b/apps/spreadsheeteditor/main/locale/ms.json @@ -100,6 +100,7 @@ "Common.define.conditionalData.textUnique": "Unik", "Common.define.conditionalData.textValue": "Nilai ialah", "Common.define.conditionalData.textYesterday": "Semalam", + "Common.Translation.textMoreButton": "Selanjutnya", "Common.Translation.warnFileLocked": "Fail sedang diedit dalam apl yang lain. Anda boleh terus mengedit dan simpan ia sebagai Salinan.", "Common.Translation.warnFileLockedBtnEdit": "Cipta Salinan", "Common.Translation.warnFileLockedBtnView": "Buka untuk paparan", @@ -267,11 +268,14 @@ "Common.Views.ListSettingsDialog.textFromStorage": "Dari Simpanan", "Common.Views.ListSettingsDialog.textFromUrl": "Dari URL", "Common.Views.ListSettingsDialog.textNumbering": "Bernombor", + "Common.Views.ListSettingsDialog.textSelect": "Pilih daripada", "Common.Views.ListSettingsDialog.tipChange": "Ubah bulet", "Common.Views.ListSettingsDialog.txtBullet": "Bulet", "Common.Views.ListSettingsDialog.txtColor": "Warna", "Common.Views.ListSettingsDialog.txtImage": "Imej", + "Common.Views.ListSettingsDialog.txtImport": "Import", "Common.Views.ListSettingsDialog.txtNewBullet": "Bulet Baharu", + "Common.Views.ListSettingsDialog.txtNewImage": "Imej Baru", "Common.Views.ListSettingsDialog.txtNone": "Tiada", "Common.Views.ListSettingsDialog.txtOfText": "Teks %", "Common.Views.ListSettingsDialog.txtSize": "Saiz", @@ -775,7 +779,7 @@ "SSE.Controllers.Main.errorTokenExpire": "Dokumen token keselamatan telah tamat tempoh.
Sila hubungi pentadbir Pelayan Dokumen.", "SSE.Controllers.Main.errorUnexpectedGuid": "Ralat luaran.
GUID tidak dijangka. Sila hubungi sokongan sekiranya ralat masih berlaku.", "SSE.Controllers.Main.errorUpdateVersion": "Versi fail telah berubah. Halaman akan dimuatkan semula.", - "SSE.Controllers.Main.errorUpdateVersionOnDisconnect": "Sambungan internet telah dipulihkan, dan versi fail telah berubah.
Sebelum anda boleh terus bekerja, anda perlu memuat turun fail atau menyalin kandungannya untuk memastikan tiada ada yang hilang, dan kemudian muat semula halaman ini.", + "SSE.Controllers.Main.errorUpdateVersionOnDisconnect": "Sambungan telah dipulihkan, dan versi fail telah berubah.
Sebelum anda boleh terus bekerja, anda perlu memuat turun fail atau menyalin kandungannya untuk memastikan tiada ada yang hilang, dan kemudian muat semula halaman ini.", "SSE.Controllers.Main.errorUserDrop": "Fail tidak boleh diakses sekarang.", "SSE.Controllers.Main.errorUsersExceed": "Bilangan pengguna yang didizinkan mengikut pelan pembayaran telah lebih", "SSE.Controllers.Main.errorViewerDisconnect": "Sambungan telah hilang. Anda masih boleh melihat dokumen,
tetapi tidak dapat muat turun atau cetaknya sehingga sambungan dipulihkan dan halaman dimuat semua.", diff --git a/apps/spreadsheeteditor/main/locale/nl.json b/apps/spreadsheeteditor/main/locale/nl.json index 5a72578f8..82d3099be 100644 --- a/apps/spreadsheeteditor/main/locale/nl.json +++ b/apps/spreadsheeteditor/main/locale/nl.json @@ -100,6 +100,7 @@ "Common.define.conditionalData.textUnique": "Uniek", "Common.define.conditionalData.textValue": "Waarde is", "Common.define.conditionalData.textYesterday": "Gisteren", + "Common.Translation.textMoreButton": "Meer", "Common.Translation.warnFileLocked": "Het bestand wordt bewerkt in een andere app. U kunt doorgaan met bewerken en het als kopie opslaan.", "Common.Translation.warnFileLockedBtnEdit": "Maak een kopie", "Common.Translation.warnFileLockedBtnView": "Open voor lezen", @@ -232,6 +233,7 @@ "Common.Views.Header.tipSave": "Opslaan", "Common.Views.Header.tipUndo": "Ongedaan maken", "Common.Views.Header.tipUndock": "Ontkoppel in een apart venster", + "Common.Views.Header.tipUsers": "Toon gebruikers", "Common.Views.Header.tipViewSettings": "Weergave-instellingen", "Common.Views.Header.tipViewUsers": "Gebruikers weergeven en toegangsrechten voor documenten beheren", "Common.Views.Header.txtAccessRights": "Toegangsrechten wijzigen", @@ -383,6 +385,10 @@ "Common.Views.SearchPanel.textFormula": "Formule", "Common.Views.SearchPanel.textFormulas": "Formules", "Common.Views.SearchPanel.textItemEntireCell": "Gehele celinhoud", + "Common.Views.SearchPanel.textName": "Naam", + "Common.Views.SearchPanel.textValue": "Waarde", + "Common.Views.SearchPanel.textValues": "Waarden", + "Common.Views.SearchPanel.textWorkbook": "Werkmap", "Common.Views.SelectFileDlg.textLoading": "Laden", "Common.Views.SelectFileDlg.textTitle": "Gegevensbron selecteren", "Common.Views.SignDialog.textBold": "Vet", @@ -3377,6 +3383,7 @@ "SSE.Views.Toolbar.tipFontColor": "Tekenkleur", "SSE.Views.Toolbar.tipFontName": "Lettertype", "SSE.Views.Toolbar.tipFontSize": "Tekengrootte", + "SSE.Views.Toolbar.tipHAlighOle": "Horizontale uitlijning", "SSE.Views.Toolbar.tipImgAlign": "Objecten uitlijnen", "SSE.Views.Toolbar.tipImgGroup": "Objecten groeperen", "SSE.Views.Toolbar.tipIncDecimal": "Meer decimalen", @@ -3413,6 +3420,7 @@ "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", + "SSE.Views.Toolbar.tipVAlighOle": "Verticaal uitlijnen", "SSE.Views.Toolbar.tipWrap": "Terugloop", "SSE.Views.Toolbar.txtAccounting": "Boekhouding", "SSE.Views.Toolbar.txtAdditional": "Extra", diff --git a/apps/spreadsheeteditor/main/locale/pt-pt.json b/apps/spreadsheeteditor/main/locale/pt-pt.json index f56d3b5ac..ee19ef338 100644 --- a/apps/spreadsheeteditor/main/locale/pt-pt.json +++ b/apps/spreadsheeteditor/main/locale/pt-pt.json @@ -100,6 +100,7 @@ "Common.define.conditionalData.textUnique": "Único", "Common.define.conditionalData.textValue": "Valor é", "Common.define.conditionalData.textYesterday": "Ontem", + "Common.Translation.textMoreButton": "Mais", "Common.Translation.warnFileLocked": "O ficheiro está a ser editado por outra aplicação. Pode continuar a trabalhar mas terá que guardar uma cópia.", "Common.Translation.warnFileLockedBtnEdit": "Criar uma cópia", "Common.Translation.warnFileLockedBtnView": "Abrir para visualizar", diff --git a/apps/spreadsheeteditor/main/locale/pt.json b/apps/spreadsheeteditor/main/locale/pt.json index d97769e0d..97f910e93 100644 --- a/apps/spreadsheeteditor/main/locale/pt.json +++ b/apps/spreadsheeteditor/main/locale/pt.json @@ -100,6 +100,7 @@ "Common.define.conditionalData.textUnique": "Único", "Common.define.conditionalData.textValue": "O valor é", "Common.define.conditionalData.textYesterday": "Ontem", + "Common.Translation.textMoreButton": "Mais", "Common.Translation.warnFileLocked": "Documento está em uso por outra aplicação. Você pode continuar editando e salvá-lo como uma cópia.", "Common.Translation.warnFileLockedBtnEdit": "Criar uma cópia", "Common.Translation.warnFileLockedBtnView": "Aberto para visualização", @@ -267,11 +268,14 @@ "Common.Views.ListSettingsDialog.textFromStorage": "De armazenamento", "Common.Views.ListSettingsDialog.textFromUrl": "Da URL", "Common.Views.ListSettingsDialog.textNumbering": "Numerado", + "Common.Views.ListSettingsDialog.textSelect": "Selecione de", "Common.Views.ListSettingsDialog.tipChange": "Alterar marcador", "Common.Views.ListSettingsDialog.txtBullet": "Ponto", "Common.Views.ListSettingsDialog.txtColor": "Cor", "Common.Views.ListSettingsDialog.txtImage": "Imagem", + "Common.Views.ListSettingsDialog.txtImport": "Importação", "Common.Views.ListSettingsDialog.txtNewBullet": "Novo marcador", + "Common.Views.ListSettingsDialog.txtNewImage": "Nova imagem", "Common.Views.ListSettingsDialog.txtNone": "Nenhum", "Common.Views.ListSettingsDialog.txtOfText": "% do texto", "Common.Views.ListSettingsDialog.txtSize": "Tamanho", @@ -399,6 +403,7 @@ "Common.Views.SearchPanel.textCaseSensitive": "Diferenciar maiúsculas de minúsculas", "Common.Views.SearchPanel.textCell": "Célula", "Common.Views.SearchPanel.textCloseSearch": "Fechar pesquisa", + "Common.Views.SearchPanel.textContentChanged": "Documento alterado.", "Common.Views.SearchPanel.textFind": "Localizar", "Common.Views.SearchPanel.textFindAndReplace": "Localizar e substituir", "Common.Views.SearchPanel.textFormula": "Fórmula", @@ -413,6 +418,7 @@ "Common.Views.SearchPanel.textReplaceAll": "Substituir tudo", "Common.Views.SearchPanel.textReplaceWith": "Substituir com", "Common.Views.SearchPanel.textSearch": "Pesquisar", + "Common.Views.SearchPanel.textSearchAgain": "{0}Realize uma nova pesquisa{1} para obter resultados precisos.", "Common.Views.SearchPanel.textSearchHasStopped": "A pesquisa parou", "Common.Views.SearchPanel.textSearchOptions": "Opções de pesquisa", "Common.Views.SearchPanel.textSearchResults": "Resultados da pesquisa: {0}/{1}", @@ -3368,7 +3374,7 @@ "SSE.Views.Toolbar.capInsertText": "Caixa de texto", "SSE.Views.Toolbar.capInsertTextart": "Arte de texto", "SSE.Views.Toolbar.mniImageFromFile": "Imagem do arquivo", - "SSE.Views.Toolbar.mniImageFromStorage": "Imagem do armazenamento", + "SSE.Views.Toolbar.mniImageFromStorage": "Imagem de Armazenamento", "SSE.Views.Toolbar.mniImageFromUrl": "Imagem da URL", "SSE.Views.Toolbar.textAddPrintArea": "Adicionar à área de impressão", "SSE.Views.Toolbar.textAlignBottom": "Alinhar à parte inferior", diff --git a/apps/spreadsheeteditor/main/locale/ro.json b/apps/spreadsheeteditor/main/locale/ro.json index b28993227..79567a996 100644 --- a/apps/spreadsheeteditor/main/locale/ro.json +++ b/apps/spreadsheeteditor/main/locale/ro.json @@ -100,6 +100,7 @@ "Common.define.conditionalData.textUnique": "Unice", "Common.define.conditionalData.textValue": "Valoarea este", "Common.define.conditionalData.textYesterday": "Ieri", + "Common.Translation.textMoreButton": "Mai multe", "Common.Translation.warnFileLocked": "Fișierul este editat într-o altă aplicație. Puteți continua să editați și să-l salvați ca o copie.", "Common.Translation.warnFileLockedBtnEdit": "Crează o copie", "Common.Translation.warnFileLockedBtnView": "Deschide vizualizarea", diff --git a/apps/spreadsheeteditor/main/locale/ru.json b/apps/spreadsheeteditor/main/locale/ru.json index 029274ca8..9ac4918cc 100644 --- a/apps/spreadsheeteditor/main/locale/ru.json +++ b/apps/spreadsheeteditor/main/locale/ru.json @@ -100,6 +100,7 @@ "Common.define.conditionalData.textUnique": "Уникальное", "Common.define.conditionalData.textValue": "Значение равно", "Common.define.conditionalData.textYesterday": "Вчера", + "Common.Translation.textMoreButton": "Ещё", "Common.Translation.warnFileLocked": "Файл редактируется в другом приложении. Вы можете продолжить редактирование и сохранить его как копию.", "Common.Translation.warnFileLockedBtnEdit": "Создать копию", "Common.Translation.warnFileLockedBtnView": "Открыть на просмотр", diff --git a/apps/spreadsheeteditor/main/locale/sk.json b/apps/spreadsheeteditor/main/locale/sk.json index 1f7e13230..baf8c489e 100644 --- a/apps/spreadsheeteditor/main/locale/sk.json +++ b/apps/spreadsheeteditor/main/locale/sk.json @@ -100,6 +100,7 @@ "Common.define.conditionalData.textUnique": "Unikátne", "Common.define.conditionalData.textValue": "Hodnota je", "Common.define.conditionalData.textYesterday": "Včera", + "Common.Translation.textMoreButton": "Viac", "Common.Translation.warnFileLocked": "Súbor je upravovaný v inej aplikácií. Môžete pokračovať v úpravách a uložiť ho ako kópiu.", "Common.Translation.warnFileLockedBtnEdit": "Vytvoriť kópiu", "Common.Translation.warnFileLockedBtnView": "Otvoriť pre náhľad", diff --git a/apps/spreadsheeteditor/main/locale/sl.json b/apps/spreadsheeteditor/main/locale/sl.json index 021cd65a6..9581762f8 100644 --- a/apps/spreadsheeteditor/main/locale/sl.json +++ b/apps/spreadsheeteditor/main/locale/sl.json @@ -23,6 +23,7 @@ "Common.define.conditionalData.textError": "Napaka", "Common.define.conditionalData.textFormula": "Formula", "Common.define.conditionalData.textNotContains": "Ne vsebuje", + "Common.Translation.textMoreButton": "Več", "Common.Translation.warnFileLockedBtnEdit": "Ustvari kopijo", "Common.UI.ButtonColored.textNewColor": "Dodaj novo barvo po meri", "Common.UI.ComboBorderSize.txtNoBorders": "Ni mej", diff --git a/apps/spreadsheeteditor/main/locale/tr.json b/apps/spreadsheeteditor/main/locale/tr.json index cb321e59e..c0eb67624 100644 --- a/apps/spreadsheeteditor/main/locale/tr.json +++ b/apps/spreadsheeteditor/main/locale/tr.json @@ -100,6 +100,7 @@ "Common.define.conditionalData.textUnique": "Benzersiz", "Common.define.conditionalData.textValue": "Değer şudur", "Common.define.conditionalData.textYesterday": "Dün", + "Common.Translation.textMoreButton": "Daha fazla", "Common.Translation.warnFileLocked": "Dosya başka bir uygulamada düzenleniyor. Düzenlemeye devam edebilir ve kopya olarak kaydedebilirsiniz.", "Common.Translation.warnFileLockedBtnEdit": "Kopya oluştur", "Common.Translation.warnFileLockedBtnView": "Görüntülemek için aç", diff --git a/apps/spreadsheeteditor/main/locale/uk.json b/apps/spreadsheeteditor/main/locale/uk.json index d72d2138b..fec3745b2 100644 --- a/apps/spreadsheeteditor/main/locale/uk.json +++ b/apps/spreadsheeteditor/main/locale/uk.json @@ -100,6 +100,7 @@ "Common.define.conditionalData.textUnique": "Унікальне", "Common.define.conditionalData.textValue": "Значення дорівнює", "Common.define.conditionalData.textYesterday": "Вчора", + "Common.Translation.textMoreButton": "Більше", "Common.Translation.warnFileLocked": "Файл редагується в іншій програмі. Ви можете продовжити редагування та зберегти його як копію.", "Common.Translation.warnFileLockedBtnEdit": "Створити копію", "Common.Translation.warnFileLockedBtnView": "Відкрити на перегляд", diff --git a/apps/spreadsheeteditor/main/locale/zh-tw.json b/apps/spreadsheeteditor/main/locale/zh-tw.json index 76a2b0c83..2df55ded3 100644 --- a/apps/spreadsheeteditor/main/locale/zh-tw.json +++ b/apps/spreadsheeteditor/main/locale/zh-tw.json @@ -100,6 +100,7 @@ "Common.define.conditionalData.textUnique": "獨特", "Common.define.conditionalData.textValue": "此值是", "Common.define.conditionalData.textYesterday": "昨天", + "Common.Translation.textMoreButton": "更多", "Common.Translation.warnFileLocked": "該文件正在另一個應用程序中進行編輯。您可以繼續編輯並將其另存為副本。", "Common.Translation.warnFileLockedBtnEdit": "建立副本", "Common.Translation.warnFileLockedBtnView": "打開查看", diff --git a/apps/spreadsheeteditor/main/locale/zh.json b/apps/spreadsheeteditor/main/locale/zh.json index 887429d3e..f4bed810b 100644 --- a/apps/spreadsheeteditor/main/locale/zh.json +++ b/apps/spreadsheeteditor/main/locale/zh.json @@ -100,6 +100,7 @@ "Common.define.conditionalData.textUnique": "唯一", "Common.define.conditionalData.textValue": "值为", "Common.define.conditionalData.textYesterday": "昨天", + "Common.Translation.textMoreButton": "更多", "Common.Translation.warnFileLocked": "另一个应用程序正在编辑本文件。你可以继续编辑,并另存为副本。", "Common.Translation.warnFileLockedBtnEdit": "创建副本", "Common.Translation.warnFileLockedBtnView": "打开以查看", @@ -265,13 +266,16 @@ "Common.Views.ListSettingsDialog.textBulleted": "已添加项目符号", "Common.Views.ListSettingsDialog.textFromFile": "从文件导入", "Common.Views.ListSettingsDialog.textFromStorage": "来自存储设备", + "Common.Views.ListSettingsDialog.textFromUrl": "从URL", "Common.Views.ListSettingsDialog.textNumbering": "标号", + "Common.Views.ListSettingsDialog.textSelect": "选择", "Common.Views.ListSettingsDialog.tipChange": "修改项目点", "Common.Views.ListSettingsDialog.txtBullet": "项目符号", "Common.Views.ListSettingsDialog.txtColor": "颜色", "Common.Views.ListSettingsDialog.txtImage": "图片", "Common.Views.ListSettingsDialog.txtImport": "导入", "Common.Views.ListSettingsDialog.txtNewBullet": "添加一个新的项目点", + "Common.Views.ListSettingsDialog.txtNewImage": "新图片", "Common.Views.ListSettingsDialog.txtNone": "无", "Common.Views.ListSettingsDialog.txtOfText": "文本的%", "Common.Views.ListSettingsDialog.txtSize": "大小", diff --git a/apps/spreadsheeteditor/mobile/locale/hy.json b/apps/spreadsheeteditor/mobile/locale/hy.json index 82667bf02..0e3a01a33 100644 --- a/apps/spreadsheeteditor/mobile/locale/hy.json +++ b/apps/spreadsheeteditor/mobile/locale/hy.json @@ -320,7 +320,7 @@ "sCatDateAndTime": "Ամսաթիվ և ժամ", "sCatEngineering": "Ճարտարագիտական", "sCatFinancial": "Ֆինանսական", - "sCatInformation": "Տեղեկատվություն ", + "sCatInformation": "Տեղեկատվություն", "sCatLogical": "Տրամաբանական", "sCatLookupAndReference": "Որոնում և հղումներ", "sCatMathematic": "Մաթեմ. և եռանկյունաչափություն", diff --git a/apps/spreadsheeteditor/mobile/src/view/settings/SpreadsheetInfo.jsx b/apps/spreadsheeteditor/mobile/src/view/settings/SpreadsheetInfo.jsx index cb92430a4..464f8696e 100644 --- a/apps/spreadsheeteditor/mobile/src/view/settings/SpreadsheetInfo.jsx +++ b/apps/spreadsheeteditor/mobile/src/view/settings/SpreadsheetInfo.jsx @@ -16,7 +16,7 @@ const PageSpreadsheetInfo = (props) => { return ( - {dataDoc.title ? ( + {dataDoc?.title ? ( {_t.textSpreadsheetTitle} @@ -24,7 +24,7 @@ const PageSpreadsheetInfo = (props) => { ) : null} - {dataDoc.info.author || dataDoc.info.owner ? ( + {dataDoc?.info?.author || dataDoc?.info?.owner ? ( {_t.textOwner} @@ -32,7 +32,7 @@ const PageSpreadsheetInfo = (props) => { ) : null} - {dataDoc.info.folder ? ( + {dataDoc?.info?.folder ? ( {_t.textLocation} @@ -40,7 +40,7 @@ const PageSpreadsheetInfo = (props) => { ) : null} - {dataDoc.info.uploaded || dataDoc.info.created ? ( + {dataDoc?.info?.uploaded || dataDoc?.info?.created ? ( {_t.textUploaded}