diff --git a/apps/api/documents/api.js b/apps/api/documents/api.js index 9742962d3..06a640f24 100644 --- a/apps/api/documents/api.js +++ b/apps/api/documents/api.js @@ -105,6 +105,7 @@ customization: { logo: { image: url, + imageDark: url, // logo for dark theme imageEmbedded: url, // deprecated, use image instead url: http://... }, @@ -114,7 +115,8 @@ mail: 'support@gmail.com', www: 'www.superpuper.com', info: 'Some info', - logo: '' + logo: '', + logoDark: '', // logo for dark theme }, about: true, feedback: { @@ -419,7 +421,7 @@ if (typeof _config.document.fileType === 'string' && _config.document.fileType != '') { _config.document.fileType = _config.document.fileType.toLowerCase(); - var type = /^(?:(xls|xlsx|ods|csv|xlst|xlsy|gsheet|xlsm|xlt|xltm|xltx|fods|ots)|(pps|ppsx|ppt|pptx|odp|pptt|ppty|gslides|pot|potm|potx|ppsm|pptm|fodp|otp)|(doc|docx|doct|odt|gdoc|txt|rtf|pdf|mht|htm|html|epub|djvu|xps|oxps|docm|dot|dotm|dotx|fodt|ott|fb2|xml|oform))$/ + var type = /^(?:(xls|xlsx|ods|csv|xlst|xlsy|gsheet|xlsm|xlt|xltm|xltx|fods|ots)|(pps|ppsx|ppt|pptx|odp|pptt|ppty|gslides|pot|potm|potx|ppsm|pptm|fodp|otp)|(doc|docx|doct|odt|gdoc|txt|rtf|pdf|mht|htm|html|epub|djvu|xps|oxps|docm|dot|dotm|dotx|fodt|ott|fb2|xml|oform|docxf))$/ .exec(_config.document.fileType); if (!type) { window.alert("The \"document.fileType\" parameter for the config object is invalid. Please correct it."); @@ -935,8 +937,10 @@ } else if ( (typeof(config.editorConfig.customization) == 'object') && config.editorConfig.customization.logo) { if (config.type=='embedded' && (config.editorConfig.customization.logo.image || config.editorConfig.customization.logo.imageEmbedded)) params += "&headerlogo=" + encodeURIComponent(config.editorConfig.customization.logo.image || config.editorConfig.customization.logo.imageEmbedded); - else if (config.type!='embedded' && config.editorConfig.customization.logo.image) - params += "&headerlogo=" + encodeURIComponent(config.editorConfig.customization.logo.image); + else if (config.type!='embedded' && (config.editorConfig.customization.logo.image || config.editorConfig.customization.logo.imageDark)) { + config.editorConfig.customization.logo.image && (params += "&headerlogo=" + encodeURIComponent(config.editorConfig.customization.logo.image)); + config.editorConfig.customization.logo.imageDark && (params += "&headerlogodark=" + encodeURIComponent(config.editorConfig.customization.logo.imageDark)); + } } } diff --git a/apps/common/main/lib/component/HintManager.js b/apps/common/main/lib/component/HintManager.js index c5d774123..df47ad4a7 100644 --- a/apps/common/main/lib/component/HintManager.js +++ b/apps/common/main/lib/component/HintManager.js @@ -463,7 +463,9 @@ Common.UI.HintManager = new(function() { } } } - if (curr.prop('id') === 'btn-goback' || curr.closest('.btn-slot').prop('id') === 'slot-btn-options' || curr.prop('id') === 'left-btn-thumbs' || curr.hasClass('scroll')) { + if (curr.prop('id') === 'btn-goback' || curr.closest('.btn-slot').prop('id') === 'slot-btn-options' || + curr.closest('.btn-slot').prop('id') === 'slot-btn-mode' || curr.prop('id') === 'btn-favorite' || curr.parent().prop('id') === 'tlb-box-users' || + curr.prop('id') === 'left-btn-thumbs' || curr.hasClass('scroll')) { _resetToDefault(); return; } diff --git a/apps/common/main/lib/component/RadioBox.js b/apps/common/main/lib/component/RadioBox.js index 040d88af3..c523d0f96 100644 --- a/apps/common/main/lib/component/RadioBox.js +++ b/apps/common/main/lib/component/RadioBox.js @@ -71,8 +71,13 @@ define([ disabled : false, rendered : false, - template : _.template(''), + template : _.template('
' + + '' + + '' + + '' + + '' + + '' + + '
'), initialize : function(options) { Common.UI.BaseView.prototype.initialize.call(this, options); @@ -96,7 +101,6 @@ define([ this.setCaption(this.options.labelText); // handle events - this.$radio.on('click', _.bind(this.onItemCheck, this)); }, render: function () { @@ -111,9 +115,15 @@ define([ })); this.$radio = el.find('input[type=radio]'); - this.$label = el.find('label.radiobox'); + this.$label = el.find('div.radiobox'); this.$span = this.$label.find('span'); - this.$label.on('keydown', this.onKeyDown.bind(this)); + this.$label.on({ + 'keydown': this.onKeyDown.bind(this), + 'click': function(e){ + if ( !this.disabled ) + this.setValue(true); + }.bind(this),}); + this.rendered = true; return this; diff --git a/apps/common/main/lib/component/Slider.js b/apps/common/main/lib/component/Slider.js index b146eb9e4..9a79c6884 100644 --- a/apps/common/main/lib/component/Slider.js +++ b/apps/common/main/lib/component/Slider.js @@ -387,10 +387,10 @@ define([ pos = Math.max(0, Math.min(100, position)), value = pos/me.delta + me.minValue; - if (me.thumbs.length < 3) - me.isRemoveThumb = false; + if (me.thumbs.length < 3) + me.isRemoveThumb = false; - if (me.isRemoveThumb) { + if (me.isRemoveThumb) { me.trigger('removethumb', me, _.findIndex(me.thumbs, {index: index})); me.trigger('change', me, value, lastValue); me.trigger('changecomplete', me, value, lastValue); diff --git a/apps/common/main/lib/controller/Themes.js b/apps/common/main/lib/controller/Themes.js index 39a854755..a1b638f30 100644 --- a/apps/common/main/lib/controller/Themes.js +++ b/apps/common/main/lib/controller/Themes.js @@ -344,15 +344,15 @@ define([ document.body.className = document.body.className.replace(/theme-[\w-]+\s?/gi, '').trim(); document.body.classList.add(id, 'theme-type-' + themes_map[id].type); - if ( this.api.asc_setContentDarkMode ) - if ( themes_map[id].type == 'light' ) { - this.api.asc_setContentDarkMode(false); - } else { - this.api.asc_setContentDarkMode(this.isContentThemeDark()); - Common.NotificationCenter.trigger('contenttheme:dark', this.isContentThemeDark()); - } - if ( this.api ) { + if ( this.api.asc_setContentDarkMode ) + if ( themes_map[id].type == 'light' ) { + this.api.asc_setContentDarkMode(false); + } else { + this.api.asc_setContentDarkMode(this.isContentThemeDark()); + Common.NotificationCenter.trigger('contenttheme:dark', this.isContentThemeDark()); + } + var obj = get_current_theme_colors(name_colors); obj.type = themes_map[id].type; obj.name = id; diff --git a/apps/common/main/lib/util/htmlutils.js b/apps/common/main/lib/util/htmlutils.js index dfc103547..b7b9b730a 100644 --- a/apps/common/main/lib/util/htmlutils.js +++ b/apps/common/main/lib/util/htmlutils.js @@ -52,14 +52,19 @@ var checkLocalStorage = (function () { } })(); -if ( window.desktop && window.desktop.theme ) { - if ( window.desktop.theme.id ) { - // params.uitheme = undefined; - localStorage.setItem("ui-theme-id", window.desktop.theme.id); - } else - if ( window.desktop.theme.type ) { - if ( window.desktop.theme.type == 'dark' ) params.uitheme == 'default-dark'; else - if ( window.desktop.theme.type == 'light' ) params.uitheme == 'default-light'; +if ( window.desktop && !!window.RendererProcessVariable ) { + var theme = window.RendererProcessVariable.theme + + if ( theme ) { + if ( !theme.id && !!theme.type ) { + if ( theme.type == 'dark' ) theme.id = 'theme-dark'; else + if ( theme.type == 'light' ) theme.id = 'theme-classic-light'; + } + + if ( theme.id ) { + // params.uitheme = undefined; + localStorage.setItem("ui-theme-id", theme.id); + } } } diff --git a/apps/common/main/lib/view/About.js b/apps/common/main/lib/view/About.js index 5a5185e19..4a464abf2 100644 --- a/apps/common/main/lib/view/About.js +++ b/apps/common/main/lib/view/About.js @@ -144,7 +144,7 @@ define([ '', '', '', - '', + '<% print(publisherurl.replace(/https?:\\/{2}/, "").replace(/\\/$/,"")) %>', '', '', '' @@ -195,7 +195,8 @@ define([ if ( !this.rendered ) { this.licData = data || true; } else { - if (data && typeof data == 'object' && typeof(data.customer)=='object') { + if (data && typeof data == 'object' && data.customer && typeof(data.customer)=='object') { + this.licData = data; var customer = data.customer; $('#id-about-licensor-logo').addClass('hidden'); @@ -229,9 +230,11 @@ define([ this.lblCompanyLic.text(value) : this.lblCompanyLic.parents('tr').addClass('hidden'); - (value = customer.logo) && value.length ? + value = Common.UI.Themes.isDarkTheme() ? (customer.logoDark || customer.logo) : (customer.logo || customer.logoDark); + value.length ? this.divCompanyLogo.html('') : this.divCompanyLogo.parents('tr').addClass('hidden'); + value.length && Common.NotificationCenter.on('uitheme:changed', this.changeLogo.bind(this)); } else { this.cntLicenseeInfo.addClass('hidden'); this.cntLicensorInfo.addClass('margin-bottom'); @@ -239,6 +242,15 @@ define([ } }, + changeLogo: function () { + if (!this.licData) return; + + var customer = this.licData.customer; + if ( customer.logo && customer.logoDark && customer.logo !== customer.logoDark) { + this.divCompanyLogo.find('img').attr('src', Common.UI.Themes.isDarkTheme() ? (customer.logoDark || customer.logo) : (customer.logo || customer.logoDark)); + } + }, + show: function () { if ( !this.rendered ) this.render(); diff --git a/apps/common/main/lib/view/Header.js b/apps/common/main/lib/view/Header.js index 780ed9d52..47b26e003 100644 --- a/apps/common/main/lib/view/Header.js +++ b/apps/common/main/lib/view/Header.js @@ -465,6 +465,7 @@ define([ }); Common.NotificationCenter.on('collaboration:sharingdeny', onLostEditRights); Common.NotificationCenter.on('contenttheme:dark', onContentThemeChangedToDark.bind(this)); + Common.NotificationCenter.on('uitheme:changed', this.changeLogo.bind(this)); }, render: function (el, role) { @@ -476,14 +477,14 @@ define([ getPanel: function (role, config) { var me = this; - function createTitleButton(iconid, slot, disabled) { + function createTitleButton(iconid, slot, disabled, hintDirection, hintOffset) { return (new Common.UI.Button({ cls: 'btn-header', iconCls: iconid, disabled: disabled === true, dataHint:'0', - dataHintDirection: 'left', - dataHintOffset: '10, 10' + dataHintDirection: hintDirection ? hintDirection : 'left', + dataHintOffset: hintOffset ? hintOffset : '10, 10' })).render(slot); } @@ -491,8 +492,9 @@ define([ $html = $(templateLeftBox); this.logo = $html.find('#header-logo'); - if (this.branding && this.branding.logo && this.branding.logo.image && this.logo) { - this.logo.html(''); + if (this.branding && this.branding.logo && (this.branding.logo.image || this.branding.logo.imageDark) && this.logo) { + var image = Common.UI.Themes.isDarkTheme() ? (this.branding.logo.imageDark || this.branding.logo.image) : (this.branding.logo.image || this.branding.logo.imageDark); + this.logo.html(''); this.logo.css({'background-image': 'none', width: 'auto'}); (this.branding.logo.url || this.branding.logo.url===undefined) && this.logo.addClass('link'); } @@ -534,19 +536,19 @@ define([ if ( !config.isEdit ) { if ( (config.canDownload || config.canDownloadOrigin) && !config.isOffline ) - this.btnDownload = createTitleButton('toolbar__icon icon--inverse btn-download', $html.findById('#slot-hbtn-download')); + this.btnDownload = createTitleButton('toolbar__icon icon--inverse btn-download', $html.findById('#slot-hbtn-download'), undefined, 'bottom', 'big'); if ( config.canPrint ) - this.btnPrint = createTitleButton('toolbar__icon icon--inverse btn-print', $html.findById('#slot-hbtn-print')); + this.btnPrint = createTitleButton('toolbar__icon icon--inverse btn-print', $html.findById('#slot-hbtn-print'), undefined, 'bottom', 'big'); if ( config.canEdit && config.canRequestEditRights ) - this.btnEdit = createTitleButton('toolbar__icon icon--inverse btn-edit', $html.findById('#slot-hbtn-edit')); + this.btnEdit = createTitleButton('toolbar__icon icon--inverse btn-edit', $html.findById('#slot-hbtn-edit'), undefined, 'bottom', 'big'); } me.btnOptions.render($html.find('#slot-btn-options')); if (!config.isEdit || config.customization && !!config.customization.compactHeader) { if (config.user.guest && config.canRenameAnonymous) - me.btnUserName = createTitleButton('toolbar__icon icon--inverse btn-user', $html.findById('#slot-btn-user-name')); + me.btnUserName = createTitleButton('toolbar__icon icon--inverse btn-user', $html.findById('#slot-btn-user-name'), undefined, 'bottom', 'big'); else { me.elUserName = $html.find('.btn-current-user'); me.elUserName.removeClass('hidden'); @@ -562,8 +564,10 @@ define([ if ( !!window.DE ) { var mode_cls = Common.UI.Themes.isContentThemeDark() ? 'btn-mode-light' : 'btn-mode-dark'; - me.btnContentMode = createTitleButton('toolbar__icon icon--inverse ' + mode_cls, $html.findById('#slot-btn-mode')); - me.btnContentMode.setVisible(Common.UI.Themes.isDarkTheme()); + me.btnContentMode = createTitleButton('toolbar__icon icon--inverse ' + mode_cls, $html.findById('#slot-btn-mode'), undefined, 'bottom', 'big'); + + var document = window.DE.getController('Main').document; + me.btnContentMode.setVisible(Common.UI.Themes.isDarkTheme() && !/^pdf|djvu|xps|oxps$/.test(document.fileType)); } return $html; @@ -615,10 +619,11 @@ define([ this.branding = value; if ( value ) { - if ( value.logo && value.logo.image ) { + if ( value.logo &&(value.logo.image || value.logo.imageDark)) { + var image = Common.UI.Themes.isDarkTheme() ? (value.logo.imageDark || value.logo.image) : (value.logo.image || value.logo.imageDark); element = $('#header-logo'); if (element) { - element.html(''); + element.html(''); element.css({'background-image': 'none', width: 'auto'}); (value.logo.url || value.logo.url===undefined) && element.addClass('link'); } @@ -626,6 +631,14 @@ define([ } }, + changeLogo: function () { + var value = this.branding; + if ( value && value.logo && value.logo.image && value.logo.imageDark && (value.logo.image !== value.logo.imageDark)) { // change logo when image and imageDark are different + var image = Common.UI.Themes.isDarkTheme() ? (value.logo.imageDark || value.logo.image) : (value.logo.image || value.logo.imageDark); + $('#header-logo img').attr('src', image); + } + }, + setDocumentCaption: function(value) { !value && (value = ''); @@ -724,7 +737,7 @@ define([ this.btnUserName.updateHint(name); } else if (this.elUserName) { this.elUserName.tooltip({ - title: name, + title: Common.Utils.String.htmlEncode(name), placement: 'cursor', html: true }); @@ -746,7 +759,7 @@ define([ if ( alias == 'users' ) { if ( lock ) $btnUsers.addClass('disabled').attr('disabled', 'disabled'); else - $btnUsers.removeClass('disabled').attr('disabled', ''); + $btnUsers.removeClass('disabled').removeAttr('disabled'); } else if ( alias == 'rename-user' ) { if (me.labelUserName) { if ( lock ) { diff --git a/apps/common/main/lib/view/Plugins.js b/apps/common/main/lib/view/Plugins.js index 6e05ee478..449bf4be3 100644 --- a/apps/common/main/lib/view/Plugins.js +++ b/apps/common/main/lib/view/Plugins.js @@ -62,7 +62,7 @@ define([ ' ) - } + } } const SearchViewWithObserver = observer(SearchView); diff --git a/apps/common/mobile/resources/less/common-material.less b/apps/common/mobile/resources/less/common-material.less index c90e681e7..41575f544 100644 --- a/apps/common/mobile/resources/less/common-material.less +++ b/apps/common/mobile/resources/less/common-material.less @@ -73,13 +73,8 @@ margin-bottom: 0; margin-top: 8px; } - .add-image { - ul:before, :after{ - display: none; - } - } - .inputs-list { - ul:after { + .add-image, .inputs-list { + ul:after, :before{ display: none; } } diff --git a/apps/common/mobile/resources/less/common.less b/apps/common/mobile/resources/less/common.less index 5323a4238..82f9ecfcc 100644 --- a/apps/common/mobile/resources/less/common.less +++ b/apps/common/mobile/resources/less/common.less @@ -535,10 +535,10 @@ padding-top: 5px; li.item-theme { border: 0.5px solid #c8c7cc; - padding: 2px; + padding: 1px; background-repeat: no-repeat; - width: 106px; - height: 56px; + width: 108px; + height: 52px; margin-bottom: 10px; background-position: center; .item-content { @@ -878,7 +878,7 @@ input[type="number"]::-webkit-inner-spin-button { } .functions-list { - height: 175px; + max-height: 175px; width: 360px; overflow-y: auto; overflow-x: hidden; diff --git a/apps/common/mobile/resources/less/search.less b/apps/common/mobile/resources/less/search.less index f322929d1..076b7d4a7 100644 --- a/apps/common/mobile/resources/less/search.less +++ b/apps/common/mobile/resources/less/search.less @@ -43,6 +43,10 @@ height: auto; display: block; line-height: normal; + + &:before{ + display: none; + } } } diff --git a/apps/documenteditor/embed/js/ApplicationController.js b/apps/documenteditor/embed/js/ApplicationController.js index 2de63310e..ef6c3e1c0 100644 --- a/apps/documenteditor/embed/js/ApplicationController.js +++ b/apps/documenteditor/embed/js/ApplicationController.js @@ -597,27 +597,12 @@ DE.ApplicationController = new(function(){ } function onEditorPermissions(params) { - if ( (params.asc_getLicenseType() === Asc.c_oLicenseResult.Success) && (typeof config.customization == 'object') && - config.customization && config.customization.logo ) { - - var logo = $('#header-logo'); - if (config.customization.logo.image || config.customization.logo.imageEmbedded) { - logo.html(''); - logo.css({'background-image': 'none', width: 'auto', height: 'auto'}); - - config.customization.logo.imageEmbedded && console.log("Obsolete: The 'imageEmbedded' parameter of the 'customization.logo' section is deprecated. Please use 'image' parameter instead."); - } - - if (config.customization.logo.url) { - logo.attr('href', config.customization.logo.url); - } else if (config.customization.logo.url!==undefined) { - logo.removeAttr('href');logo.removeAttr('target'); - } - } var licType = params.asc_getLicenseType(); appOptions.canLicense = (licType === Asc.c_oLicenseResult.Success || licType === Asc.c_oLicenseResult.SuccessLimit); appOptions.canFillForms = appOptions.canLicense && (permissions.fillForms===true) && (config.mode !== 'view'); appOptions.canSubmitForms = appOptions.canLicense && (typeof (config.customization) == 'object') && !!config.customization.submitForm; + appOptions.canBranding = params.asc_getCustomization(); + appOptions.canBranding && setBranding(config.customization); api.asc_setViewMode(!appOptions.canFillForms); @@ -823,6 +808,24 @@ DE.ApplicationController = new(function(){ function onBeforeUnload () { common.localStorage.save(); } + + function setBranding(value) { + if ( value && value.logo) { + var logo = $('#header-logo'); + if (value.logo.image || value.logo.imageEmbedded) { + logo.html(''); + logo.css({'background-image': 'none', width: 'auto', height: 'auto'}); + + value.logo.imageEmbedded && console.log("Obsolete: The 'imageEmbedded' parameter of the 'customization.logo' section is deprecated. Please use 'image' parameter instead."); + } + + if (value.logo.url) { + logo.attr('href', value.logo.url); + } else if (value.logo.url!==undefined) { + logo.removeAttr('href');logo.removeAttr('target'); + } + } + } // Helpers // ------------------------- diff --git a/apps/documenteditor/forms/app/controller/ApplicationController.js b/apps/documenteditor/forms/app/controller/ApplicationController.js index 06aa0aad6..92a54dfd8 100644 --- a/apps/documenteditor/forms/app/controller/ApplicationController.js +++ b/apps/documenteditor/forms/app/controller/ApplicationController.js @@ -220,6 +220,10 @@ define([ config.msg = this.errorForceSave; break; + case Asc.c_oAscError.ID.LoadingFontError: + config.msg = this.errorLoadingFont; + break; + default: config.msg = (typeof id == 'string') ? id : this.errorDefaultMessage.replace('%1', id); break; @@ -431,22 +435,6 @@ define([ if ( this.onServerVersion(params.asc_getBuildVersion())) return; - if ( (licType === Asc.c_oLicenseResult.Success) && (typeof this.appOptions.customization == 'object') && - this.appOptions.customization && this.appOptions.customization.logo ) { - - var logo = $('#header-logo'); - if (this.appOptions.customization.logo.image) { - logo.html(''); - logo.css({'background-image': 'none', width: 'auto', height: 'auto'}); - } - - if (this.appOptions.customization.logo.url) { - logo.attr('href', this.appOptions.customization.logo.url); - } else if (this.appOptions.customization.logo.url!==undefined) { - logo.removeAttr('href');logo.removeAttr('target'); - } - } - this.permissions.review = (this.permissions.review === undefined) ? (this.permissions.edit !== false) : this.permissions.review; if (params.asc_getRights() !== Asc.c_oRights.Edit) this.permissions.edit = this.permissions.review = false; @@ -458,6 +446,9 @@ define([ this.appOptions.canFillForms = this.appOptions.canLicense && (this.permissions.fillForms===true) && (this.editorConfig.mode !== 'view'); this.api.asc_setViewMode(!this.appOptions.canFillForms); + this.appOptions.canBranding = params.asc_getCustomization(); + this.appOptions.canBranding && this.setBranding(this.appOptions.customization); + this.appOptions.canDownload = this.permissions.download !== false; this.appOptions.canPrint = (this.permissions.print !== false); @@ -580,6 +571,23 @@ define([ } }, + setBranding: function (value) { + if ( value && value.logo) { + var logo = $('#header-logo'); + if (value.logo.image || value.logo.imageDark) { + var image = Common.UI.Themes.isDarkTheme() ? (value.logo.imageDark || value.logo.image) : (value.logo.image || value.logo.imageDark); + logo.html(''); + logo.css({'background-image': 'none', width: 'auto', height: 'auto'}); + } + + if (value.logo.url) { + logo.attr('href', value.logo.url); + } else if (value.logo.url!==undefined) { + logo.removeAttr('href');logo.removeAttr('target'); + } + } + }, + onLongActionBegin: function(type, id) { var action = {id: id, type: type}; this.stackLongActions.push(action); @@ -1072,6 +1080,13 @@ define([ _.each(this.view.mnuThemes.items, function(item){ item.setChecked(current===item.value, true); }); + if (this.appOptions.canBranding) { + var value = this.appOptions.customization; + if ( value && value.logo && (value.logo.image || value.logo.imageDark) && (value.logo.image !== value.logo.imageDark)) { + var image = Common.UI.Themes.isDarkTheme() ? (value.logo.imageDark || value.logo.image) : (value.logo.image || value.logo.imageDark); + $('#header-logo img').attr('src', image); + } + } }, createDelayedElements: function() { @@ -1322,7 +1337,8 @@ define([ warnNoLicenseUsers: "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", textBuyNow: 'Visit website', textNoLicenseTitle: 'License limit reached', - textContactUs: 'Contact sales' + textContactUs: 'Contact sales', + errorLoadingFont: 'Fonts are not loaded.
Please contact your Document Server administrator.' }, DE.Controllers.ApplicationController)); }); diff --git a/apps/documenteditor/forms/index.html b/apps/documenteditor/forms/index.html index 4fb826105..af57622d0 100644 --- a/apps/documenteditor/forms/index.html +++ b/apps/documenteditor/forms/index.html @@ -189,7 +189,8 @@ var params = getUrlParams(), lang = (params["lang"] || 'en').split(/[\-\_]/)[0], - logo = params["headerlogo"] ? encodeUrlParam(params["headerlogo"]) : null; + logo = params["headerlogo"] ? encodeUrlParam(params["headerlogo"]) : null, + logoDark = params["headerlogodark"] ? encodeUrlParam(params["headerlogodark"]) : null; window.frameEditorId = params["frameEditorId"]; window.parentOrigin = params["parentOrigin"]; @@ -201,12 +202,12 @@ document.body.removeChild(document.getElementById('loading-mask')); } else { var elem = document.querySelector('.loading-logo'); - if (elem && logo) { + if (elem && (logo || logoDark)) { elem.style.backgroundImage= 'none'; elem.style.width = 'auto'; elem.style.height = 'auto'; var img = document.querySelector('.loading-logo img'); - img && img.setAttribute('src', logo); + img && img.setAttribute('src', /theme-dark/.test(document.body.className) ? logoDark || logo : logo || logoDark); img.style.opacity = 1; } } diff --git a/apps/documenteditor/forms/index.html.deploy b/apps/documenteditor/forms/index.html.deploy index ddfc2d652..1c6eb17af 100644 --- a/apps/documenteditor/forms/index.html.deploy +++ b/apps/documenteditor/forms/index.html.deploy @@ -170,17 +170,18 @@ var params = getUrlParams(), lang = (params["lang"] || 'en').split(/[\-\_]/)[0], - logo = params["headerlogo"] ? encodeUrlParam(params["headerlogo"]) : null; + logo = params["headerlogo"] ? encodeUrlParam(params["headerlogo"]) : null, + logoDark = params["headerlogodark"] ? encodeUrlParam(params["headerlogodark"]) : null; window.frameEditorId = params["frameEditorId"]; window.parentOrigin = params["parentOrigin"]; var elem = document.querySelector('.loading-logo'); - if (elem && logo) { + if (elem && (logo || logoDark)) { elem.style.backgroundImage= 'none'; elem.style.width = 'auto'; elem.style.height = 'auto'; var img = document.querySelector('.loading-logo img'); - img && img.setAttribute('src', logo); + img && img.setAttribute('src', /theme-dark/.test(document.body.className) ? logoDark || logo : logo || logoDark); img.style.opacity = 1; } diff --git a/apps/documenteditor/forms/locale/ca.json b/apps/documenteditor/forms/locale/ca.json index 319f01d6f..19132bc82 100644 --- a/apps/documenteditor/forms/locale/ca.json +++ b/apps/documenteditor/forms/locale/ca.json @@ -1,44 +1,63 @@ { - "common.view.modals.txtCopy": "Copiat al porta-retalls", - "common.view.modals.txtEmbed": "Incrustar", + "common.view.modals.txtCopy": "Copia al porta-retalls", + "common.view.modals.txtEmbed": "Incrusta", "common.view.modals.txtHeight": "Alçada", - "common.view.modals.txtShare": "Compartir Enllaç", + "common.view.modals.txtShare": "Comparteix l'enllaç", "common.view.modals.txtWidth": "Amplada", - "DE.ApplicationController.convertationErrorText": "Conversió Fallida", - "DE.ApplicationController.convertationTimeoutText": "Conversió fora de temps", + "DE.ApplicationController.convertationErrorText": "No s'ha pogut convertir", + "DE.ApplicationController.convertationTimeoutText": "S'ha superat el temps de conversió.", "DE.ApplicationController.criticalErrorTitle": "Error", - "DE.ApplicationController.downloadErrorText": "Descàrrega fallida.", - "DE.ApplicationController.downloadTextText": "Descarregant document...", - "DE.ApplicationController.errorAccessDeny": "Intenteu realitzar una acció per la qual no teniu drets.
Poseu-vos en contacte amb l'administrador del servidor de documents.", + "DE.ApplicationController.downloadErrorText": "S'ha produït un error en la baixada", + "DE.ApplicationController.downloadTextText": "S'està baixant el document...", + "DE.ApplicationController.errorAccessDeny": "No teniu permisos per realitzar aquesta acció.
Contacteu amb el vostre administrador del servidor de documents.", "DE.ApplicationController.errorDefaultMessage": "Codi d'error:%1", - "DE.ApplicationController.errorEditingDownloadas": "S'ha produït un error durant el treball amb el document.
Utilitzeu l'opció \"Desar com a ...\" per desar la còpia de seguretat del fitxer al disc dur del vostre ordinador.", + "DE.ApplicationController.errorEditingDownloadas": "S'ha produït un error mentre es treballava amb el document.
Utilitzeu l'opció \"Baixa-ho com a ...\" per desar la còpia de seguretat del fitxer al disc dur del vostre ordinador.", "DE.ApplicationController.errorFilePassProtect": "El fitxer està protegit amb contrasenya i no es pot obrir.", - "DE.ApplicationController.errorFileSizeExceed": "La mida del fitxer excedeix la limitació establerta per al vostre servidor. Podeu contactar amb l'administrador del Document Server per obtenir més detalls.", - "DE.ApplicationController.errorSubmit": "Error en enviar", - "DE.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.ApplicationController.errorUserDrop": "Ara no es pot accedir al fitxer.", - "DE.ApplicationController.notcriticalErrorTitle": "Avis", + "DE.ApplicationController.errorFileSizeExceed": "La mida del fitxer supera el límit establert pel vostre servidor. Contacteu amb el vostre administrador del servidor de documents per obtenir més informació.", + "DE.ApplicationController.errorForceSave": "S'ha produït un error en desar el fitxer. Utilitzeu l'opció \"Baixa-ho com a\" per desar el fitxer al disc dur de l’ordinador o torneu-ho a provar més endavant.", + "DE.ApplicationController.errorLoadingFont": "No s'han carregat els tipus de lletra.
Contacteu amb l'administrador del Servidor de Documents.", + "DE.ApplicationController.errorServerVersion": "S'ha actualitzat la versió de l'editor. Es tornarà a carregar la pàgina per aplicar els canvis.", + "DE.ApplicationController.errorSubmit": "No s'ha pogut enviar.", + "DE.ApplicationController.errorUpdateVersion": "S'ha canviat la versió del fitxer. La pàgina es tornarà a carregar.", + "DE.ApplicationController.errorUpdateVersionOnDisconnect": "S'ha restaurat la connexió a internet i la versió del fitxer ha canviat.
Abans de continuar treballant, heu de baixar el fitxer o copiar-ne el contingut per assegurar-vos que no es perdi res i, després, torneu a carregar aquesta pàgina.", + "DE.ApplicationController.errorUserDrop": "Ara mateix no es pot accedir al fitxer.", + "DE.ApplicationController.notcriticalErrorTitle": "Advertiment", "DE.ApplicationController.scriptLoadError": "La connexió és massa lenta, alguns dels components no s’han pogut carregar. Torneu a carregar la pàgina.", "DE.ApplicationController.textAnonymous": "Anònim", - "DE.ApplicationController.textClear": "Esborrar tots els camps", + "DE.ApplicationController.textBuyNow": "Visiteu el lloc web", + "DE.ApplicationController.textCloseTip": "Feu clic per tancar el suggeriment.", + "DE.ApplicationController.textContactUs": "Contacteu amb vendes", "DE.ApplicationController.textGotIt": "Ho tinc", "DE.ApplicationController.textGuest": "Convidat", - "DE.ApplicationController.textLoadingDocument": "Carregant document", - "DE.ApplicationController.textNext": "Següent camp", + "DE.ApplicationController.textLoadingDocument": "S'està carregant el document", + "DE.ApplicationController.textNoLicenseTitle": "S'ha assolit el límit de llicència", "DE.ApplicationController.textOf": "de", - "DE.ApplicationController.textRequired": "Ompli tots els camps requerits per enviar el formulari.", - "DE.ApplicationController.textSubmit": "Enviar", - "DE.ApplicationController.textSubmited": "Formulari enviat amb èxit
Faci clic per a tancar el consell", - "DE.ApplicationController.txtClose": "Tancar", - "DE.ApplicationController.unknownErrorText": "Error Desconegut.", + "DE.ApplicationController.textRequired": "Emplena tots els camps necessaris per enviar el formulari.", + "DE.ApplicationController.textSubmited": "El formulari s'ha enviat amb èxit
Cliqueu per tancar el consell", + "DE.ApplicationController.titleServerVersion": "S'ha actualitzat l'editor", + "DE.ApplicationController.titleUpdateVersion": "S'ha canviat la versió", + "DE.ApplicationController.txtClose": "Tanca", + "DE.ApplicationController.txtEmpty": "(Buit)", + "DE.ApplicationController.txtPressLink": "Prem CTRL i clica a l'enllaç", + "DE.ApplicationController.unknownErrorText": "Error desconegut.", "DE.ApplicationController.unsupportedBrowserErrorText": "El vostre navegador no és compatible.", - "DE.ApplicationController.waitText": "Si us plau, esperi...", - "DE.ApplicationView.txtDownload": "\nDescarregar", - "DE.ApplicationView.txtDownloadDocx": "Desar com a .docx", - "DE.ApplicationView.txtDownloadPdf": "Desar com a pdf", - "DE.ApplicationView.txtEmbed": "Incrustar", - "DE.ApplicationView.txtFileLocation": "Obrir ubicació del fitxer", - "DE.ApplicationView.txtFullScreen": "Pantalla Completa", - "DE.ApplicationView.txtPrint": "Imprimir", - "DE.ApplicationView.txtShare": "Compartir" + "DE.ApplicationController.waitText": "Espereu...", + "DE.ApplicationController.warnLicenseExceeded": "Heu arribat al límit de connexions simultànies amb %1 editors. Aquest document només s'obrirà en mode lectura.
Contacteu amb el vostre administrador per obtenir més informació.", + "DE.ApplicationController.warnLicenseLimitedNoAccess": "La llicència ha caducat.
No teniu accés a la funció d'edició de documents.
Contacteu amb el vostre administrador.", + "DE.ApplicationController.warnLicenseLimitedRenewed": "Cal renovar la llicència.
Teniu accés limitat a la funció d'edició de documents.
Contacteu amb el vostre administrador per obtenir accés complet", + "DE.ApplicationController.warnLicenseUsersExceeded": "Heu arribat al límit d'usuaris per a %1 editors. Contacteu amb el vostre administrador per a més informació.", + "DE.ApplicationController.warnNoLicense": "Heu arribat al límit de connexions simultànies per als editors %1. Aquest document s'obrirà en mode de només lectura. Contacteu l'equip de vendes %1 per a les condicions personals de millora del servei.", + "DE.ApplicationController.warnNoLicenseUsers": "Heu arribat al límit d'usuaris per a %1 editors. Contacteu amb l'equip de vendes de %1 per obtenir les condicions de millora personals dels vostres serveis.", + "DE.ApplicationView.textClear": "Esborra tots els camps", + "DE.ApplicationView.textNext": "Camp següent", + "DE.ApplicationView.textSubmit": "Envia", + "DE.ApplicationView.txtDownload": "Baixa", + "DE.ApplicationView.txtDownloadDocx": "Baixa-ho com a .docx", + "DE.ApplicationView.txtDownloadPdf": "Baixa-ho com a pdf", + "DE.ApplicationView.txtEmbed": "Incrusta", + "DE.ApplicationView.txtFileLocation": "Obre la ubicació del fitxer", + "DE.ApplicationView.txtFullScreen": "Pantalla sencera", + "DE.ApplicationView.txtPrint": "Imprimeix", + "DE.ApplicationView.txtShare": "Comparteix", + "DE.ApplicationView.txtTheme": "Tema de la interfície" } \ No newline at end of file diff --git a/apps/documenteditor/forms/locale/cs.json b/apps/documenteditor/forms/locale/cs.json index 09c23bf7a..99604921e 100644 --- a/apps/documenteditor/forms/locale/cs.json +++ b/apps/documenteditor/forms/locale/cs.json @@ -1,5 +1,6 @@ { "common.view.modals.txtCopy": "Zkopírovat do schránky", + "common.view.modals.txtEmbed": "Vestavěný", "common.view.modals.txtHeight": "Výška", "common.view.modals.txtShare": "Odkaz pro sdílení", "common.view.modals.txtWidth": "Šířka", @@ -10,19 +11,34 @@ "DE.ApplicationController.downloadTextText": "Stahování dokumentu…", "DE.ApplicationController.errorAccessDeny": "Pokoušíte se provést akci, na kterou nemáte oprávnění.
Obraťte se na správce vámi využívaného dokumentového serveru.", "DE.ApplicationController.errorDefaultMessage": "Kód chyby: %1", + "DE.ApplicationController.errorEditingDownloadas": "Při práci s dokumentem došlo k chybě.
Použijte volbu 'Stáhnout jako…' pro uložení záložní kopie na harddisk Vašeho počítače. ", "DE.ApplicationController.errorFilePassProtect": "Soubor je chráněn heslem a bez něj ho nelze otevřít.", "DE.ApplicationController.errorFileSizeExceed": "Velikost souboru překračuje omezení nastavená na serveru, který využíváte.
Ohledně podrobností se obraťte na správce dokumentového serveru.", + "DE.ApplicationController.errorForceSave": "Při ukládání souboru došlo k chybě. Prosím použijte 'Stáhnout jako' k uložení souboru na harddisk Vašeho počítače, nebo opakujte volbu později.", + "DE.ApplicationController.errorLoadingFont": "Styly nejsou načteny.
Prosím kontaktujte Vašeho administrátora dokumentových serverů.", + "DE.ApplicationController.errorSubmit": "Potvrzení selhalo.", "DE.ApplicationController.errorUpdateVersionOnDisconnect": "Připojení k Internetu bylo obnoveno a verze souboru byla změněna.
Než budete moci pokračovat v práci, bude třeba si soubor stáhnout nebo si zkopírovat jeho obsah, abyste si zajistili, že se nic neztratí a až poté tuto stránku znovu načtěte.", "DE.ApplicationController.errorUserDrop": "Tento soubor nyní není přístupný.", "DE.ApplicationController.notcriticalErrorTitle": "Varování", "DE.ApplicationController.scriptLoadError": "Připojení je příliš pomalé, některé součásti se nepodařilo načíst. Načtěte stránku znovu.", + "DE.ApplicationController.textAnonymous": "Anonymní", + "DE.ApplicationController.textGotIt": "Rozumím", + "DE.ApplicationController.textGuest": "Host", "DE.ApplicationController.textLoadingDocument": "Načítání dokumentu", "DE.ApplicationController.textOf": "z", + "DE.ApplicationController.textRequired": "Pro odeslání formuláře vyplňte všechna požadovaná pole.", + "DE.ApplicationController.textSubmited": "Formulář úspěšně uložen.
Klikněte pro zavření nápovědy.", "DE.ApplicationController.txtClose": "Zavřít", + "DE.ApplicationController.txtEmpty": "(Prázdné)", + "DE.ApplicationController.txtPressLink": "Stiskněte CTRL a klikněte na odkaz", "DE.ApplicationController.unknownErrorText": "Neznámá chyba.", "DE.ApplicationController.unsupportedBrowserErrorText": "Vámi používaný webový prohlížeč není podporován.", "DE.ApplicationController.waitText": "Čekejte prosím…", "DE.ApplicationView.txtDownload": "Stáhnout", + "DE.ApplicationView.txtDownloadDocx": "Stáhnout jako docx", + "DE.ApplicationView.txtDownloadPdf": "Stáhnout jako pdf", + "DE.ApplicationView.txtEmbed": "Vestavěný", + "DE.ApplicationView.txtFileLocation": "Otevřít umístění souboru", "DE.ApplicationView.txtFullScreen": "Na celou obrazovku", "DE.ApplicationView.txtPrint": "Tisk", "DE.ApplicationView.txtShare": "Sdílet" diff --git a/apps/documenteditor/forms/locale/de.json b/apps/documenteditor/forms/locale/de.json index 09023d4de..75e04d88f 100644 --- a/apps/documenteditor/forms/locale/de.json +++ b/apps/documenteditor/forms/locale/de.json @@ -14,25 +14,43 @@ "DE.ApplicationController.errorEditingDownloadas": "Fehler bei der Bearbeitung.
Speichern Sie eine Kopie dieser Datei auf Ihrem Computer, indem Sie auf \"Herunterladen als...\" klicken.", "DE.ApplicationController.errorFilePassProtect": "Das Dokument ist kennwortgeschützt und kann nicht geöffnet werden.", "DE.ApplicationController.errorFileSizeExceed": "Die Dateigröße überschreitet die für Ihren Server festgelegte Einschränkung.
Weitere Informationen können Sie von Ihrem Document Server-Administrator erhalten.", + "DE.ApplicationController.errorForceSave": "Beim Speichern der Datei ist ein Fehler aufgetreten. Verwenden Sie die Option \"Herunterladen als\", um die Datei auf Ihrer Computerfestplatte zu speichern oder versuchen Sie es später erneut.", + "DE.ApplicationController.errorLoadingFont": "Schriftarten nicht hochgeladen.
Bitte wenden Sie sich an Administratoren von Ihrem Document Server.", + "DE.ApplicationController.errorServerVersion": "Version des Editors wurde aktualisiert. Die Seite wird neu geladen, um die Änderungen zu übernehmen.", "DE.ApplicationController.errorSubmit": "Fehler beim Senden.", + "DE.ApplicationController.errorUpdateVersion": "Die Dateiversion wurde geändert. Die Seite wird neu geladen.", "DE.ApplicationController.errorUpdateVersionOnDisconnect": "Die Internetverbindung wurde wiederhergestellt und die Dateiversion wurde geändert.
Bevor Sie weiterarbeiten können, müssen Sie die Datei herunterladen oder den Inhalt kopieren, um sicherzustellen, dass nichts verloren geht, und diese Seite anschließend neu laden.", "DE.ApplicationController.errorUserDrop": "Der Zugriff auf diese Datei ist nicht möglich.", "DE.ApplicationController.notcriticalErrorTitle": "Warnung", "DE.ApplicationController.scriptLoadError": "Die Verbindung ist zu langsam, einige der Komponenten konnten nicht geladen werden. Bitte laden Sie die Seite erneut.", "DE.ApplicationController.textAnonymous": "Anonym", - "DE.ApplicationController.textClear": "Alle Felder löschen", + "DE.ApplicationController.textBuyNow": "Webseite besuchen", + "DE.ApplicationController.textCloseTip": "Klicken Sie hier, um den Tipp zu schließen.", + "DE.ApplicationController.textContactUs": "Verkaufsteam kontaktieren", "DE.ApplicationController.textGotIt": "OK", "DE.ApplicationController.textGuest": "Gast", "DE.ApplicationController.textLoadingDocument": "Dokument wird geladen...", - "DE.ApplicationController.textNext": "Nächstes Feld", + "DE.ApplicationController.textNoLicenseTitle": "Lizenzlimit erreicht", "DE.ApplicationController.textOf": "von", "DE.ApplicationController.textRequired": "Füllen Sie alle erforderlichen Felder aus, um das Formular zu senden.", - "DE.ApplicationController.textSubmit": "Senden", "DE.ApplicationController.textSubmited": "Das Formular wurde erfolgreich abgesendet
Klicken Sie hier, um den Tipp auszublenden", + "DE.ApplicationController.titleServerVersion": "Editor wurde aktualisiert", + "DE.ApplicationController.titleUpdateVersion": "Version wurde geändert", "DE.ApplicationController.txtClose": "Schließen", + "DE.ApplicationController.txtEmpty": "(Leer)", + "DE.ApplicationController.txtPressLink": "Drücken Sie STRG und klicken Sie auf den Link", "DE.ApplicationController.unknownErrorText": "Unbekannter Fehler.", "DE.ApplicationController.unsupportedBrowserErrorText": "Ihr Webbrowser wird nicht unterstützt.", "DE.ApplicationController.waitText": "Bitte warten...", + "DE.ApplicationController.warnLicenseExceeded": "Sie haben das Limit für gleichzeitige Verbindungen in %1-Editoren erreicht. Dieses Dokument wird nur zum Anzeigen geöffnet.
Bitte wenden Sie sich an Ihren Administrator, um weitere Informationen zu erhalten.", + "DE.ApplicationController.warnLicenseLimitedNoAccess": "Die Lizenz ist abgelaufen.
Die Bearbeitungsfunktionen sind nicht verfügbar.
Bitte wenden Sie sich an Ihrem Administrator.", + "DE.ApplicationController.warnLicenseLimitedRenewed": "Die Lizenz soll aktualisiert werden.
Die Bearbeitungsfunktionen sind eingeschränkt.
Bitte wenden Sie sich an Ihrem Administrator für vollen Zugriff", + "DE.ApplicationController.warnLicenseUsersExceeded": "Sie haben das Benutzerlimit für %1-Editoren erreicht. Bitte wenden Sie sich an Ihren Administrator, um weitere Informationen zu erhalten.", + "DE.ApplicationController.warnNoLicense": "Sie haben das Limit für gleichzeitige Verbindungen in %1-Editoren erreicht. Dieses Dokument wird nur zum Anzeigen geöffnet.
Bitte kontaktieren Sie unser Verkaufsteam, um persönliche Upgrade-Bedingungen zu erhalten.", + "DE.ApplicationController.warnNoLicenseUsers": "Sie haben das Benutzerlimit für %1-Editoren erreicht. Bitte kontaktieren Sie unser Verkaufsteam, um persönliche Upgrade-Bedingungen zu erhalten.", + "DE.ApplicationView.textClear": "Alle Felder leeren", + "DE.ApplicationView.textNext": "Nächstes Feld", + "DE.ApplicationView.textSubmit": "Senden", "DE.ApplicationView.txtDownload": "Herunterladen", "DE.ApplicationView.txtDownloadDocx": "Als DOCX herunterladen", "DE.ApplicationView.txtDownloadPdf": "Als PDF herunterladen", @@ -40,5 +58,6 @@ "DE.ApplicationView.txtFileLocation": "Dateispeicherort öffnen", "DE.ApplicationView.txtFullScreen": "Vollbild-Modus", "DE.ApplicationView.txtPrint": "Drucken", - "DE.ApplicationView.txtShare": "Freigeben" + "DE.ApplicationView.txtShare": "Freigeben", + "DE.ApplicationView.txtTheme": "Thema der Benutzeroberfläche" } \ No newline at end of file diff --git a/apps/documenteditor/forms/locale/el.json b/apps/documenteditor/forms/locale/el.json index 2a30fac8d..7cdd52341 100644 --- a/apps/documenteditor/forms/locale/el.json +++ b/apps/documenteditor/forms/locale/el.json @@ -14,22 +14,23 @@ "DE.ApplicationController.errorEditingDownloadas": "Παρουσιάστηκε σφάλμα κατά την εργασία με το έγγραφο.
Χρησιμοποιήστε την επιλογή «Λήψη ως...» για να αποθηκεύσετε το αντίγραφο ασφαλείας στον σκληρό δίσκο του υπολογιστή σας.", "DE.ApplicationController.errorFilePassProtect": "Το αρχείο προστατεύεται με συνθηματικό και δεν μπορεί να ανοίξει.", "DE.ApplicationController.errorFileSizeExceed": "Το μέγεθος του αρχείου υπερβαίνει το όριο που έχει οριστεί για τον διακομιστή σας.
Παρακαλούμε επικοινωνήστε με τον διαχειριστή του διακομιστή εγγράφων για λεπτομέρειες.", + "DE.ApplicationController.errorForceSave": "Παρουσιάστηκε σφάλμα κατά την αποθήκευση του αρχείου. Χρησιμοποιήστε την επιλογή «Λήψη ως» για να αποθηκεύσετε το αρχείο στον σκληρό δίσκο του υπολογιστή σας ή δοκιμάστε ξανά αργότερα.", + "DE.ApplicationController.errorLoadingFont": "Οι γραμματοσειρές δεν έχουν φορτωθεί.
Παρακαλούμε επικοινωνήστε με τον διαχειριστή του Εξυπηρετητή Εγγράφων σας.", "DE.ApplicationController.errorSubmit": "Η υποβολή απέτυχε.", "DE.ApplicationController.errorUpdateVersionOnDisconnect": "Η σύνδεση στο Διαδίκτυο έχει αποκατασταθεί και η έκδοση του αρχείου έχει αλλάξει.
Προτού συνεχίσετε να εργάζεστε, πρέπει να κατεβάσετε το αρχείο ή να αντιγράψετε το περιεχόμενό του για να βεβαιωθείτε ότι δεν έχει χαθεί τίποτα και, στη συνέχεια, φορτώστε ξανά αυτήν τη σελίδα.", "DE.ApplicationController.errorUserDrop": "Δεν είναι δυνατή η πρόσβαση στο αρχείο αυτήν τη στιγμή.", "DE.ApplicationController.notcriticalErrorTitle": "Προειδοποίηση", "DE.ApplicationController.scriptLoadError": "Η σύνδεση είναι πολύ αργή, δεν ήταν δυνατή η φόρτωση ορισμένων στοιχείων. Φορτώστε ξανά τη σελίδα.", "DE.ApplicationController.textAnonymous": "Ανώνυμος", - "DE.ApplicationController.textClear": "Εκκαθάριση Όλων των Πεδίων", "DE.ApplicationController.textGotIt": "Ελήφθη", "DE.ApplicationController.textGuest": "Επισκέπτης", "DE.ApplicationController.textLoadingDocument": "Φόρτωση εγγράφου", - "DE.ApplicationController.textNext": "Επόμενο Πεδίο", "DE.ApplicationController.textOf": "του", "DE.ApplicationController.textRequired": "Συμπληρώστε όλα τα απαιτούμενα πεδία για την αποστολή της φόρμας.", - "DE.ApplicationController.textSubmit": "Υποβολή", "DE.ApplicationController.textSubmited": "Η φόρμα υποβλήθηκε με επιτυχία
Κάντε κλικ για να κλείσετε τη συμβουλή ", "DE.ApplicationController.txtClose": "Κλείσιμο", + "DE.ApplicationController.txtEmpty": "(Κενό)", + "DE.ApplicationController.txtPressLink": "Πατήστε Ctrl και κάντε κλικ στο σύνδεσμο", "DE.ApplicationController.unknownErrorText": "Άγνωστο σφάλμα.", "DE.ApplicationController.unsupportedBrowserErrorText": "Ο περιηγητής σας δεν υποστηρίζεται.", "DE.ApplicationController.waitText": "Παρακαλούμε, περιμένετε...", diff --git a/apps/documenteditor/forms/locale/en.json b/apps/documenteditor/forms/locale/en.json index ad6982bcb..d911f1de6 100644 --- a/apps/documenteditor/forms/locale/en.json +++ b/apps/documenteditor/forms/locale/en.json @@ -14,39 +14,43 @@ "DE.ApplicationController.errorEditingDownloadas": "An error occurred during the work with the document.
Use the 'Download as...' option to save the file backup copy to your computer hard drive.", "DE.ApplicationController.errorFilePassProtect": "The file is password protected and cannot be opened.", "DE.ApplicationController.errorFileSizeExceed": "The file size exceeds the limitation set for your server.
Please contact your Document Server administrator for details.", + "DE.ApplicationController.errorForceSave": "An error occurred while saving the file. Please use the 'Download as' option to save the file to your computer hard drive or try again later.", + "DE.ApplicationController.errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator.", + "DE.ApplicationController.errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", "DE.ApplicationController.errorSubmit": "Submit failed.", + "DE.ApplicationController.errorUpdateVersion": "The file version has been changed. The page will be reloaded.", "DE.ApplicationController.errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.", "DE.ApplicationController.errorUserDrop": "The file cannot be accessed right now.", - "DE.ApplicationController.errorForceSave": "An error occurred while saving the file. Please use the 'Download as' option to save the file to your computer hard drive or try again later.", "DE.ApplicationController.notcriticalErrorTitle": "Warning", "DE.ApplicationController.scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please reload the page.", "DE.ApplicationController.textAnonymous": "Anonymous", + "DE.ApplicationController.textBuyNow": "Visit website", + "DE.ApplicationController.textCloseTip": "Click to close the tip.", + "DE.ApplicationController.textContactUs": "Contact sales", "DE.ApplicationController.textGotIt": "Got it", "DE.ApplicationController.textGuest": "Guest", "DE.ApplicationController.textLoadingDocument": "Loading document", + "DE.ApplicationController.textNoLicenseTitle": "License limit reached", "DE.ApplicationController.textOf": "of", "DE.ApplicationController.textRequired": "Fill all required fields to send form.", "DE.ApplicationController.textSubmited": "Form submitted successfully
Click to close the tip", + "DE.ApplicationController.titleServerVersion": "Editor updated", + "DE.ApplicationController.titleUpdateVersion": "Version changed", "DE.ApplicationController.txtClose": "Close", + "DE.ApplicationController.txtEmpty": "(Empty)", + "DE.ApplicationController.txtPressLink": "Press Ctrl and click link", "DE.ApplicationController.unknownErrorText": "Unknown error.", "DE.ApplicationController.unsupportedBrowserErrorText": "Your browser is not supported.", "DE.ApplicationController.waitText": "Please, wait...", - "DE.ApplicationController.txtEmpty": "(Empty)", - "DE.ApplicationController.txtPressLink": "Press Ctrl and click link", - "DE.ApplicationController.textCloseTip": "Click to close the tip.", - "DE.ApplicationController.titleServerVersion": "Editor updated", - "DE.ApplicationController.errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", - "DE.ApplicationController.titleUpdateVersion": "Version changed", - "DE.ApplicationController.errorUpdateVersion": "The file version has been changed. The page will be reloaded.", - "DE.ApplicationController.warnLicenseLimitedRenewed": "License needs to be renewed.
You have a limited access to document editing functionality.
Please contact your administrator to get full access", - "DE.ApplicationController.warnLicenseLimitedNoAccess": "License expired.
You have no access to document editing functionality.
Please contact your administrator.", "DE.ApplicationController.warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only.
Contact your administrator to learn more.", + "DE.ApplicationController.warnLicenseLimitedNoAccess": "License expired.
You have no access to document editing functionality.
Please contact your administrator.", + "DE.ApplicationController.warnLicenseLimitedRenewed": "License needs to be renewed.
You have a limited access to document editing functionality.
Please contact your administrator to get full access", "DE.ApplicationController.warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", "DE.ApplicationController.warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only.
Contact %1 sales team for personal upgrade terms.", "DE.ApplicationController.warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", - "DE.ApplicationController.textBuyNow": "Visit website", - "DE.ApplicationController.textNoLicenseTitle": "License limit reached", - "DE.ApplicationController.textContactUs": "Contact sales", + "DE.ApplicationView.textClear": "Clear All Fields", + "DE.ApplicationView.textNext": "Next Field", + "DE.ApplicationView.textSubmit": "Submit", "DE.ApplicationView.txtDownload": "Download", "DE.ApplicationView.txtDownloadDocx": "Download as docx", "DE.ApplicationView.txtDownloadPdf": "Download as pdf", @@ -55,8 +59,5 @@ "DE.ApplicationView.txtFullScreen": "Full Screen", "DE.ApplicationView.txtPrint": "Print", "DE.ApplicationView.txtShare": "Share", - "DE.ApplicationView.textSubmit": "Submit", - "DE.ApplicationView.textClear": "Clear All Fields", - "DE.ApplicationView.textNext": "Next Field", "DE.ApplicationView.txtTheme": "Interface theme" } \ No newline at end of file diff --git a/apps/documenteditor/forms/locale/es.json b/apps/documenteditor/forms/locale/es.json index de92ca281..0a5ecbd5e 100644 --- a/apps/documenteditor/forms/locale/es.json +++ b/apps/documenteditor/forms/locale/es.json @@ -14,25 +14,43 @@ "DE.ApplicationController.errorEditingDownloadas": "Se produjo un error durante el trabajo con el documento.
Use la opción 'Descargar como...' para guardar la copia de seguridad de este archivo en el disco duro de su ordenador.", "DE.ApplicationController.errorFilePassProtect": "El archivo está protegido por una contraseña y no puede ser abierto.", "DE.ApplicationController.errorFileSizeExceed": "El tamaño del archivo excede el límite establecido para su servidor. Por favor póngase en contacto con el administrador del Servidor de Documentos para obtener más información.", + "DE.ApplicationController.errorForceSave": "Ha ocurrido un error al guardar el archivo. Por favor, use la opción \"Descargar como\" para guardar el archivo en el disco duro de su ordenador o inténtelo de nuevo más tarde.", + "DE.ApplicationController.errorLoadingFont": "Las fuentes no están cargadas.
Por favor, póngase en contacto con el administrador del Document Server.", + "DE.ApplicationController.errorServerVersion": "La versión del editor ha sido actualizada. La página será recargada para aplicar los cambios.", "DE.ApplicationController.errorSubmit": "Error al enviar.", + "DE.ApplicationController.errorUpdateVersion": "Se ha cambiado la versión del archivo. La página será actualizada.", "DE.ApplicationController.errorUpdateVersionOnDisconnect": "La conexión a Internet ha sido restaurada, y la versión del archivo ha sido cambiada. Antes de poder seguir trabajando, es necesario descargar el archivo o copiar su contenido para asegurarse de que no se pierda nada, y luego recargar esta página.", "DE.ApplicationController.errorUserDrop": "No se puede acceder al archivo en este momento.", "DE.ApplicationController.notcriticalErrorTitle": "Aviso", "DE.ApplicationController.scriptLoadError": "La conexión a Internet es demasiado lenta, algunos de los componentes no se han podido cargar. Por favor, recargue la página.", "DE.ApplicationController.textAnonymous": "Anónimo", - "DE.ApplicationController.textClear": "Borrar todos los campos", + "DE.ApplicationController.textBuyNow": "Visitar sitio web", + "DE.ApplicationController.textCloseTip": "Haga clic para cerrar el consejo.", + "DE.ApplicationController.textContactUs": "Contactar con el equipo de ventas", "DE.ApplicationController.textGotIt": "Entiendo", "DE.ApplicationController.textGuest": "Invitado", "DE.ApplicationController.textLoadingDocument": "Cargando documento", - "DE.ApplicationController.textNext": "Campo siguiente", + "DE.ApplicationController.textNoLicenseTitle": "Se ha alcanzado el límite de licencia", "DE.ApplicationController.textOf": "de", "DE.ApplicationController.textRequired": "Rellene todos los campos obligatorios para enviar el formulario.", - "DE.ApplicationController.textSubmit": "Enviar", "DE.ApplicationController.textSubmited": "Formulario enviado con éxito
Haga clic para cerrar el consejo", + "DE.ApplicationController.titleServerVersion": "Editor ha sido actualizado", + "DE.ApplicationController.titleUpdateVersion": "Versión se ha cambiado", "DE.ApplicationController.txtClose": "Cerrar", + "DE.ApplicationController.txtEmpty": "(Vacío)", + "DE.ApplicationController.txtPressLink": "Pulse CTRL y haga clic en el enlace", "DE.ApplicationController.unknownErrorText": "Error desconocido.", "DE.ApplicationController.unsupportedBrowserErrorText": "Su navegador no es compatible.", "DE.ApplicationController.waitText": "Por favor, espere...", + "DE.ApplicationController.warnLicenseExceeded": "Usted ha alcanzado el límite de conexiones simultáneas con %1 editores. Este documento se abrirá sólo para su visualización.
Por favor, contacte con su administrador para recibir más información.", + "DE.ApplicationController.warnLicenseLimitedNoAccess": "Licencia expirada.
No tiene acceso a la funcionalidad de edición de documentos.
Por favor, póngase en contacto con su administrador.", + "DE.ApplicationController.warnLicenseLimitedRenewed": "La licencia requiere ser renovada.
Tiene un acceso limitado a la funcionalidad de edición de documentos.
Por favor, póngase en contacto con su administrador para obtener un acceso completo", + "DE.ApplicationController.warnLicenseUsersExceeded": "Usted ha alcanzado el límite de usuarios para los editores de %1. Por favor, contacte con su administrador para recibir más información.", + "DE.ApplicationController.warnNoLicense": "Usted ha alcanzado el límite de conexiones simultáneas con %1 editores. Este documento se abrirá sólo para su visualización.
Contacte con el equipo de ventas de %1 para conocer los términos de actualización personal.", + "DE.ApplicationController.warnNoLicenseUsers": "Usted ha alcanzado el límite de usuarios para los editores de %1.
Contacte con el equipo de ventas de %1 para conocer los términos de actualización personal.", + "DE.ApplicationView.textClear": "Borrar todos los campos", + "DE.ApplicationView.textNext": "Campo siguiente", + "DE.ApplicationView.textSubmit": "Enviar", "DE.ApplicationView.txtDownload": "Descargar", "DE.ApplicationView.txtDownloadDocx": "Descargar como docx", "DE.ApplicationView.txtDownloadPdf": "Descargar como pdf", @@ -40,5 +58,6 @@ "DE.ApplicationView.txtFileLocation": "Abrir ubicación del archivo", "DE.ApplicationView.txtFullScreen": "Pantalla Completa", "DE.ApplicationView.txtPrint": "Imprimir", - "DE.ApplicationView.txtShare": "Compartir" + "DE.ApplicationView.txtShare": "Compartir", + "DE.ApplicationView.txtTheme": "Tema de interfaz" } \ No newline at end of file diff --git a/apps/documenteditor/forms/locale/fr.json b/apps/documenteditor/forms/locale/fr.json index c56b67a2f..4107e8f57 100644 --- a/apps/documenteditor/forms/locale/fr.json +++ b/apps/documenteditor/forms/locale/fr.json @@ -14,25 +14,43 @@ "DE.ApplicationController.errorEditingDownloadas": "Une erreur s'est produite lors du travail avec le document.
Utilisez l'option 'Télécharger comme...' pour enregistrer une copie de sauvegarde du fichier sur le disque dur de votre ordinateur.", "DE.ApplicationController.errorFilePassProtect": "Le fichier est protégé par le mot de passe et ne peut pas être ouvert.", "DE.ApplicationController.errorFileSizeExceed": "La taille du fichier dépasse les limites établies sur votre serveur.
Veuillez contacter votre administrateur de Document Server pour obtenir plus d'informations. ", + "DE.ApplicationController.errorForceSave": "Une erreur est survenue lors de l'enregistrement du fichier. Veuillez utiliser l'option «Télécharger en tant que» pour enregistrer le fichier sur le disque dur de votre ordinateur ou réessayer plus tard.", + "DE.ApplicationController.errorLoadingFont": "Les polices ne sont pas téléchargées.
Veuillez contacter l'administrateur de Document Server.", + "DE.ApplicationController.errorServerVersion": "La version de l'éditeur a été mise à jour. La page sera rechargée pour appliquer les modifications.", "DE.ApplicationController.errorSubmit": "Échec de soumission", + "DE.ApplicationController.errorUpdateVersion": "La version du fichier a été changée. La page sera rechargée.", "DE.ApplicationController.errorUpdateVersionOnDisconnect": "La connexion internet a été rétablie, la version du fichier est modifiée.
Avant de continuer, téléchargez le fichier ou copiez le contenu pour vous assurer que tous les changements ont été enregistrés, et rechargez la page.", "DE.ApplicationController.errorUserDrop": "Impossible d'accéder au fichier.", "DE.ApplicationController.notcriticalErrorTitle": "Avertissement", "DE.ApplicationController.scriptLoadError": "La connexion est trop lente, certains éléments ne peuvent pas être chargés. Veuillez recharger la page.", "DE.ApplicationController.textAnonymous": "Anonyme", - "DE.ApplicationController.textClear": "Effacer tous les champs", + "DE.ApplicationController.textBuyNow": "Visiter le site web", + "DE.ApplicationController.textCloseTip": "Cliquez pour fermer le conseil.", + "DE.ApplicationController.textContactUs": "Contacter l'équipe de ventes", "DE.ApplicationController.textGotIt": "C'est compris", "DE.ApplicationController.textGuest": "Invité", "DE.ApplicationController.textLoadingDocument": "Chargement du document", - "DE.ApplicationController.textNext": "Champ suivant", + "DE.ApplicationController.textNoLicenseTitle": "La limite de la licence est atteinte", "DE.ApplicationController.textOf": "de", "DE.ApplicationController.textRequired": "Veuillez remplir tous les champs obligatoires avant d'envoyer le formulaire.", - "DE.ApplicationController.textSubmit": "Soumettre ", "DE.ApplicationController.textSubmited": "Le formulaire a été soumis avec succès
Cliquez ici pour fermer l'astuce", + "DE.ApplicationController.titleServerVersion": "L'éditeur est mis à jour", + "DE.ApplicationController.titleUpdateVersion": "La version a été modifiée", "DE.ApplicationController.txtClose": "Fermer", + "DE.ApplicationController.txtEmpty": "(Vide)", + "DE.ApplicationController.txtPressLink": "Appuyez sur Ctrl et cliquez sur le lien", "DE.ApplicationController.unknownErrorText": "Erreur inconnue.", "DE.ApplicationController.unsupportedBrowserErrorText": "Votre navigateur n'est pas pris en charge.", "DE.ApplicationController.waitText": "Veuillez patienter...", + "DE.ApplicationController.warnLicenseExceeded": "Vous avez dépassé le nombre maximal de connexions simultanées aux éditeurs %1. Ce document sera ouvert en mode lecture seule.
Veuillez contacter votre administrateur pour en savoir davantage.", + "DE.ApplicationController.warnLicenseLimitedNoAccess": "La licence est expirée.
Vous n'avez plus d'accès aux outils d'édition.
Veuillez contacter votre administrateur.", + "DE.ApplicationController.warnLicenseLimitedRenewed": "La licence doit être renouvelée.
Vous avez un accès limité aux outils d'édition des documents.
Veuillez contacter votre administrateur pour obtenir un accès complet.", + "DE.ApplicationController.warnLicenseUsersExceeded": "Vous avez dépassé le nombre maximal d’utilisateurs des éditeurs %1. Veuillez contacter votre administrateur pour en savoir davantage.", + "DE.ApplicationController.warnNoLicense": "Vous avez dépassé le nombre maximal de connexions simultanées aux éditeurs %1. Ce document sera ouvert en lecture seule.
Veuillez contacter le service des ventes %1 pour connaître les conditions de mise à niveau personnelle.", + "DE.ApplicationController.warnNoLicenseUsers": "Vous avez dépassé le nombre maximal d’utilisateurs des éditeurs %1. Veuillez contacter l’équipe des ventes %1 pour connaître les conditions de mise à niveau personnelle.", + "DE.ApplicationView.textClear": "Effacer tous les champs", + "DE.ApplicationView.textNext": "Champ suivant", + "DE.ApplicationView.textSubmit": "Soumettre ", "DE.ApplicationView.txtDownload": "Télécharger", "DE.ApplicationView.txtDownloadDocx": "Télécharger en tant que docx", "DE.ApplicationView.txtDownloadPdf": "Télécharger en tant que pdf", @@ -40,5 +58,6 @@ "DE.ApplicationView.txtFileLocation": "Ouvrir l'emplacement du fichier", "DE.ApplicationView.txtFullScreen": "Plein écran", "DE.ApplicationView.txtPrint": "Imprimer", - "DE.ApplicationView.txtShare": "Partager" + "DE.ApplicationView.txtShare": "Partager", + "DE.ApplicationView.txtTheme": "Thème d’interface" } \ No newline at end of file diff --git a/apps/documenteditor/forms/locale/it.json b/apps/documenteditor/forms/locale/it.json index b18e037e0..c4ec85300 100644 --- a/apps/documenteditor/forms/locale/it.json +++ b/apps/documenteditor/forms/locale/it.json @@ -14,21 +14,43 @@ "DE.ApplicationController.errorEditingDownloadas": "Si è verificato un errore durante il lavoro con il documento.
Utilizzare l'opzione 'Scarica come ...' per salvare la copia di backup del file sul disco rigido del computer.", "DE.ApplicationController.errorFilePassProtect": "Il file è protetto da una password. Impossibile aprirlo.", "DE.ApplicationController.errorFileSizeExceed": "La dimensione del file supera la limitazione impostata per il tuo server.
Per i dettagli, contatta l'amministratore del Document server.", + "DE.ApplicationController.errorForceSave": "Si è verificato un errore durante il salvataggio del file. Utilizzare l'opzione 'Scarica come' per salvare il file sul disco rigido del computer o riprovare più tardi.", + "DE.ApplicationController.errorLoadingFont": "I caratteri non sono caricati.
Si prega di contattare il tuo amministratore di Document Server.", + "DE.ApplicationController.errorServerVersion": "La versione dell'editor è stata aggiornata. La pagina verrà ricaricata per applicare le modifiche.", "DE.ApplicationController.errorSubmit": "Invio fallito.", + "DE.ApplicationController.errorUpdateVersion": "La versione del file è stata cambiata. La pagina verrà ricaricata.", "DE.ApplicationController.errorUpdateVersionOnDisconnect": "La connessione Internet è stata ripristinata e la versione del file è stata modificata.
Prima di poter continuare a lavorare, è necessario scaricare il file o copiarne il contenuto per assicurarsi che non vada perso nulla, successivamente ricaricare questa pagina.", "DE.ApplicationController.errorUserDrop": "Impossibile accedere al file subito.", "DE.ApplicationController.notcriticalErrorTitle": "Avviso", "DE.ApplicationController.scriptLoadError": "La connessione è troppo lenta, alcuni componenti non possono essere caricati. Si prega di ricaricare la pagina.", - "DE.ApplicationController.textClear": "‎Cancella tutti i campi‎", + "DE.ApplicationController.textAnonymous": "Anonimo", + "DE.ApplicationController.textBuyNow": "Visita il sito web", + "DE.ApplicationController.textCloseTip": "Clicca su per chiudere la notifica", + "DE.ApplicationController.textContactUs": "Contatta il team di vendita", + "DE.ApplicationController.textGotIt": "Capito", + "DE.ApplicationController.textGuest": "Ospite", "DE.ApplicationController.textLoadingDocument": "Caricamento del documento", - "DE.ApplicationController.textNext": "Campo successivo", + "DE.ApplicationController.textNoLicenseTitle": "E' stato raggiunto il limite della licenza", "DE.ApplicationController.textOf": "di", - "DE.ApplicationController.textSubmit": "‎Invia‎", + "DE.ApplicationController.textRequired": "Compila tutti i campi richiesti per inviare il modulo.", "DE.ApplicationController.textSubmited": "Modulo inviato con successo
Fare click per chiudere la notifica
", + "DE.ApplicationController.titleServerVersion": "L'editor è stato aggiornato", + "DE.ApplicationController.titleUpdateVersion": "La versione è stata cambiata", "DE.ApplicationController.txtClose": "Chiudi", + "DE.ApplicationController.txtEmpty": "(Vuoto)", + "DE.ApplicationController.txtPressLink": "Premi CTRL e clicca sul collegamento", "DE.ApplicationController.unknownErrorText": "Errore sconosciuto.", "DE.ApplicationController.unsupportedBrowserErrorText": "Il tuo browser non è supportato.", "DE.ApplicationController.waitText": "Per favore, attendi...", + "DE.ApplicationController.warnLicenseExceeded": "Hai raggiunto il limite delle connessioni simultanee con gli editor %1. Questo documento verrà aperto solo per la visualizzazione.
Ti preghiamo di contattare il tuo amministratore per maggior informazioni.", + "DE.ApplicationController.warnLicenseLimitedNoAccess": "Licenza è scaduta.
Non hai accesso alle funzionalità di modifica dei documenti.
Ti preghiamo di contattare l'amministratore.", + "DE.ApplicationController.warnLicenseLimitedRenewed": "La licenza va rinnovata.
Hai un accesso limitato alle funzionalità di modifica dei documenti.
Ti preghiamo di contattare l'amministratore per ottenere l'accesso completo", + "DE.ApplicationController.warnLicenseUsersExceeded": "Hai raggiunto il limite degli utenti per gli editor %1. Ti preghiamo di contattare il tuo amministratore per maggior informazioni.", + "DE.ApplicationController.warnNoLicense": "Hai raggiunto il limite delle connessioni simultanee con gli editor %1. Questo documento verrà aperto solo per la visualizzazione.
Ti preghiamo di contattare il team di vendite di %1 per i termini di aggiornamento personali.", + "DE.ApplicationController.warnNoLicenseUsers": "Hai raggiunto il limite degli utenti per gli editor %1. Ti preghiamo di contattare il team di vendite di %1 per i termini di aggiornamento personali.", + "DE.ApplicationView.textClear": "‎Cancellare tutti i campi‎", + "DE.ApplicationView.textNext": "Campo successivo", + "DE.ApplicationView.textSubmit": "‎Invia‎", "DE.ApplicationView.txtDownload": "Scarica", "DE.ApplicationView.txtDownloadDocx": "Scarica come .docx", "DE.ApplicationView.txtDownloadPdf": "Scarica come .pdf", @@ -36,5 +58,6 @@ "DE.ApplicationView.txtFileLocation": "Apri percorso file", "DE.ApplicationView.txtFullScreen": "Schermo intero", "DE.ApplicationView.txtPrint": "Stampa", - "DE.ApplicationView.txtShare": "Condividi" + "DE.ApplicationView.txtShare": "Condividi", + "DE.ApplicationView.txtTheme": "Tema dell'interfaccia" } \ No newline at end of file diff --git a/apps/documenteditor/forms/locale/ja.json b/apps/documenteditor/forms/locale/ja.json index 17e852b32..00ba726b4 100644 --- a/apps/documenteditor/forms/locale/ja.json +++ b/apps/documenteditor/forms/locale/ja.json @@ -11,20 +11,34 @@ "DE.ApplicationController.downloadTextText": "ドキュメントのダウンロード中...", "DE.ApplicationController.errorAccessDeny": "利用権限がない操作をしようとしました。
Documentサーバー管理者に連絡してください。", "DE.ApplicationController.errorDefaultMessage": "エラー コード: %1", + "DE.ApplicationController.errorEditingDownloadas": "ドキュメントの作業中にエラーが発生しました。
「名前を付けてダウンロード」オプションを使用して、ファイルのバックアップコピーをコンピュータに保存します。", "DE.ApplicationController.errorFilePassProtect": "ドキュメントがパスワードで保護されているため開くことができません", "DE.ApplicationController.errorFileSizeExceed": "ファイルサイズがサーバーで設定された制限を超過しています。
Documentサーバー管理者に詳細をお問い合わせください。", + "DE.ApplicationController.errorForceSave": "文書の保存中にエラーが発生しました。コンピューターにファイルを保存するために、「...としてダウンロード」を使用し、または後で再お試しください。", + "DE.ApplicationController.errorLoadingFont": "フォントがダウンロードされませんでした。文書サーバのアドミニストレータを連絡してください。", + "DE.ApplicationController.errorSubmit": "送信に失敗しました。", "DE.ApplicationController.errorUpdateVersionOnDisconnect": "インターネット接続が復旧し、ファイルのバージョンが更新されています。
作業を継続する前に、ファイルをダウンロードするか内容をコピーして、変更が消えてしまわないようにしてからページを再読み込みしてください。", "DE.ApplicationController.errorUserDrop": "今、ファイルにアクセスすることはできません。", "DE.ApplicationController.notcriticalErrorTitle": "警告", "DE.ApplicationController.scriptLoadError": "接続が非常に遅いため、いくつかのコンポーネントはロードされませんでした。ページを再読み込みしてください。", + "DE.ApplicationController.textAnonymous": "匿名", + "DE.ApplicationController.textGotIt": "OK", + "DE.ApplicationController.textGuest": "ゲスト", "DE.ApplicationController.textLoadingDocument": "ドキュメントを読み込んでいます", "DE.ApplicationController.textOf": "から", + "DE.ApplicationController.textRequired": "必須事項をすべて入力し、送信してください。", + "DE.ApplicationController.textSubmited": "フォームが正常に送信されました。
クリックしてヒントを閉じます。", "DE.ApplicationController.txtClose": "閉じる", + "DE.ApplicationController.txtEmpty": "(空)", + "DE.ApplicationController.txtPressLink": "リンクをクリックしてCTRLを押してください", "DE.ApplicationController.unknownErrorText": "不明なエラー", - "DE.ApplicationController.unsupportedBrowserErrorText": "お使いのブラウザがサポートされていません。", + "DE.ApplicationController.unsupportedBrowserErrorText": "お使いのブラウザはサポートされていません。", "DE.ApplicationController.waitText": "少々お待ちください...", "DE.ApplicationView.txtDownload": "ダウンロード", + "DE.ApplicationView.txtDownloadDocx": "docxとして保存", + "DE.ApplicationView.txtDownloadPdf": "PDFとして保存", "DE.ApplicationView.txtEmbed": "埋め込み", + "DE.ApplicationView.txtFileLocation": "ファイルを開く", "DE.ApplicationView.txtFullScreen": "全画面表示", "DE.ApplicationView.txtPrint": "印刷する", "DE.ApplicationView.txtShare": "シェア" diff --git a/apps/documenteditor/forms/locale/ko.json b/apps/documenteditor/forms/locale/ko.json index 4ba731456..441e9370e 100644 --- a/apps/documenteditor/forms/locale/ko.json +++ b/apps/documenteditor/forms/locale/ko.json @@ -1,6 +1,6 @@ { "common.view.modals.txtCopy": "클립보드로 복사", - "common.view.modals.txtEmbed": "개체 삽입", + "common.view.modals.txtEmbed": "퍼가기", "common.view.modals.txtHeight": "높이", "common.view.modals.txtShare": "링크 공유", "common.view.modals.txtWidth": "너비", @@ -10,21 +10,54 @@ "DE.ApplicationController.downloadErrorText": "다운로드 실패", "DE.ApplicationController.downloadTextText": "문서 다운로드 중...", "DE.ApplicationController.errorAccessDeny": "권한이없는 작업을 수행하려고합니다.
Document Server 관리자에게 문의하십시오.", - "DE.ApplicationController.errorDefaultMessage": "오류 코드: %1", - "DE.ApplicationController.errorFilePassProtect": "이 문서는 암호로 보호되어있어 열 수 없습니다.", + "DE.ApplicationController.errorDefaultMessage": "오류 코드 : % 1", + "DE.ApplicationController.errorEditingDownloadas": " 문서 작업 중에 알수 없는 장애가 발생했습니다.
\"다른 이름으로 다운로드...\"를 선택하여 파일을 현재 사용 중인 컴퓨터 하드 디스크에 저장하시기 바랍니다.", + "DE.ApplicationController.errorFilePassProtect": "이 문서는 암호로 보호되어 있어 열 수 없습니다.", "DE.ApplicationController.errorFileSizeExceed": "파일의 크기가 서버에서 정해진 범위를 초과 했습니다. 문서 서버 관리자에게 해당 내용에 대한 자세한 안내를 받아 보시기 바랍니다.", - "DE.ApplicationController.errorUpdateVersionOnDisconnect": "인터넷 연결이 복구 되었으며 파일에 수정 사항이 발생되었습니다. 작업을 계속 하시기 전에 반드시 기존의 파일을 다운로드하거나 내용을 복사해서 작업 내용을 잃어 버리는 일이 없도록 한 후에 이 페이지를 새로 고침(reload) 해 주시기 바랍니다.", + "DE.ApplicationController.errorForceSave": "파일을 저장하는 동안 오류가 발생했습니다. \"다른 이름으로 다운로드\" 옵션을 사용하여 파일을 컴퓨터의 하드 드라이브에 저장하거나 나중에 다시 시도하십시오.", + "DE.ApplicationController.errorLoadingFont": "글꼴이 로드되지 않았습니다.
문서 관리 관리자에게 문의하십시오.", + "DE.ApplicationController.errorServerVersion": "편집기 버전이 업데이트되었습니다. 페이지가 다시로드되어 변경 사항이 적용됩니다.", + "DE.ApplicationController.errorSubmit": "전송실패", + "DE.ApplicationController.errorUpdateVersion": "파일 버전이 변경되었습니다. 페이지가 다시로드됩니다.", + "DE.ApplicationController.errorUpdateVersionOnDisconnect": "네트워크 연결이 복원되었으며 파일 버전이 변경되었습니다.
계속 작업하기 전에 데이터 손실을 방지하기 위해 파일을 다운로드하거나 내용을 복사한 다음 이 페이지를 새로 고쳐야 합니다.", "DE.ApplicationController.errorUserDrop": "파일에 지금 액세스 할 수 없습니다.", "DE.ApplicationController.notcriticalErrorTitle": "경고", "DE.ApplicationController.scriptLoadError": "연결 속도가 느려, 일부 요소들이 로드되지 않았습니다. 페이지를 다시 새로 고침해주세요.", + "DE.ApplicationController.textAnonymous": "익명", + "DE.ApplicationController.textBuyNow": "웹 사이트 방문", + "DE.ApplicationController.textCloseTip": "팁을 닫으려면 클릭합니다.", + "DE.ApplicationController.textContactUs": "영업 담당자에게 문의", + "DE.ApplicationController.textGotIt": "취득", + "DE.ApplicationController.textGuest": "게스트", "DE.ApplicationController.textLoadingDocument": "문서 로드 중", + "DE.ApplicationController.textNoLicenseTitle": "ONLYOFFICE 연결 제한", "DE.ApplicationController.textOf": "의", + "DE.ApplicationController.textRequired": "양식을 보내려면 모든 필수 필드를 채우십시오.", + "DE.ApplicationController.textSubmited": "양식이 성공적으로 전송되었습니다.
여기를 클릭하여 프롬프트를 닫으십시오", + "DE.ApplicationController.titleServerVersion": "편집기가 업데이트되었습니다.", + "DE.ApplicationController.titleUpdateVersion": "버전이 변경되었습니다.", "DE.ApplicationController.txtClose": "닫기", - "DE.ApplicationController.unknownErrorText": "알 수없는 오류.", + "DE.ApplicationController.txtEmpty": "(없음)", + "DE.ApplicationController.txtPressLink": "CTRL 키를 누른 상태에서 링크 클릭", + "DE.ApplicationController.unknownErrorText": "알 수 없는 오류.", "DE.ApplicationController.unsupportedBrowserErrorText": "사용중인 브라우저가 지원되지 않습니다.", - "DE.ApplicationController.waitText": "잠시만 기달려주세요...", + "DE.ApplicationController.waitText": "잠시만 기다려주세요...", + "DE.ApplicationController.warnLicenseExceeded": "귀하의 시스템은 동시에 연결을 편집하는 %1명의 편집자에게 도달했습니다. 이 문서는 보기 모드에서만 열 수 있습니다.
자세한 내용은 관리자에게 문의하십시오.", + "DE.ApplicationController.warnLicenseLimitedNoAccess": "라이센스가 만료되었습니다.
더 이상 파일을 수정할 수 있는 권한이 없습니다.
관리자에게 문의하세요.", + "DE.ApplicationController.warnLicenseLimitedRenewed": "라이센스를 갱신해야합니다.
문서 편집 기능에 대한 액세스가 제한되어 있습니다.
전체 액세스 권한을 얻으려면 관리자에게 문의하십시오", + "DE.ApplicationController.warnLicenseUsersExceeded": "편집자 사용자 한도인 %1명에 도달했습니다. 자세한 내용은 관리자에게 문의하십시오.", + "DE.ApplicationController.warnNoLicense": "이 버전의 %1 편집자는 문서 서버에 대한 동시 연결에 특정 제한 사항이 있습니다.
더 많은 정보가 필요하면 현재 라이센스를 업그레이드하거나 상업용 라이센스를 구입하십시오.", + "DE.ApplicationController.warnNoLicenseUsers": "ONLYOFFICE 편집자의이 버전은 동시 사용자에게 일정한 제한이 있습니다.
더 필요한 것이 있으면 현재 라이센스를 업그레이드하거나 상용 라이센스를 구입하십시오.", + "DE.ApplicationView.textClear": "모든 필드 지우기", + "DE.ApplicationView.textNext": "다음 필드", + "DE.ApplicationView.textSubmit": "전송", "DE.ApplicationView.txtDownload": "다운로드 ", - "DE.ApplicationView.txtEmbed": "개체 삽입", + "DE.ApplicationView.txtDownloadDocx": "docx 형식으로 다운로드", + "DE.ApplicationView.txtDownloadPdf": "PDF형식으로 다운로드", + "DE.ApplicationView.txtEmbed": "퍼가기", + "DE.ApplicationView.txtFileLocation": "파일 위치 열기", "DE.ApplicationView.txtFullScreen": "전체 화면", - "DE.ApplicationView.txtShare": "공유" + "DE.ApplicationView.txtPrint": "인쇄", + "DE.ApplicationView.txtShare": "공유", + "DE.ApplicationView.txtTheme": "인터페이스 테마" } \ No newline at end of file diff --git a/apps/documenteditor/forms/locale/lo.json b/apps/documenteditor/forms/locale/lo.json index d7975ae97..cf4dd0f71 100644 --- a/apps/documenteditor/forms/locale/lo.json +++ b/apps/documenteditor/forms/locale/lo.json @@ -19,11 +19,8 @@ "DE.ApplicationController.errorUserDrop": "ບໍ່ສາມາດເຂົ້າເຖິງຟາຍໄດ້", "DE.ApplicationController.notcriticalErrorTitle": "ເຕືອນ", "DE.ApplicationController.scriptLoadError": "ການເຊື່ອມຕໍ່ອິນເຕີເນັດຊ້າເກີນໄປ, ບາງອົງປະກອບບໍ່ສາມາດໂຫຼດໄດ້. ກະລຸນາໂຫຼດໜ້ານີ້ຄືນໃໝ່", - "DE.ApplicationController.textClear": "ລຶບລ້າງຟີລທັງໝົດ", "DE.ApplicationController.textLoadingDocument": "ກຳລັງໂຫຼດເອກະສານ", - "DE.ApplicationController.textNext": "ຟີລທັດໄປ", "DE.ApplicationController.textOf": "ຂອງ", - "DE.ApplicationController.textSubmit": "ສົ່ງອອກ", "DE.ApplicationController.textSubmited": " ແບບຟອມທີ່ສົ່ງມາແລ້ວ", "DE.ApplicationController.txtClose": " ປິດ", "DE.ApplicationController.unknownErrorText": "ມີຂໍ້ຜິດພາດທີ່ບໍ່ຮູ້ສາເຫດ", diff --git a/apps/documenteditor/forms/locale/nl.json b/apps/documenteditor/forms/locale/nl.json index 424c279f0..8e7c05861 100644 --- a/apps/documenteditor/forms/locale/nl.json +++ b/apps/documenteditor/forms/locale/nl.json @@ -20,14 +20,11 @@ "DE.ApplicationController.notcriticalErrorTitle": "Waarschuwing", "DE.ApplicationController.scriptLoadError": "De verbinding is te langzaam, sommige componenten konden niet geladen worden. Laad de pagina opnieuw.", "DE.ApplicationController.textAnonymous": "Anoniem", - "DE.ApplicationController.textClear": "Wis Alle Velden", "DE.ApplicationController.textGotIt": "OK", "DE.ApplicationController.textGuest": "Gast", "DE.ApplicationController.textLoadingDocument": "Document wordt geladen", - "DE.ApplicationController.textNext": "Volgend veld ", "DE.ApplicationController.textOf": "van", "DE.ApplicationController.textRequired": "Vul alle verplichte velden in om het formulier te verzenden.", - "DE.ApplicationController.textSubmit": "Verzenden ", "DE.ApplicationController.textSubmited": "Formulier succesvol ingediend
Klik om de tip te sluiten", "DE.ApplicationController.txtClose": "Sluiten", "DE.ApplicationController.unknownErrorText": "Onbekende fout.", diff --git a/apps/documenteditor/forms/locale/pl.json b/apps/documenteditor/forms/locale/pl.json index b7b983c42..2d0d2a800 100644 --- a/apps/documenteditor/forms/locale/pl.json +++ b/apps/documenteditor/forms/locale/pl.json @@ -9,22 +9,35 @@ "DE.ApplicationController.criticalErrorTitle": "Błąd", "DE.ApplicationController.downloadErrorText": "Pobieranie nieudane.", "DE.ApplicationController.downloadTextText": "Pobieranie dokumentu...", - "DE.ApplicationController.errorAccessDeny": "Próbujesz wykonać działanie, na które nie masz uprawnień.
Proszę skontaktować się z administratorem serwera dokumentów.", + "DE.ApplicationController.errorAccessDeny": "Próbujesz wykonać działanie, do którego nie masz uprawnień.
Proszę skontaktować się ze swoim administratorem Serwera Dokumentów.", "DE.ApplicationController.errorDefaultMessage": "Kod błędu: %1", - "DE.ApplicationController.errorFilePassProtect": "Dokument jest chroniony hasłem i nie może być otwarty.", - "DE.ApplicationController.errorFileSizeExceed": "Rozmiar pliku przekracza dopuszczone limit dla twojego serwera.
Prosimy o kontakt z administratorem twojego serwera w celu uzyskania szczegółowych informacji.", - "DE.ApplicationController.errorUpdateVersionOnDisconnect": "Połączenie z internetem zostało odzyskane, a wersja pliku uległa zmianie.
Zanim będzie mógł kontynuować pracę, musisz pobrać plik albo skopiować jego zawartość, aby mieć pewność, że nic nie zostało utracone, a następnie odświeżyć stronę.", + "DE.ApplicationController.errorEditingDownloadas": "Wystąpił błąd podczas pracy z dokumentem.
Użyj opcji \"Pobierz jako...\", aby zapisać kopię zapasową pliku na dysku twardym komputera.", + "DE.ApplicationController.errorFilePassProtect": "Dokument jest chroniony hasłem i nie może zostać otwarty.", + "DE.ApplicationController.errorFileSizeExceed": "Rozmiar pliku przekracza dopuszczone limit ustawiony dla twojego serwera.
Prosimy o kontakt z administratorem twojego serwera w celu uzyskania szczegółowych informacji.", + "DE.ApplicationController.errorForceSave": "Wystąpił błąd podczas zapisywania pliku. Użyj opcji \"Pobierz jako\", aby zapisać plik na dysku twardym komputera lub spróbuj poźniej zapisać plik ponownie.", + "DE.ApplicationController.errorLoadingFont": "Czcionki nie zostały załadowane.
Skontaktuj się z administratorem Serwera Dokumentów.", + "DE.ApplicationController.errorSubmit": "Przesyłanie nie powiodło się.", + "DE.ApplicationController.errorUpdateVersionOnDisconnect": "Połączenie z internetem zostało odzyskane, a wersja pliku uległa zmianie.
Zanim będziesz mógł kontynuować pracę, musisz pobrać plik albo skopiować jego zawartość, aby mieć pewność, że nic nie zostało utracone, a następnie odświeżyć stronę.", "DE.ApplicationController.errorUserDrop": "Nie można uzyskać dostępu do tego pliku.", "DE.ApplicationController.notcriticalErrorTitle": "Ostrzeżenie", - "DE.ApplicationController.scriptLoadError": "Połączenie jest zbyt wolne, niektóre komponenty mogą być niezaładowane. Prosimy odświeżyć stronę.", - "DE.ApplicationController.textLoadingDocument": "Ładowanie dokumentu", + "DE.ApplicationController.scriptLoadError": "Połączenie jest zbyt wolne, niektóre komponenty mogą być niezaładowane. Proszę odświeżyć stronę.", + "DE.ApplicationController.textAnonymous": "Anonimowy użytkownik ", + "DE.ApplicationController.textGuest": "Gość", + "DE.ApplicationController.textLoadingDocument": "Wgrywanie dokumentu", "DE.ApplicationController.textOf": "z", + "DE.ApplicationController.textRequired": "Wypełnij wszystkie wymagane pola, aby wysłać formularz.", + "DE.ApplicationController.textSubmited": "
Formularz załączony poprawnie
Kliknij aby zamknąć podpowiedź.", "DE.ApplicationController.txtClose": "Zamknij", + "DE.ApplicationController.txtEmpty": "(Pusty)", + "DE.ApplicationController.txtPressLink": "Naciśnij Ctrl i kliknij w link", "DE.ApplicationController.unknownErrorText": "Nieznany błąd.", "DE.ApplicationController.unsupportedBrowserErrorText": "Twoja przeglądarka nie jest wspierana.", "DE.ApplicationController.waitText": "Proszę czekać...", "DE.ApplicationView.txtDownload": "Pobierz", + "DE.ApplicationView.txtDownloadDocx": "Pobierz jako docx", + "DE.ApplicationView.txtDownloadPdf": "Pobierz jako pdf", "DE.ApplicationView.txtEmbed": "Osadź", + "DE.ApplicationView.txtFileLocation": "Otwórz miejsce lokalizacji pliku", "DE.ApplicationView.txtFullScreen": "Pełny ekran", "DE.ApplicationView.txtPrint": "Drukuj", "DE.ApplicationView.txtShare": "Udostępnij" diff --git a/apps/documenteditor/forms/locale/pt.json b/apps/documenteditor/forms/locale/pt.json index ec784e55d..61cd3d56c 100644 --- a/apps/documenteditor/forms/locale/pt.json +++ b/apps/documenteditor/forms/locale/pt.json @@ -1,5 +1,5 @@ { - "common.view.modals.txtCopy": "Copiar para a área de transferência", + "common.view.modals.txtCopy": "Copiar para a área de trabalho", "common.view.modals.txtEmbed": "Incorporar", "common.view.modals.txtHeight": "Altura", "common.view.modals.txtShare": "Compartilhar link", @@ -7,38 +7,57 @@ "DE.ApplicationController.convertationErrorText": "Conversão falhou.", "DE.ApplicationController.convertationTimeoutText": "Tempo limite de conversão excedido.", "DE.ApplicationController.criticalErrorTitle": "Erro", - "DE.ApplicationController.downloadErrorText": "Transferência falhou.", - "DE.ApplicationController.downloadTextText": "Transferindo documento...", - "DE.ApplicationController.errorAccessDeny": "Você está tentando executar uma ação para a qual não tem direitos.
Entre em contato com o administrador do Document Server.", + "DE.ApplicationController.downloadErrorText": "Download falhou.", + "DE.ApplicationController.downloadTextText": "Baixando documento...", + "DE.ApplicationController.errorAccessDeny": "Você está tentando executar uma ação que você não tem direitos.
Contate o administrador do Servidor de Documentos.", "DE.ApplicationController.errorDefaultMessage": "Código do erro: %1", - "DE.ApplicationController.errorEditingDownloadas": "Ocorreu um erro durante o trabalho com o documento.
Utilizar a opção 'Download as...' para salvar a cópia de backup do arquivo no disco rígido do seu computador.", + "DE.ApplicationController.errorEditingDownloadas": "Ocorreu um erro.
Use a opção 'Transferir como...' para gravar a cópia de backup em seu computador.", "DE.ApplicationController.errorFilePassProtect": "O documento é protegido por senha e não pode ser aberto.", "DE.ApplicationController.errorFileSizeExceed": "O tamanho do arquivo excede o limite de seu servidor.
Por favor, contate seu administrador de Servidor de Documentos para detalhes.", + "DE.ApplicationController.errorForceSave": "Ocorreu um erro na gravação. Favor utilizar a opção 'Baixar como' para gravar o arquivo em seu computador ou tente novamente mais tarde.", + "DE.ApplicationController.errorLoadingFont": "As fontes não foram carregadas.
Entre em contato com o administrador do Document Server.", + "DE.ApplicationController.errorServerVersion": "A versão do editor foi atualizada. A página será recarregada para aplicar as alterações.", "DE.ApplicationController.errorSubmit": "Falha no envio.", + "DE.ApplicationController.errorUpdateVersion": "A versão do arquivo foi alterada. A página será recarregada.", "DE.ApplicationController.errorUpdateVersionOnDisconnect": "A conexão à internet foi restabelecida, e a versão do arquivo foi alterada.
Antes de continuar seu trabalho, transfira o arquivo ou copie seu conteúdo para assegurar que nada seja perdido, e então, recarregue esta página.", "DE.ApplicationController.errorUserDrop": "O arquivo não pode ser acessado agora.", "DE.ApplicationController.notcriticalErrorTitle": "Aviso", "DE.ApplicationController.scriptLoadError": "A conexão está muito lenta, e alguns dos componentes não puderam ser carregados. Por favor, recarregue a página.", "DE.ApplicationController.textAnonymous": "Anônimo", - "DE.ApplicationController.textClear": "Limpar todos os campos", + "DE.ApplicationController.textBuyNow": "Visitar website", + "DE.ApplicationController.textCloseTip": "Clique para fechar a dica.", + "DE.ApplicationController.textContactUs": "Entre em contato com o departamento de vendas", "DE.ApplicationController.textGotIt": "Entendi", - "DE.ApplicationController.textGuest": "Convidado(a)", + "DE.ApplicationController.textGuest": "Convidado", "DE.ApplicationController.textLoadingDocument": "Carregando documento", - "DE.ApplicationController.textNext": "Próximo campo", + "DE.ApplicationController.textNoLicenseTitle": "Limite de licença atingido", "DE.ApplicationController.textOf": "de", "DE.ApplicationController.textRequired": "Preencha todos os campos obrigatórios para enviar o formulário.", - "DE.ApplicationController.textSubmit": "Enviar", "DE.ApplicationController.textSubmited": "Formulário apresentado com sucesso>br>Click para fechar a ponta", - "DE.ApplicationController.txtClose": "Fechar", + "DE.ApplicationController.titleServerVersion": "Editor atualizado", + "DE.ApplicationController.titleUpdateVersion": "Versão alterada", + "DE.ApplicationController.txtClose": "Encerrar", + "DE.ApplicationController.txtEmpty": "(Vazio)", + "DE.ApplicationController.txtPressLink": "Pressione CTRL e clique no link", "DE.ApplicationController.unknownErrorText": "Erro desconhecido.", "DE.ApplicationController.unsupportedBrowserErrorText": "Seu navegador não é suportado.", - "DE.ApplicationController.waitText": "Aguarde...", - "DE.ApplicationView.txtDownload": "Transferir", + "DE.ApplicationController.waitText": "Por favor, aguarde...", + "DE.ApplicationController.warnLicenseExceeded": "Você atingiu o limite de conexões simultâneas para editores %1. Este documento será aberto apenas para visualização.
Entre em contato com seu administrador para saber mais.", + "DE.ApplicationController.warnLicenseLimitedNoAccess": "A licença expirou.
Você não tem acesso à funcionalidade de edição de documentos.
Por favor, contate seu administrador.", + "DE.ApplicationController.warnLicenseLimitedRenewed": "A licença precisa ser renovada.
Você tem acesso limitado à funcionalidade de edição de documentos.
Entre em contato com o administrador para obter acesso total.", + "DE.ApplicationController.warnLicenseUsersExceeded": "Você atingiu o limite de usuários para editores %1. Entre em contato com seu administrador para saber mais.", + "DE.ApplicationController.warnNoLicense": "Você atingiu o limite de conexões simultâneas para editores %1. Este documento será aberto apenas para visualização.
Entre em contato com a equipe de vendas da %1 para obter os termos de atualização pessoais.", + "DE.ApplicationController.warnNoLicenseUsers": "Você atingiu o limite de usuários para editores %1.
Entre em contato com a equipe de vendas da %1 para obter os termos de atualização pessoais.", + "DE.ApplicationView.textClear": "Limpar todos os campos", + "DE.ApplicationView.textNext": "Próximo campo", + "DE.ApplicationView.textSubmit": "Enviar", + "DE.ApplicationView.txtDownload": "Baixar", "DE.ApplicationView.txtDownloadDocx": "Baixar como docx", "DE.ApplicationView.txtDownloadPdf": "Baixar como pdf", "DE.ApplicationView.txtEmbed": "Incorporar", "DE.ApplicationView.txtFileLocation": "Local do arquivo aberto", "DE.ApplicationView.txtFullScreen": "Tela cheia", "DE.ApplicationView.txtPrint": "Imprimir", - "DE.ApplicationView.txtShare": "Compartilhar" + "DE.ApplicationView.txtShare": "Compartilhar", + "DE.ApplicationView.txtTheme": "Tema de interface" } \ No newline at end of file diff --git a/apps/documenteditor/forms/locale/ro.json b/apps/documenteditor/forms/locale/ro.json index 2916153cc..026f15cd9 100644 --- a/apps/documenteditor/forms/locale/ro.json +++ b/apps/documenteditor/forms/locale/ro.json @@ -14,25 +14,43 @@ "DE.ApplicationController.errorEditingDownloadas": "S-a produs o eroare în timpul editării documentului.
Pentru copierea de rezervă pe PC utilizați opțiunea Descărcare ca...", "DE.ApplicationController.errorFilePassProtect": "Fișierul este protejat cu parolă și deaceea nu poate fi deschis.", "DE.ApplicationController.errorFileSizeExceed": "Dimensiunea fișierului depășește limita permisă de serverul Dvs.
Pentru detalii, contactați administratorul dumneavoastră de Server Documente.", + "DE.ApplicationController.errorForceSave": "S-a produs o eroare în timpul salvării fișierului. Pentru copierea de rezervă pe PC utilizați opțiunea Descărcare ca... sau încercați din nou mai târziu.", + "DE.ApplicationController.errorLoadingFont": "Fonturile nu sunt încărcate.
Contactați administratorul dvs de Server Documente.", + "DE.ApplicationController.errorServerVersion": "Editorul a fost actualizat. Pagina va fi reîmprospătată pentru a aplica această actualizare.", "DE.ApplicationController.errorSubmit": "Remiterea eșuată.", + "DE.ApplicationController.errorUpdateVersion": "Versiunea fișierului s-a modificat. Pagina va fi reîmprospătată.", "DE.ApplicationController.errorUpdateVersionOnDisconnect": "Conexiunea la Internet s-a restabilit și versiunea fișierului s-a schimbat.
Înainte de a continua, fișierul trebuie descărcat sau conținutul fișierului copiat ca să vă asigurați că nimic nu e pierdut, apoi reîmprospătați această pagină.", "DE.ApplicationController.errorUserDrop": "Fișierul nu poate fi accesat deocamdată.", "DE.ApplicationController.notcriticalErrorTitle": "Avertisment", "DE.ApplicationController.scriptLoadError": "Conexeunea e prea lentă și unele elemente nu se încarcă. Încercați să reîmprospătati pagina.", "DE.ApplicationController.textAnonymous": "Anonim", - "DE.ApplicationController.textClear": "Goleşte toate câmpurile", + "DE.ApplicationController.textBuyNow": "Vizitarea site-ul Web", + "DE.ApplicationController.textCloseTip": "Faceţi clic pentru a închide sfatul.", + "DE.ApplicationController.textContactUs": "Contactați Departamentul de Vânzări", "DE.ApplicationController.textGotIt": "Am înțeles", "DE.ApplicationController.textGuest": "Invitat", "DE.ApplicationController.textLoadingDocument": "Încărcare document", - "DE.ApplicationController.textNext": "Câmpul următor", + "DE.ApplicationController.textNoLicenseTitle": "Ați atins limita stabilită de licență", "DE.ApplicationController.textOf": "din", "DE.ApplicationController.textRequired": "Toate câmpurile din formular trebuie completate înainte de a-l trimite.", - "DE.ApplicationController.textSubmit": "Remitere", "DE.ApplicationController.textSubmited": "Formularul a fost remis cu succes
Faceţi clic pentru a închide sfatul", + "DE.ApplicationController.titleServerVersion": "Editorul a fost actualizat", + "DE.ApplicationController.titleUpdateVersion": "Versiunea s-a modificat", "DE.ApplicationController.txtClose": "Închidere", + "DE.ApplicationController.txtEmpty": "(Gol)", + "DE.ApplicationController.txtPressLink": "Apăsați Ctrl și faceți clic pe linkul", "DE.ApplicationController.unknownErrorText": "Eroare necunoscută.", "DE.ApplicationController.unsupportedBrowserErrorText": "Browserul nu este compatibil.", "DE.ApplicationController.waitText": "Vă rugăm să așteptați...", + "DE.ApplicationController.warnLicenseExceeded": "Ați atins numărul maxim de conexiuni simultane la %1 de editoare. Documentul este disponibil numai pentru vizualizare.
Pentru detalii, contactați administratorul dvs.", + "DE.ApplicationController.warnLicenseLimitedNoAccess": "Licența dvs. a expirat.
Nu aveți acces la funcții de editare a documentului.
Contactați administratorul dvs. de rețeea.", + "DE.ApplicationController.warnLicenseLimitedRenewed": "Licență urmează să fie reînnoită.
Funcțiile de editare sunt cu acces limitat.
Pentru a obține acces nelimitat, contactați administratorul dvs. de rețea.", + "DE.ApplicationController.warnLicenseUsersExceeded": "Ați atins numărul maxim de utilizatori ai %1 editoare. Pentru detalii, contactați administratorul dvs.", + "DE.ApplicationController.warnNoLicense": "Ați atins numărul maxim de conexiuni simultane la %1 de editoare. Documentul este disponibil numai pentru vizualizare.
Contactați %1 Departamentul de Vânzări pentru acordarea condițiilor personale de licențiere.", + "DE.ApplicationController.warnNoLicenseUsers": "Ați atins numărul maxim de utilizatori ai %1 editoare. Contactați Grup Vânzări %1 pentru acordarea condițiilor personale de licențiere.", + "DE.ApplicationView.textClear": "Goleşte toate câmpurile", + "DE.ApplicationView.textNext": "Câmpul următor", + "DE.ApplicationView.textSubmit": "Remitere", "DE.ApplicationView.txtDownload": "Descărcare", "DE.ApplicationView.txtDownloadDocx": "Descărcare ca docx", "DE.ApplicationView.txtDownloadPdf": "Descărcare ca pdf", @@ -40,5 +58,6 @@ "DE.ApplicationView.txtFileLocation": "Deschidere locația fișierului", "DE.ApplicationView.txtFullScreen": "Ecran complet", "DE.ApplicationView.txtPrint": "Imprimare", - "DE.ApplicationView.txtShare": "Partajează" + "DE.ApplicationView.txtShare": "Partajează", + "DE.ApplicationView.txtTheme": "Tema interfeței" } \ No newline at end of file diff --git a/apps/documenteditor/forms/locale/ru.json b/apps/documenteditor/forms/locale/ru.json index 29a785721..9d39a5d5d 100644 --- a/apps/documenteditor/forms/locale/ru.json +++ b/apps/documenteditor/forms/locale/ru.json @@ -14,25 +14,43 @@ "DE.ApplicationController.errorEditingDownloadas": "В ходе работы с документом произошла ошибка.
Используйте опцию 'Скачать как...', чтобы сохранить резервную копию файла на жесткий диск компьютера.", "DE.ApplicationController.errorFilePassProtect": "Файл защищен паролем и не может быть открыт.", "DE.ApplicationController.errorFileSizeExceed": "Размер файла превышает ограничение, установленное для вашего сервера.
Обратитесь к администратору Сервера документов для получения дополнительной информации.", + "DE.ApplicationController.errorForceSave": "При сохранении файла произошла ошибка. Используйте опцию 'Скачать как', чтобы сохранить файл на жестком диске компьютера или повторите попытку позже.", + "DE.ApplicationController.errorLoadingFont": "Шрифты не загружены.
Пожалуйста, обратитесь к администратору Сервера документов.", + "DE.ApplicationController.errorServerVersion": "Версия редактора была обновлена. Страница будет перезагружена, чтобы применить изменения.", "DE.ApplicationController.errorSubmit": "Не удалось отправить.", + "DE.ApplicationController.errorUpdateVersion": "Версия файла была изменена. Страница будет перезагружена.", "DE.ApplicationController.errorUpdateVersionOnDisconnect": "Подключение к Интернету было восстановлено, и версия файла изменилась.
Прежде чем продолжить работу, надо скачать файл или скопировать его содержимое, чтобы обеспечить сохранность данных, а затем перезагрузить страницу.", "DE.ApplicationController.errorUserDrop": "В настоящий момент файл недоступен.", "DE.ApplicationController.notcriticalErrorTitle": "Внимание", "DE.ApplicationController.scriptLoadError": "Слишком медленное подключение, некоторые компоненты не удалось загрузить. Пожалуйста, обновите страницу.", "DE.ApplicationController.textAnonymous": "Анонимный пользователь", - "DE.ApplicationController.textClear": "Очистить все поля", + "DE.ApplicationController.textBuyNow": "Перейти на сайт", + "DE.ApplicationController.textCloseTip": "Нажмите, чтобы закрыть подсказку.", + "DE.ApplicationController.textContactUs": "Связаться с отделом продаж", "DE.ApplicationController.textGotIt": "ОК", "DE.ApplicationController.textGuest": "Гость", "DE.ApplicationController.textLoadingDocument": "Загрузка документа", - "DE.ApplicationController.textNext": "Следующее поле", + "DE.ApplicationController.textNoLicenseTitle": "Лицензионное ограничение", "DE.ApplicationController.textOf": "из", "DE.ApplicationController.textRequired": "Заполните все обязательные поля для отправки формы.", - "DE.ApplicationController.textSubmit": "Отправить", "DE.ApplicationController.textSubmited": "Форма успешно отправлена
Нажмите, чтобы закрыть подсказку", + "DE.ApplicationController.titleServerVersion": "Редактор обновлен", + "DE.ApplicationController.titleUpdateVersion": "Версия изменилась", "DE.ApplicationController.txtClose": "Закрыть", + "DE.ApplicationController.txtEmpty": "(Пусто)", + "DE.ApplicationController.txtPressLink": "Нажмите CTRL и щелкните по ссылке", "DE.ApplicationController.unknownErrorText": "Неизвестная ошибка.", "DE.ApplicationController.unsupportedBrowserErrorText": "Ваш браузер не поддерживается.", "DE.ApplicationController.waitText": "Пожалуйста, подождите...", + "DE.ApplicationController.warnLicenseExceeded": "Вы достигли лимита на одновременные подключения к редакторам %1. Этот документ будет открыт только на просмотр.
Свяжитесь с администратором, чтобы узнать больше.", + "DE.ApplicationController.warnLicenseLimitedNoAccess": "Истек срок действия лицензии.
Нет доступа к функциональности редактирования документов.
Пожалуйста, обратитесь к администратору.", + "DE.ApplicationController.warnLicenseLimitedRenewed": "Необходимо обновить лицензию.
У вас ограниченный доступ к функциональности редактирования документов.
Пожалуйста, обратитесь к администратору, чтобы получить полный доступ", + "DE.ApplicationController.warnLicenseUsersExceeded": "Вы достигли лимита на количество пользователей редакторов %1. Свяжитесь с администратором, чтобы узнать больше.", + "DE.ApplicationController.warnNoLicense": "Вы достигли лимита на одновременные подключения к редакторам %1. Этот документ будет открыт на просмотр.
Напишите в отдел продаж %1, чтобы обсудить индивидуальные условия лицензирования.", + "DE.ApplicationController.warnNoLicenseUsers": "Вы достигли лимита на количество пользователей редакторов %1. Напишите в отдел продаж %1, чтобы обсудить индивидуальные условия обновления.", + "DE.ApplicationView.textClear": "Очистить все поля", + "DE.ApplicationView.textNext": "Следующее поле", + "DE.ApplicationView.textSubmit": "Отправить", "DE.ApplicationView.txtDownload": "Скачать файл", "DE.ApplicationView.txtDownloadDocx": "Скачать как docx", "DE.ApplicationView.txtDownloadPdf": "Скачать как pdf", @@ -40,5 +58,6 @@ "DE.ApplicationView.txtFileLocation": "Открыть расположение файла", "DE.ApplicationView.txtFullScreen": "Во весь экран", "DE.ApplicationView.txtPrint": "Печать", - "DE.ApplicationView.txtShare": "Поделиться" + "DE.ApplicationView.txtShare": "Поделиться", + "DE.ApplicationView.txtTheme": "Тема интерфейса" } \ No newline at end of file diff --git a/apps/documenteditor/forms/locale/sk.json b/apps/documenteditor/forms/locale/sk.json index 7a3eebfc1..9e892db9c 100644 --- a/apps/documenteditor/forms/locale/sk.json +++ b/apps/documenteditor/forms/locale/sk.json @@ -11,21 +11,49 @@ "DE.ApplicationController.downloadTextText": "Sťahovanie dokumentu...", "DE.ApplicationController.errorAccessDeny": "Pokúšate sa vykonať akciu, na ktorú nemáte práva.
Prosím, kontaktujte svojho správcu dokumentového servera.", "DE.ApplicationController.errorDefaultMessage": "Kód chyby: %1", + "DE.ApplicationController.errorEditingDownloadas": "Pri práci s dokumentom došlo k chybe.
Použite voľbu \"Stiahnuť ako...\" a uložte si záložnú kópiu súboru na svoj počítač.", "DE.ApplicationController.errorFilePassProtect": "Dokument je chránený heslom a nie je možné ho otvoriť.", "DE.ApplicationController.errorFileSizeExceed": "Veľkosť súboru prekračuje limity vášho servera.
Kontaktujte prosím vášho správcu dokumentového servera o ďalšie podrobnosti.", + "DE.ApplicationController.errorForceSave": "Pri ukladaní súboru sa vyskytla chyba. Ak chcete súbor uložiť na pevný disk počítača, použite možnosť 'Prevziať ako' alebo to skúste znova neskôr.", + "DE.ApplicationController.errorLoadingFont": "Fonty sa nenahrali.
Kontaktujte prosím svojho administrátora Servera dokumentov.", + "DE.ApplicationController.errorServerVersion": "Verzia editora bola aktualizovaná. Stránka sa opätovne načíta, aby sa vykonali zmeny.", + "DE.ApplicationController.errorSubmit": "Odoslanie sa nepodarilo.", + "DE.ApplicationController.errorUpdateVersion": "Verzia súboru bola zmenená. Stránka sa znova načíta.", "DE.ApplicationController.errorUpdateVersionOnDisconnect": "Internetové spojenie bolo obnovené a verzia súboru bola zmenená.
Predtým, než budete pokračovať v práci, potrebujete si stiahnuť súbor alebo kópiu jeho obsahu, aby sa nič nestratilo. Potom znovu načítajte stránku.", "DE.ApplicationController.errorUserDrop": "K súboru nie je možné práve teraz získať prístup.", "DE.ApplicationController.notcriticalErrorTitle": "Upozornenie", "DE.ApplicationController.scriptLoadError": "Spojenie je príliš pomalé, niektoré komponenty nemožno nahrať. Obnovte prosím stránku.", + "DE.ApplicationController.textAnonymous": "Anonymný", + "DE.ApplicationController.textBuyNow": "Navštíviť webovú stránku", + "DE.ApplicationController.textCloseTip": "Kliknite na zatvorenie tipu.", + "DE.ApplicationController.textContactUs": "Kontaktujte predajcu", + "DE.ApplicationController.textGotIt": "Pochopil/a som", + "DE.ApplicationController.textGuest": "Hosť", "DE.ApplicationController.textLoadingDocument": "Načítavanie dokumentu", + "DE.ApplicationController.textNoLicenseTitle": "Bol dosiahnutý limit licencie", "DE.ApplicationController.textOf": "z", + "DE.ApplicationController.textRequired": "Vyplňte všetky požadované polia, aby ste formulár mohli odoslať.", + "DE.ApplicationController.textSubmited": "Formulár bol úspešne predložený
Kliknite, aby ste tip zatvorili", + "DE.ApplicationController.titleServerVersion": "Editor bol aktualizovaný", + "DE.ApplicationController.titleUpdateVersion": "Verzia bola zmenená", "DE.ApplicationController.txtClose": "Zatvoriť", + "DE.ApplicationController.txtEmpty": "(Prázdne)", + "DE.ApplicationController.txtPressLink": "Stlačte CTRL a kliknite na odkaz", "DE.ApplicationController.unknownErrorText": "Neznáma chyba.", "DE.ApplicationController.unsupportedBrowserErrorText": "Váš prehliadač nie je podporovaný.", "DE.ApplicationController.waitText": "Prosím čakajte...", + "DE.ApplicationController.warnLicenseLimitedNoAccess": "Licencia vypršala.
K funkcii úprav dokumentu už nemáte prístup.
Kontaktujte svojho administrátora, prosím.", + "DE.ApplicationController.warnLicenseLimitedRenewed": "Je potrebné obnoviť licenciu.
K funkciám úprav dokumentov máte obmedzený prístup.
Pre získanie úplného prístupu kontaktujte prosím svojho administrátora.", + "DE.ApplicationView.textClear": "Vyčistiť všetky polia", + "DE.ApplicationView.textNext": "Nasledujúce pole", + "DE.ApplicationView.textSubmit": "Odoslať", "DE.ApplicationView.txtDownload": "Stiahnuť", + "DE.ApplicationView.txtDownloadDocx": "Stiahnuť ako docx", + "DE.ApplicationView.txtDownloadPdf": "Stiahnuť ako pdf", "DE.ApplicationView.txtEmbed": "Vložiť", + "DE.ApplicationView.txtFileLocation": "Otvoriť umiestnenie súboru", "DE.ApplicationView.txtFullScreen": "Celá obrazovka", "DE.ApplicationView.txtPrint": "Tlačiť", - "DE.ApplicationView.txtShare": "Zdieľať" + "DE.ApplicationView.txtShare": "Zdieľať", + "DE.ApplicationView.txtTheme": "Téma rozhrania" } \ No newline at end of file diff --git a/apps/documenteditor/forms/locale/sl.json b/apps/documenteditor/forms/locale/sl.json index 018e14331..428edaae4 100644 --- a/apps/documenteditor/forms/locale/sl.json +++ b/apps/documenteditor/forms/locale/sl.json @@ -19,11 +19,8 @@ "DE.ApplicationController.errorUserDrop": "Do datoteke v tem trenutku ni možno dostopati.", "DE.ApplicationController.notcriticalErrorTitle": "Opozorilo", "DE.ApplicationController.scriptLoadError": "Povezava je počasna, nekatere komponente niso pravilno naložene.Prosimo osvežite stran.", - "DE.ApplicationController.textClear": "Počisti vsa polja", "DE.ApplicationController.textLoadingDocument": "Nalaganje dokumenta", - "DE.ApplicationController.textNext": "Naslednje polje", "DE.ApplicationController.textOf": "od", - "DE.ApplicationController.textSubmit": "Pošlji", "DE.ApplicationController.textSubmited": "Obrazec poslan uspešno
Pritisnite tukaj za zaprtje obvestila", "DE.ApplicationController.txtClose": "Zapri", "DE.ApplicationController.unknownErrorText": "Neznana napaka.", diff --git a/apps/documenteditor/forms/locale/sv.json b/apps/documenteditor/forms/locale/sv.json index 6516afa10..5ac1829b4 100644 --- a/apps/documenteditor/forms/locale/sv.json +++ b/apps/documenteditor/forms/locale/sv.json @@ -11,20 +11,30 @@ "DE.ApplicationController.downloadTextText": "Laddar ner dokumentet...", "DE.ApplicationController.errorAccessDeny": "Du försöker utföra en åtgärd som du inte har rättighet till.
Vänligen kontakta din systemadministratör.", "DE.ApplicationController.errorDefaultMessage": "Felkod: %1", + "DE.ApplicationController.errorEditingDownloadas": "Ett fel har inträffat.
Använd \"Ladda ned som...\" för att spara en säkerhetskopia på din dator.", "DE.ApplicationController.errorFilePassProtect": "Dokumentet är lösenordsskyddat och kunde inte öppnas. ", "DE.ApplicationController.errorFileSizeExceed": "Filstorleken överskrider gränsen för din server.
Var snäll och kontakta administratören för dokumentservern för mer information.", + "DE.ApplicationController.errorSubmit": "Gick ej att verkställa.", "DE.ApplicationController.errorUpdateVersionOnDisconnect": "Internetanslutningen har återställts och filversionen har ändrats.
Innan du fortsätter arbeta, ladda ner filen eller kopiera innehållet för att försäkra dig om att inte förlora något, ladda sedan om denna sida.", "DE.ApplicationController.errorUserDrop": "Filen kan inte nås för tillfället. ", "DE.ApplicationController.notcriticalErrorTitle": "Varning", "DE.ApplicationController.scriptLoadError": "Anslutningen är för långsam, vissa av komponenterna kunde inte laddas. Vänligen ladda om sidan.", + "DE.ApplicationController.textAnonymous": "Anonym", + "DE.ApplicationController.textGotIt": "Ok!", + "DE.ApplicationController.textGuest": "Gäst", "DE.ApplicationController.textLoadingDocument": "Laddar dokument", "DE.ApplicationController.textOf": "av", + "DE.ApplicationController.textRequired": "Fyll i alla fält för att skicka formulär.", + "DE.ApplicationController.textSubmited": " Formulär skickat
Klicka för att stänga tipset", "DE.ApplicationController.txtClose": "Stäng", "DE.ApplicationController.unknownErrorText": "Okänt fel.", "DE.ApplicationController.unsupportedBrowserErrorText": "Din webbläsare stöds ej.", "DE.ApplicationController.waitText": "Var snäll och vänta...", "DE.ApplicationView.txtDownload": "Ladda ner", + "DE.ApplicationView.txtDownloadDocx": "Ladda ner som docx", + "DE.ApplicationView.txtDownloadPdf": "Ladda ner som pdf", "DE.ApplicationView.txtEmbed": "Inbädda", + "DE.ApplicationView.txtFileLocation": "Gå till filens plats", "DE.ApplicationView.txtFullScreen": "Fullskärm", "DE.ApplicationView.txtPrint": "Skriva ut", "DE.ApplicationView.txtShare": "Dela" diff --git a/apps/documenteditor/forms/locale/tr.json b/apps/documenteditor/forms/locale/tr.json index 6cc48ad89..86cb7be7d 100644 --- a/apps/documenteditor/forms/locale/tr.json +++ b/apps/documenteditor/forms/locale/tr.json @@ -17,11 +17,8 @@ "DE.ApplicationController.errorUserDrop": "Belgeye şu an erişilemiyor.", "DE.ApplicationController.notcriticalErrorTitle": "Uyarı", "DE.ApplicationController.scriptLoadError": "Bağlantı çok yavaş, bileşenlerin bazıları yüklenemedi. Lütfen sayfayı yenileyin.", - "DE.ApplicationController.textClear": "Tüm alanları temizle", "DE.ApplicationController.textLoadingDocument": "Döküman yükleniyor", - "DE.ApplicationController.textNext": "Sonraki alan", "DE.ApplicationController.textOf": "'in", - "DE.ApplicationController.textSubmit": "Kaydet", "DE.ApplicationController.textSubmited": "Form başarılı bir şekilde kaydedildi
İpucunu kapatmak için tıklayın", "DE.ApplicationController.txtClose": "Kapat", "DE.ApplicationController.unknownErrorText": "Bilinmeyen hata.", diff --git a/apps/documenteditor/forms/locale/zh.json b/apps/documenteditor/forms/locale/zh.json index 24883a822..0145efc60 100644 --- a/apps/documenteditor/forms/locale/zh.json +++ b/apps/documenteditor/forms/locale/zh.json @@ -14,31 +14,50 @@ "DE.ApplicationController.errorEditingDownloadas": "在处理文档期间发生错误。
使用“下载为…”选项将文件备份复制到您的计算机硬盘中。", "DE.ApplicationController.errorFilePassProtect": "该文档受密码保护,无法被打开。", "DE.ApplicationController.errorFileSizeExceed": "文件大小超出了为服务器设置的限制.
有关详细信息,请与文档服务器管理员联系。", + "DE.ApplicationController.errorForceSave": "保存文件时发生错误。请使用“下载为”选项将文件保存到计算机硬盘中或稍后重试。", + "DE.ApplicationController.errorLoadingFont": "字体未加载。
请联系文档服务器管理员。", + "DE.ApplicationController.errorServerVersion": "编辑器版本已完成更新。为应用这些更改,该页将要刷新。", "DE.ApplicationController.errorSubmit": "提交失败", + "DE.ApplicationController.errorUpdateVersion": "文件版本发生改变。该页将要刷新。", "DE.ApplicationController.errorUpdateVersionOnDisconnect": "网络连接已恢复,文件版本已变更。
在继续工作之前,需要下载文件或复制其内容以避免丢失数据,然后刷新此页。", "DE.ApplicationController.errorUserDrop": "该文件现在无法访问。", "DE.ApplicationController.notcriticalErrorTitle": "警告", "DE.ApplicationController.scriptLoadError": "连接速度过慢,部分组件无法被加载。请重新加载页面。", "DE.ApplicationController.textAnonymous": "匿名", - "DE.ApplicationController.textClear": "清除所有字段", + "DE.ApplicationController.textBuyNow": "访问网站", + "DE.ApplicationController.textCloseTip": "点按以关闭提示。", + "DE.ApplicationController.textContactUs": "联系销售", "DE.ApplicationController.textGotIt": "知道了", "DE.ApplicationController.textGuest": "访客", "DE.ApplicationController.textLoadingDocument": "文件加载中…", - "DE.ApplicationController.textNext": "下一域", + "DE.ApplicationController.textNoLicenseTitle": "触碰到许可证数量限制。", "DE.ApplicationController.textOf": "的", "DE.ApplicationController.textRequired": "要发送表单,请填写所有必填项目。", - "DE.ApplicationController.textSubmit": "提交", - "DE.ApplicationController.textSubmited": "表单成功地被提交了
点击以关闭贴士", + "DE.ApplicationController.textSubmited": "表单提交成功
点击以关闭提示", + "DE.ApplicationController.titleServerVersion": "编辑器已更新", + "DE.ApplicationController.titleUpdateVersion": "版本已变化", "DE.ApplicationController.txtClose": "关闭", + "DE.ApplicationController.txtEmpty": "(空)", + "DE.ApplicationController.txtPressLink": "按CTRL并单击链接", "DE.ApplicationController.unknownErrorText": "未知错误。", "DE.ApplicationController.unsupportedBrowserErrorText": "您的浏览器不受支持", "DE.ApplicationController.waitText": "请稍候...", + "DE.ApplicationController.warnLicenseExceeded": "与文档服务器的并发连接次数已超出限制,文档打开后将仅供查看。
请联系您的账户管理员了解详情。", + "DE.ApplicationController.warnLicenseLimitedNoAccess": "授权过期
您不具备文件编辑功能的授权
请联系管理员。", + "DE.ApplicationController.warnLicenseLimitedRenewed": "授权需更新
您只有文件编辑功能的部分权限
请联系管理员以取得完整权限。", + "DE.ApplicationController.warnLicenseUsersExceeded": "你触发了 %1 编辑器的同时在线数限制。可联系管理员来了解更多信息。", + "DE.ApplicationController.warnNoLicense": "该版本对文档服务器的并发连接有限制。
如果需要更多请考虑购买商业许可证。", + "DE.ApplicationController.warnNoLicenseUsers": "你触发了 %1 编辑器的同时在线数限制。可联系管理员来了解更多信息。", + "DE.ApplicationView.textClear": "清除所有字段", + "DE.ApplicationView.textNext": "下一填充框", + "DE.ApplicationView.textSubmit": "提交", "DE.ApplicationView.txtDownload": "下载", - "DE.ApplicationView.txtDownloadDocx": "导出成docx格式", - "DE.ApplicationView.txtDownloadPdf": "导出成PDF格式", + "DE.ApplicationView.txtDownloadDocx": "导出成docx", + "DE.ApplicationView.txtDownloadPdf": "导出成PDF", "DE.ApplicationView.txtEmbed": "嵌入", "DE.ApplicationView.txtFileLocation": "打开文件所在位置", "DE.ApplicationView.txtFullScreen": "全屏", "DE.ApplicationView.txtPrint": "打印", - "DE.ApplicationView.txtShare": "共享" + "DE.ApplicationView.txtShare": "共享", + "DE.ApplicationView.txtTheme": "界面主题" } \ No newline at end of file diff --git a/apps/documenteditor/main/app/controller/Viewport.js b/apps/documenteditor/main/app/controller/Viewport.js index 39f0d058d..0d7ea6770 100644 --- a/apps/documenteditor/main/app/controller/Viewport.js +++ b/apps/documenteditor/main/app/controller/Viewport.js @@ -325,7 +325,8 @@ define([ })).on('click', _on_btn_zoom.bind(me, 'up')); me.header.btnOptions.menu.on('item:click', me.onOptionsItemClick.bind(this)); - if ( !Common.UI.Themes.isDarkTheme() ) { + var document = DE.getController('Main').document; + if ( !Common.UI.Themes.isDarkTheme() || /^pdf|djvu|xps|oxps$/.test(document.fileType) ) { me.header.menuItemsDarkMode.hide(); me.header.menuItemsDarkMode.$el.prev('.divider').hide(); } @@ -370,13 +371,16 @@ define([ }, onThemeChanged: function (id) { - var current_dark = Common.UI.Themes.isDarkTheme(); - var menuItem = this.header.menuItemsDarkMode; - menuItem.setVisible(current_dark); - menuItem.$el.prev('.divider')[current_dark ? 'show' : 'hide'](); + var document = DE.getController('Main').document; + if ( !/^pdf|djvu|xps|oxps$/.test(document.fileType) ) { + var current_dark = Common.UI.Themes.isDarkTheme(); + var menuItem = this.header.menuItemsDarkMode; + menuItem.setVisible(current_dark); + menuItem.$el.prev('.divider')[current_dark ? 'show' : 'hide'](); - menuItem.setChecked(current_dark); - this.header.btnContentMode.setVisible(current_dark); + menuItem.setChecked(current_dark); + this.header.btnContentMode.setVisible(current_dark); + } }, onContentThemeChangedToDark: function (isdark) { diff --git a/apps/documenteditor/main/app/view/BookmarksDialog.js b/apps/documenteditor/main/app/view/BookmarksDialog.js index 1e3285f81..1d69c9716 100644 --- a/apps/documenteditor/main/app/view/BookmarksDialog.js +++ b/apps/documenteditor/main/app/view/BookmarksDialog.js @@ -79,8 +79,8 @@ define([ '', '', '', - '
', - '
', + '
', + '
', '', '', '', diff --git a/apps/documenteditor/main/app/view/TextToTableDialog.js b/apps/documenteditor/main/app/view/TextToTableDialog.js index a1d69eea2..5293df706 100644 --- a/apps/documenteditor/main/app/view/TextToTableDialog.js +++ b/apps/documenteditor/main/app/view/TextToTableDialog.js @@ -91,8 +91,8 @@ define([ '', '', '', - '
', - '
', + '
', + '
', '', '', '', diff --git a/apps/documenteditor/main/app/view/Toolbar.js b/apps/documenteditor/main/app/view/Toolbar.js index c47061055..7350b5b81 100644 --- a/apps/documenteditor/main/app/view/Toolbar.js +++ b/apps/documenteditor/main/app/view/Toolbar.js @@ -1309,10 +1309,10 @@ define([ if (menu.cmpEl) { var itemEl = $(cmp.cmpEl.find('.dataview.inner .style').get(0)).parent(); var itemMargin = /*parseInt($(itemEl.get(0)).parent().css('margin-right'))*/-1; - Common.Utils.applicationPixelRatio() > 1 && Common.Utils.applicationPixelRatio() < 2 && (itemMargin = itemMargin + 1/Common.Utils.applicationPixelRatio()); - var itemWidth = itemEl.is(':visible') ? parseInt(itemEl.css('width')) : - (cmp.itemWidth + parseInt(itemEl.css('padding-left')) + parseInt(itemEl.css('padding-right')) + - parseInt(itemEl.css('border-left-width')) + parseInt(itemEl.css('border-right-width'))); + Common.Utils.applicationPixelRatio() > 1 && Common.Utils.applicationPixelRatio() < 2 && (itemMargin = -1 / Common.Utils.applicationPixelRatio()); + var itemWidth = itemEl.is(':visible') ? parseFloat(itemEl.css('width')) : + (cmp.itemWidth + parseFloat(itemEl.css('padding-left')) + parseFloat(itemEl.css('padding-right')) + + parseFloat(itemEl.css('border-left-width')) + parseFloat(itemEl.css('border-right-width'))); var minCount = cmp.menuPicker.store.length >= minMenuColumn ? minMenuColumn : cmp.menuPicker.store.length, columnCount = Math.min(cmp.menuPicker.store.length, Math.round($('.dataview', $(cmp.fieldPicker.el)).width() / (itemMargin + itemWidth) + 0.5)); diff --git a/apps/documenteditor/main/index.html b/apps/documenteditor/main/index.html index 3aac9d3ef..4e42d513a 100644 --- a/apps/documenteditor/main/index.html +++ b/apps/documenteditor/main/index.html @@ -233,7 +233,8 @@ var params = getUrlParams(), lang = (params["lang"] || 'en').split(/[\-\_]/)[0], - logo = params["headerlogo"] ? encodeUrlParam(params["headerlogo"]) : null; + logo = params["headerlogo"] ? encodeUrlParam(params["headerlogo"]) : null, + logoDark = params["headerlogodark"] ? encodeUrlParam(params["headerlogodark"]) : null; window.frameEditorId = params["frameEditorId"]; window.parentOrigin = params["parentOrigin"]; @@ -292,7 +293,7 @@ } else { var elem = document.querySelector('.loading-logo img'); if (elem) { - logo && (elem.setAttribute('src', logo)); + (logo || logoDark) && elem.setAttribute('src', /theme-dark/.test(document.body.className) ? logoDark || logo : logo || logoDark); elem.style.opacity = 1; } } diff --git a/apps/documenteditor/main/index.html.deploy b/apps/documenteditor/main/index.html.deploy index 1f94e89d8..7b6f06933 100644 --- a/apps/documenteditor/main/index.html.deploy +++ b/apps/documenteditor/main/index.html.deploy @@ -205,7 +205,8 @@ var params = getUrlParams(), lang = (params["lang"] || 'en').split(/[\-\_]/)[0], - logo = params["headerlogo"] ? encodeUrlParam(params["headerlogo"]) : null; + logo = params["headerlogo"] ? encodeUrlParam(params["headerlogo"]) : null, + logoDark = params["headerlogodark"] ? encodeUrlParam(params["headerlogodark"]) : null; window.frameEditorId = params["frameEditorId"]; window.parentOrigin = params["parentOrigin"]; @@ -264,7 +265,7 @@ } else { var elem = document.querySelector('.loading-logo img'); if (elem) { - logo && (elem.setAttribute('src', logo)); + (logo || logoDark) && elem.setAttribute('src', /theme-dark/.test(document.body.className) ? logoDark || logo : logo || logoDark); elem.style.opacity = 1; } } diff --git a/apps/documenteditor/main/resources/less/advanced-settings.less b/apps/documenteditor/main/resources/less/advanced-settings.less index 01a5aa989..75d7fda5c 100644 --- a/apps/documenteditor/main/resources/less/advanced-settings.less +++ b/apps/documenteditor/main/resources/less/advanced-settings.less @@ -73,4 +73,25 @@ #page-margins-preview { border: @scaled-one-px-value-ie solid @border-regular-control-ie; border: @scaled-one-px-value solid @border-regular-control; +} + +#id-text-table-radio-fixed { + display: inline-block; + margin-right: 10px; + vertical-align: middle; + + .pixel-ratio__1_75 &, .pixel-ratio__2 & { + padding-bottom: 1px; + } +} + +#bookmarks-radio-name { + display: inline-block; + margin-right: 10px; + vertical-align: middle; +} + +#id-text-table-spn-fixed, #bookmarks-radio-location { + display: inline-block; + vertical-align: middle; } \ No newline at end of file diff --git a/apps/documenteditor/mobile/locale/be.json b/apps/documenteditor/mobile/locale/be.json index 8d03f2d52..e6ca0528d 100644 --- a/apps/documenteditor/mobile/locale/be.json +++ b/apps/documenteditor/mobile/locale/be.json @@ -581,7 +581,12 @@ "textChooseEncoding": "Choose Encoding", "textChooseTxtOptions": "Choose TXT Options", "txtDownloadTxt": "Download TXT", - "txtOk": "Ok" + "txtOk": "Ok", + "textPages": "Pages", + "textParagraphs": "Paragraphs", + "textSpaces": "Spaces", + "textSymbols": "Symbols", + "textWords": "Words" }, "Toolbar": { "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", diff --git a/apps/documenteditor/mobile/locale/bg.json b/apps/documenteditor/mobile/locale/bg.json index 8d03f2d52..e6ca0528d 100644 --- a/apps/documenteditor/mobile/locale/bg.json +++ b/apps/documenteditor/mobile/locale/bg.json @@ -581,7 +581,12 @@ "textChooseEncoding": "Choose Encoding", "textChooseTxtOptions": "Choose TXT Options", "txtDownloadTxt": "Download TXT", - "txtOk": "Ok" + "txtOk": "Ok", + "textPages": "Pages", + "textParagraphs": "Paragraphs", + "textSpaces": "Spaces", + "textSymbols": "Symbols", + "textWords": "Words" }, "Toolbar": { "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", diff --git a/apps/documenteditor/mobile/locale/ca.json b/apps/documenteditor/mobile/locale/ca.json index d4772a050..6b7b1fab3 100644 --- a/apps/documenteditor/mobile/locale/ca.json +++ b/apps/documenteditor/mobile/locale/ca.json @@ -538,6 +538,8 @@ "textOpenFile": "Introdueix una contrasenya per obrir el fitxer", "textOrientation": "Orientació", "textOwner": "Propietari", + "textPages": "Pàgines", + "textParagraphs": "Paràgrafs", "textPoint": "Punt", "textPortrait": "Orientació vertical", "textPrint": "Imprimeix", @@ -549,13 +551,16 @@ "textSearch": "Cerca", "textSettings": "Configuració", "textShowNotification": "Mostra la notificació", + "textSpaces": "Espais", "textSpellcheck": "Revisió ortogràfica", "textStatistic": "Estadístiques", "textSubject": "Assumpte", + "textSymbols": "Símbols", "textTitle": "Títol", "textTop": "Superior", "textUnitOfMeasurement": "Unitat de mesura", "textUploaded": "S'ha carregat", + "textWords": "Paraules", "txtDownloadTxt": "Baixar TXT", "txtIncorrectPwd": "La contrasenya no és correcta", "txtOk": "D'acord", diff --git a/apps/documenteditor/mobile/locale/cs.json b/apps/documenteditor/mobile/locale/cs.json index 8d03f2d52..e6ca0528d 100644 --- a/apps/documenteditor/mobile/locale/cs.json +++ b/apps/documenteditor/mobile/locale/cs.json @@ -581,7 +581,12 @@ "textChooseEncoding": "Choose Encoding", "textChooseTxtOptions": "Choose TXT Options", "txtDownloadTxt": "Download TXT", - "txtOk": "Ok" + "txtOk": "Ok", + "textPages": "Pages", + "textParagraphs": "Paragraphs", + "textSpaces": "Spaces", + "textSymbols": "Symbols", + "textWords": "Words" }, "Toolbar": { "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", diff --git a/apps/documenteditor/mobile/locale/da.json b/apps/documenteditor/mobile/locale/da.json index 8d03f2d52..e6ca0528d 100644 --- a/apps/documenteditor/mobile/locale/da.json +++ b/apps/documenteditor/mobile/locale/da.json @@ -581,7 +581,12 @@ "textChooseEncoding": "Choose Encoding", "textChooseTxtOptions": "Choose TXT Options", "txtDownloadTxt": "Download TXT", - "txtOk": "Ok" + "txtOk": "Ok", + "textPages": "Pages", + "textParagraphs": "Paragraphs", + "textSpaces": "Spaces", + "textSymbols": "Symbols", + "textWords": "Words" }, "Toolbar": { "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", diff --git a/apps/documenteditor/mobile/locale/de.json b/apps/documenteditor/mobile/locale/de.json index 77b6d50a1..b00831add 100644 --- a/apps/documenteditor/mobile/locale/de.json +++ b/apps/documenteditor/mobile/locale/de.json @@ -122,6 +122,7 @@ "textNot": "Nicht", "textNoWidow": "Keine Absatzkontrolle", "textNum": "Nummerierung ändern", + "textOk": "OK", "textOriginal": "Original", "textParaDeleted": "Absatz gelöscht", "textParaFormatted": "Absatz formatiert", @@ -154,8 +155,7 @@ "textTryUndoRedo": "Die Optionen Rückgängig machen/Wiederholen sind für den Schnellmodus deaktiviert.", "textUnderline": "Unterstrichen", "textUsers": "Benutzer", - "textWidow": "Absatzkontrolle", - "textOk": "Ok" + "textWidow": "Absatzkontrolle" }, "ThemeColorPalette": { "textCustomColors": "Benutzerdefinierte Farben", @@ -168,28 +168,28 @@ "menuAddComment": "Kommentar hinzufügen", "menuAddLink": "Link hinzufügen", "menuCancel": "Abbrechen", + "menuContinueNumbering": "Nummerierung fortführen", "menuDelete": "Löschen", "menuDeleteTable": "Tabelle löschen", "menuEdit": "Bearbeiten", + "menuJoinList": "Mit der vorherigen Liste verbinden", "menuMerge": "Verbinden", "menuMore": "Mehr", "menuOpenLink": "Link öffnen", "menuReview": "Überprüfung", "menuReviewChange": "Änderung überprüfen", + "menuSeparateList": "Liste trennen", "menuSplit": "Aufteilen", + "menuStartNewList": "Neue Liste beginnen", + "menuStartNumberingFrom": "Nummerierungswert festlegen", "menuViewComment": "Kommentar anzeigen", + "textCancel": "Abbrechen", "textColumns": "Spalten", "textCopyCutPasteActions": "Kopieren, Ausschneiden und Einfügen", "textDoNotShowAgain": "Nicht mehr anzeigen", - "textRows": "Zeilen", - "menuContinueNumbering": "Continue numbering", - "menuJoinList": "Join to previous list", - "menuSeparateList": "Separate list", - "menuStartNewList": "Start new list", - "menuStartNumberingFrom": "Set numbering value", - "textCancel": "Cancel", - "textNumberingValue": "Numbering Value", - "textOk": "OK" + "textNumberingValue": "Nummerierungswert", + "textOk": "OK", + "textRows": "Zeilen" }, "Edit": { "notcriticalErrorTitle": "Warnung", @@ -491,6 +491,8 @@ "textCancel": "Abbrechen", "textCaseSensitive": "Groß-/Kleinschreibung beachten", "textCentimeter": "Zentimeter", + "textChooseEncoding": "Codierung auswählen", + "textChooseTxtOptions": "Optionen für TXT-Dateien auswählen", "textCollaboration": "Zusammenarbeit", "textColorSchemes": "Farbschemata", "textComment": "Kommentar", @@ -536,6 +538,8 @@ "textOpenFile": "Kennwort zum Öffnen der Datei eingeben", "textOrientation": "Orientierung", "textOwner": "Besitzer", + "textPages": "Seiten", + "textParagraphs": "Absätze", "textPoint": "Punkt", "textPortrait": "Hochformat", "textPrint": "Drucken", @@ -547,14 +551,19 @@ "textSearch": "Suche", "textSettings": "Einstellungen", "textShowNotification": "Benachrichtigung anzeigen", + "textSpaces": "Leerzeichen", "textSpellcheck": "Rechtschreibprüfung", "textStatistic": "Statistik", "textSubject": "Betreff", + "textSymbols": "Symbole", "textTitle": "Titel", "textTop": "Oben", "textUnitOfMeasurement": "Maßeinheit", "textUploaded": "Hochgeladen", + "textWords": "Wörter", + "txtDownloadTxt": "TXT herunterladen", "txtIncorrectPwd": "Passwort ist falsch", + "txtOk": "OK", "txtProtected": "Wenn Sie das Password eingeben und die Datei öffnen, wird das aktive Password zurückgesetzt", "txtScheme1": "Office", "txtScheme10": "Median", @@ -577,11 +586,7 @@ "txtScheme6": "Halle", "txtScheme7": "Kapital", "txtScheme8": "Fluss", - "txtScheme9": "Gießerei", - "textChooseEncoding": "Choose Encoding", - "textChooseTxtOptions": "Choose TXT Options", - "txtDownloadTxt": "Download TXT", - "txtOk": "Ok" + "txtScheme9": "Gießerei" }, "Toolbar": { "dlgLeaveMsgText": "Sie haben nicht gespeicherte Änderungen. Klicken Sie auf \"Auf dieser Seite bleiben\" und warten Sie, bis die Datei automatisch gespeichert wird. Klicken Sie auf \"Die Seite verlassen\", um nicht gespeicherte Änderungen zu verwerfen.", diff --git a/apps/documenteditor/mobile/locale/el.json b/apps/documenteditor/mobile/locale/el.json index 8d03f2d52..33c407da8 100644 --- a/apps/documenteditor/mobile/locale/el.json +++ b/apps/documenteditor/mobile/locale/el.json @@ -1,7 +1,7 @@ { "About": { - "textAbout": "About", - "textAddress": "Address", + "textAbout": "Περί", + "textAddress": "Διεύθυνση", "textBack": "Back", "textEmail": "Email", "textPoweredBy": "Powered By", @@ -9,9 +9,9 @@ "textVersion": "Version" }, "Add": { + "textAddLink": "Προσθήκη συνδέσμου", + "textAddress": "Διεύθυνση", "notcriticalErrorTitle": "Warning", - "textAddLink": "Add link", - "textAddress": "Address", "textBack": "Back", "textBelowText": "Below text", "textBottomOfPage": "Bottom of page", @@ -60,14 +60,20 @@ }, "Common": { "Collaboration": { + "textAccept": "Αποδοχή", + "textAcceptAllChanges": "Αποδοχή όλων των αλλαγών", + "textAddComment": "Προσθήκη σχολίου", + "textAddReply": "Προσθήκη απάντησης", + "textAllChangesAcceptedPreview": "Όλες οι αλλαγές έγιναν αποδεκτές (Προεπισκόπηση)", + "textAllChangesEditing": "Όλες οι αλλαγές (Επεξεργασία)", + "textAllChangesRejectedPreview": "Όλες οι αλλαγές απορρίφθηκαν (Προεπισκόπηση)", + "textCaps": "Όλα κεφαλαία", + "textCenter": "Στοίχιση στο κέντρο", + "textJustify": "Στοίχιση πλήρης", + "textLeft": "Στοίχιση αριστερά", + "textNoContextual": "Προσθήκη διαστήματος μεταξύ παραγράφων της ίδιας τεχνοτροπίας", + "textRight": "Στοίχιση δεξιά", "notcriticalErrorTitle": "Warning", - "textAccept": "Accept", - "textAcceptAllChanges": "Accept all changes", - "textAddComment": "Add comment", - "textAddReply": "Add reply", - "textAllChangesAcceptedPreview": "All changes accepted (Preview)", - "textAllChangesEditing": "All changes (Editing)", - "textAllChangesRejectedPreview": "All changes rejected (Preview)", "textAtLeast": "at least", "textAuto": "auto", "textBack": "Back", @@ -75,8 +81,6 @@ "textBold": "Bold", "textBreakBefore": "Page break before", "textCancel": "Cancel", - "textCaps": "All caps", - "textCenter": "Align center", "textChart": "Chart", "textCollaboration": "Collaboration", "textColor": "Font color", @@ -104,10 +108,8 @@ "textIndentRight": "Indent right", "textInserted": "Inserted:", "textItalic": "Italic", - "textJustify": "Align justified ", "textKeepLines": "Keep lines together", "textKeepNext": "Keep with next", - "textLeft": "Align left", "textLineSpacing": "Line Spacing: ", "textMarkup": "Markup", "textMessageDeleteComment": "Do you really want to delete this comment?", @@ -116,12 +118,12 @@ "textNoBreakBefore": "No page break before", "textNoChanges": "There are no changes.", "textNoComments": "This document doesn't contain comments", - "textNoContextual": "Add interval between paragraphs of the same style", "textNoKeepLines": "Don't keep lines together", "textNoKeepNext": "Don't keep with next", "textNot": "Not ", "textNoWidow": "No widow control", "textNum": "Change numbering", + "textOk": "Ok", "textOriginal": "Original", "textParaDeleted": "Paragraph Deleted", "textParaFormatted": "Paragraph Formatted", @@ -136,7 +138,6 @@ "textResolve": "Resolve", "textReview": "Review", "textReviewChange": "Review Change", - "textRight": "Align right", "textShape": "Shape", "textShd": "Background color", "textSmallCaps": "Small caps", @@ -154,8 +155,7 @@ "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", "textUnderline": "Underline", "textUsers": "Users", - "textWidow": "Widow control", - "textOk": "Ok" + "textWidow": "Widow control" }, "ThemeColorPalette": { "textCustomColors": "Custom Colors", @@ -164,46 +164,46 @@ } }, "ContextMenu": { + "menuAddComment": "Προσθήκη σχολίου", + "menuAddLink": "Προσθήκη συνδέσμου", "errorCopyCutPaste": "Copy, cut and paste actions using the context menu will be performed within the current file only.", - "menuAddComment": "Add comment", - "menuAddLink": "Add link", "menuCancel": "Cancel", + "menuContinueNumbering": "Continue numbering", "menuDelete": "Delete", "menuDeleteTable": "Delete Table", "menuEdit": "Edit", + "menuJoinList": "Join to previous list", "menuMerge": "Merge", "menuMore": "More", "menuOpenLink": "Open Link", "menuReview": "Review", "menuReviewChange": "Review Change", + "menuSeparateList": "Separate list", "menuSplit": "Split", + "menuStartNewList": "Start new list", + "menuStartNumberingFrom": "Set numbering value", "menuViewComment": "View Comment", + "textCancel": "Cancel", "textColumns": "Columns", "textCopyCutPasteActions": "Copy, Cut and Paste Actions", "textDoNotShowAgain": "Don't show again", - "textRows": "Rows", - "menuStartNewList": "Start new list", - "menuStartNumberingFrom": "Set numbering value", - "menuContinueNumbering": "Continue numbering", - "menuSeparateList": "Separate list", - "menuJoinList": "Join to previous list", + "textNumberingValue": "Numbering Value", "textOk": "OK", - "textCancel": "Cancel", - "textNumberingValue": "Numbering Value" + "textRows": "Rows" }, "Edit": { + "textActualSize": "Πραγματικό μέγεθος", + "textAddCustomColor": "Προσθήκη προσαρμοσμένου χρώματος", + "textAdditional": "Επιπρόσθετα", + "textAdditionalFormatting": "Πρόσθετη μορφοποίηση", + "textAddress": "Διεύθυνση", + "textAdvanced": "Για προχωρημένους", + "textAdvancedSettings": "Προηγμένες ρυθμίσεις", + "textAfter": "Μετά", + "textAlign": "Στοίχιση", + "textAllCaps": "Όλα κεφαλαία", + "textAllowOverlap": "Να επιτρέπεται η επικάλυψη", "notcriticalErrorTitle": "Warning", - "textActualSize": "Actual size", - "textAddCustomColor": "Add custom color", - "textAdditional": "Additional", - "textAdditionalFormatting": "Additional formatting", - "textAddress": "Address", - "textAdvanced": "Advanced", - "textAdvancedSettings": "Advanced settings", - "textAfter": "After", - "textAlign": "Align", - "textAllCaps": "All caps", - "textAllowOverlap": "Allow overlap", "textAuto": "Auto", "textAutomatic": "Automatic", "textBack": "Back", @@ -260,6 +260,7 @@ "textNone": "None", "textNoStyles": "No styles for this type of charts.", "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "textNumbers": "Numbers", "textOpacity": "Opacity", "textOptions": "Options", "textOrphanControl": "Orphan Control", @@ -303,16 +304,17 @@ "textTopAndBottom": "Top and Bottom", "textTotalRow": "Total Row", "textType": "Type", - "textWrap": "Wrap", - "textNumbers": "Numbers" + "textWrap": "Wrap" }, "Error": { + "openErrorText": "Σφάλμα κατά το άνοιγμα του αρχείου", + "saveErrorText": "Σφάλμα κατά την αποθήκευση του αρχείου", "convertationTimeoutText": "Conversion timeout exceeded.", "criticalErrorExtText": "Press 'OK' to go back to the document list.", "criticalErrorTitle": "Error", "downloadErrorText": "Download failed.", "errorAccessDeny": "You are trying to perform an action you do not have rights for.
Please, contact your admin.", - "errorBadImageUrl": "Image url is incorrect", + "errorBadImageUrl": "Image URL is incorrect", "errorConnectToServer": "Can't save this doc. Check your connection settings or contact the admin.
When you click OK, you will be prompted to download the document.", "errorDatabaseConnection": "External error.
Database connection error. Please, contact support.", "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", @@ -323,6 +325,7 @@ "errorFileSizeExceed": "The file size exceeds your server limit.
Please, contact your admin.", "errorKeyEncrypt": "Unknown key descriptor", "errorKeyExpire": "Key descriptor expired", + "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator.", "errorMailMergeLoadFile": "Loading failed", "errorMailMergeSaveFile": "Merge failed.", "errorSessionAbsolute": "The document editing session has expired. Please, reload the page.", @@ -332,10 +335,8 @@ "errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.", "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 it until the connection is restored and the page is reloaded.", + "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.", "notcriticalErrorTitle": "Warning", - "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.", "splitDividerErrorText": "The number of rows must be a divisor of %1", "splitMaxColsErrorText": "The number of columns must be less than %1", @@ -343,56 +344,12 @@ "unknownErrorText": "Unknown error.", "uploadImageExtMessage": "Unknown image format.", "uploadImageFileCountMessage": "No images uploaded.", - "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.", - "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." - }, - "LongActions": { - "applyChangesTextText": "Loading data...", - "applyChangesTitleText": "Loading Data", - "downloadMergeText": "Downloading...", - "downloadMergeTitle": "Downloading", - "downloadTextText": "Downloading document...", - "downloadTitleText": "Downloading Document", - "loadFontsTextText": "Loading data...", - "loadFontsTitleText": "Loading Data", - "loadFontTextText": "Loading data...", - "loadFontTitleText": "Loading Data", - "loadImagesTextText": "Loading images...", - "loadImagesTitleText": "Loading Images", - "loadImageTextText": "Loading image...", - "loadImageTitleText": "Loading Image", - "loadingDocumentTextText": "Loading document...", - "loadingDocumentTitleText": "Loading document", - "mailMergeLoadFileText": "Loading Data Source...", - "mailMergeLoadFileTitle": "Loading Data Source", - "openTextText": "Opening document...", - "openTitleText": "Opening Document", - "printTextText": "Printing document...", - "printTitleText": "Printing Document", - "savePreparingText": "Preparing to save", - "savePreparingTitle": "Preparing to save. Please wait...", - "saveTextText": "Saving document...", - "saveTitleText": "Saving Document", - "sendMergeText": "Sending Merge...", - "sendMergeTitle": "Sending Merge", - "textLoadingDocument": "Loading document", - "txtEditingMode": "Set editing mode...", - "uploadImageTextText": "Uploading image...", - "uploadImageTitleText": "Uploading Image", - "waitText": "Please, wait..." + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." }, "Main": { - "criticalErrorTitle": "Error", - "errorAccessDeny": "You are trying to perform an action you do not have rights for.
Please, contact your administrator.", - "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", - "errorProcessSaveResult": "Saving failed.", - "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", - "errorUpdateVersion": "The file version has been changed. The page will be reloaded.", - "leavePageText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", - "notcriticalErrorTitle": "Warning", "SDK": { - " -Section ": " -Section ", - "above": "above", + " -Section ": "-Τμήμα", + "above": "πάνω από", "below": "below", "Caption": "Caption", "Choose an item": "Choose an item", @@ -452,6 +409,14 @@ "Your text here": "Your text here", "Zero Divide": "Zero Divide" }, + "criticalErrorTitle": "Error", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
Please, contact your administrator.", + "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", + "errorProcessSaveResult": "Saving failed.", + "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", + "errorUpdateVersion": "The file version has been changed. The page will be reloaded.", + "leavePageText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "notcriticalErrorTitle": "Warning", "textAnonymous": "Anonymous", "textBuyNow": "Visit website", "textClose": "Close", @@ -477,12 +442,12 @@ "warnProcessRightsChange": "You don't have permission to edit this file." }, "Settings": { + "textAbout": "Περί", "advDRMOptions": "Protected File", "advDRMPassword": "Password", "advTxtOptions": "Choose TXT Options", "closeButtonText": "Close File", "notcriticalErrorTitle": "Warning", - "textAbout": "About", "textApplication": "Application", "textApplicationSettings": "Application settings", "textAuthor": "Author", @@ -491,6 +456,8 @@ "textCancel": "Cancel", "textCaseSensitive": "Case Sensitive", "textCentimeter": "Centimeter", + "textChooseEncoding": "Choose Encoding", + "textChooseTxtOptions": "Choose TXT Options", "textCollaboration": "Collaboration", "textColorSchemes": "Color Schemes", "textComment": "Comment", @@ -532,9 +499,12 @@ "textMarginsW": "Left and right margins are too wide for a given page width", "textNoCharacters": "Nonprinting Characters", "textNoTextFound": "Text not found", + "textOk": "Ok", "textOpenFile": "Enter a password to open the file", "textOrientation": "Orientation", "textOwner": "Owner", + "textPages": "Pages", + "textParagraphs": "Paragraphs", "textPoint": "Point", "textPortrait": "Portrait", "textPrint": "Print", @@ -546,14 +516,19 @@ "textSearch": "Search", "textSettings": "Settings", "textShowNotification": "Show Notification", + "textSpaces": "Spaces", "textSpellcheck": "Spell Checking", "textStatistic": "Statistic", "textSubject": "Subject", + "textSymbols": "Symbols", "textTitle": "Title", "textTop": "Top", "textUnitOfMeasurement": "Unit Of Measurement", "textUploaded": "Uploaded", + "textWords": "Words", + "txtDownloadTxt": "Download TXT", "txtIncorrectPwd": "Password is incorrect", + "txtOk": "Ok", "txtProtected": "Once you enter the password and open the file, the current password will be reset", "txtScheme1": "Office", "txtScheme10": "Median", @@ -576,12 +551,42 @@ "txtScheme6": "Concourse", "txtScheme7": "Equity", "txtScheme8": "Flow", - "txtScheme9": "Foundry", - "textOk": "Ok", - "textChooseEncoding": "Choose Encoding", - "textChooseTxtOptions": "Choose TXT Options", - "txtDownloadTxt": "Download TXT", - "txtOk": "Ok" + "txtScheme9": "Foundry" + }, + "LongActions": { + "applyChangesTextText": "Loading data...", + "applyChangesTitleText": "Loading Data", + "downloadMergeText": "Downloading...", + "downloadMergeTitle": "Downloading", + "downloadTextText": "Downloading document...", + "downloadTitleText": "Downloading Document", + "loadFontsTextText": "Loading data...", + "loadFontsTitleText": "Loading Data", + "loadFontTextText": "Loading data...", + "loadFontTitleText": "Loading Data", + "loadImagesTextText": "Loading images...", + "loadImagesTitleText": "Loading Images", + "loadImageTextText": "Loading image...", + "loadImageTitleText": "Loading Image", + "loadingDocumentTextText": "Loading document...", + "loadingDocumentTitleText": "Loading document", + "mailMergeLoadFileText": "Loading Data Source...", + "mailMergeLoadFileTitle": "Loading Data Source", + "openTextText": "Opening document...", + "openTitleText": "Opening Document", + "printTextText": "Printing document...", + "printTitleText": "Printing Document", + "savePreparingText": "Preparing to save", + "savePreparingTitle": "Preparing to save. Please wait...", + "saveTextText": "Saving document...", + "saveTitleText": "Saving Document", + "sendMergeText": "Sending Merge...", + "sendMergeTitle": "Sending Merge", + "textLoadingDocument": "Loading document", + "txtEditingMode": "Set editing mode...", + "uploadImageTextText": "Uploading image...", + "uploadImageTitleText": "Uploading Image", + "waitText": "Please, wait..." }, "Toolbar": { "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", diff --git a/apps/documenteditor/mobile/locale/en.json b/apps/documenteditor/mobile/locale/en.json index fc487b072..a94e58c67 100644 --- a/apps/documenteditor/mobile/locale/en.json +++ b/apps/documenteditor/mobile/locale/en.json @@ -336,7 +336,7 @@ "criticalErrorTitle": "Error", "downloadErrorText": "Download failed.", "errorAccessDeny": "You are trying to perform an action you do not have rights for.
Please, contact your admin.", - "errorBadImageUrl": "Image url is incorrect", + "errorBadImageUrl": "Image URL is incorrect", "errorConnectToServer": "Can't save this doc. Check your connection settings or contact the admin.
When you click OK, you will be prompted to download the document.", "errorDatabaseConnection": "External error.
Database connection error. Please, contact support.", "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", @@ -562,6 +562,8 @@ "textOpenFile": "Enter a password to open the file", "textOrientation": "Orientation", "textOwner": "Owner", + "textPages": "Pages", + "textParagraphs": "Paragraphs", "textPoint": "Point", "textPortrait": "Portrait", "textPrint": "Print", @@ -573,13 +575,16 @@ "textSearch": "Search", "textSettings": "Settings", "textShowNotification": "Show Notification", + "textSpaces": "Spaces", "textSpellcheck": "Spell Checking", "textStatistic": "Statistic", "textSubject": "Subject", + "textSymbols": "Symbols", "textTitle": "Title", "textTop": "Top", "textUnitOfMeasurement": "Unit Of Measurement", "textUploaded": "Uploaded", + "textWords": "Words", "txtDownloadTxt": "Download TXT", "txtIncorrectPwd": "Password is incorrect", "txtOk": "Ok", diff --git a/apps/documenteditor/mobile/locale/es.json b/apps/documenteditor/mobile/locale/es.json index ffd24abe9..2b687356d 100644 --- a/apps/documenteditor/mobile/locale/es.json +++ b/apps/documenteditor/mobile/locale/es.json @@ -168,28 +168,28 @@ "menuAddComment": "Añadir comentario", "menuAddLink": "Añadir enlace ", "menuCancel": "Cancelar", + "menuContinueNumbering": "Continuar numeración", "menuDelete": "Eliminar", "menuDeleteTable": "Eliminar tabla", "menuEdit": "Editar", + "menuJoinList": "Unir a lista anterior", "menuMerge": "Combinar", "menuMore": "Más", "menuOpenLink": "Abrir enlace", "menuReview": "Revisión", "menuReviewChange": "Revisar cambios", + "menuSeparateList": "Separar lista", "menuSplit": "Dividir", + "menuStartNewList": "Iniciar nueva lista", + "menuStartNumberingFrom": "Establecer valor de numeración", "menuViewComment": "Ver comentario", + "textCancel": "Cancelar", "textColumns": "Columnas", "textCopyCutPasteActions": "Acciones de Copiar, Cortar y Pegar", "textDoNotShowAgain": "No mostrar de nuevo", - "textRows": "Filas", - "menuContinueNumbering": "Continue numbering", - "menuJoinList": "Join to previous list", - "menuSeparateList": "Separate list", - "menuStartNewList": "Start new list", - "menuStartNumberingFrom": "Set numbering value", - "textCancel": "Cancel", - "textNumberingValue": "Numbering Value", - "textOk": "OK" + "textNumberingValue": "Valor de numeración", + "textOk": "OK", + "textRows": "Filas" }, "Edit": { "notcriticalErrorTitle": "Advertencia", @@ -538,6 +538,8 @@ "textOpenFile": "Introduzca la contraseña para abrir el archivo", "textOrientation": "Orientación ", "textOwner": "Propietario", + "textPages": "Páginas", + "textParagraphs": "Párrafos", "textPoint": "Punto", "textPortrait": "Vertical", "textPrint": "Imprimir", @@ -549,13 +551,16 @@ "textSearch": "Buscar", "textSettings": "Ajustes", "textShowNotification": "Mostrar notificación", + "textSpaces": "Espacios", "textSpellcheck": "Сorrección ortográfica", "textStatistic": "Estadísticas", "textSubject": "Asunto", + "textSymbols": "Símbolos", "textTitle": "Título", "textTop": "Arriba", "textUnitOfMeasurement": "Unidad de medida", "textUploaded": "Cargado", + "textWords": "Palabras", "txtDownloadTxt": "Descargar TXT", "txtIncorrectPwd": "La contraseña es incorrecta", "txtOk": "OK", diff --git a/apps/documenteditor/mobile/locale/fi.json b/apps/documenteditor/mobile/locale/fi.json index 8d03f2d52..e6ca0528d 100644 --- a/apps/documenteditor/mobile/locale/fi.json +++ b/apps/documenteditor/mobile/locale/fi.json @@ -581,7 +581,12 @@ "textChooseEncoding": "Choose Encoding", "textChooseTxtOptions": "Choose TXT Options", "txtDownloadTxt": "Download TXT", - "txtOk": "Ok" + "txtOk": "Ok", + "textPages": "Pages", + "textParagraphs": "Paragraphs", + "textSpaces": "Spaces", + "textSymbols": "Symbols", + "textWords": "Words" }, "Toolbar": { "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", diff --git a/apps/documenteditor/mobile/locale/fr.json b/apps/documenteditor/mobile/locale/fr.json index 3749ec187..4027921de 100644 --- a/apps/documenteditor/mobile/locale/fr.json +++ b/apps/documenteditor/mobile/locale/fr.json @@ -122,6 +122,7 @@ "textNot": "Non", "textNoWidow": "Pas de contrôle des veuves", "textNum": "Changer la numérotation", + "textOk": "Ok", "textOriginal": "Original", "textParaDeleted": "Paragraphe supprimé", "textParaFormatted": "Paragraphe formaté", @@ -154,8 +155,7 @@ "textTryUndoRedo": "Les fonctions Annuler/Rétablir sont désactivées pour le mode de co-édition rapide.", "textUnderline": "Souligné", "textUsers": "Utilisateurs", - "textWidow": "Contrôle des veuves", - "textOk": "Ok" + "textWidow": "Contrôle des veuves" }, "ThemeColorPalette": { "textCustomColors": "Couleurs personnalisées", @@ -168,28 +168,28 @@ "menuAddComment": "Ajouter un commentaire", "menuAddLink": "Ajouter un lien", "menuCancel": "Annuler", + "menuContinueNumbering": "Continuer la numérotation", "menuDelete": "Supprimer", "menuDeleteTable": "Supprimer le tableau", "menuEdit": "Modifier", + "menuJoinList": "Joindre à la liste précédente", "menuMerge": "Fusionner", "menuMore": "Plus", "menuOpenLink": "Ouvrir le lien", "menuReview": "Révision", "menuReviewChange": "Réviser modifications", + "menuSeparateList": "Séparer la liste", "menuSplit": "Fractionner", + "menuStartNewList": "Commencer une nouvelle liste", + "menuStartNumberingFrom": "Fixer la valeur initiale", "menuViewComment": "Voir le commentaire", + "textCancel": "Annuler", "textColumns": "Colonnes", "textCopyCutPasteActions": "Fonctions de Copier, Couper et Coller", "textDoNotShowAgain": "Ne plus afficher", - "textRows": "Lignes", - "menuContinueNumbering": "Continue numbering", - "menuJoinList": "Join to previous list", - "menuSeparateList": "Separate list", - "menuStartNewList": "Start new list", - "menuStartNumberingFrom": "Set numbering value", - "textCancel": "Cancel", - "textNumberingValue": "Numbering Value", - "textOk": "OK" + "textNumberingValue": "Valeur de numérotation", + "textOk": "Ok", + "textRows": "Lignes" }, "Edit": { "notcriticalErrorTitle": "Avertissement", @@ -491,6 +491,8 @@ "textCancel": "Annuler", "textCaseSensitive": "Sensible à la casse", "textCentimeter": "Centimètre", + "textChooseEncoding": "Choisir l'encodage", + "textChooseTxtOptions": "Choisir les options TXT", "textCollaboration": "Collaboration", "textColorSchemes": "Jeux de couleurs", "textComment": "Commentaire", @@ -536,6 +538,8 @@ "textOpenFile": "Entrer le mot de passe pour ouvrir le fichier", "textOrientation": "Orientation", "textOwner": "Propriétaire", + "textPages": "Pages", + "textParagraphs": "Paragraphes", "textPoint": "Point", "textPortrait": "Portrait", "textPrint": "Imprimer", @@ -547,14 +551,19 @@ "textSearch": "Rechercher", "textSettings": "Paramètres", "textShowNotification": "Montrer la notification", + "textSpaces": "Espaces", "textSpellcheck": "Vérification de l'orthographe", "textStatistic": "Statistique", "textSubject": "Sujet", + "textSymbols": "Symboles", "textTitle": "Titre", "textTop": "En haut", "textUnitOfMeasurement": "Unité de mesure", "textUploaded": "Chargé", + "textWords": "Mots", + "txtDownloadTxt": "Télécharger le TXT", "txtIncorrectPwd": "Mot de passe incorrect", + "txtOk": "Ok", "txtProtected": "Une fois le mot de passe saisi et le fichier ouvert, le mot de passe actuel de fichier sera réinitialisé", "txtScheme1": "Office", "txtScheme10": "Médian", @@ -577,11 +586,7 @@ "txtScheme6": "Rotonde", "txtScheme7": "Capitaux", "txtScheme8": "Flux", - "txtScheme9": "Fonderie", - "textChooseEncoding": "Choose Encoding", - "textChooseTxtOptions": "Choose TXT Options", - "txtDownloadTxt": "Download TXT", - "txtOk": "Ok" + "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.", diff --git a/apps/documenteditor/mobile/locale/hu.json b/apps/documenteditor/mobile/locale/hu.json index 8d03f2d52..e6ca0528d 100644 --- a/apps/documenteditor/mobile/locale/hu.json +++ b/apps/documenteditor/mobile/locale/hu.json @@ -581,7 +581,12 @@ "textChooseEncoding": "Choose Encoding", "textChooseTxtOptions": "Choose TXT Options", "txtDownloadTxt": "Download TXT", - "txtOk": "Ok" + "txtOk": "Ok", + "textPages": "Pages", + "textParagraphs": "Paragraphs", + "textSpaces": "Spaces", + "textSymbols": "Symbols", + "textWords": "Words" }, "Toolbar": { "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", diff --git a/apps/documenteditor/mobile/locale/it.json b/apps/documenteditor/mobile/locale/it.json index 8d03f2d52..0750fd357 100644 --- a/apps/documenteditor/mobile/locale/it.json +++ b/apps/documenteditor/mobile/locale/it.json @@ -1,592 +1,597 @@ { "About": { - "textAbout": "About", - "textAddress": "Address", - "textBack": "Back", + "textAbout": "In riguardo a", + "textAddress": "Indirizzo", + "textBack": "Indietro", "textEmail": "Email", - "textPoweredBy": "Powered By", + "textPoweredBy": "Sviluppato da", "textTel": "Tel", - "textVersion": "Version" + "textVersion": "Versione" }, "Add": { - "notcriticalErrorTitle": "Warning", - "textAddLink": "Add link", - "textAddress": "Address", - "textBack": "Back", - "textBelowText": "Below text", - "textBottomOfPage": "Bottom of page", - "textBreak": "Break", - "textCancel": "Cancel", - "textCenterBottom": "Center Bottom", - "textCenterTop": "Center Top", - "textColumnBreak": "Column Break", - "textColumns": "Columns", - "textComment": "Comment", - "textContinuousPage": "Continuous Page", - "textCurrentPosition": "Current Position", - "textDisplay": "Display", - "textEmptyImgUrl": "You need to specify image URL.", - "textEvenPage": "Even Page", - "textFootnote": "Footnote", - "textFormat": "Format", - "textImage": "Image", - "textImageURL": "Image URL", - "textInsert": "Insert", - "textInsertFootnote": "Insert Footnote", - "textInsertImage": "Insert Image", - "textLeftBottom": "Left Bottom", - "textLeftTop": "Left Top", - "textLink": "Link", - "textLinkSettings": "Link Settings", - "textLocation": "Location", - "textNextPage": "Next Page", - "textOddPage": "Odd Page", - "textOther": "Other", - "textPageBreak": "Page Break", - "textPageNumber": "Page Number", - "textPictureFromLibrary": "Picture from Library", - "textPictureFromURL": "Picture from URL", - "textPosition": "Position", - "textRightBottom": "Right Bottom", - "textRightTop": "Right Top", - "textRows": "Rows", - "textScreenTip": "Screen Tip", - "textSectionBreak": "Section Break", - "textShape": "Shape", - "textStartAt": "Start At", - "textTable": "Table", - "textTableSize": "Table Size", - "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"" + "notcriticalErrorTitle": "Avvertimento", + "textAddLink": "Aggiungere link", + "textAddress": "Indirizzo", + "textBack": "Indietro", + "textBelowText": "Testo sotto", + "textBottomOfPage": "Fondo pagina", + "textBreak": "Interruzione", + "textCancel": "Annullare", + "textCenterBottom": "In basso al centro", + "textCenterTop": "In alto al centro", + "textColumnBreak": "Divisione di colonna", + "textColumns": "Colonne", + "textComment": "Commento", + "textContinuousPage": "Pagina continua", + "textCurrentPosition": "Posizione attuale", + "textDisplay": "Visualizzare", + "textEmptyImgUrl": "Devi specificare l'URL dell'immagine.", + "textEvenPage": "Pagina pari", + "textFootnote": "Note a piè di pagina", + "textFormat": "Formato", + "textImage": "Immagine", + "textImageURL": "URL dell'immagine", + "textInsert": "Inserire", + "textInsertFootnote": "Inserire nota a piè di pagina", + "textInsertImage": "Inserire immagine", + "textLeftBottom": "In basso a sinistra", + "textLeftTop": "In alto a sinistra", + "textLink": "Collegamento", + "textLinkSettings": "Impostazioni di collegamento", + "textLocation": "Posizione", + "textNextPage": "Pagina successiva", + "textOddPage": "Pagina dispari", + "textOther": "Altro", + "textPageBreak": "Interruzione di pagina", + "textPageNumber": "Numero di pagina", + "textPictureFromLibrary": "Immagine dalla libreria", + "textPictureFromURL": "Immagine dall'URL", + "textPosition": "Posizione", + "textRightBottom": "In basso a destra", + "textRightTop": "In alto a destra", + "textRows": "Righe", + "textScreenTip": "Suggerimento su schermo", + "textSectionBreak": "Interruzione della sezione", + "textShape": "Forma", + "textStartAt": "Iniziare da", + "textTable": "Tabella", + "textTableSize": "Dimensione di tabella", + "txtNotUrl": "Questo campo deve essere un URL nel formato \"http://www.example.com\"" }, "Common": { "Collaboration": { - "notcriticalErrorTitle": "Warning", - "textAccept": "Accept", - "textAcceptAllChanges": "Accept all changes", - "textAddComment": "Add comment", - "textAddReply": "Add reply", - "textAllChangesAcceptedPreview": "All changes accepted (Preview)", - "textAllChangesEditing": "All changes (Editing)", - "textAllChangesRejectedPreview": "All changes rejected (Preview)", - "textAtLeast": "at least", - "textAuto": "auto", - "textBack": "Back", - "textBaseline": "Baseline", - "textBold": "Bold", - "textBreakBefore": "Page break before", - "textCancel": "Cancel", - "textCaps": "All caps", - "textCenter": "Align center", - "textChart": "Chart", - "textCollaboration": "Collaboration", - "textColor": "Font color", - "textComments": "Comments", - "textContextual": "Don't add intervals between paragraphs of the same style", - "textDelete": "Delete", - "textDeleteComment": "Delete Comment", - "textDeleted": "Deleted:", - "textDeleteReply": "Delete Reply", - "textDisplayMode": "Display Mode", - "textDone": "Done", - "textDStrikeout": "Double strikeout", - "textEdit": "Edit", - "textEditComment": "Edit Comment", - "textEditReply": "Edit Reply", - "textEditUser": "Users who are editing the file:", - "textEquation": "Equation", - "textExact": "exactly", - "textFinal": "Final", - "textFirstLine": "First line", - "textFormatted": "Formatted", - "textHighlight": "Highlight color", - "textImage": "Image", - "textIndentLeft": "Indent left", - "textIndentRight": "Indent right", - "textInserted": "Inserted:", - "textItalic": "Italic", - "textJustify": "Align justified ", - "textKeepLines": "Keep lines together", - "textKeepNext": "Keep with next", - "textLeft": "Align left", - "textLineSpacing": "Line Spacing: ", - "textMarkup": "Markup", - "textMessageDeleteComment": "Do you really want to delete this comment?", - "textMessageDeleteReply": "Do you really want to delete this reply?", - "textMultiple": "multiple", - "textNoBreakBefore": "No page break before", - "textNoChanges": "There are no changes.", - "textNoComments": "This document doesn't contain comments", - "textNoContextual": "Add interval between paragraphs of the same style", - "textNoKeepLines": "Don't keep lines together", - "textNoKeepNext": "Don't keep with next", - "textNot": "Not ", - "textNoWidow": "No widow control", - "textNum": "Change numbering", - "textOriginal": "Original", - "textParaDeleted": "Paragraph Deleted", - "textParaFormatted": "Paragraph Formatted", - "textParaInserted": "Paragraph Inserted", - "textParaMoveFromDown": "Moved Down:", - "textParaMoveFromUp": "Moved Up:", - "textParaMoveTo": "Moved:", - "textPosition": "Position", - "textReject": "Reject", - "textRejectAllChanges": "Reject All Changes", - "textReopen": "Reopen", - "textResolve": "Resolve", - "textReview": "Review", - "textReviewChange": "Review Change", - "textRight": "Align right", - "textShape": "Shape", - "textShd": "Background color", - "textSmallCaps": "Small caps", - "textSpacing": "Spacing", - "textSpacingAfter": "Spacing after", - "textSpacingBefore": "Spacing before", - "textStrikeout": "Strikeout", - "textSubScript": "Subscript", - "textSuperScript": "Superscript", - "textTableChanged": "Table Settings Changed", - "textTableRowsAdd": "Table Rows Added", - "textTableRowsDel": "Table Rows Deleted", - "textTabs": "Change tabs", - "textTrackChanges": "Track Changes", - "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", - "textUnderline": "Underline", - "textUsers": "Users", - "textWidow": "Widow control", - "textOk": "Ok" + "notcriticalErrorTitle": "Avvertimento", + "textAccept": "Accettare", + "textAcceptAllChanges": "Accettare tutte le modifiche", + "textAddComment": "Aggiungere commento", + "textAddReply": "Aggiungere risposta", + "textAllChangesAcceptedPreview": "Tutti i cambiamenti accettati (Anteprima)", + "textAllChangesEditing": "Tutti i cambiamenti (Modifica)", + "textAllChangesRejectedPreview": "Tutti i cambiamenti rifiutati (Anteprima)", + "textAtLeast": "almeno", + "textAuto": "Automatico", + "textBack": "Indietro", + "textBaseline": "Linea di base", + "textBold": "Grassetto", + "textBreakBefore": "Interruzione di pagina davanti", + "textCancel": "Annullare", + "textCaps": "Tutto maiuscolo", + "textCenter": "Allineare al centro", + "textChart": "Grafico", + "textCollaboration": "Collaborazione", + "textColor": "Colore di carattere", + "textComments": "Commenti", + "textContextual": "Non aggiungere intervalli tra paragrafi dello stesso stile", + "textDelete": "Eliminare", + "textDeleteComment": "Eliminare commento", + "textDeleted": "Eliminato:", + "textDeleteReply": "Eliminare risposta", + "textDisplayMode": "Modalità di visualizzazione", + "textDone": "Fatto", + "textDStrikeout": "Barrato doppio", + "textEdit": "Modificare", + "textEditComment": "Modificare commento", + "textEditReply": "Modificare risposta", + "textEditUser": "Utenti che stanno modificando il file:", + "textEquation": "Equazione", + "textExact": "esattamente", + "textFinal": "Finale", + "textFirstLine": "Prima linea", + "textFormatted": "Formattato", + "textHighlight": "Colore di evidenziazione", + "textImage": "Immagine", + "textIndentLeft": "Rientro sinistro", + "textIndentRight": "Rientro destro", + "textInserted": "Inserito:", + "textItalic": "Corsivo", + "textJustify": "Allineamento giustificato", + "textKeepLines": "Mantenere le linee insieme", + "textKeepNext": "Mantenere con il successivo", + "textLeft": "Allineare a sinistra", + "textLineSpacing": "Interlinea:", + "textMarkup": "Marcatura", + "textMessageDeleteComment": "Sei sicuro di voler eliminare questo commento?", + "textMessageDeleteReply": "Sei sicuro di voler eliminare questa risposta?", + "textMultiple": "multiplo", + "textNoBreakBefore": "Nessuna interruzione di pagina prima", + "textNoChanges": "Non ci sono cambiamenti.", + "textNoComments": "Questo documento non contiene commenti", + "textNoContextual": "Aggiungere intervallo tra paragrafi dello stesso stile", + "textNoKeepLines": "Non tenere linee insieme", + "textNoKeepNext": "Non tenere con il prossimo", + "textNot": "Non", + "textNoWidow": "Nessun controllo vedovo", + "textNum": "Cambiare numerazione", + "textOk": "OK", + "textOriginal": "Originale", + "textParaDeleted": "Paragrafo eliminato", + "textParaFormatted": "Paragrafo formattato", + "textParaInserted": "Paragrafo inserito", + "textParaMoveFromDown": "Spostato in basso:", + "textParaMoveFromUp": "Spostato in alto:", + "textParaMoveTo": "Spostato:", + "textPosition": "Posizione", + "textReject": "Rifiutare", + "textRejectAllChanges": "Rifiutare tutte le modifiche", + "textReopen": "Riaprire", + "textResolve": "Risolvere", + "textReview": "Revisione", + "textReviewChange": "Riesaminare le modifiche", + "textRight": "Allineare a destra", + "textShape": "Forma", + "textShd": "Colore di sfondo", + "textSmallCaps": "Maiuscoletto", + "textSpacing": "Spaziatura", + "textSpacingAfter": "Spaziatura dopo", + "textSpacingBefore": "Spaziatura prima", + "textStrikeout": "Barrato", + "textSubScript": "Pedice", + "textSuperScript": "Apice", + "textTableChanged": "Cambiati impostazioni di tabella", + "textTableRowsAdd": "Aggiunte le righe della tabella", + "textTableRowsDel": "Eliminate le righe della tabella", + "textTabs": "Cambiare tabulazioni", + "textTrackChanges": "Tracciare cambiamenti", + "textTryUndoRedo": "Le funzioni Annulla/Ripeti sono disattivate nella modalità rapida di modifica collaborativa.", + "textUnderline": "Sottolineato", + "textUsers": "Utenti", + "textWidow": "Controllo vedovo" }, "ThemeColorPalette": { - "textCustomColors": "Custom Colors", - "textStandartColors": "Standard Colors", - "textThemeColors": "Theme Colors" + "textCustomColors": "Colori personalizzati", + "textStandartColors": "Colori standard", + "textThemeColors": "Colori del tema" } }, "ContextMenu": { - "errorCopyCutPaste": "Copy, cut and paste actions using the context menu will be performed within the current file only.", - "menuAddComment": "Add comment", - "menuAddLink": "Add link", - "menuCancel": "Cancel", - "menuDelete": "Delete", - "menuDeleteTable": "Delete Table", - "menuEdit": "Edit", - "menuMerge": "Merge", - "menuMore": "More", - "menuOpenLink": "Open Link", - "menuReview": "Review", - "menuReviewChange": "Review Change", - "menuSplit": "Split", - "menuViewComment": "View Comment", - "textColumns": "Columns", - "textCopyCutPasteActions": "Copy, Cut and Paste Actions", - "textDoNotShowAgain": "Don't show again", - "textRows": "Rows", - "menuStartNewList": "Start new list", - "menuStartNumberingFrom": "Set numbering value", - "menuContinueNumbering": "Continue numbering", - "menuSeparateList": "Separate list", - "menuJoinList": "Join to previous list", + "errorCopyCutPaste": "Azioni di copia, taglia e incolla usate dal menu contestuale verranno eseguite solo all'interno del file corrente.", + "menuAddComment": "Aggiungere commento", + "menuAddLink": "Aggiungere link", + "menuCancel": "Annullare", + "menuContinueNumbering": "Continuare la numerazione", + "menuDelete": "Eliminare", + "menuDeleteTable": "Eliminare tabella", + "menuEdit": "Modificare", + "menuJoinList": "Unire all'elenco precedente", + "menuMerge": "Unire", + "menuMore": "Di più", + "menuOpenLink": "Aprire link", + "menuReview": "Revisione", + "menuReviewChange": "Riesaminare le modifiche", + "menuSeparateList": "Elenco separato", + "menuSplit": "Dividere", + "menuStartNewList": "Iniziare nuovo elenco", + "menuStartNumberingFrom": "Impostare il valore numerico", + "menuViewComment": "Visualizzare commento", + "textCancel": "Annullare", + "textColumns": "Colonne", + "textCopyCutPasteActions": "Funzioni di Copiare, Tagliare e Incollare", + "textDoNotShowAgain": "Non mostrare di nuovo", + "textNumberingValue": "Valore di numerazione", "textOk": "OK", - "textCancel": "Cancel", - "textNumberingValue": "Numbering Value" + "textRows": "Righe" }, "Edit": { - "notcriticalErrorTitle": "Warning", - "textActualSize": "Actual size", - "textAddCustomColor": "Add custom color", - "textAdditional": "Additional", - "textAdditionalFormatting": "Additional formatting", - "textAddress": "Address", - "textAdvanced": "Advanced", - "textAdvancedSettings": "Advanced settings", - "textAfter": "After", - "textAlign": "Align", - "textAllCaps": "All caps", - "textAllowOverlap": "Allow overlap", + "notcriticalErrorTitle": "Avvertimento", + "textActualSize": "Dimensione reale", + "textAddCustomColor": "Aggiungere colore personalizzato", + "textAdditional": "Aggiuntivo", + "textAdditionalFormatting": "Formattazione aggiuntiva", + "textAddress": "Indirizzo", + "textAdvanced": "Avanzato", + "textAdvancedSettings": "Impostazioni avanzate", + "textAfter": "Dopo", + "textAlign": "Allineare", + "textAllCaps": "Tutto maiuscolo", + "textAllowOverlap": "Consentire sovrapposizione", "textAuto": "Auto", - "textAutomatic": "Automatic", - "textBack": "Back", - "textBackground": "Background", - "textBandedColumn": "Banded column", - "textBandedRow": "Banded row", - "textBefore": "Before", - "textBehind": "Behind", - "textBorder": "Border", - "textBringToForeground": "Bring to foreground", - "textBullets": "Bullets", - "textBulletsAndNumbers": "Bullets & Numbers", - "textCellMargins": "Cell Margins", - "textChart": "Chart", - "textClose": "Close", - "textColor": "Color", - "textContinueFromPreviousSection": "Continue from previous section", - "textCustomColor": "Custom Color", - "textDifferentFirstPage": "Different first page", - "textDifferentOddAndEvenPages": "Different odd and even pages", - "textDisplay": "Display", - "textDistanceFromText": "Distance from text", - "textDoubleStrikethrough": "Double Strikethrough", - "textEditLink": "Edit Link", - "textEffects": "Effects", - "textEmptyImgUrl": "You need to specify image URL.", - "textFill": "Fill", - "textFirstColumn": "First Column", - "textFirstLine": "FirstLine", - "textFlow": "Flow", - "textFontColor": "Font Color", - "textFontColors": "Font Colors", - "textFonts": "Fonts", - "textFooter": "Footer", - "textHeader": "Header", - "textHeaderRow": "Header Row", - "textHighlightColor": "Highlight Color", - "textHyperlink": "Hyperlink", - "textImage": "Image", - "textImageURL": "Image URL", - "textInFront": "In Front", - "textInline": "Inline", - "textKeepLinesTogether": "Keep Lines Together", - "textKeepWithNext": "Keep with Next", - "textLastColumn": "Last Column", - "textLetterSpacing": "Letter Spacing", - "textLineSpacing": "Line Spacing", - "textLink": "Link", - "textLinkSettings": "Link Settings", - "textLinkToPrevious": "Link to Previous", - "textMoveBackward": "Move Backward", - "textMoveForward": "Move Forward", - "textMoveWithText": "Move with Text", - "textNone": "None", - "textNoStyles": "No styles for this type of charts.", - "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", - "textOpacity": "Opacity", - "textOptions": "Options", - "textOrphanControl": "Orphan Control", - "textPageBreakBefore": "Page Break Before", - "textPageNumbering": "Page Numbering", - "textParagraph": "Paragraph", - "textParagraphStyles": "Paragraph Styles", - "textPictureFromLibrary": "Picture from Library", - "textPictureFromURL": "Picture from URL", + "textAutomatic": "Automatico", + "textBack": "Indietro", + "textBackground": "Sfondo", + "textBandedColumn": "Colonne a bande", + "textBandedRow": "Righe a bande", + "textBefore": "Prima", + "textBehind": "Dietro", + "textBorder": "Bordo", + "textBringToForeground": "Portare in primo piano", + "textBullets": "Elenchi puntati", + "textBulletsAndNumbers": "Puntato e numerato", + "textCellMargins": "Margini di cella", + "textChart": "Grafico", + "textClose": "Chiudere", + "textColor": "Colore", + "textContinueFromPreviousSection": "Continuare dalla sezione precedente", + "textCustomColor": "Colore personalizzato", + "textDifferentFirstPage": "Prima pagina diversa", + "textDifferentOddAndEvenPages": "Pagine pari e dispari diverse", + "textDisplay": "Visualizzare", + "textDistanceFromText": "Distanza dal testo", + "textDoubleStrikethrough": "Barrato doppio", + "textEditLink": "Modificare link", + "textEffects": "Effetti", + "textEmptyImgUrl": "Devi specificare l'URL dell'immagine.", + "textFill": "Riempire", + "textFirstColumn": "Prima colonna", + "textFirstLine": "PrimaLinea", + "textFlow": "Flusso", + "textFontColor": "Colore di carattere", + "textFontColors": "Colori di carattere", + "textFonts": "Caratteri", + "textFooter": "Piè di pagina", + "textHeader": "Intestazione", + "textHeaderRow": "Riga di intestazione", + "textHighlightColor": "Colore di evidenziazione", + "textHyperlink": "Collegamento ipertestuale", + "textImage": "Immagine", + "textImageURL": "URL dell'immagine", + "textInFront": "Davanti", + "textInline": "In linea", + "textKeepLinesTogether": "Mantenere le linee insieme", + "textKeepWithNext": "Mantenere con il successivo", + "textLastColumn": "Ultima colonna", + "textLetterSpacing": "Spaziatura delle lettere", + "textLineSpacing": "Interlinea", + "textLink": "Collegamento", + "textLinkSettings": "Impostazioni di collegamento", + "textLinkToPrevious": "Collegare al precedente", + "textMoveBackward": "Spostare indietro", + "textMoveForward": "Spostare avanti", + "textMoveWithText": "Spostare con testo", + "textNone": "Nessuno", + "textNoStyles": "Nessun stile per questo tipo di grafico.", + "textNotUrl": "Questo campo deve essere un URL nel formato \"http://www.example.com\"", + "textNumbers": "Numeri", + "textOpacity": "Opacità", + "textOptions": "Opzioni", + "textOrphanControl": "Controllo orfano", + "textPageBreakBefore": "Interruzione di pagina davanti", + "textPageNumbering": "Numerazione di pagine", + "textParagraph": "Paragrafo", + "textParagraphStyles": "Stili di paragrafo", + "textPictureFromLibrary": "Immagine dalla libreria", + "textPictureFromURL": "Immagine dall'URL", "textPt": "pt", - "textRemoveChart": "Remove Chart", - "textRemoveImage": "Remove Image", - "textRemoveLink": "Remove Link", - "textRemoveShape": "Remove Shape", - "textRemoveTable": "Remove Table", - "textReorder": "Reorder", - "textRepeatAsHeaderRow": "Repeat as Header Row", - "textReplace": "Replace", - "textReplaceImage": "Replace Image", - "textResizeToFitContent": "Resize to Fit Content", - "textScreenTip": "Screen Tip", - "textSelectObjectToEdit": "Select object to edit", - "textSendToBackground": "Send to Background", - "textSettings": "Settings", - "textShape": "Shape", - "textSize": "Size", - "textSmallCaps": "Small Caps", - "textSpaceBetweenParagraphs": "Space Between Paragraphs", - "textSquare": "Square", - "textStartAt": "Start at", - "textStrikethrough": "Strikethrough", - "textStyle": "Style", - "textStyleOptions": "Style Options", - "textSubscript": "Subscript", - "textSuperscript": "Superscript", - "textTable": "Table", - "textTableOptions": "Table Options", - "textText": "Text", - "textThrough": "Through", - "textTight": "Tight", - "textTopAndBottom": "Top and Bottom", - "textTotalRow": "Total Row", - "textType": "Type", - "textWrap": "Wrap", - "textNumbers": "Numbers" + "textRemoveChart": "Eliminare il grafico", + "textRemoveImage": "Eliminare immagine", + "textRemoveLink": "Eliminare link", + "textRemoveShape": "Eliminare forma", + "textRemoveTable": "Eliminare tabella", + "textReorder": "Riordinare", + "textRepeatAsHeaderRow": "Ripetere come riga di intestazione", + "textReplace": "Sostituire", + "textReplaceImage": "Sostituire l'immagine", + "textResizeToFitContent": "Ridimensionare per adattare il contenuto", + "textScreenTip": "Suggerimento su schermo", + "textSelectObjectToEdit": "Selezionare un oggetto per modificare", + "textSendToBackground": "Spostare in secondo piano", + "textSettings": "Impostazioni", + "textShape": "Forma", + "textSize": "Dimensione", + "textSmallCaps": "Maiuscoletto", + "textSpaceBetweenParagraphs": "Spazio tra paragrafi", + "textSquare": "Quadrato", + "textStartAt": "Iniziare da", + "textStrikethrough": "Barrato", + "textStyle": "Stile", + "textStyleOptions": "Opzioni di stile", + "textSubscript": "Pedice", + "textSuperscript": "Apice", + "textTable": "Tabella", + "textTableOptions": "Opzioni di tabella", + "textText": "Testo", + "textThrough": "Attraverso", + "textTight": "Stretto", + "textTopAndBottom": "Sopra e sotto", + "textTotalRow": "Riga totale", + "textType": "Tipo", + "textWrap": "Avvolgere" }, "Error": { - "convertationTimeoutText": "Conversion timeout exceeded.", - "criticalErrorExtText": "Press 'OK' to go back to the document list.", - "criticalErrorTitle": "Error", - "downloadErrorText": "Download failed.", - "errorAccessDeny": "You are trying to perform an action you do not have rights for.
Please, contact your admin.", - "errorBadImageUrl": "Image url is incorrect", - "errorConnectToServer": "Can't save this doc. Check your connection settings or contact the admin.
When you click OK, you will be prompted to download the document.", - "errorDatabaseConnection": "External error.
Database connection error. Please, contact support.", - "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", - "errorDataRange": "Incorrect data range.", - "errorDefaultMessage": "Error code: %1", - "errorEditingDownloadas": "An error occurred during the work with the document.
Download document to save the file backup copy locally.", - "errorFilePassProtect": "The file is password protected and could not be opened.", - "errorFileSizeExceed": "The file size exceeds your server limit.
Please, contact your admin.", - "errorKeyEncrypt": "Unknown key descriptor", - "errorKeyExpire": "Key descriptor expired", - "errorMailMergeLoadFile": "Loading failed", - "errorMailMergeSaveFile": "Merge failed.", - "errorSessionAbsolute": "The document editing session has expired. Please, reload the page.", - "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.", - "errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.", - "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 it until the connection is restored and the page is reloaded.", - "notcriticalErrorTitle": "Warning", - "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.", - "splitDividerErrorText": "The number of rows must be a divisor of %1", - "splitMaxColsErrorText": "The number of columns must be less than %1", - "splitMaxRowsErrorText": "The number of rows must be less than %1", - "unknownErrorText": "Unknown error.", - "uploadImageExtMessage": "Unknown image format.", - "uploadImageFileCountMessage": "No images uploaded.", - "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.", - "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." + "convertationTimeoutText": "È stato superato il tempo massimo della conversione.", + "criticalErrorExtText": "Premi 'OK' per tornare all'elenco dei documenti.", + "criticalErrorTitle": "Errore", + "downloadErrorText": "Scaricamento fallito.", + "errorAccessDeny": "Stai cercando di eseguire un'azione per la quale non hai diritti.
Ti preghiamo di contattare il tuo amministratore.", + "errorBadImageUrl": "URL dell'immagine non è corretto", + "errorConnectToServer": "Impossibile salvare questo documento. Controlla le impostazioni di connessione o contatta l'amministratore.
Cliccando su OK ti verrà richiesto di scaricare il documento.", + "errorDatabaseConnection": "Errore esterno.
Errore di connessione al database. Si prega di contattare il team di supporto.", + "errorDataEncrypted": "Le modifiche crittografate sono state ricevute, non possono essere decifrate.", + "errorDataRange": "Intervallo di dati non corretto.", + "errorDefaultMessage": "Codice errore: %1", + "errorEditingDownloadas": "Si è verificato un errore durante il lavoro con il documento.
Scarica il documento per salvare il backup del file localmente.", + "errorFilePassProtect": "Il file è protetto da password e non può essere aperto.", + "errorFileSizeExceed": "La dimensione del file supera il limite del tuo server.
Ti preghiamo di contattare il tuo amministratore.", + "errorKeyEncrypt": "Descrittore della chiave sconosciuto", + "errorKeyExpire": "Descrittore di chiave scaduto", + "errorLoadingFont": "I caratteri non sono stati caricati.
Si prega di contattare l'amministratore di Document Server.", + "errorMailMergeLoadFile": "Caricamento fallito", + "errorMailMergeSaveFile": "Fusione fallita.", + "errorSessionAbsolute": "La sessione di modifica del documento è scaduta. Ti preghiamo di ricaricare la pagina.", + "errorSessionIdle": "Il documento non è stato modificato per molto tempo. Ti preghiamo di ricaricare la pagina.", + "errorSessionToken": "La connessione al server è stata interrotta. Ti preghiamo di ricaricare la pagina.", + "errorStockChart": "Ordine delle righe incorretto. Per creare un grafico azionario, inserisci i dati sul foglio nel seguente ordine:
prezzo di apertura, prezzo massimo, prezzo minimo, prezzo di chiusura.", + "errorUpdateVersionOnDisconnect": "La connessione Internet è stata ripristinata e la versione del file è stata cambiata.
Prima di poter continuare a lavorare, è necessario scaricare il file o copiarne il contenuto per assicurarsi che non vada perso nulla, poi ricaricare questa pagina.", + "errorUserDrop": "Non si può accedere al file al momento.", + "errorUsersExceed": "È stato superato il numero degli utenti consentito dalla tariffa", + "errorViewerDisconnect": "La connessione è stata persa. È ancora possibile visualizzare il documento,
ma non sarà possibile scaricarlo o stamparlo fino a quando la connessione non sarà ripristinata e la pagina sarà ricaricata.", + "notcriticalErrorTitle": "Avvertimento", + "openErrorText": "Si è verificato un errore all'apertura del file", + "saveErrorText": "Si è verificato un errore al salvataggio del file", + "scriptLoadError": "La connessione è troppo lenta, alcuni componenti non vengono caricati. Ti preghiamo di ricaricare la pagina.", + "splitDividerErrorText": "Il numero di righe deve essere un divisore di %1", + "splitMaxColsErrorText": "Il numero di colonne deve essere inferiore a% 1", + "splitMaxRowsErrorText": "Il numero di righe deve essere inferiore a% 1", + "unknownErrorText": "Errore sconosciuto.", + "uploadImageExtMessage": "Formato d'immagine sconosciuto.", + "uploadImageFileCountMessage": "Nessuna immagine caricata.", + "uploadImageSizeMessage": "L'immagine è troppo grande. La dimensione massima è 25 MB." }, "LongActions": { - "applyChangesTextText": "Loading data...", - "applyChangesTitleText": "Loading Data", - "downloadMergeText": "Downloading...", - "downloadMergeTitle": "Downloading", - "downloadTextText": "Downloading document...", - "downloadTitleText": "Downloading Document", - "loadFontsTextText": "Loading data...", - "loadFontsTitleText": "Loading Data", - "loadFontTextText": "Loading data...", - "loadFontTitleText": "Loading Data", - "loadImagesTextText": "Loading images...", - "loadImagesTitleText": "Loading Images", - "loadImageTextText": "Loading image...", - "loadImageTitleText": "Loading Image", - "loadingDocumentTextText": "Loading document...", - "loadingDocumentTitleText": "Loading document", - "mailMergeLoadFileText": "Loading Data Source...", - "mailMergeLoadFileTitle": "Loading Data Source", - "openTextText": "Opening document...", - "openTitleText": "Opening Document", - "printTextText": "Printing document...", - "printTitleText": "Printing Document", - "savePreparingText": "Preparing to save", - "savePreparingTitle": "Preparing to save. Please wait...", - "saveTextText": "Saving document...", - "saveTitleText": "Saving Document", - "sendMergeText": "Sending Merge...", - "sendMergeTitle": "Sending Merge", - "textLoadingDocument": "Loading document", - "txtEditingMode": "Set editing mode...", - "uploadImageTextText": "Uploading image...", - "uploadImageTitleText": "Uploading Image", - "waitText": "Please, wait..." + "applyChangesTextText": "Caricamento di dati...", + "applyChangesTitleText": "Caricamento di dati", + "downloadMergeText": "Scaricamento...", + "downloadMergeTitle": "Scaricamento", + "downloadTextText": "Scaricamento di documento...", + "downloadTitleText": "Scaricamento di documento", + "loadFontsTextText": "Caricamento di dati...", + "loadFontsTitleText": "Caricamento di dati", + "loadFontTextText": "Caricamento di dati...", + "loadFontTitleText": "Caricamento di dati", + "loadImagesTextText": "Caricamento delle immagini...", + "loadImagesTitleText": "Caricamento delle immagini", + "loadImageTextText": "Caricamento dell'immagine...", + "loadImageTitleText": "Caricamento dell'immagine", + "loadingDocumentTextText": "Caricamento di documento...", + "loadingDocumentTitleText": "Caricamento di documento", + "mailMergeLoadFileText": "Caricamento di fonte di dati...", + "mailMergeLoadFileTitle": "Caricamento di fonte di dati", + "openTextText": "Apertura del documento...", + "openTitleText": "Apertura del documento", + "printTextText": "Stampa del documento...", + "printTitleText": "Stampa del documento", + "savePreparingText": "Preparazione al salvataggio ", + "savePreparingTitle": "Preparazione al salvataggio. Attendere prego...", + "saveTextText": "Salvataggio del documento in corso...", + "saveTitleText": "Salvataggio del documento", + "sendMergeText": "Invio dei resultati della fusione...", + "sendMergeTitle": "Invio dei resultati della fusione", + "textLoadingDocument": "Caricamento di documento", + "txtEditingMode": "Impostare la modalità di modifica...", + "uploadImageTextText": "Caricamento dell'immagine...", + "uploadImageTitleText": "Caricamento dell'immagine", + "waitText": "Attendere prego..." }, "Main": { - "criticalErrorTitle": "Error", - "errorAccessDeny": "You are trying to perform an action you do not have rights for.
Please, contact your administrator.", - "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", - "errorProcessSaveResult": "Saving failed.", - "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", - "errorUpdateVersion": "The file version has been changed. The page will be reloaded.", - "leavePageText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", - "notcriticalErrorTitle": "Warning", + "criticalErrorTitle": "Errore", + "errorAccessDeny": "Stai cercando di eseguire un'azione per la quale non hai diritti.
Ti preghiamo di contattare il tuo amministratore.", + "errorOpensource": "Usando la versione gratuita Community, puoi aprire i documenti solo per visualizzarli. Per accedere agli editor mobili sul web è richiesta una licenza commerciale.", + "errorProcessSaveResult": "Salvataggio non riuscito", + "errorServerVersion": "La versione dell'editor è stata aggiornata. La pagina viene ricaricata per applicare tutti i cambiamenti.", + "errorUpdateVersion": "La versione del file è stata cambiata. La pagina verrà ricaricata.", + "leavePageText": "Hai dei cambiamenti non salvati. Premi 'Rimanere sulla pagina' per attendere il salvataggio automatico. Premi 'Lasciare la pagina' per eliminare tutte le modifiche non salvate.", + "notcriticalErrorTitle": "Avvertimento", "SDK": { - " -Section ": " -Section ", - "above": "above", - "below": "below", - "Caption": "Caption", - "Choose an item": "Choose an item", - "Click to load image": "Click to load image", - "Current Document": "Current Document", - "Diagram Title": "Chart Title", - "endnote text": "Endnote Text", - "Enter a date": "Enter a date", - "Error! Bookmark not defined": "Error! Bookmark not defined.", - "Error! Main Document Only": "Error! Main Document Only.", - "Error! No text of specified style in document": "Error! No text of specified style in document.", - "Error! Not a valid bookmark self-reference": "Error! Not a valid bookmark self-reference.", - "Even Page ": "Even Page ", - "First Page ": "First Page ", - "Footer": "Footer", - "footnote text": "Footnote Text", - "Header": "Header", - "Heading 1": "Heading 1", - "Heading 2": "Heading 2", - "Heading 3": "Heading 3", - "Heading 4": "Heading 4", - "Heading 5": "Heading 5", - "Heading 6": "Heading 6", - "Heading 7": "Heading 7", - "Heading 8": "Heading 8", - "Heading 9": "Heading 9", - "Hyperlink": "Hyperlink", - "Index Too Large": "Index Too Large", - "Intense Quote": "Intense Quote", - "Is Not In Table": "Is Not In Table", - "List Paragraph": "List Paragraph", - "Missing Argument": "Missing Argument", - "Missing Operator": "Missing Operator", - "No Spacing": "No Spacing", - "No table of contents entries found": "There are no headings in the document. Apply a heading style to the text so that it appears in the table of contents.", - "No table of figures entries found": "No table of figures entries found.", - "None": "None", - "Normal": "Normal", - "Number Too Large To Format": "Number Too Large To Format", - "Odd Page ": "Odd Page ", - "Quote": "Quote", - "Same as Previous": "Same as Previous", - "Series": "Series", - "Subtitle": "Subtitle", - "Syntax Error": "Syntax Error", - "Table Index Cannot be Zero": "Table Index Cannot be Zero", - "Table of Contents": "Table of Contents", - "table of figures": "Table of figures", - "The Formula Not In Table": "The Formula Not In Table", - "Title": "Title", - "TOC Heading": "TOC Heading", - "Type equation here": "Type equation here", - "Undefined Bookmark": "Undefined Bookmark", - "Unexpected End of Formula": "Unexpected End of Formula", - "X Axis": "X Axis XAS", - "Y Axis": "Y Axis", - "Your text here": "Your text here", - "Zero Divide": "Zero Divide" + " -Section ": "-Sezione", + "above": "sopra", + "below": "sotto", + "Caption": "Didascalia", + "Choose an item": "Scegliere un elemento", + "Click to load image": "Cliccare per caricare l'immagine", + "Current Document": "Documento attuale", + "Diagram Title": "Titolo di grafico", + "endnote text": "Testo di nota di chiusura", + "Enter a date": "Inserire una data", + "Error! Bookmark not defined": "Errore! Segnalibro non definito.", + "Error! Main Document Only": "Errore! Solo documento principale.", + "Error! No text of specified style in document": "Errore! Nessun testo dello stile specificato nel documento.", + "Error! Not a valid bookmark self-reference": "Errore! Non è un'autoreferenza valida per segnalibro.", + "Even Page ": "Pagina pari", + "First Page ": "Prima pagina", + "Footer": "Piè di pagina", + "footnote text": "Testo di nota a piè di pagina", + "Header": "Intestazione", + "Heading 1": "Titolo 1", + "Heading 2": "Titolo 2", + "Heading 3": "Titolo 3", + "Heading 4": "Titolo 4", + "Heading 5": "Titolo 5", + "Heading 6": "Titolo 6", + "Heading 7": "Titolo 7", + "Heading 8": "Titolo 8", + "Heading 9": "Titolo 9", + "Hyperlink": "Collegamento ipertestuale", + "Index Too Large": "Indice troppo grande", + "Intense Quote": "Citazione intensa", + "Is Not In Table": "Non è in tabella", + "List Paragraph": "Paragrafo di elenco", + "Missing Argument": "Argomento mancante", + "Missing Operator": "Operatore mancante", + "No Spacing": "Senza spazi", + "No table of contents entries found": "Non ci sono titoli nel documento. Applica uno stile di titolo al testo in modo che appaia nella tabella dei contenuti.", + "No table of figures entries found": "Nessuna voce trovata nella tabella di figure.", + "None": "Nessuno", + "Normal": "Normale", + "Number Too Large To Format": "Numero troppo grande per essere formattato", + "Odd Page ": "Pagina dispari", + "Quote": "Citazione", + "Same as Previous": "Uguale al precedente", + "Series": "Serie", + "Subtitle": "Sottotitolo", + "Syntax Error": "Errore di sintassi", + "Table Index Cannot be Zero": "L'indice della tabella non può essere zero", + "Table of Contents": "Tabella di contenuti", + "table of figures": "Tabella di figure‎", + "The Formula Not In Table": "La formula non è in tabella", + "Title": "Titolo", + "TOC Heading": "Titolo di intestazione", + "Type equation here": "Inserire equazione qui", + "Undefined Bookmark": "Segnalibro indefinito", + "Unexpected End of Formula": "Fine della formula inaspettata", + "X Axis": "Asse X (XAS)", + "Y Axis": "Asse Y", + "Your text here": "Il tuo testo qui", + "Zero Divide": "Dividere per zero" }, - "textAnonymous": "Anonymous", - "textBuyNow": "Visit website", - "textClose": "Close", - "textContactUs": "Contact sales", - "textCustomLoader": "Sorry, you are not entitled to change the loader. Contact our sales department to get a quote.", - "textGuest": "Guest", - "textHasMacros": "The file contains automatic macros.
Do you want to run macros?", + "textAnonymous": "Anonimo", + "textBuyNow": "Visitare il sito web", + "textClose": "Chiudere", + "textContactUs": "Contatta il team di vendite", + "textCustomLoader": "Spiacenti, non hai il diritto di cambiare il caricatore. Contatta il nostro ufficio vendite per ottenere un preventivo.", + "textGuest": "Ospite", + "textHasMacros": "Il file contiene delle macro automatiche.
Vuoi eseguirle?", "textNo": "No", - "textNoLicenseTitle": "License limit reached", - "textPaidFeature": "Paid feature", - "textRemember": "Remember my choice", - "textYes": "Yes", - "titleLicenseExp": "License expired", - "titleServerVersion": "Editor updated", - "titleUpdateVersion": "Version changed", - "warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.", - "warnLicenseExp": "Your license has expired. Please, update your license and refresh the page.", - "warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your admin.", - "warnLicenseLimitedRenewed": "The license needs to be renewed. You have limited access to document editing functionality.
Please contact your administrator to get full access", - "warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", - "warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.", - "warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", - "warnProcessRightsChange": "You don't have permission to edit this file." + "textNoLicenseTitle": "E' stato raggiunto il limite della licenza", + "textPaidFeature": "Funzionalità a pagamento", + "textRemember": "Ricordare la mia scelta", + "textYes": "Sì", + "titleLicenseExp": "La licenza è scaduta", + "titleServerVersion": "L'editor è stato aggiornato", + "titleUpdateVersion": "La versione è stata cambiata", + "warnLicenseExceeded": "Hai raggiunto il limite delle connessioni simultanee agli editor %1. Questo documento sarà aperto solo in modalità di visualizzazione. Ti preghiamo di contattare il tuo amministratore per maggior informazioni.", + "warnLicenseExp": "La tua licenza è scaduta. Ti preghiamo di aggiornare la tua licenza e ricaricare la pagina.", + "warnLicenseLimitedNoAccess": "La licenza è scaduta. Non hai più accesso alle funzionalità di modifiche di documenti. Ti preghiamo di contattare il tuo amministratore.", + "warnLicenseLimitedRenewed": "La licenza deve essere rinnovata. Hai l'accesso limitato alle funzionalità di modifiche di documenti.
Ti preghiamo di contattare il tuo amministratore per ottenere accesso completo.", + "warnLicenseUsersExceeded": "Hai raggiunto il limite degli utenti per gli editor %1. Ti preghiamo di contattare il tuo amministratore per maggior informazioni.", + "warnNoLicense": "Hai raggiunto il limite delle connessioni simultanee agli editor %1. Questo documento sarà aperto solo in modalità di visualizzazione. Ti preghiamo di contattare il team di vendite di %1 per i termini di aggiornamento personali.", + "warnNoLicenseUsers": "Hai raggiunto il limite degli utenti per gli editor %1. Ti preghiamo di contattare il team di vendite di %1 per i termini di aggiornamento personali.", + "warnProcessRightsChange": "Non hai il permesso di modificare questo file." }, "Settings": { - "advDRMOptions": "Protected File", + "advDRMOptions": "File protetto", "advDRMPassword": "Password", - "advTxtOptions": "Choose TXT Options", - "closeButtonText": "Close File", - "notcriticalErrorTitle": "Warning", - "textAbout": "About", - "textApplication": "Application", - "textApplicationSettings": "Application settings", - "textAuthor": "Author", - "textBack": "Back", - "textBottom": "Bottom", - "textCancel": "Cancel", - "textCaseSensitive": "Case Sensitive", - "textCentimeter": "Centimeter", - "textCollaboration": "Collaboration", - "textColorSchemes": "Color Schemes", - "textComment": "Comment", - "textComments": "Comments", - "textCommentsDisplay": "Comments Display", - "textCreated": "Created", - "textCustomSize": "Custom Size", - "textDisableAll": "Disable All", - "textDisableAllMacrosWithNotification": "Disable all macros with notification", - "textDisableAllMacrosWithoutNotification": "Disable all macros without notification", - "textDocumentInfo": "Document Info", - "textDocumentSettings": "Document Settings", - "textDocumentTitle": "Document Title", - "textDone": "Done", - "textDownload": "Download", - "textDownloadAs": "Download As", - "textDownloadRtf": "If you continue saving in this format some of the formatting might be lost. Are you sure you want to continue?", - "textDownloadTxt": "If you continue saving in this format all features except the text will be lost. Are you sure you want to continue?", - "textEnableAll": "Enable All", - "textEnableAllMacrosWithoutNotification": "Enable all macros without notification", - "textEncoding": "Encoding", - "textFind": "Find", - "textFindAndReplace": "Find and Replace", - "textFindAndReplaceAll": "Find and Replace All", - "textFormat": "Format", - "textHelp": "Help", - "textHiddenTableBorders": "Hidden Table Borders", - "textHighlightResults": "Highlight Results", - "textInch": "Inch", - "textLandscape": "Landscape", - "textLastModified": "Last Modified", - "textLastModifiedBy": "Last Modified By", - "textLeft": "Left", - "textLoading": "Loading...", - "textLocation": "Location", - "textMacrosSettings": "Macros Settings", - "textMargins": "Margins", - "textMarginsH": "Top and bottom margins are too high for a given page height", - "textMarginsW": "Left and right margins are too wide for a given page width", - "textNoCharacters": "Nonprinting Characters", - "textNoTextFound": "Text not found", - "textOpenFile": "Enter a password to open the file", - "textOrientation": "Orientation", - "textOwner": "Owner", - "textPoint": "Point", - "textPortrait": "Portrait", - "textPrint": "Print", - "textReaderMode": "Reader Mode", - "textReplace": "Replace", - "textReplaceAll": "Replace All", - "textResolvedComments": "Resolved Comments", - "textRight": "Right", - "textSearch": "Search", - "textSettings": "Settings", - "textShowNotification": "Show Notification", - "textSpellcheck": "Spell Checking", - "textStatistic": "Statistic", - "textSubject": "Subject", - "textTitle": "Title", - "textTop": "Top", - "textUnitOfMeasurement": "Unit Of Measurement", - "textUploaded": "Uploaded", - "txtIncorrectPwd": "Password is incorrect", - "txtProtected": "Once you enter the password and open the file, the current password will be reset", - "txtScheme1": "Office", - "txtScheme10": "Median", + "advTxtOptions": "Selezionare opzioni di TXT", + "closeButtonText": "Chiudere file", + "notcriticalErrorTitle": "Avvertimento", + "textAbout": "In riguardo a", + "textApplication": "Applicazione", + "textApplicationSettings": "Impostazioni dell'applicazione", + "textAuthor": "Autore", + "textBack": "Indietro", + "textBottom": "In basso", + "textCancel": "Annullare", + "textCaseSensitive": "Sensibile al maiuscolo/minuscolo", + "textCentimeter": "Centimetro", + "textChooseEncoding": "Scegliere codificazione", + "textChooseTxtOptions": "Selezionare opzioni di TXT", + "textCollaboration": "Collaborazione", + "textColorSchemes": "Schemi di colori", + "textComment": "Commento", + "textComments": "Commenti", + "textCommentsDisplay": "Visualizzazione di commenti", + "textCreated": "Creato", + "textCustomSize": "Dimensione personalizzata", + "textDisableAll": "Disabilitare tutto", + "textDisableAllMacrosWithNotification": "Disattivare tutte le macro con notifica", + "textDisableAllMacrosWithoutNotification": "Disattivare tutte le macro senza notifica", + "textDocumentInfo": "Informazioni sul documento", + "textDocumentSettings": "Impostazioni del documento", + "textDocumentTitle": "Titolo di documento", + "textDone": "Fatto", + "textDownload": "Scaricare", + "textDownloadAs": "Scaricare come", + "textDownloadRtf": "Se continui a salvare in questo formato, alcune delle formattazioni potrebbero essere persi. Sei sicuro che vuoi proseguire?", + "textDownloadTxt": "Se continui a salvare in questo formato, tutte le funzionalità tranne il testo saranno perse. Sei sicuro che vuoi proseguire?", + "textEnableAll": "Attivare tutto", + "textEnableAllMacrosWithoutNotification": "Attivare tutte le macro senza notifica", + "textEncoding": "Codificazione", + "textFind": "Trovare", + "textFindAndReplace": "Trovare e sostituire", + "textFindAndReplaceAll": "Trovare e sostituire tutto", + "textFormat": "Formato", + "textHelp": "Aiuto", + "textHiddenTableBorders": "Bordi di tabella nascosti", + "textHighlightResults": "Evidenziare risultati", + "textInch": "Pollice", + "textLandscape": "Orizzontale", + "textLastModified": "Ultima modifica", + "textLastModifiedBy": "Ultima modifica da", + "textLeft": "A sinistra", + "textLoading": "Caricamento...", + "textLocation": "Posizione", + "textMacrosSettings": "Impostazioni macro", + "textMargins": "Margini", + "textMarginsH": "I margini superiore e inferiore sono troppo alti per una determinata altezza di pagina", + "textMarginsW": "I margini sinistro e destro sono troppo larghi per una determinata larghezza di pagina", + "textNoCharacters": "Caratteri non stampabili", + "textNoTextFound": "Testo non trovato", + "textOk": "OK", + "textOpenFile": "Inserire la password per aprire il file", + "textOrientation": "Orientamento", + "textOwner": "Proprietario", + "textPages": "Pagine", + "textParagraphs": "Paragrafi", + "textPoint": "Punto", + "textPortrait": "Verticale", + "textPrint": "Stampa", + "textReaderMode": "Modalità di lettura", + "textReplace": "Sostituire", + "textReplaceAll": "Sostituire tutto", + "textResolvedComments": "Commenti risolti", + "textRight": "A destra", + "textSearch": "Cercare", + "textSettings": "Impostazioni", + "textShowNotification": "Mostrare notifica", + "textSpaces": "Spazi", + "textSpellcheck": "Controllo ortografico", + "textStatistic": "Statistica", + "textSubject": "Oggetto", + "textSymbols": "Simboli", + "textTitle": "Titolo", + "textTop": "In alto", + "textUnitOfMeasurement": "Unità di misura", + "textUploaded": "Caricato", + "textWords": "Parole", + "txtDownloadTxt": "Scaricare TXT", + "txtIncorrectPwd": "Password non corretta", + "txtOk": "OK", + "txtProtected": "Una volta inserita la password e aperto il file, la password corrente verrà resettata", + "txtScheme1": "Ufficio", + "txtScheme10": "Mediano", "txtScheme11": "Metro", - "txtScheme12": "Module", - "txtScheme13": "Opulent", - "txtScheme14": "Oriel", - "txtScheme15": "Origin", - "txtScheme16": "Paper", - "txtScheme17": "Solstice", - "txtScheme18": "Technic", - "txtScheme19": "Trek", - "txtScheme2": "Grayscale", - "txtScheme20": "Urban", - "txtScheme21": "Verve", - "txtScheme22": "New Office", - "txtScheme3": "Apex", - "txtScheme4": "Aspect", - "txtScheme5": "Civic", - "txtScheme6": "Concourse", - "txtScheme7": "Equity", - "txtScheme8": "Flow", - "txtScheme9": "Foundry", - "textOk": "Ok", - "textChooseEncoding": "Choose Encoding", - "textChooseTxtOptions": "Choose TXT Options", - "txtDownloadTxt": "Download TXT", - "txtOk": "Ok" + "txtScheme12": "Modulo", + "txtScheme13": "Opulento", + "txtScheme14": "Bovindo", + "txtScheme15": "Origine", + "txtScheme16": "Carta", + "txtScheme17": "Solstizio", + "txtScheme18": "Tecnico", + "txtScheme19": "Percorso", + "txtScheme2": "Scala di grigi", + "txtScheme20": "Urbano", + "txtScheme21": "Brio", + "txtScheme22": "Nuovo ufficio", + "txtScheme3": "Apice", + "txtScheme4": "Aspetto", + "txtScheme5": "Civico", + "txtScheme6": "Concorso", + "txtScheme7": "Equità", + "txtScheme8": "Flusso", + "txtScheme9": "Fonderia" }, "Toolbar": { - "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", - "dlgLeaveTitleText": "You leave the application", - "leaveButtonText": "Leave this Page", - "stayButtonText": "Stay on this page" + "dlgLeaveMsgText": "Hai dei cambiamenti non salvati. Premi 'Rimanere sulla pagina' per attendere il salvataggio automatico. Premi 'Lasciare la pagina' per eliminare tutte le modifiche non salvate.", + "dlgLeaveTitleText": "Stai lasciando l'app", + "leaveButtonText": "Lasciare questa pagina", + "stayButtonText": "Rimanere su questa pagina" } } \ No newline at end of file diff --git a/apps/documenteditor/mobile/locale/ja.json b/apps/documenteditor/mobile/locale/ja.json index 7cab16d12..166854073 100644 --- a/apps/documenteditor/mobile/locale/ja.json +++ b/apps/documenteditor/mobile/locale/ja.json @@ -538,6 +538,8 @@ "textOpenFile": "ファイルを開くためにパスワードを入力してください", "textOrientation": "向き", "textOwner": "所有者", + "textPages": "ページ", + "textParagraphs": "段落", "textPoint": "ポイント", "textPortrait": "縦長の向き", "textPrint": "印刷", @@ -549,13 +551,16 @@ "textSearch": "検索", "textSettings": "設定", "textShowNotification": " 通知を表示する", + "textSpaces": "スペース", "textSpellcheck": "スペルチェック", "textStatistic": "統計値", "textSubject": "件名", + "textSymbols": "記号", "textTitle": "タイトル", "textTop": "上", "textUnitOfMeasurement": "測定の単位", "textUploaded": "アップロードした", + "textWords": "文字数", "txtDownloadTxt": "TXTをダウンロード", "txtIncorrectPwd": "パスワードが間違い", "txtOk": "OK", diff --git a/apps/documenteditor/mobile/locale/ko.json b/apps/documenteditor/mobile/locale/ko.json index 8d03f2d52..06f85d40a 100644 --- a/apps/documenteditor/mobile/locale/ko.json +++ b/apps/documenteditor/mobile/locale/ko.json @@ -1,592 +1,597 @@ { "About": { - "textAbout": "About", - "textAddress": "Address", - "textBack": "Back", - "textEmail": "Email", - "textPoweredBy": "Powered By", - "textTel": "Tel", - "textVersion": "Version" + "textAbout": "정보", + "textAddress": "주소", + "textBack": "뒤로", + "textEmail": "이메일", + "textPoweredBy": "기술 지원", + "textTel": "전화 번호", + "textVersion": "버전" }, "Add": { - "notcriticalErrorTitle": "Warning", - "textAddLink": "Add link", - "textAddress": "Address", - "textBack": "Back", - "textBelowText": "Below text", - "textBottomOfPage": "Bottom of page", - "textBreak": "Break", - "textCancel": "Cancel", - "textCenterBottom": "Center Bottom", - "textCenterTop": "Center Top", - "textColumnBreak": "Column Break", - "textColumns": "Columns", - "textComment": "Comment", - "textContinuousPage": "Continuous Page", - "textCurrentPosition": "Current Position", - "textDisplay": "Display", - "textEmptyImgUrl": "You need to specify image URL.", - "textEvenPage": "Even Page", - "textFootnote": "Footnote", - "textFormat": "Format", - "textImage": "Image", - "textImageURL": "Image URL", - "textInsert": "Insert", - "textInsertFootnote": "Insert Footnote", - "textInsertImage": "Insert Image", - "textLeftBottom": "Left Bottom", - "textLeftTop": "Left Top", - "textLink": "Link", - "textLinkSettings": "Link Settings", - "textLocation": "Location", - "textNextPage": "Next Page", - "textOddPage": "Odd Page", - "textOther": "Other", - "textPageBreak": "Page Break", - "textPageNumber": "Page Number", - "textPictureFromLibrary": "Picture from Library", - "textPictureFromURL": "Picture from URL", - "textPosition": "Position", - "textRightBottom": "Right Bottom", - "textRightTop": "Right Top", - "textRows": "Rows", - "textScreenTip": "Screen Tip", - "textSectionBreak": "Section Break", - "textShape": "Shape", - "textStartAt": "Start At", - "textTable": "Table", - "textTableSize": "Table Size", - "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"" + "notcriticalErrorTitle": "경고", + "textAddLink": "링크 추가", + "textAddress": "주소", + "textBack": "뒤로", + "textBelowText": "텍스트 아래에", + "textBottomOfPage": "페이지 끝", + "textBreak": "페이지 나누기", + "textCancel": "취소", + "textCenterBottom": "가운데 아래", + "textCenterTop": "가운데 위", + "textColumnBreak": "열 나누기", + "textColumns": "열", + "textComment": "코멘트", + "textContinuousPage": "연속 페이지", + "textCurrentPosition": "현재 위치", + "textDisplay": "표시", + "textEmptyImgUrl": "이미지 URL을 지정해야합니다.", + "textEvenPage": "짝수 페이지", + "textFootnote": "각주", + "textFormat": "형식", + "textImage": "이미지", + "textImageURL": "이미지 URL", + "textInsert": "삽입", + "textInsertFootnote": "각주 삽입", + "textInsertImage": "이미지 삽입", + "textLeftBottom": "왼쪽 아래", + "textLeftTop": "왼쪽 상단", + "textLink": "링크", + "textLinkSettings": "링크 설정", + "textLocation": "위치", + "textNextPage": "다음 페이지", + "textOddPage": "홀수 페이지", + "textOther": "기타", + "textPageBreak": "페이지 나누기", + "textPageNumber": "페이지 번호", + "textPictureFromLibrary": "그림 라이브러리에서", + "textPictureFromURL": "URL에서 그림", + "textPosition": "위치", + "textRightBottom": "오른쪽 아래", + "textRightTop": "오른쪽 위쪽", + "textRows": "행", + "textScreenTip": "화면 팁", + "textSectionBreak": "섹션 나누기", + "textShape": "도형", + "textStartAt": "시작", + "textTable": "표", + "textTableSize": "표 크기", + "txtNotUrl": "이 필드는 \"http://www.example.com\"형식의 URL이어야합니다." }, "Common": { "Collaboration": { - "notcriticalErrorTitle": "Warning", - "textAccept": "Accept", - "textAcceptAllChanges": "Accept all changes", - "textAddComment": "Add comment", - "textAddReply": "Add reply", - "textAllChangesAcceptedPreview": "All changes accepted (Preview)", - "textAllChangesEditing": "All changes (Editing)", - "textAllChangesRejectedPreview": "All changes rejected (Preview)", - "textAtLeast": "at least", - "textAuto": "auto", - "textBack": "Back", - "textBaseline": "Baseline", - "textBold": "Bold", - "textBreakBefore": "Page break before", - "textCancel": "Cancel", - "textCaps": "All caps", - "textCenter": "Align center", - "textChart": "Chart", - "textCollaboration": "Collaboration", - "textColor": "Font color", - "textComments": "Comments", - "textContextual": "Don't add intervals between paragraphs of the same style", - "textDelete": "Delete", - "textDeleteComment": "Delete Comment", - "textDeleted": "Deleted:", - "textDeleteReply": "Delete Reply", - "textDisplayMode": "Display Mode", - "textDone": "Done", - "textDStrikeout": "Double strikeout", - "textEdit": "Edit", - "textEditComment": "Edit Comment", - "textEditReply": "Edit Reply", - "textEditUser": "Users who are editing the file:", - "textEquation": "Equation", - "textExact": "exactly", - "textFinal": "Final", - "textFirstLine": "First line", - "textFormatted": "Formatted", - "textHighlight": "Highlight color", - "textImage": "Image", - "textIndentLeft": "Indent left", - "textIndentRight": "Indent right", - "textInserted": "Inserted:", - "textItalic": "Italic", - "textJustify": "Align justified ", - "textKeepLines": "Keep lines together", - "textKeepNext": "Keep with next", - "textLeft": "Align left", - "textLineSpacing": "Line Spacing: ", - "textMarkup": "Markup", - "textMessageDeleteComment": "Do you really want to delete this comment?", - "textMessageDeleteReply": "Do you really want to delete this reply?", - "textMultiple": "multiple", - "textNoBreakBefore": "No page break before", - "textNoChanges": "There are no changes.", - "textNoComments": "This document doesn't contain comments", - "textNoContextual": "Add interval between paragraphs of the same style", - "textNoKeepLines": "Don't keep lines together", - "textNoKeepNext": "Don't keep with next", - "textNot": "Not ", - "textNoWidow": "No widow control", - "textNum": "Change numbering", - "textOriginal": "Original", - "textParaDeleted": "Paragraph Deleted", - "textParaFormatted": "Paragraph Formatted", - "textParaInserted": "Paragraph Inserted", - "textParaMoveFromDown": "Moved Down:", - "textParaMoveFromUp": "Moved Up:", - "textParaMoveTo": "Moved:", - "textPosition": "Position", - "textReject": "Reject", - "textRejectAllChanges": "Reject All Changes", - "textReopen": "Reopen", - "textResolve": "Resolve", - "textReview": "Review", - "textReviewChange": "Review Change", - "textRight": "Align right", - "textShape": "Shape", - "textShd": "Background color", - "textSmallCaps": "Small caps", - "textSpacing": "Spacing", - "textSpacingAfter": "Spacing after", - "textSpacingBefore": "Spacing before", - "textStrikeout": "Strikeout", - "textSubScript": "Subscript", - "textSuperScript": "Superscript", - "textTableChanged": "Table Settings Changed", - "textTableRowsAdd": "Table Rows Added", - "textTableRowsDel": "Table Rows Deleted", - "textTabs": "Change tabs", - "textTrackChanges": "Track Changes", - "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", - "textUnderline": "Underline", - "textUsers": "Users", - "textWidow": "Widow control", - "textOk": "Ok" + "notcriticalErrorTitle": "경고", + "textAccept": "수락", + "textAcceptAllChanges": "모든 변경 사항에 동의", + "textAddComment": "코멘트 달기", + "textAddReply": "댓글추가", + "textAllChangesAcceptedPreview": "모든 변경 사항이 적용 (미리보기)", + "textAllChangesEditing": "모든 변경 사항(편집)", + "textAllChangesRejectedPreview": "모든 변경 사항이 거부 (미리보기).", + "textAtLeast": "최소", + "textAuto": "자동", + "textBack": "뒤로", + "textBaseline": "기준선", + "textBold": "굵게", + "textBreakBefore": "현재 단락 앞에서 페이지 나누기 없음", + "textCancel": "취소", + "textCaps": "모든 대문자", + "textCenter": "가운데 맞춤", + "textChart": "차트", + "textCollaboration": "협업", + "textColor": "글꼴 색", + "textComments": "코멘트", + "textContextual": "같은 스타일의 다른 단락 사이에 간격을 추가하지 마십시오.", + "textDelete": "삭제", + "textDeleteComment": "코멘트 삭제", + "textDeleted": "삭제됨:", + "textDeleteReply": "댓글 삭제", + "textDisplayMode": "디스플레이 모드", + "textDone": "완료", + "textDStrikeout": "이중 취소선", + "textEdit": "편집", + "textEditComment": "코멘트 편집", + "textEditReply": "댓글 편집", + "textEditUser": "파일을 편집 중인 사용자:", + "textEquation": "수식", + "textExact": "고정", + "textFinal": "최종", + "textFirstLine": "머리글 행", + "textFormatted": "서식 지정 됨", + "textHighlight": "텍스트 강조 색", + "textImage": "이미지", + "textIndentLeft": "내어쓰기", + "textIndentRight": "들여쓰기", + "textInserted": "삽입됨:", + "textItalic": "기울림꼴", + "textJustify": "양쪽맞춤", + "textKeepLines": "현재 단락을 나누지 않음", + "textKeepNext": "현재 단락과 다음 단락을 항상 같은 페이지에 배치", + "textLeft": "왼쪽 맞춤", + "textLineSpacing": "줄 간격 :", + "textMarkup": "마크업", + "textMessageDeleteComment": "이 댓글을 삭제하시겠습니까?", + "textMessageDeleteReply": "이 댓글을 삭제하시겠습니까?", + "textMultiple": "배수", + "textNoBreakBefore": "현재 단락 앞에서 페이지 나누기 없음", + "textNoChanges": "변경된 사항이 없습니다.", + "textNoComments": "이 문서에 달린 코멘트가 없습니다", + "textNoContextual": "같은 스타일의 단락 사이에 공백 추가", + "textNoKeepLines": "현재 단락을 나누지 마십시오", + "textNoKeepNext": "현재 단락과 다음 단락을 항상 같은 페이지에 배치하지 마십시오", + "textNot": "불가", + "textNoWidow": "별도의 제어 없음", + "textNum": "번호 매기기 변경", + "textOk": "확인", + "textOriginal": "오리지널", + "textParaDeleted": "삭제된 단락", + "textParaFormatted": "단락 서식 지정", + "textParaInserted": "삽입된 단락", + "textParaMoveFromDown": "아래로 이동:", + "textParaMoveFromUp": "위로 이동:", + "textParaMoveTo": "이동됨:", + "textPosition": "위치", + "textReject": "거부", + "textRejectAllChanges": "모든 변경 사항 거부", + "textReopen": "다시 열기", + "textResolve": "해결", + "textReview": "검토", + "textReviewChange": "변경 사항 검토", + "textRight": "오른쪽 맞춤", + "textShape": "도형", + "textShd": "배경색", + "textSmallCaps": "작은 대문자", + "textSpacing": "간격", + "textSpacingAfter": "간격 뒤", + "textSpacingBefore": "간격 앞", + "textStrikeout": "취소선", + "textSubScript": "아래 첨자", + "textSuperScript": "위 첨자", + "textTableChanged": "표 설정이 변경됨", + "textTableRowsAdd": "표의 행이 추가됨", + "textTableRowsDel": "표의 행이 삭제됨", + "textTabs": "탭 변경", + "textTrackChanges": "변경 내용 추적", + "textTryUndoRedo": "빠른 공동 편집 모드에서 실행 취소 / 다시 실행 기능을 사용할 수 없습니다.", + "textUnderline": "밑줄", + "textUsers": "사용자", + "textWidow": "개별 제어" }, "ThemeColorPalette": { - "textCustomColors": "Custom Colors", - "textStandartColors": "Standard Colors", - "textThemeColors": "Theme Colors" + "textCustomColors": "사용자 정의 색상", + "textStandartColors": "표준 색상", + "textThemeColors": "테마 색" } }, "ContextMenu": { - "errorCopyCutPaste": "Copy, cut and paste actions using the context menu will be performed within the current file only.", - "menuAddComment": "Add comment", - "menuAddLink": "Add link", - "menuCancel": "Cancel", - "menuDelete": "Delete", - "menuDeleteTable": "Delete Table", - "menuEdit": "Edit", - "menuMerge": "Merge", - "menuMore": "More", - "menuOpenLink": "Open Link", - "menuReview": "Review", - "menuReviewChange": "Review Change", - "menuSplit": "Split", - "menuViewComment": "View Comment", - "textColumns": "Columns", - "textCopyCutPasteActions": "Copy, Cut and Paste Actions", - "textDoNotShowAgain": "Don't show again", - "textRows": "Rows", - "menuStartNewList": "Start new list", - "menuStartNumberingFrom": "Set numbering value", - "menuContinueNumbering": "Continue numbering", - "menuSeparateList": "Separate list", - "menuJoinList": "Join to previous list", - "textOk": "OK", - "textCancel": "Cancel", - "textNumberingValue": "Numbering Value" + "errorCopyCutPaste": "복사, 자르기 및 붙여 넣기", + "menuAddComment": "코멘트 달기", + "menuAddLink": "링크 추가", + "menuCancel": "취소", + "menuContinueNumbering": "계속 번호 매기기", + "menuDelete": "삭제", + "menuDeleteTable": "표삭제", + "menuEdit": "편집", + "menuJoinList": "이전 목록에 참여", + "menuMerge": "병합", + "menuMore": "자세히", + "menuOpenLink": "링크 열기", + "menuReview": "검토", + "menuReviewChange": "변경 사항 검토", + "menuSeparateList": "목록 분리", + "menuSplit": "분할", + "menuStartNewList": "새 목록 시작", + "menuStartNumberingFrom": "숫자 값 설정", + "menuViewComment": "코멘트 보기", + "textCancel": "취소", + "textColumns": "열", + "textCopyCutPasteActions": "복사, 잘라내기 및 붙여 넣기", + "textDoNotShowAgain": "다시 표시하지 않음", + "textNumberingValue": "번호", + "textOk": "확인", + "textRows": "행" }, "Edit": { - "notcriticalErrorTitle": "Warning", - "textActualSize": "Actual size", - "textAddCustomColor": "Add custom color", - "textAdditional": "Additional", - "textAdditionalFormatting": "Additional formatting", - "textAddress": "Address", - "textAdvanced": "Advanced", - "textAdvancedSettings": "Advanced settings", - "textAfter": "After", - "textAlign": "Align", - "textAllCaps": "All caps", - "textAllowOverlap": "Allow overlap", - "textAuto": "Auto", - "textAutomatic": "Automatic", - "textBack": "Back", - "textBackground": "Background", - "textBandedColumn": "Banded column", - "textBandedRow": "Banded row", - "textBefore": "Before", - "textBehind": "Behind", - "textBorder": "Border", - "textBringToForeground": "Bring to foreground", - "textBullets": "Bullets", - "textBulletsAndNumbers": "Bullets & Numbers", - "textCellMargins": "Cell Margins", - "textChart": "Chart", - "textClose": "Close", - "textColor": "Color", - "textContinueFromPreviousSection": "Continue from previous section", - "textCustomColor": "Custom Color", - "textDifferentFirstPage": "Different first page", - "textDifferentOddAndEvenPages": "Different odd and even pages", - "textDisplay": "Display", - "textDistanceFromText": "Distance from text", - "textDoubleStrikethrough": "Double Strikethrough", - "textEditLink": "Edit Link", - "textEffects": "Effects", - "textEmptyImgUrl": "You need to specify image URL.", - "textFill": "Fill", - "textFirstColumn": "First Column", - "textFirstLine": "FirstLine", - "textFlow": "Flow", - "textFontColor": "Font Color", - "textFontColors": "Font Colors", - "textFonts": "Fonts", - "textFooter": "Footer", - "textHeader": "Header", - "textHeaderRow": "Header Row", - "textHighlightColor": "Highlight Color", - "textHyperlink": "Hyperlink", - "textImage": "Image", - "textImageURL": "Image URL", - "textInFront": "In Front", - "textInline": "Inline", - "textKeepLinesTogether": "Keep Lines Together", - "textKeepWithNext": "Keep with Next", - "textLastColumn": "Last Column", - "textLetterSpacing": "Letter Spacing", - "textLineSpacing": "Line Spacing", - "textLink": "Link", - "textLinkSettings": "Link Settings", - "textLinkToPrevious": "Link to Previous", - "textMoveBackward": "Move Backward", - "textMoveForward": "Move Forward", - "textMoveWithText": "Move with Text", - "textNone": "None", - "textNoStyles": "No styles for this type of charts.", - "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", - "textOpacity": "Opacity", - "textOptions": "Options", - "textOrphanControl": "Orphan Control", - "textPageBreakBefore": "Page Break Before", - "textPageNumbering": "Page Numbering", - "textParagraph": "Paragraph", - "textParagraphStyles": "Paragraph Styles", - "textPictureFromLibrary": "Picture from Library", - "textPictureFromURL": "Picture from URL", + "notcriticalErrorTitle": "경고", + "textActualSize": "실제 크기", + "textAddCustomColor": "사용자 색상 추가", + "textAdditional": "추가", + "textAdditionalFormatting": "추가 서식 지정", + "textAddress": "주소", + "textAdvanced": "고급", + "textAdvancedSettings": "고급 설정", + "textAfter": "이후", + "textAlign": "맞춤", + "textAllCaps": "모든 대문자", + "textAllowOverlap": "오버랩 허용", + "textAuto": "자동", + "textAutomatic": "자동", + "textBack": "뒤로", + "textBackground": "배경", + "textBandedColumn": "줄무늬 열", + "textBandedRow": "줄무늬 행", + "textBefore": "이전", + "textBehind": "뒤에", + "textBorder": "테두리", + "textBringToForeground": "앞으로 가져오기", + "textBullets": "글 머리 기호", + "textBulletsAndNumbers": "글머리 기호 및 숫자", + "textCellMargins": "셀 여백", + "textChart": "차트", + "textClose": "닫기", + "textColor": "색상", + "textContinueFromPreviousSection": "이전 섹션에서 계속하기", + "textCustomColor": "사용자 정의 색상", + "textDifferentFirstPage": "첫 페이지를 다르게 지정", + "textDifferentOddAndEvenPages": "홀수 및 짝수 페이지 다르게 지정", + "textDisplay": "표시", + "textDistanceFromText": "텍스트 간격", + "textDoubleStrikethrough": "이중 취소선", + "textEditLink": "링크 편집", + "textEffects": "효과", + "textEmptyImgUrl": "이미지 URL을 지정해야합니다.", + "textFill": "채우기", + "textFirstColumn": "첫째 열", + "textFirstLine": "첫째 줄", + "textFlow": "플로우", + "textFontColor": "글꼴 색", + "textFontColors": "글꼴 색", + "textFonts": "글꼴", + "textFooter": "꼬리말", + "textHeader": "머리글", + "textHeaderRow": "머리글 행", + "textHighlightColor": "텍스트 강조 색", + "textHyperlink": "하이퍼 링크", + "textImage": "이미지", + "textImageURL": "이미지 URL", + "textInFront": "텍스트 앞", + "textInline": "인라인", + "textKeepLinesTogether": "현재 단락을 나누지 않음", + "textKeepWithNext": "현재 단락과 다음 단락을 항상 같은 페이지에 배치", + "textLastColumn": "마지막 열", + "textLetterSpacing": "문자 간격", + "textLineSpacing": "줄 간격", + "textLink": "링크", + "textLinkSettings": "링크 설정", + "textLinkToPrevious": "이전 링크", + "textMoveBackward": "맨 뒤로 보내기", + "textMoveForward": "맨 앞으로 가져오기", + "textMoveWithText": "텍스트와 함께 이동", + "textNone": "없음", + "textNoStyles": "이 유형의 차트에 해당하는 스타일이 없습니다.", + "textNotUrl": "이 필드는 \"http://www.example.com\"형식의 URL이어야합니다.", + "textNumbers": "숫자", + "textOpacity": "투명도", + "textOptions": "옵션", + "textOrphanControl": "단락의 첫 줄이나 마지막 줄 분리 방지", + "textPageBreakBefore": "현재 단락 앞에서 페이지 나누기", + "textPageNumbering": "페이지 넘버링", + "textParagraph": "단락", + "textParagraphStyles": "단락 스타일", + "textPictureFromLibrary": "그림 라이브러리에서", + "textPictureFromURL": "URL에서 그림", "textPt": "pt", - "textRemoveChart": "Remove Chart", - "textRemoveImage": "Remove Image", - "textRemoveLink": "Remove Link", - "textRemoveShape": "Remove Shape", - "textRemoveTable": "Remove Table", - "textReorder": "Reorder", - "textRepeatAsHeaderRow": "Repeat as Header Row", - "textReplace": "Replace", - "textReplaceImage": "Replace Image", - "textResizeToFitContent": "Resize to Fit Content", - "textScreenTip": "Screen Tip", - "textSelectObjectToEdit": "Select object to edit", - "textSendToBackground": "Send to Background", - "textSettings": "Settings", - "textShape": "Shape", - "textSize": "Size", - "textSmallCaps": "Small Caps", - "textSpaceBetweenParagraphs": "Space Between Paragraphs", - "textSquare": "Square", - "textStartAt": "Start at", - "textStrikethrough": "Strikethrough", - "textStyle": "Style", - "textStyleOptions": "Style Options", - "textSubscript": "Subscript", - "textSuperscript": "Superscript", - "textTable": "Table", - "textTableOptions": "Table Options", - "textText": "Text", - "textThrough": "Through", + "textRemoveChart": "차트 제거", + "textRemoveImage": "이미지 제거", + "textRemoveLink": "링크 제거", + "textRemoveShape": "도형 제거", + "textRemoveTable": "표 제거", + "textReorder": "재정렬", + "textRepeatAsHeaderRow": "헤더 행으로 반복", + "textReplace": "바꾸기", + "textReplaceImage": "이미지 바꾸기", + "textResizeToFitContent": "내용에 맞게 크기 조정", + "textScreenTip": "화면 팁", + "textSelectObjectToEdit": "편집하기 위해 개체를 선택하십시오", + "textSendToBackground": "맨 뒤로 보내기", + "textSettings": "설정", + "textShape": "도형", + "textSize": "크기", + "textSmallCaps": "작은 대문자", + "textSpaceBetweenParagraphs": "단락 사이의 공백", + "textSquare": "사각형", + "textStartAt": "시작", + "textStrikethrough": "취소선", + "textStyle": "스타일", + "textStyleOptions": "스타일 옵션", + "textSubscript": "아래 첨자", + "textSuperscript": "위 첨자", + "textTable": "표", + "textTableOptions": "표 옵션", + "textText": "텍스트", + "textThrough": "통과", "textTight": "Tight", - "textTopAndBottom": "Top and Bottom", - "textTotalRow": "Total Row", - "textType": "Type", - "textWrap": "Wrap", - "textNumbers": "Numbers" + "textTopAndBottom": "상단 및 하단", + "textTotalRow": "합계", + "textType": "유형", + "textWrap": "줄 바꾸기" }, "Error": { - "convertationTimeoutText": "Conversion timeout exceeded.", - "criticalErrorExtText": "Press 'OK' to go back to the document list.", - "criticalErrorTitle": "Error", - "downloadErrorText": "Download failed.", - "errorAccessDeny": "You are trying to perform an action you do not have rights for.
Please, contact your admin.", - "errorBadImageUrl": "Image url is incorrect", - "errorConnectToServer": "Can't save this doc. Check your connection settings or contact the admin.
When you click OK, you will be prompted to download the document.", - "errorDatabaseConnection": "External error.
Database connection error. Please, contact support.", - "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", - "errorDataRange": "Incorrect data range.", - "errorDefaultMessage": "Error code: %1", - "errorEditingDownloadas": "An error occurred during the work with the document.
Download document to save the file backup copy locally.", - "errorFilePassProtect": "The file is password protected and could not be opened.", - "errorFileSizeExceed": "The file size exceeds your server limit.
Please, contact your admin.", - "errorKeyEncrypt": "Unknown key descriptor", - "errorKeyExpire": "Key descriptor expired", - "errorMailMergeLoadFile": "Loading failed", - "errorMailMergeSaveFile": "Merge failed.", - "errorSessionAbsolute": "The document editing session has expired. Please, reload the page.", - "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.", - "errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.", - "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 it until the connection is restored and the page is reloaded.", - "notcriticalErrorTitle": "Warning", - "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.", - "splitDividerErrorText": "The number of rows must be a divisor of %1", - "splitMaxColsErrorText": "The number of columns must be less than %1", - "splitMaxRowsErrorText": "The number of rows must be less than %1", - "unknownErrorText": "Unknown error.", - "uploadImageExtMessage": "Unknown image format.", - "uploadImageFileCountMessage": "No images uploaded.", - "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.", - "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." + "convertationTimeoutText": "변환 시간을 초과했습니다.", + "criticalErrorExtText": "문서 목록으로 돌아가려면 \"확인\" 버튼을 누르십시오.", + "criticalErrorTitle": "오류", + "downloadErrorText": "다운로드 실패", + "errorAccessDeny": "권한이 없는 작업을 수행하려고 합니다.
관리자에게 문의하십시오.", + "errorBadImageUrl": "이미지 URL이 잘못되었습니다.", + "errorConnectToServer": "문서를 저장하지 못했습니다. 네트워크 설정을 확인하거나 관리자에게 문의하세요.
확인 버튼을 클릭하면 문서를 다운로드할 수 있습니다.", + "errorDatabaseConnection": "외부 오류입니다.
데이터베이스 연결 오류입니다. 지원팀에 문의하십시오.", + "errorDataEncrypted": "암호화 변경 사항이 수신되었으며 해독할 수 없습니다.", + "errorDataRange": "잘못된 참조 대상 입니다.", + "errorDefaultMessage": "오류 코드: %1", + "errorEditingDownloadas": "문서를 처리하는 동안 오류가 발생했습니다.
파일 백업을 로컬에 저장하십시오.", + "errorFilePassProtect": "파일이 암호로 보호되어 열 수 없습니다.", + "errorFileSizeExceed": "파일 크기가 서버 제한을 ​​초과했습니다.
관리자에게 문의하시기 바랍니다.", + "errorKeyEncrypt": "알 수없는 키 설명자", + "errorKeyExpire": "키가 만료됨", + "errorLoadingFont": "글꼴이 로드되지 않았습니다.
문서 관리 관리자에게 문의하십시오.", + "errorMailMergeLoadFile": "로드 실패", + "errorMailMergeSaveFile": "병합 실패", + "errorSessionAbsolute": "파일 편집 창이 만료되었습니다. 페이지를 새로고침하세요.", + "errorSessionIdle": "이 문서는 한동안 수정되지 않았습니다. 페이지를 새로고침하세요.", + "errorSessionToken": "서버에 대한 링크가 중단되었습니다. 페이지를 새로고침하세요.", + "errorStockChart": "줄의 순서가 잘못되었습니다. 주식형 차트를 생성하려면
시가, 최고가, 최저가, 종가의 순서로 데이터를 테이블에 배치하십시오.", + "errorUpdateVersionOnDisconnect": "네트워크 연결이 복원되었으며 파일 버전이 변경되었습니다.
계속 작업하기 전에 데이터 손실을 방지하기 위해 파일을 다운로드하거나 내용을 복사한 다음 이 페이지를 새로 고쳐야 합니다.", + "errorUserDrop": "이제 파일에 액세스 할 수 없습니다.", + "errorUsersExceed": "가격 책정 계획에서 허용 한 사용자 수가 초과되었습니다", + "errorViewerDisconnect": "네트워크 연결에 실패했습니다. 이 문서는 계속 볼 수 있지만
연결이 복원되고 페이지가 새로 고쳐질 때까지 이 문서를 다운로드하거나 인쇄할 수 없습니다.", + "notcriticalErrorTitle": "경고", + "openErrorText": "파일을 여는 동안 오류가 발생했습니다.", + "saveErrorText": "파일을 저장하는 동안 오류가 발생했습니다.", + "scriptLoadError": "인터넷 속도가 너무 느려 이 페이지의 일부 요소가 로드되지 않습니다. 페이지를 새로고침하세요.", + "splitDividerErrorText": "행 수는 % 1의 약수이어야합니다", + "splitMaxColsErrorText": "열 수가 % 1보다 작아야합니다", + "splitMaxRowsErrorText": "행 수가 % 1보다 작아야 합니다", + "unknownErrorText": "알 수 없는 오류.", + "uploadImageExtMessage": "알 수없는 이미지 형식입니다.", + "uploadImageFileCountMessage": "이미지가 업로드되지 않았습니다.", + "uploadImageSizeMessage": "이미지 크기 제한을 초과했습니다." }, "LongActions": { - "applyChangesTextText": "Loading data...", - "applyChangesTitleText": "Loading Data", - "downloadMergeText": "Downloading...", - "downloadMergeTitle": "Downloading", - "downloadTextText": "Downloading document...", - "downloadTitleText": "Downloading Document", - "loadFontsTextText": "Loading data...", - "loadFontsTitleText": "Loading Data", - "loadFontTextText": "Loading data...", - "loadFontTitleText": "Loading Data", - "loadImagesTextText": "Loading images...", - "loadImagesTitleText": "Loading Images", - "loadImageTextText": "Loading image...", - "loadImageTitleText": "Loading Image", - "loadingDocumentTextText": "Loading document...", - "loadingDocumentTitleText": "Loading document", - "mailMergeLoadFileText": "Loading Data Source...", - "mailMergeLoadFileTitle": "Loading Data Source", - "openTextText": "Opening document...", - "openTitleText": "Opening Document", - "printTextText": "Printing document...", - "printTitleText": "Printing Document", - "savePreparingText": "Preparing to save", - "savePreparingTitle": "Preparing to save. Please wait...", - "saveTextText": "Saving document...", - "saveTitleText": "Saving Document", - "sendMergeText": "Sending Merge...", - "sendMergeTitle": "Sending Merge", - "textLoadingDocument": "Loading document", - "txtEditingMode": "Set editing mode...", - "uploadImageTextText": "Uploading image...", - "uploadImageTitleText": "Uploading Image", - "waitText": "Please, wait..." + "applyChangesTextText": "데이터로드 중 ...", + "applyChangesTitleText": "데이터로드 중", + "downloadMergeText": "다운로드 중 ...", + "downloadMergeTitle": "다운로드 중", + "downloadTextText": "문서 다운로드 중 ...", + "downloadTitleText": "문서 다운로드 중", + "loadFontsTextText": "데이터로드 중 ...", + "loadFontsTitleText": "데이터로드 중", + "loadFontTextText": "데이터로드 중 ...", + "loadFontTitleText": "데이터로드 중", + "loadImagesTextText": "이미지로드 중 ...", + "loadImagesTitleText": "이미지로드 중", + "loadImageTextText": "이미지로드 중 ...", + "loadImageTitleText": "이미지로드 중", + "loadingDocumentTextText": "문서로드 중 ...", + "loadingDocumentTitleText": "문서로드 중", + "mailMergeLoadFileText": "데이터 소스로드 중 ...", + "mailMergeLoadFileTitle": "데이터 소스로드 중", + "openTextText": "문서 열기 중 ...", + "openTitleText": "문서 열기", + "printTextText": "문서 인쇄 중 ...", + "printTitleText": "문서 인쇄 중", + "savePreparingText": "저장 준비 중", + "savePreparingTitle": "저장 준비 중입니다. 잠시 기다려주십시오 ...", + "saveTextText": "문서 저장 중 ...", + "saveTitleText": "문서 저장 중", + "sendMergeText": "병합 결과 보내는 중", + "sendMergeTitle": "병합 결과 보내기", + "textLoadingDocument": "문서로드 중", + "txtEditingMode": "편집 모드 설정 ...", + "uploadImageTextText": "이미지 업로드 중 ...", + "uploadImageTitleText": "이미지 업로드 중", + "waitText": "잠시만 기다려주세요..." }, "Main": { - "criticalErrorTitle": "Error", - "errorAccessDeny": "You are trying to perform an action you do not have rights for.
Please, contact your administrator.", - "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", - "errorProcessSaveResult": "Saving failed.", - "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", - "errorUpdateVersion": "The file version has been changed. The page will be reloaded.", - "leavePageText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", - "notcriticalErrorTitle": "Warning", + "criticalErrorTitle": "오류", + "errorAccessDeny": "권한이 없는 작업을 수행하려고 합니다.
관리자에게 문의하십시오.", + "errorOpensource": "무료 커뮤니티 버전을 사용하는 경우 열린 파일만 볼 수 있습니다. 모바일 온라인 에디터 기능을 사용하기 위해서는 유료 라이선스가 필요합니다.", + "errorProcessSaveResult": "저장하지 못했습니다.", + "errorServerVersion": "편집기 버전이 업데이트되었습니다. 페이지가 다시로드되어 변경 사항이 적용됩니다.", + "errorUpdateVersion": "파일 버전이 변경되었습니다. 페이지가 다시로드됩니다.", + "leavePageText": "저장하지 않은 변경 사항이 있습니다. 자동 저장이 완료될 때까지 기다리려면 \"이 페이지에 머물기\"를 클릭하십시오. \"이 페이지에서 나가기\"를 클릭하면 저장되지 않은 모든 변경 사항이 삭제됩니다.", + "notcriticalErrorTitle": "경고", "SDK": { - " -Section ": " -Section ", - "above": "above", - "below": "below", - "Caption": "Caption", - "Choose an item": "Choose an item", - "Click to load image": "Click to load image", - "Current Document": "Current Document", - "Diagram Title": "Chart Title", - "endnote text": "Endnote Text", - "Enter a date": "Enter a date", - "Error! Bookmark not defined": "Error! Bookmark not defined.", - "Error! Main Document Only": "Error! Main Document Only.", - "Error! No text of specified style in document": "Error! No text of specified style in document.", - "Error! Not a valid bookmark self-reference": "Error! Not a valid bookmark self-reference.", - "Even Page ": "Even Page ", - "First Page ": "First Page ", - "Footer": "Footer", - "footnote text": "Footnote Text", - "Header": "Header", - "Heading 1": "Heading 1", - "Heading 2": "Heading 2", - "Heading 3": "Heading 3", - "Heading 4": "Heading 4", - "Heading 5": "Heading 5", - "Heading 6": "Heading 6", - "Heading 7": "Heading 7", - "Heading 8": "Heading 8", - "Heading 9": "Heading 9", - "Hyperlink": "Hyperlink", - "Index Too Large": "Index Too Large", - "Intense Quote": "Intense Quote", - "Is Not In Table": "Is Not In Table", - "List Paragraph": "List Paragraph", - "Missing Argument": "Missing Argument", - "Missing Operator": "Missing Operator", - "No Spacing": "No Spacing", - "No table of contents entries found": "There are no headings in the document. Apply a heading style to the text so that it appears in the table of contents.", - "No table of figures entries found": "No table of figures entries found.", - "None": "None", - "Normal": "Normal", - "Number Too Large To Format": "Number Too Large To Format", - "Odd Page ": "Odd Page ", - "Quote": "Quote", - "Same as Previous": "Same as Previous", - "Series": "Series", - "Subtitle": "Subtitle", - "Syntax Error": "Syntax Error", - "Table Index Cannot be Zero": "Table Index Cannot be Zero", - "Table of Contents": "Table of Contents", - "table of figures": "Table of figures", - "The Formula Not In Table": "The Formula Not In Table", - "Title": "Title", - "TOC Heading": "TOC Heading", - "Type equation here": "Type equation here", - "Undefined Bookmark": "Undefined Bookmark", - "Unexpected End of Formula": "Unexpected End of Formula", - "X Axis": "X Axis XAS", - "Y Axis": "Y Axis", - "Your text here": "Your text here", - "Zero Divide": "Zero Divide" + " -Section ": "-섹션", + "above": "위로", + "below": "아래", + "Caption": "참조", + "Choose an item": "아이템 선택", + "Click to load image": "이미지를 로드하려면 여기를 클릭하세요", + "Current Document": "현재 문서", + "Diagram Title": "차트 제목", + "endnote text": "미주 텍스트", + "Enter a date": "미주 날짜", + "Error! Bookmark not defined": "오류! 북마크가 정의되지 않음", + "Error! Main Document Only": "오류! 주요 문서만 해당됨.", + "Error! No text of specified style in document": "오류! 문서에 지정된 스타일의 텍스트가 없습니다.", + "Error! Not a valid bookmark self-reference": "오류! 북마크 링크 형식이 잘못되었습니다!", + "Even Page ": "짝수 페이지", + "First Page ": "첫 페이지", + "Footer": "꼬리말", + "footnote text": "각주 텍스트", + "Header": "머리글", + "Heading 1": "제목 1", + "Heading 2": "제목 2", + "Heading 3": "제목 3", + "Heading 4": "제목 4", + "Heading 5": "제목 5", + "Heading 6": "제목 6", + "Heading 7": "제목 7", + "Heading 8": "제목 8", + "Heading 9": "제목 9", + "Hyperlink": "하이퍼 링크", + "Index Too Large": "색인이 너무 큽니다", + "Intense Quote": "강한인용", + "Is Not In Table": "표에 없음", + "List Paragraph": "단락 목록", + "Missing Argument": "누락된 매개변수", + "Missing Operator": "누락된 연산자", + "No Spacing": "간격 없음", + "No table of contents entries found": "이 문서에는 제목이 없습니다. 목차에 나타나도록 제목 스타일을 텍스트에 적용합니다.", + "No table of figures entries found": "목차 항목을 찾을 수 없습니다.", + "None": "없음", + "Normal": "표준", + "Number Too Large To Format": "숫자가 너무 커서 형식을 지정할 수 없습니다", + "Odd Page ": "홀수 페이지", + "Quote": "인용 부호", + "Same as Previous": "이전과 동일", + "Series": "시리즈", + "Subtitle": "자막", + "Syntax Error": "구문 오류", + "Table Index Cannot be Zero": "표 인덱스는 0일 수 없습니다.", + "Table of Contents": "차례", + "table of figures": "목차", + "The Formula Not In Table": "표에 없는 수식", + "Title": "제목", + "TOC Heading": "TOC 제목", + "Type equation here": "여기에 수식을 입력합니다", + "Undefined Bookmark": "정의되지 않은 책갈피", + "Unexpected End of Formula": "수식의 예기치 않은 종료", + "X Axis": "X 축 XAS", + "Y Axis": "Y 축", + "Your text here": "여기에 귀하의 텍스트를 입력하여 주십시오", + "Zero Divide": "0으로 나누기" }, - "textAnonymous": "Anonymous", - "textBuyNow": "Visit website", - "textClose": "Close", - "textContactUs": "Contact sales", - "textCustomLoader": "Sorry, you are not entitled to change the loader. Contact our sales department to get a quote.", - "textGuest": "Guest", - "textHasMacros": "The file contains automatic macros.
Do you want to run macros?", - "textNo": "No", - "textNoLicenseTitle": "License limit reached", - "textPaidFeature": "Paid feature", - "textRemember": "Remember my choice", - "textYes": "Yes", - "titleLicenseExp": "License expired", - "titleServerVersion": "Editor updated", - "titleUpdateVersion": "Version changed", - "warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.", - "warnLicenseExp": "Your license has expired. Please, update your license and refresh the page.", - "warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your admin.", - "warnLicenseLimitedRenewed": "The license needs to be renewed. You have limited access to document editing functionality.
Please contact your administrator to get full access", - "warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", - "warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.", - "warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", - "warnProcessRightsChange": "You don't have permission to edit this file." + "textAnonymous": "익명", + "textBuyNow": "웹 사이트 방문", + "textClose": "닫기", + "textContactUs": "영업 담당자에게 문의", + "textCustomLoader": "불행하게도 당신은 로더를 변경할 수 없습니다. 견적을 받도록 영업 부서에 문의하십시오.", + "textGuest": "게스트", + "textHasMacros": "파일에 자동 매크로가 포함되어 있습니다.
매크로를 실행 하시겠습니까?", + "textNo": "아니오", + "textNoLicenseTitle": "라이센스 수를 제한했습니다.", + "textPaidFeature": "유료 기능", + "textRemember": "선택사항을 저장", + "textYes": "확인", + "titleLicenseExp": "라이센스 만료", + "titleServerVersion": "편집기가 업데이트되었습니다.", + "titleUpdateVersion": "버전이 변경되었습니다", + "warnLicenseExceeded": "% 1 편집 연결 수 제한에 도달했습니다. 이 문서는 보기 모드에서 엽립니다. 자세한 내용은 관리자에게 연락하십시오.", + "warnLicenseExp": "라이센스가 만료되었습니다. 라이선스를 업데이트하고 페이지를 새로고침하세요.", + "warnLicenseLimitedNoAccess": "라이센스가 만료되었습니다. 문서 편집 기능을 사용할 수 없습니다. 관리자에게 문의하십시오.", + "warnLicenseLimitedRenewed": "라이선스를 업데이트해야 합니다. 문서 편집 기능이 제한됩니다.
전체 액세스 권한을 얻으려면 관리자에게 문의하십시오.", + "warnLicenseUsersExceeded": "편집자 사용자 한도인 %1명에 도달했습니다. 자세한 내용은 관리자에게 문의하십시오.", + "warnNoLicense": "% 1 편집 연결 수 제한에 도달했습니다. 이 문서는 보기 모드로 열립니다. 개인적인 업그레이드 사항은 % 1 영업팀에 연락하십시오.", + "warnNoLicenseUsers": "ONLYOFFICE 편집자의이 버전은 동시 사용자에게 일정한 제한이 있습니다.
더 필요한 것이 있으면 현재 라이센스를 업그레이드하거나 상용 라이센스를 구입하십시오.", + "warnProcessRightsChange": "파일을 편집 할 권한이 없습니다." }, "Settings": { - "advDRMOptions": "Protected File", - "advDRMPassword": "Password", - "advTxtOptions": "Choose TXT Options", - "closeButtonText": "Close File", - "notcriticalErrorTitle": "Warning", - "textAbout": "About", - "textApplication": "Application", - "textApplicationSettings": "Application settings", - "textAuthor": "Author", - "textBack": "Back", - "textBottom": "Bottom", - "textCancel": "Cancel", - "textCaseSensitive": "Case Sensitive", - "textCentimeter": "Centimeter", - "textCollaboration": "Collaboration", - "textColorSchemes": "Color Schemes", - "textComment": "Comment", - "textComments": "Comments", - "textCommentsDisplay": "Comments Display", - "textCreated": "Created", - "textCustomSize": "Custom Size", - "textDisableAll": "Disable All", - "textDisableAllMacrosWithNotification": "Disable all macros with notification", - "textDisableAllMacrosWithoutNotification": "Disable all macros without notification", - "textDocumentInfo": "Document Info", - "textDocumentSettings": "Document Settings", - "textDocumentTitle": "Document Title", - "textDone": "Done", - "textDownload": "Download", - "textDownloadAs": "Download As", - "textDownloadRtf": "If you continue saving in this format some of the formatting might be lost. Are you sure you want to continue?", - "textDownloadTxt": "If you continue saving in this format all features except the text will be lost. Are you sure you want to continue?", - "textEnableAll": "Enable All", - "textEnableAllMacrosWithoutNotification": "Enable all macros without notification", - "textEncoding": "Encoding", - "textFind": "Find", - "textFindAndReplace": "Find and Replace", - "textFindAndReplaceAll": "Find and Replace All", - "textFormat": "Format", - "textHelp": "Help", - "textHiddenTableBorders": "Hidden Table Borders", - "textHighlightResults": "Highlight Results", - "textInch": "Inch", - "textLandscape": "Landscape", - "textLastModified": "Last Modified", - "textLastModifiedBy": "Last Modified By", - "textLeft": "Left", - "textLoading": "Loading...", - "textLocation": "Location", - "textMacrosSettings": "Macros Settings", - "textMargins": "Margins", - "textMarginsH": "Top and bottom margins are too high for a given page height", - "textMarginsW": "Left and right margins are too wide for a given page width", - "textNoCharacters": "Nonprinting Characters", - "textNoTextFound": "Text not found", - "textOpenFile": "Enter a password to open the file", - "textOrientation": "Orientation", - "textOwner": "Owner", + "advDRMOptions": "보호 된 파일", + "advDRMPassword": "비밀번호", + "advTxtOptions": "TXT 옵션 선택", + "closeButtonText": "파일 닫기", + "notcriticalErrorTitle": "경고", + "textAbout": "정보", + "textApplication": "어플리케이션", + "textApplicationSettings": "어플리케이션 설정", + "textAuthor": "작성자", + "textBack": "뒤로", + "textBottom": "하단", + "textCancel": "취소", + "textCaseSensitive": "대소문자 구별", + "textCentimeter": "센티미터", + "textChooseEncoding": "인코딩 형식 선택", + "textChooseTxtOptions": "TXT 옵션 선택", + "textCollaboration": "협업", + "textColorSchemes": "색 구성표", + "textComment": "코멘트", + "textComments": "코멘트", + "textCommentsDisplay": "코멘트 표시", + "textCreated": "생성됨", + "textCustomSize": "사용자 정의 크기", + "textDisableAll": "모두 비활성화", + "textDisableAllMacrosWithNotification": "알림이 있는 모든 매크로 닫기", + "textDisableAllMacrosWithoutNotification": "알림 없이 모든 매크로 닫기", + "textDocumentInfo": "문서 정보", + "textDocumentSettings": "문서 설정", + "textDocumentTitle": "문서 제목", + "textDone": "완료", + "textDownload": "다운로드", + "textDownloadAs": "변환 다운로드", + "textDownloadRtf": "이 형식으로 저장할 계속되면 포맷하는 일부 손실 될 수 있습니다. 계속 하시겠습니까?", + "textDownloadTxt": "이 형식으로 저장하면 텍스트를 제외한 모든 기능이 손실됩니다. 계속하시겠습니까?", + "textEnableAll": "모두 활성화", + "textEnableAllMacrosWithoutNotification": "알림 없이 모든 매크로 시작", + "textEncoding": "인코딩", + "textFind": "찾기", + "textFindAndReplace": "찾기 및 바꾸기", + "textFindAndReplaceAll": "모두 바꾸기", + "textFormat": "형식", + "textHelp": "도움말", + "textHiddenTableBorders": "표 테두리 숨기기", + "textHighlightResults": "결과 강조 표시", + "textInch": "인치", + "textLandscape": "수평", + "textLastModified": "최종 편집", + "textLastModifiedBy": "최종 편집자", + "textLeft": "왼쪽", + "textLoading": "로딩중...", + "textLocation": "위치", + "textMacrosSettings": "매크로 설정", + "textMargins": "여백", + "textMarginsH": "주어진 페이지 높이에 대해 위쪽 및 아래쪽 여백이 너무 높습니다.", + "textMarginsW": "왼쪽 및 오른쪽 여백이 주어진 페이지 폭에 비해 너무 넓습니다.", + "textNoCharacters": "인쇄되지 않는 문자", + "textNoTextFound": "텍스트를 찾을 수 없습니다", + "textOk": "확인", + "textOpenFile": "파일을 열려면 암호를 입력하십시오.", + "textOrientation": "방향", + "textOwner": "소유자", + "textPages": "페이지", + "textParagraphs": "단락", "textPoint": "Point", - "textPortrait": "Portrait", - "textPrint": "Print", - "textReaderMode": "Reader Mode", - "textReplace": "Replace", - "textReplaceAll": "Replace All", - "textResolvedComments": "Resolved Comments", - "textRight": "Right", - "textSearch": "Search", - "textSettings": "Settings", - "textShowNotification": "Show Notification", - "textSpellcheck": "Spell Checking", - "textStatistic": "Statistic", - "textSubject": "Subject", - "textTitle": "Title", - "textTop": "Top", - "textUnitOfMeasurement": "Unit Of Measurement", - "textUploaded": "Uploaded", - "txtIncorrectPwd": "Password is incorrect", - "txtProtected": "Once you enter the password and open the file, the current password will be reset", - "txtScheme1": "Office", - "txtScheme10": "Median", - "txtScheme11": "Metro", - "txtScheme12": "Module", - "txtScheme13": "Opulent", - "txtScheme14": "Oriel", - "txtScheme15": "Origin", - "txtScheme16": "Paper", - "txtScheme17": "Solstice", - "txtScheme18": "Technic", - "txtScheme19": "Trek", - "txtScheme2": "Grayscale", - "txtScheme20": "Urban", - "txtScheme21": "Verve", - "txtScheme22": "New Office", - "txtScheme3": "Apex", - "txtScheme4": "Aspect", - "txtScheme5": "Civic", - "txtScheme6": "Concourse", - "txtScheme7": "Equity", - "txtScheme8": "Flow", - "txtScheme9": "Foundry", - "textOk": "Ok", - "textChooseEncoding": "Choose Encoding", - "textChooseTxtOptions": "Choose TXT Options", - "txtDownloadTxt": "Download TXT", - "txtOk": "Ok" + "textPortrait": "세로", + "textPrint": "인쇄", + "textReaderMode": "읽기 모드", + "textReplace": "바꾸기", + "textReplaceAll": "모두 바꾸기", + "textResolvedComments": "해결된 코멘트", + "textRight": "오른쪽", + "textSearch": "검색", + "textSettings": "설정", + "textShowNotification": "알림 표시", + "textSpaces": "공백", + "textSpellcheck": "맞춤법 검사", + "textStatistic": "통계", + "textSubject": "제목", + "textSymbols": "심볼", + "textTitle": "제목", + "textTop": "위", + "textUnitOfMeasurement": "측정 단위", + "textUploaded": "업로드 되었습니다", + "textWords": "단어", + "txtDownloadTxt": "TXT 다운로드", + "txtIncorrectPwd": "잘못된 비밀번호", + "txtOk": "확인", + "txtProtected": "암호를 입력하고 파일을 열면 현재 암호가 재설정됩니다.", + "txtScheme1": "사무실", + "txtScheme10": "중앙값", + "txtScheme11": "매트로", + "txtScheme12": "모듈", + "txtScheme13": "호화 로움", + "txtScheme14": "외벽창", + "txtScheme15": "원본", + "txtScheme16": "용지", + "txtScheme17": "지점", + "txtScheme18": "기술", + "txtScheme19": "트레킹", + "txtScheme2": "그레이스케일", + "txtScheme20": "도시", + "txtScheme21": "네온", + "txtScheme22": "신규 오피스", + "txtScheme3": "꼭지점", + "txtScheme4": "화면", + "txtScheme5": "시민", + "txtScheme6": "광장", + "txtScheme7": "같음", + "txtScheme8": "플로우", + "txtScheme9": "발견" }, "Toolbar": { - "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", - "dlgLeaveTitleText": "You leave the application", - "leaveButtonText": "Leave this Page", - "stayButtonText": "Stay on this page" + "dlgLeaveMsgText": "저장하지 않은 변경 사항이 있습니다. 자동 저장이 완료될 때까지 기다리려면 \"이 페이지에 머물기\"를 클릭하십시오. \"이 페이지에서 나가기\"를 클릭하면 저장되지 않은 모든 변경 사항이 삭제됩니다.", + "dlgLeaveTitleText": "응용 프로그램을 종료합니다", + "leaveButtonText": "이 페이지에서 나가기", + "stayButtonText": "이 페이지에 보관" } } \ No newline at end of file diff --git a/apps/documenteditor/mobile/locale/lo.json b/apps/documenteditor/mobile/locale/lo.json index 8d03f2d52..e6ca0528d 100644 --- a/apps/documenteditor/mobile/locale/lo.json +++ b/apps/documenteditor/mobile/locale/lo.json @@ -581,7 +581,12 @@ "textChooseEncoding": "Choose Encoding", "textChooseTxtOptions": "Choose TXT Options", "txtDownloadTxt": "Download TXT", - "txtOk": "Ok" + "txtOk": "Ok", + "textPages": "Pages", + "textParagraphs": "Paragraphs", + "textSpaces": "Spaces", + "textSymbols": "Symbols", + "textWords": "Words" }, "Toolbar": { "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", diff --git a/apps/documenteditor/mobile/locale/lv.json b/apps/documenteditor/mobile/locale/lv.json index 8d03f2d52..e6ca0528d 100644 --- a/apps/documenteditor/mobile/locale/lv.json +++ b/apps/documenteditor/mobile/locale/lv.json @@ -581,7 +581,12 @@ "textChooseEncoding": "Choose Encoding", "textChooseTxtOptions": "Choose TXT Options", "txtDownloadTxt": "Download TXT", - "txtOk": "Ok" + "txtOk": "Ok", + "textPages": "Pages", + "textParagraphs": "Paragraphs", + "textSpaces": "Spaces", + "textSymbols": "Symbols", + "textWords": "Words" }, "Toolbar": { "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", diff --git a/apps/documenteditor/mobile/locale/nb.json b/apps/documenteditor/mobile/locale/nb.json index 8d03f2d52..e6ca0528d 100644 --- a/apps/documenteditor/mobile/locale/nb.json +++ b/apps/documenteditor/mobile/locale/nb.json @@ -581,7 +581,12 @@ "textChooseEncoding": "Choose Encoding", "textChooseTxtOptions": "Choose TXT Options", "txtDownloadTxt": "Download TXT", - "txtOk": "Ok" + "txtOk": "Ok", + "textPages": "Pages", + "textParagraphs": "Paragraphs", + "textSpaces": "Spaces", + "textSymbols": "Symbols", + "textWords": "Words" }, "Toolbar": { "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", diff --git a/apps/documenteditor/mobile/locale/nl.json b/apps/documenteditor/mobile/locale/nl.json index 2e5f2af17..67106efb6 100644 --- a/apps/documenteditor/mobile/locale/nl.json +++ b/apps/documenteditor/mobile/locale/nl.json @@ -580,6 +580,11 @@ "textChooseEncoding": "Choose Encoding", "textChooseTxtOptions": "Choose TXT Options", "textOk": "Ok", + "textPages": "Pages", + "textParagraphs": "Paragraphs", + "textSpaces": "Spaces", + "textSymbols": "Symbols", + "textWords": "Words", "txtDownloadTxt": "Download TXT", "txtOk": "Ok" }, diff --git a/apps/documenteditor/mobile/locale/pl.json b/apps/documenteditor/mobile/locale/pl.json index 8d03f2d52..e6ca0528d 100644 --- a/apps/documenteditor/mobile/locale/pl.json +++ b/apps/documenteditor/mobile/locale/pl.json @@ -581,7 +581,12 @@ "textChooseEncoding": "Choose Encoding", "textChooseTxtOptions": "Choose TXT Options", "txtDownloadTxt": "Download TXT", - "txtOk": "Ok" + "txtOk": "Ok", + "textPages": "Pages", + "textParagraphs": "Paragraphs", + "textSpaces": "Spaces", + "textSymbols": "Symbols", + "textWords": "Words" }, "Toolbar": { "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", diff --git a/apps/documenteditor/mobile/locale/pt.json b/apps/documenteditor/mobile/locale/pt.json index d8235f9e8..8774a9e9f 100644 --- a/apps/documenteditor/mobile/locale/pt.json +++ b/apps/documenteditor/mobile/locale/pt.json @@ -538,6 +538,8 @@ "textOpenFile": "Inserir a Senha para Abrir o Arquivo", "textOrientation": "Orientação", "textOwner": "Proprietário", + "textPages": "Páginas", + "textParagraphs": "Parágrafos", "textPoint": "Ponto", "textPortrait": "Retrato ", "textPrint": "Imprimir", @@ -549,13 +551,16 @@ "textSearch": "Pesquisar", "textSettings": "Configurações", "textShowNotification": "Mostrar notificação", + "textSpaces": "Espaços", "textSpellcheck": "Verificação ortográfica", "textStatistic": "Estatística", "textSubject": "Assunto", + "textSymbols": "Símbolos", "textTitle": "Título", "textTop": "Parte superior", "textUnitOfMeasurement": "Unidade de medida", "textUploaded": "Carregado", + "textWords": "Palavras", "txtDownloadTxt": "Baixar TXT", "txtIncorrectPwd": "A senha está incorreta", "txtOk": "OK", diff --git a/apps/documenteditor/mobile/locale/ro.json b/apps/documenteditor/mobile/locale/ro.json index 9ca0e29c9..8a3c7ae18 100644 --- a/apps/documenteditor/mobile/locale/ro.json +++ b/apps/documenteditor/mobile/locale/ro.json @@ -471,9 +471,9 @@ "warnLicenseExp": "Licența dvs. a expirat. Licența urmează să fie reînnoită iar pagina reîmprospătată.", "warnLicenseLimitedNoAccess": "Licența dvs. a expirat. Nu aveți acces la funcții de editare a documentului.Contactați administratorul dvs. de rețeea.", "warnLicenseLimitedRenewed": "Licență urmează să fie reînnoită. Funcțiile de editare sunt cu acces limitat. Pentru a obține acces nelimitat, contactați administratorul dvs. de rețea.", - "warnLicenseUsersExceeded": "Ați atins numărul maxim de utilizatori al %1 editoare. Pentru detalii, contactați administratorul dvs.", + "warnLicenseUsersExceeded": "Ați atins numărul maxim de utilizatori ai %1 editoare. Pentru detalii, contactați administratorul dvs.", "warnNoLicense": "Ați atins numărul maxim de conexiuni simultane la %1 de editoare. Documentul este disponibil numai pentru vizualizare. Contactați %1 Departamentul de Vânzări pentru acordarea condițiilor personale de actualizare.", - "warnNoLicenseUsers": "Ați atins numărul maxim de utilizatori al %1 editoare. Contactați Grup Vânzări %1 pentru acordarea condițiilor personale de actualizare.", + "warnNoLicenseUsers": "Ați atins numărul maxim de utilizatori ai %1 editoare. Contactați Grup Vânzări %1 pentru acordarea condițiilor personale de licențiere.", "warnProcessRightsChange": "Nu aveți permisiunea de editare pentru fișier." }, "Settings": { @@ -538,6 +538,8 @@ "textOpenFile": "Introduceți parola pentru deschidere fișier", "textOrientation": "Orientare", "textOwner": "Proprietar", + "textPages": "Pagini", + "textParagraphs": "Paragrafe", "textPoint": "Punct", "textPortrait": "Portret", "textPrint": "Imprimare", @@ -549,13 +551,16 @@ "textSearch": "Căutare", "textSettings": "Setări", "textShowNotification": "Afișare notificări", + "textSpaces": "Spații", "textSpellcheck": "Verificarea ortografică", "textStatistic": "Statistic", "textSubject": "Subiect", + "textSymbols": "Simboluri", "textTitle": "Titlu", "textTop": "Sus", "textUnitOfMeasurement": "Unitate de măsură ", "textUploaded": "S-a încărcat", + "textWords": "Cuvinte", "txtDownloadTxt": "Încărcare TXT", "txtIncorrectPwd": "Parolă incorectă", "txtOk": "OK", diff --git a/apps/documenteditor/mobile/locale/ru.json b/apps/documenteditor/mobile/locale/ru.json index dc51cba82..ab4ad1a47 100644 --- a/apps/documenteditor/mobile/locale/ru.json +++ b/apps/documenteditor/mobile/locale/ru.json @@ -539,6 +539,8 @@ "textOpenFile": "Введите пароль для открытия файла", "textOrientation": "Ориентация", "textOwner": "Владелец", + "textPages": "Страницы", + "textParagraphs": "Абзацы", "textPoint": "Пункт", "textPortrait": "Книжная", "textPrint": "Печать", @@ -550,13 +552,16 @@ "textSearch": "Поиск", "textSettings": "Настройки", "textShowNotification": "Показывать уведомление", + "textSpaces": "Пробелы", "textSpellcheck": "Проверка орфографии", "textStatistic": "Статистика", "textSubject": "Тема", + "textSymbols": "Символы", "textTitle": "Название", "textTop": "Верхнее", "textUnitOfMeasurement": "Единица измерения", "textUploaded": "Загружен", + "textWords": "Слова", "txtDownloadTxt": "Скачать TXT", "txtIncorrectPwd": "Неверный пароль", "txtOk": "Ok", diff --git a/apps/documenteditor/mobile/locale/sk.json b/apps/documenteditor/mobile/locale/sk.json index 8d03f2d52..e6ca0528d 100644 --- a/apps/documenteditor/mobile/locale/sk.json +++ b/apps/documenteditor/mobile/locale/sk.json @@ -581,7 +581,12 @@ "textChooseEncoding": "Choose Encoding", "textChooseTxtOptions": "Choose TXT Options", "txtDownloadTxt": "Download TXT", - "txtOk": "Ok" + "txtOk": "Ok", + "textPages": "Pages", + "textParagraphs": "Paragraphs", + "textSpaces": "Spaces", + "textSymbols": "Symbols", + "textWords": "Words" }, "Toolbar": { "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", diff --git a/apps/documenteditor/mobile/locale/sl.json b/apps/documenteditor/mobile/locale/sl.json index 8d03f2d52..e6ca0528d 100644 --- a/apps/documenteditor/mobile/locale/sl.json +++ b/apps/documenteditor/mobile/locale/sl.json @@ -581,7 +581,12 @@ "textChooseEncoding": "Choose Encoding", "textChooseTxtOptions": "Choose TXT Options", "txtDownloadTxt": "Download TXT", - "txtOk": "Ok" + "txtOk": "Ok", + "textPages": "Pages", + "textParagraphs": "Paragraphs", + "textSpaces": "Spaces", + "textSymbols": "Symbols", + "textWords": "Words" }, "Toolbar": { "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", diff --git a/apps/documenteditor/mobile/locale/sv.json b/apps/documenteditor/mobile/locale/sv.json index 8d03f2d52..e6ca0528d 100644 --- a/apps/documenteditor/mobile/locale/sv.json +++ b/apps/documenteditor/mobile/locale/sv.json @@ -581,7 +581,12 @@ "textChooseEncoding": "Choose Encoding", "textChooseTxtOptions": "Choose TXT Options", "txtDownloadTxt": "Download TXT", - "txtOk": "Ok" + "txtOk": "Ok", + "textPages": "Pages", + "textParagraphs": "Paragraphs", + "textSpaces": "Spaces", + "textSymbols": "Symbols", + "textWords": "Words" }, "Toolbar": { "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", diff --git a/apps/documenteditor/mobile/locale/tr.json b/apps/documenteditor/mobile/locale/tr.json index 5002e7ab9..6ba0bc522 100644 --- a/apps/documenteditor/mobile/locale/tr.json +++ b/apps/documenteditor/mobile/locale/tr.json @@ -21,6 +21,7 @@ "textColumnBreak": "Sütun Sonu", "textColumns": "Sütunlar", "textComment": "Yorum", + "textLinkSettings": "Bağlantı Ayarları", "notcriticalErrorTitle": "Warning", "textContinuousPage": "Continuous Page", "textCurrentPosition": "Current Position", @@ -37,7 +38,6 @@ "textLeftBottom": "Left Bottom", "textLeftTop": "Left Top", "textLink": "Link", - "textLinkSettings": "Link Settings", "textLocation": "Location", "textNextPage": "Next Page", "textOddPage": "Odd Page", @@ -77,10 +77,16 @@ "textCenter": "Ortaya Hizala", "textChart": "Grafik", "textCollaboration": "Ortak çalışma", + "textContextual": "Aynı stildeki paragrafların arasına boşluk ekleme", + "textDeleted": "Silindi:", + "textInserted": "Eklendi:", "textJustify": "İki yana hizala", "textLeft": "Sola Hizala", "textNoContextual": "Aynı stildeki paragraflar arasına aralık ekle", "textNum": "Numaralandırmayı değiştir", + "textParaMoveFromDown": "Aşağıya taşı", + "textParaMoveFromUp": "Aşağıya taşı:", + "textParaMoveTo": "Taşındı:", "textRight": "Sağa Hizala", "textShd": "Arka plan rengi", "textTabs": "Sekmeleri değiştir", @@ -88,10 +94,8 @@ "textBreakBefore": "Page break before", "textColor": "Font color", "textComments": "Comments", - "textContextual": "Don't add intervals between paragraphs of the same style", "textDelete": "Delete", "textDeleteComment": "Delete Comment", - "textDeleted": "Deleted:", "textDeleteReply": "Delete Reply", "textDisplayMode": "Display Mode", "textDone": "Done", @@ -109,7 +113,6 @@ "textImage": "Image", "textIndentLeft": "Indent left", "textIndentRight": "Indent right", - "textInserted": "Inserted:", "textItalic": "Italic", "textKeepLines": "Keep lines together", "textKeepNext": "Keep with next", @@ -130,9 +133,6 @@ "textParaDeleted": "Paragraph Deleted", "textParaFormatted": "Paragraph Formatted", "textParaInserted": "Paragraph Inserted", - "textParaMoveFromDown": "Moved Down:", - "textParaMoveFromUp": "Moved Up:", - "textParaMoveTo": "Moved:", "textPosition": "Position", "textReject": "Reject", "textRejectAllChanges": "Reject All Changes", @@ -164,16 +164,17 @@ } }, "ContextMenu": { + "errorCopyCutPaste": "Context menüyü kullanarak yapılacak kopyalama, kesme ve yapıştırma işlemleri sadece bu dosya özelinde yapılabilecektir.", "menuAddComment": "Yorum Ekle", "menuAddLink": "Bağlantı Ekle", "menuCancel": "İptal Et", + "menuContinueNumbering": "Numaralandırmaya devam et", + "menuJoinList": "Bir önceki listeye bağlan", "textColumns": "Sütunlar", - "errorCopyCutPaste": "Copy, cut and paste actions using the context menu will be performed within the current file only.", - "menuContinueNumbering": "Continue numbering", + "textDoNotShowAgain": "Tekrar gösterme", "menuDelete": "Delete", "menuDeleteTable": "Delete Table", "menuEdit": "Edit", - "menuJoinList": "Join to previous list", "menuMerge": "Merge", "menuMore": "More", "menuOpenLink": "Open Link", @@ -186,7 +187,6 @@ "menuViewComment": "View Comment", "textCancel": "Cancel", "textCopyCutPasteActions": "Copy, Cut and Paste Actions", - "textDoNotShowAgain": "Don't show again", "textNumberingValue": "Numbering Value", "textOk": "OK", "textRows": "Rows" @@ -219,6 +219,8 @@ "textChart": "Grafik", "textClose": "Kapat", "textColor": "Renk", + "textFirstLine": "İlk Satır", + "textNoStyles": "Bu tip çizelge için stil yok!", "notcriticalErrorTitle": "Warning", "textContinueFromPreviousSection": "Continue from previous section", "textCustomColor": "Custom Color", @@ -232,7 +234,6 @@ "textEmptyImgUrl": "You need to specify image URL.", "textFill": "Fill", "textFirstColumn": "First Column", - "textFirstLine": "FirstLine", "textFlow": "Flow", "textFontColor": "Font Color", "textFontColors": "Font Colors", @@ -258,7 +259,6 @@ "textMoveForward": "Move Forward", "textMoveWithText": "Move with Text", "textNone": "None", - "textNoStyles": "No styles for this type of charts.", "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", "textNumbers": "Numbers", "textOpacity": "Opacity", @@ -307,6 +307,11 @@ "textWrap": "Wrap" }, "Error": { + "errorConnectToServer": "Doküman kaydedilemiyor. Kontrol et.", + "errorEditingDownloadas": "Dokümanla çalışma sırasında hata oluştu.
Lokal olarak dosyayı kaydetmek için dokümanı indirin.", + "errorMailMergeLoadFile": "Yükleme başarısız", + "errorStockChart": "Yanlış satır sırası. Stok çizelgesi oluşturmak içi, verilen sıralamada veriyi yerleştirmek gereklidir:
ücret açma, max ücret, minimum ücret ve ücret kapama", + "errorViewerDisconnect": "Bağlantı kesildi. Dokümanı hala görebilirsiniz,
ancak Bağlantı tekrar sağlanıncaya kadar ve sayfa yüklenmeden, dosyayı indirmek veya çıktısını almak mümkün olmayacaktır. ", "openErrorText": "Dosya açılırken bir hata oluştu.", "saveErrorText": "Dosya kaydedilirken bir hata oluştu", "convertationTimeoutText": "Conversion timeout exceeded.", @@ -314,28 +319,23 @@ "criticalErrorTitle": "Error", "downloadErrorText": "Download failed.", "errorAccessDeny": "You are trying to perform an action you do not have rights for.
Please, contact your admin.", - "errorBadImageUrl": "Image url is incorrect", - "errorConnectToServer": "Can't save this doc. Check your connection settings or contact the admin.
When you click OK, you will be prompted to download the document.", + "errorBadImageUrl": "Image URL is incorrect", "errorDatabaseConnection": "External error.
Database connection error. Please, contact support.", "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", "errorDataRange": "Incorrect data range.", "errorDefaultMessage": "Error code: %1", - "errorEditingDownloadas": "An error occurred during the work with the document.
Download document to save the file backup copy locally.", "errorFilePassProtect": "The file is password protected and could not be opened.", "errorFileSizeExceed": "The file size exceeds your server limit.
Please, contact your admin.", "errorKeyEncrypt": "Unknown key descriptor", "errorKeyExpire": "Key descriptor expired", "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator.", - "errorMailMergeLoadFile": "Loading failed", "errorMailMergeSaveFile": "Merge failed.", "errorSessionAbsolute": "The document editing session has expired. Please, reload the page.", "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.", "errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.", "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.", "notcriticalErrorTitle": "Warning", "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.", "splitDividerErrorText": "The number of rows must be a divisor of %1", @@ -348,19 +348,23 @@ }, "Main": { "SDK": { + " -Section ": "Bölüm", "above": "Yukarıda", "below": "Altında", "Choose an item": "Bir öğe seçin", + "Click to load image": "Resmi yüklemek için tıkla", "Diagram Title": "Grafik başlığı", - " -Section ": " -Section ", + "endnote text": "Endnote metni", + "Error! Main Document Only": "Hata! Yanlızca Ana Doküman.", + "Error! No text of specified style in document": "Hata! Doküman içinde belirtilen stil metni yok.", + "Index Too Large": "Index Çok Büyük", + "Is Not In Table": "Tabloda mevcut değil", + "Missing Argument": "Eksik Değişken", + "Missing Operator": "Eksik Operatör", "Caption": "Caption", - "Click to load image": "Click to load image", "Current Document": "Current Document", - "endnote text": "Endnote Text", "Enter a date": "Enter a date", "Error! Bookmark not defined": "Error! Bookmark not defined.", - "Error! Main Document Only": "Error! Main Document Only.", - "Error! No text of specified style in document": "Error! No text of specified style in document.", "Error! Not a valid bookmark self-reference": "Error! Not a valid bookmark self-reference.", "Even Page ": "Even Page ", "First Page ": "First Page ", @@ -377,12 +381,8 @@ "Heading 8": "Heading 8", "Heading 9": "Heading 9", "Hyperlink": "Hyperlink", - "Index Too Large": "Index Too Large", "Intense Quote": "Intense Quote", - "Is Not In Table": "Is Not In Table", "List Paragraph": "List Paragraph", - "Missing Argument": "Missing Argument", - "Missing Operator": "Missing Operator", "No Spacing": "No Spacing", "No table of contents entries found": "There are no headings in the document. Apply a heading style to the text so that it appears in the table of contents.", "No table of figures entries found": "No table of figures entries found.", @@ -411,6 +411,8 @@ }, "textAnonymous": "Anonim", "textClose": "Kapat", + "textNoLicenseTitle": "Lisans limitine ulaşıldı.", + "warnLicenseLimitedNoAccess": "Lisans süresi doldu. Doküman edit etme özelliğini kullanmaya izniniz bulunmamaktadır. Lütfen, yöneticinizle iletişime geçin.", "criticalErrorTitle": "Error", "errorAccessDeny": "You are trying to perform an action you do not have rights for.
Please, contact your administrator.", "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", @@ -425,7 +427,6 @@ "textGuest": "Guest", "textHasMacros": "The file contains automatic macros.
Do you want to run macros?", "textNo": "No", - "textNoLicenseTitle": "License limit reached", "textPaidFeature": "Paid feature", "textRemember": "Remember my choice", "textYes": "Yes", @@ -434,7 +435,6 @@ "titleUpdateVersion": "Version changed", "warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.", "warnLicenseExp": "Your license has expired. Please, update your license and refresh the page.", - "warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your admin.", "warnLicenseLimitedRenewed": "The license needs to be renewed. You have limited access to document editing functionality.
Please contact your administrator to get full access", "warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", "warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.", @@ -453,12 +453,21 @@ "textCancel": "İptal Et", "textCaseSensitive": "Büyük küçük harfe duyarlı", "textCentimeter": "Santimetre", + "textChooseEncoding": "Kodlama Seç", "textCollaboration": "Ortak çalışma", "textColorSchemes": "Renk Şeması", + "textDisableAllMacrosWithNotification": "Makroları bildirim ile pasifleştir", + "textDisableAllMacrosWithoutNotification": "Tüm makroları bildirimsiz devre dışı bırak", + "textDownloadRtf": "Bu biçimde kaydetmeye devam ederseniz, bazı biçimler kaybolabilir. Devam etmek istediğinize emin misiniz?", + "textDownloadTxt": "Bu biçimde kayıt etmeye devam ederseniz, metin dışında tüm özellikler kaybolacaktır. Devam etmek istediğinize emin misiniz?", + "textEnableAllMacrosWithoutNotification": "Tüm makroları bildirimsiz etkinleştir", + "textFindAndReplaceAll": " Bul ve Hepsini Değiştir", + "textMarginsW": "Sağ ve Sol çizelgeler verilen sayfa genişliği için çok geniş", + "txtDownloadTxt": "TXT olarak indir", + "txtScheme22": "Yeni Ofis", "advDRMOptions": "Protected File", "advDRMPassword": "Password", "notcriticalErrorTitle": "Warning", - "textChooseEncoding": "Choose Encoding", "textChooseTxtOptions": "Choose TXT Options", "textComment": "Comment", "textComments": "Comments", @@ -466,22 +475,16 @@ "textCreated": "Created", "textCustomSize": "Custom Size", "textDisableAll": "Disable All", - "textDisableAllMacrosWithNotification": "Disable all macros with notification", - "textDisableAllMacrosWithoutNotification": "Disable all macros without notification", "textDocumentInfo": "Document Info", "textDocumentSettings": "Document Settings", "textDocumentTitle": "Document Title", "textDone": "Done", "textDownload": "Download", "textDownloadAs": "Download As", - "textDownloadRtf": "If you continue saving in this format some of the formatting might be lost. Are you sure you want to continue?", - "textDownloadTxt": "If you continue saving in this format all features except the text will be lost. Are you sure you want to continue?", "textEnableAll": "Enable All", - "textEnableAllMacrosWithoutNotification": "Enable all macros without notification", "textEncoding": "Encoding", "textFind": "Find", "textFindAndReplace": "Find and Replace", - "textFindAndReplaceAll": "Find and Replace All", "textFormat": "Format", "textHelp": "Help", "textHiddenTableBorders": "Hidden Table Borders", @@ -496,13 +499,14 @@ "textMacrosSettings": "Macros Settings", "textMargins": "Margins", "textMarginsH": "Top and bottom margins are too high for a given page height", - "textMarginsW": "Left and right margins are too wide for a given page width", "textNoCharacters": "Nonprinting Characters", "textNoTextFound": "Text not found", "textOk": "Ok", "textOpenFile": "Enter a password to open the file", "textOrientation": "Orientation", "textOwner": "Owner", + "textPages": "Pages", + "textParagraphs": "Paragraphs", "textPoint": "Point", "textPortrait": "Portrait", "textPrint": "Print", @@ -514,14 +518,16 @@ "textSearch": "Search", "textSettings": "Settings", "textShowNotification": "Show Notification", + "textSpaces": "Spaces", "textSpellcheck": "Spell Checking", "textStatistic": "Statistic", "textSubject": "Subject", + "textSymbols": "Symbols", "textTitle": "Title", "textTop": "Top", "textUnitOfMeasurement": "Unit Of Measurement", "textUploaded": "Uploaded", - "txtDownloadTxt": "Download TXT", + "textWords": "Words", "txtIncorrectPwd": "Password is incorrect", "txtOk": "Ok", "txtProtected": "Once you enter the password and open the file, the current password will be reset", @@ -539,7 +545,6 @@ "txtScheme2": "Grayscale", "txtScheme20": "Urban", "txtScheme21": "Verve", - "txtScheme22": "New Office", "txtScheme3": "Apex", "txtScheme4": "Aspect", "txtScheme5": "Civic", diff --git a/apps/documenteditor/mobile/locale/uk.json b/apps/documenteditor/mobile/locale/uk.json index 8d03f2d52..e6ca0528d 100644 --- a/apps/documenteditor/mobile/locale/uk.json +++ b/apps/documenteditor/mobile/locale/uk.json @@ -581,7 +581,12 @@ "textChooseEncoding": "Choose Encoding", "textChooseTxtOptions": "Choose TXT Options", "txtDownloadTxt": "Download TXT", - "txtOk": "Ok" + "txtOk": "Ok", + "textPages": "Pages", + "textParagraphs": "Paragraphs", + "textSpaces": "Spaces", + "textSymbols": "Symbols", + "textWords": "Words" }, "Toolbar": { "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", diff --git a/apps/documenteditor/mobile/locale/vi.json b/apps/documenteditor/mobile/locale/vi.json index 8d03f2d52..e6ca0528d 100644 --- a/apps/documenteditor/mobile/locale/vi.json +++ b/apps/documenteditor/mobile/locale/vi.json @@ -581,7 +581,12 @@ "textChooseEncoding": "Choose Encoding", "textChooseTxtOptions": "Choose TXT Options", "txtDownloadTxt": "Download TXT", - "txtOk": "Ok" + "txtOk": "Ok", + "textPages": "Pages", + "textParagraphs": "Paragraphs", + "textSpaces": "Spaces", + "textSymbols": "Symbols", + "textWords": "Words" }, "Toolbar": { "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", diff --git a/apps/documenteditor/mobile/locale/zh.json b/apps/documenteditor/mobile/locale/zh.json index f7f8ce703..05092e37b 100644 --- a/apps/documenteditor/mobile/locale/zh.json +++ b/apps/documenteditor/mobile/locale/zh.json @@ -62,12 +62,12 @@ "Collaboration": { "notcriticalErrorTitle": "警告", "textAccept": "接受", - "textAcceptAllChanges": "接受所有更改", + "textAcceptAllChanges": "接受所有修订", "textAddComment": "添加评论", "textAddReply": "添加回复", - "textAllChangesAcceptedPreview": "已经接受所有更改 (预览)", - "textAllChangesEditing": "所有更改 (编辑中)", - "textAllChangesRejectedPreview": "已经否决所有更改 (预览)", + "textAllChangesAcceptedPreview": "已接受所有修订(只读)", + "textAllChangesEditing": "显示所有修订(可编辑)", + "textAllChangesRejectedPreview": "已拒绝所有修订(只读)", "textAtLeast": "至少", "textAuto": "自动", "textBack": "返回", @@ -122,6 +122,7 @@ "textNot": "不", "textNoWidow": "没有单独控制", "textNum": "更改编号", + "textOk": "好", "textOriginal": "原始版", "textParaDeleted": "已删除段落", "textParaFormatted": "段落已被排版", @@ -154,8 +155,7 @@ "textTryUndoRedo": "快速共同编辑模式下,撤销/重做功能被禁用。", "textUnderline": "下划线", "textUsers": "用户", - "textWidow": "单独控制", - "textOk": "Ok" + "textWidow": "单独控制" }, "ThemeColorPalette": { "textCustomColors": "自定义颜色", @@ -168,38 +168,38 @@ "menuAddComment": "添加评论", "menuAddLink": "添加链接", "menuCancel": "取消", + "menuContinueNumbering": "继续编号", "menuDelete": "删除", "menuDeleteTable": "删除表", "menuEdit": "编辑", + "menuJoinList": "联接上一个列表", "menuMerge": "合并", "menuMore": "更多", "menuOpenLink": "打开链接", "menuReview": "审阅", "menuReviewChange": "审查变更", + "menuSeparateList": "分隔列表", "menuSplit": "分开", + "menuStartNewList": "开始新列表", + "menuStartNumberingFrom": "设置编号值", "menuViewComment": "查看批注", + "textCancel": "取消", "textColumns": "列", "textCopyCutPasteActions": "拷贝,剪切和粘贴操作", "textDoNotShowAgain": "不要再显示", - "textRows": "行", - "menuContinueNumbering": "Continue numbering", - "menuJoinList": "Join to previous list", - "menuSeparateList": "Separate list", - "menuStartNewList": "Start new list", - "menuStartNumberingFrom": "Set numbering value", - "textCancel": "Cancel", - "textNumberingValue": "Numbering Value", - "textOk": "OK" + "textNumberingValue": "编号值", + "textOk": "好", + "textRows": "行" }, "Edit": { "notcriticalErrorTitle": "警告", "textActualSize": "实际大小", - "textAddCustomColor": "\n添加自定义颜色", + "textAddCustomColor": "添加自定义颜色", "textAdditional": "其他", "textAdditionalFormatting": "其他格式", "textAddress": "地址", - "textAdvanced": "进阶", - "textAdvancedSettings": "进阶设置", + "textAdvanced": "高级", + "textAdvancedSettings": "高级设置", "textAfter": "之后", "textAlign": "对齐", "textAllCaps": "全部大写", @@ -214,6 +214,7 @@ "textBehind": "之后", "textBorder": "边界", "textBringToForeground": "放到最上面", + "textBullets": "着重号", "textBulletsAndNumbers": "项目符号与编号", "textCellMargins": "单元格边距", "textChart": "图表", @@ -259,6 +260,7 @@ "textNone": "无", "textNoStyles": "这个类型的图表没有对应的样式。", "textNotUrl": "该字段应为“http://www.example.com”格式的URL", + "textNumbers": "数字", "textOpacity": "不透明度", "textOptions": "选项", "textOrphanControl": "单独控制", @@ -302,9 +304,7 @@ "textTopAndBottom": "上下", "textTotalRow": "总行", "textType": "类型", - "textWrap": "包裹", - "textBullets": "Bullets", - "textNumbers": "Numbers" + "textWrap": "包裹" }, "Error": { "convertationTimeoutText": "转换超时", @@ -323,6 +323,7 @@ "errorFileSizeExceed": "文件大小超出了服务器的限制。
恳请你联系管理员。", "errorKeyEncrypt": "未知密钥描述", "errorKeyExpire": "密钥过期", + "errorLoadingFont": "字体未加载。
请与文档服务器管理员联系。", "errorMailMergeLoadFile": "加载失败", "errorMailMergeSaveFile": "合并失败", "errorSessionAbsolute": "该文件编辑窗口已过期。请刷新该页。", @@ -332,7 +333,7 @@ "errorUpdateVersionOnDisconnect": "网络连接已恢复,文件版本已变更。
在继续工作之前,需要下载文件或复制其内容以避免丢失数据,然后刷新此页。", "errorUserDrop": "当前不能访问该文件。", "errorUsersExceed": "超过了定价计划允许的用户数", - "errorViewerDisconnect": "网络连接失败。你仍然可以查看这个文档,
但在连接恢复并刷新该页之前,你将不能下载这个文档。", + "errorViewerDisconnect": "网络连接失败。你仍然可以查看这个文档,
但在连接恢复并刷新该页之前,你将不能下载或打印这个文档。", "notcriticalErrorTitle": "警告", "openErrorText": "打开文件时发生错误", "saveErrorText": "保存文件时发生错误", @@ -343,8 +344,7 @@ "unknownErrorText": "未知错误。", "uploadImageExtMessage": "未知图像格式。", "uploadImageFileCountMessage": "没有图片上传", - "uploadImageSizeMessage": "图片太大了。最大允许的大小是 25 MB.", - "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." + "uploadImageSizeMessage": "图片太大了。最大允许的大小是 25 MB." }, "LongActions": { "applyChangesTextText": "数据加载中…", @@ -391,7 +391,22 @@ "leavePageText": "你有未保存的修改。点击“留在该页”可等待自动保存完成。点击“离开该页”将丢弃全部未经保存的修改。", "notcriticalErrorTitle": "警告", "SDK": { + " -Section ": "-节", + "above": "以上", + "below": "以下", + "Caption": "标题", + "Choose an item": "选择一个项目", + "Click to load image": "点按以加载图像", + "Current Document": "当前文件", "Diagram Title": "图表标题", + "endnote text": "结束处文本", + "Enter a date": "输入日期", + "Error! Bookmark not defined": "错误!未定义书签。", + "Error! Main Document Only": "错误!仅限主文档。", + "Error! No text of specified style in document": "错误!文档中没有指定样式的文本。", + "Error! Not a valid bookmark self-reference": "错误!不是有效的书签自引用。", + "Even Page ": "偶数页", + "First Page ": "首页", "Footer": "页脚", "footnote text": "脚注文本", "Header": "页眉", @@ -404,53 +419,38 @@ "Heading 7": "标题7", "Heading 8": "标题8", "Heading 9": "标题9", + "Hyperlink": "超链接", + "Index Too Large": "指数过大", "Intense Quote": "直接引用", + "Is Not In Table": "不在表格中", "List Paragraph": "列表段落", + "Missing Argument": "缺少参数", + "Missing Operator": "缺少运算符", "No Spacing": "无空格", + "No table of contents entries found": "未找到目录条目。", + "No table of figures entries found": "未找到图片或表格的元素。", + "None": "无", "Normal": "正常", + "Number Too Large To Format": "数字太大,无法设定格式", + "Odd Page ": "奇数页", "Quote": "引用", + "Same as Previous": "与上一个相同", "Series": "系列", "Subtitle": "副标题", + "Syntax Error": "语法错误", + "Table Index Cannot be Zero": "表格索引不能为零", + "Table of Contents": "目录", + "table of figures": "图表目录", + "The Formula Not In Table": "公式不在表格中", "Title": "标题", + "TOC Heading": "目录标题", + "Type equation here": "在此处输入公式", + "Undefined Bookmark": "未定义书签", + "Unexpected End of Formula": "意外的公式结尾", "X Axis": "X 轴 XAS", "Y Axis": "Y 轴", "Your text here": "你的文本在此", - " -Section ": " -Section ", - "above": "above", - "below": "below", - "Caption": "Caption", - "Choose an item": "Choose an item", - "Click to load image": "Click to load image", - "Current Document": "Current Document", - "endnote text": "Endnote Text", - "Enter a date": "Enter a date", - "Error! Bookmark not defined": "Error! Bookmark not defined.", - "Error! Main Document Only": "Error! Main Document Only.", - "Error! No text of specified style in document": "Error! No text of specified style in document.", - "Error! Not a valid bookmark self-reference": "Error! Not a valid bookmark self-reference.", - "Even Page ": "Even Page ", - "First Page ": "First Page ", - "Hyperlink": "Hyperlink", - "Index Too Large": "Index Too Large", - "Is Not In Table": "Is Not In Table", - "Missing Argument": "Missing Argument", - "Missing Operator": "Missing Operator", - "No table of contents entries found": "There are no headings in the document. Apply a heading style to the text so that it appears in the table of contents.", - "No table of figures entries found": "No table of figures entries found.", - "None": "None", - "Number Too Large To Format": "Number Too Large To Format", - "Odd Page ": "Odd Page ", - "Same as Previous": "Same as Previous", - "Syntax Error": "Syntax Error", - "Table Index Cannot be Zero": "Table Index Cannot be Zero", - "Table of Contents": "Table of Contents", - "table of figures": "Table of figures", - "The Formula Not In Table": "The Formula Not In Table", - "TOC Heading": "TOC Heading", - "Type equation here": "Type equation here", - "Undefined Bookmark": "Undefined Bookmark", - "Unexpected End of Formula": "Unexpected End of Formula", - "Zero Divide": "Zero Divide" + "Zero Divide": "除数为零" }, "textAnonymous": "匿名", "textBuyNow": "访问网站", @@ -491,6 +491,8 @@ "textCancel": "取消", "textCaseSensitive": "区分大小写", "textCentimeter": "厘米", + "textChooseEncoding": "选择编码格式", + "textChooseTxtOptions": "选择TXT选项", "textCollaboration": "协作", "textColorSchemes": "颜色方案", "textComment": "评论", @@ -532,9 +534,12 @@ "textMarginsW": "对给定的页面宽度来说,左右边距过高。", "textNoCharacters": "非打印字符", "textNoTextFound": "文本没找到", + "textOk": "好", "textOpenFile": "输入密码来打开文件", "textOrientation": "方向", "textOwner": "创建者", + "textPages": "页面", + "textParagraphs": "段落", "textPoint": "点", "textPortrait": "纵向", "textPrint": "打印", @@ -546,42 +551,42 @@ "textSearch": "搜索", "textSettings": "设置", "textShowNotification": "显示通知", + "textSpaces": "间隔", "textSpellcheck": "拼写检查", "textStatistic": "统计", "textSubject": "主题", + "textSymbols": "符号", "textTitle": "标题", "textTop": "顶部", "textUnitOfMeasurement": "计量单位", "textUploaded": "已上传", + "textWords": "字幕", + "txtDownloadTxt": "下载 TXT", "txtIncorrectPwd": "密码有误", + "txtOk": "好", "txtProtected": "输入密码并打开文件后,当前密码将会被重设。", - "textChooseEncoding": "Choose Encoding", - "textChooseTxtOptions": "Choose TXT Options", - "textOk": "Ok", - "txtDownloadTxt": "Download TXT", - "txtOk": "Ok", - "txtScheme1": "Office", - "txtScheme10": "Median", - "txtScheme11": "Metro", - "txtScheme12": "Module", - "txtScheme13": "Opulent", - "txtScheme14": "Oriel", - "txtScheme15": "Origin", - "txtScheme16": "Paper", - "txtScheme17": "Solstice", - "txtScheme18": "Technic", - "txtScheme19": "Trek", - "txtScheme2": "Grayscale", - "txtScheme20": "Urban", - "txtScheme21": "Verve", - "txtScheme22": "New Office", - "txtScheme3": "Apex", - "txtScheme4": "Aspect", - "txtScheme5": "Civic", - "txtScheme6": "Concourse", - "txtScheme7": "Equity", - "txtScheme8": "Flow", - "txtScheme9": "Foundry" + "txtScheme1": "办公室", + "txtScheme10": "中位数", + "txtScheme11": "组件", + "txtScheme12": "模块", + "txtScheme13": "富裕的", + "txtScheme14": "奥丽尔", + "txtScheme15": "原来的", + "txtScheme16": "纸", + "txtScheme17": "至点", + "txtScheme18": "技术", + "txtScheme19": "行进", + "txtScheme2": "灰度", + "txtScheme20": "城市的", + "txtScheme21": "气势", + "txtScheme22": "新的 Office", + "txtScheme3": "顶点", + "txtScheme4": "方面", + "txtScheme5": "公民", + "txtScheme6": "汇合", + "txtScheme7": "公平", + "txtScheme8": "流动", + "txtScheme9": "发现" }, "Toolbar": { "dlgLeaveMsgText": "你有未保存的修改。点击“留在该页”可等待自动保存完成。点击“离开该页”将丢弃全部未经保存的修改。", diff --git a/apps/documenteditor/mobile/src/controller/Encoding.jsx b/apps/documenteditor/mobile/src/controller/Encoding.jsx index 52ad79181..e1ca68d82 100644 --- a/apps/documenteditor/mobile/src/controller/Encoding.jsx +++ b/apps/documenteditor/mobile/src/controller/Encoding.jsx @@ -32,24 +32,26 @@ class EncodingController extends Component { this.mode = mode; this.advOptions = advOptions; this.formatOptions = formatOptions; - this.pages = []; - this.pagesName = []; + this.encodeData = []; const recommendedSettings = this.advOptions.asc_getRecommendedSettings(); - this.initPages(); + this.initEncodeData(); this.valueEncoding = recommendedSettings.asc_getCodePage(); this.setState({ - isOpen: true + isOpen: true }); } } - initPages() { + initEncodeData() { for (let page of this.advOptions.asc_getCodePages()) { - this.pages.push(page.asc_getCodePage()); - this.pagesName.push(page.asc_getCodePageName()); + this.encodeData.push({ + value: page.asc_getCodePage(), + displayValue: page.asc_getCodePageName(), + lcid: page.asc_getLcid() + }); } } @@ -78,8 +80,7 @@ class EncodingController extends Component { closeModal={this.closeModal} mode={this.mode} onSaveFormat={this.onSaveFormat} - pages={this.pages} - pagesName={this.pagesName} + encodeData={this.encodeData} valueEncoding={this.valueEncoding} /> ); diff --git a/apps/documenteditor/mobile/src/less/app.less b/apps/documenteditor/mobile/src/less/app.less index 59914af19..4a52d3458 100644 --- a/apps/documenteditor/mobile/src/less/app.less +++ b/apps/documenteditor/mobile/src/less/app.less @@ -108,8 +108,11 @@ } } -.swiper-pagination-bullet-active{ - background: @black; +.swiper-container { + height: 100%; + .swiper-pagination-bullet-active{ + background: @black; + } } // Skeleton table @@ -126,3 +129,4 @@ height: 50px; } + diff --git a/apps/documenteditor/mobile/src/view/Encoding.jsx b/apps/documenteditor/mobile/src/view/Encoding.jsx index 3911a2d85..de9bddb55 100644 --- a/apps/documenteditor/mobile/src/view/Encoding.jsx +++ b/apps/documenteditor/mobile/src/view/Encoding.jsx @@ -6,10 +6,10 @@ import { Device } from '../../../../common/mobile/utils/device'; const PageEncoding = props => { const { t } = useTranslation(); const _t = t("Settings", { returnObjects: true }); - const pagesName = props.pagesName; - const pages = props.pages; + const encodeData = props.encodeData; const [stateEncoding, setStateEncoding] = useState(props.valueEncoding); - const nameEncoding = pagesName[pages.indexOf(stateEncoding)]; + const getIndexNameEncoding = () => encodeData.findIndex(encoding => encoding.value === stateEncoding); + const nameEncoding = encodeData[getIndexNameEncoding()].displayValue; const mode = props.mode; const changeStateEncoding = value => { @@ -24,8 +24,7 @@ const PageEncoding = props => { @@ -45,19 +44,18 @@ const PageEncodingList = props => { const { t } = useTranslation(); const _t = t("Settings", { returnObjects: true }); const [currentEncoding, changeCurrentEncoding] = useState(props.stateEncoding); - const pages = props.pages; - const pagesName = props.pagesName; + const encodeData = props.encodeData; return ( {_t.textChooseEncoding} - {pagesName.map((name, index) => { + {encodeData.map((encoding, index) => { return ( - { - changeCurrentEncoding(pages[index]); - props.changeStateEncoding(pages[index]); + { + changeCurrentEncoding(encoding.value); + props.changeStateEncoding(encoding.value); f7.views.current.router.back(); }}> ) @@ -79,8 +77,7 @@ class EncodingView extends Component { onSaveFormat={this.props.onSaveFormat} closeModal={this.props.closeModal} mode={this.props.mode} - pages={this.props.pages} - pagesName={this.props.pagesName} + encodeData={this.props.encodeData} valueEncoding={this.props.valueEncoding} /> @@ -108,8 +105,7 @@ const Encoding = props => { closeModal={props.closeModal} onSaveFormat={props.onSaveFormat} mode={props.mode} - pages={props.pages} - pagesName={props.pagesName} + encodeData={props.encodeData} valueEncoding={props.valueEncoding} /> ) diff --git a/apps/documenteditor/mobile/src/view/add/AddImage.jsx b/apps/documenteditor/mobile/src/view/add/AddImage.jsx index aaaf9c31c..9ae7d37fb 100644 --- a/apps/documenteditor/mobile/src/view/add/AddImage.jsx +++ b/apps/documenteditor/mobile/src/view/add/AddImage.jsx @@ -11,7 +11,7 @@ const PageLinkSettings = props => { {_t.textAddress} - + { {props.onReplaceByFile()}}> - + - + diff --git a/apps/documenteditor/mobile/src/view/edit/EditShape.jsx b/apps/documenteditor/mobile/src/view/edit/EditShape.jsx index 85095537b..f15ee3cab 100644 --- a/apps/documenteditor/mobile/src/view/edit/EditShape.jsx +++ b/apps/documenteditor/mobile/src/view/edit/EditShape.jsx @@ -508,7 +508,13 @@ const EditShape = props => { const canFill = props.storeFocusObjects.shapeObject.get_ShapeProperties().get_CanFill(); const shapeObject = props.storeFocusObjects.shapeObject; const wrapType = props.storeShapeSettings.getWrapType(shapeObject); - + + const shapeType = shapeObject.get_ShapeProperties().asc_getType(); + const hideChangeType = shapeObject.get_ShapeProperties().get_FromChart() || shapeType=='line' || shapeType=='bentConnector2' || shapeType=='bentConnector3' + || shapeType=='bentConnector4' || shapeType=='bentConnector5' || shapeType=='curvedConnector2' + || shapeType=='curvedConnector3' || shapeType=='curvedConnector4' || shapeType=='curvedConnector5' + || shapeType=='straightConnector1'; + let disableRemove = !!props.storeFocusObjects.paragraphObject; return ( @@ -533,9 +539,11 @@ const EditShape = props => { onOverlap: props.onOverlap, onWrapDistance: props.onWrapDistance }}> - + { !hideChangeType && + + } { wrapType !== 'inline' && } diff --git a/apps/documenteditor/mobile/src/view/settings/DocumentInfo.jsx b/apps/documenteditor/mobile/src/view/settings/DocumentInfo.jsx index a8d9b1993..21f4fb3f0 100644 --- a/apps/documenteditor/mobile/src/view/settings/DocumentInfo.jsx +++ b/apps/documenteditor/mobile/src/view/settings/DocumentInfo.jsx @@ -57,11 +57,11 @@ const PageDocumentInfo = (props) => { ) : null} {_t.textStatistic} - - - - - + + + + + {props.title ? ( diff --git a/apps/documenteditor/mobile/src/view/settings/DocumentSettings.jsx b/apps/documenteditor/mobile/src/view/settings/DocumentSettings.jsx index dd620d449..6a8ee5c28 100644 --- a/apps/documenteditor/mobile/src/view/settings/DocumentSettings.jsx +++ b/apps/documenteditor/mobile/src/view/settings/DocumentSettings.jsx @@ -174,10 +174,8 @@ const PageDocumentColorSchemes = props => { return ( { - if(index !== curScheme) { - setScheme(index); - props.onColorSchemeChange(index); - }; + setScheme(index); + setTimeout(() => props.onColorSchemeChange(index), 10); }}>
diff --git a/apps/presentationeditor/embed/js/ApplicationController.js b/apps/presentationeditor/embed/js/ApplicationController.js index 69f95e916..be19b3a4d 100644 --- a/apps/presentationeditor/embed/js/ApplicationController.js +++ b/apps/presentationeditor/embed/js/ApplicationController.js @@ -37,6 +37,7 @@ PE.ApplicationController = new(function(){ docConfig = {}, embedConfig = {}, permissions = {}, + appOptions = {}, maxPages = 0, created = false, currentPage = 0, @@ -455,23 +456,8 @@ PE.ApplicationController = new(function(){ } function onEditorPermissions(params) { - if ( (params.asc_getLicenseType() === Asc.c_oLicenseResult.Success) && (typeof config.customization == 'object') && - config.customization && config.customization.logo ) { - - var logo = $('#header-logo'); - if (config.customization.logo.image || config.customization.logo.imageEmbedded) { - logo.html(''); - logo.css({'background-image': 'none', width: 'auto', height: 'auto'}); - - config.customization.logo.imageEmbedded && console.log("Obsolete: The 'imageEmbedded' parameter of the 'customization.logo' section is deprecated. Please use 'image' parameter instead."); - } - - if (config.customization.logo.url) { - logo.attr('href', config.customization.logo.url); - } else if (config.customization.logo.url!==undefined) { - logo.removeAttr('href');logo.removeAttr('target'); - } - } + appOptions.canBranding = params.asc_getCustomization(); + appOptions.canBranding && setBranding(config.customization); var $parent = labelDocName.parent(); var _left_width = $parent.position().left, @@ -657,6 +643,24 @@ PE.ApplicationController = new(function(){ function onBeforeUnload () { common.localStorage.save(); } + + function setBranding(value) { + if ( value && value.logo) { + var logo = $('#header-logo'); + if (value.logo.image || value.logo.imageEmbedded) { + logo.html(''); + logo.css({'background-image': 'none', width: 'auto', height: 'auto'}); + + value.logo.imageEmbedded && console.log("Obsolete: The 'imageEmbedded' parameter of the 'customization.logo' section is deprecated. Please use 'image' parameter instead."); + } + + if (value.logo.url) { + logo.attr('href', value.logo.url); + } else if (value.logo.url!==undefined) { + logo.removeAttr('href');logo.removeAttr('target'); + } + } + } // Helpers // ------------------------- diff --git a/apps/presentationeditor/main/app/view/Toolbar.js b/apps/presentationeditor/main/app/view/Toolbar.js index dbbb31541..ca034b008 100644 --- a/apps/presentationeditor/main/app/view/Toolbar.js +++ b/apps/presentationeditor/main/app/view/Toolbar.js @@ -1011,10 +1011,10 @@ define([ if (menu.cmpEl) { var itemEl = $(cmp.cmpEl.find('.dataview.inner .style').get(0)).parent(); var itemMargin = /*parseInt($(itemEl.get(0)).parent().css('margin-right'))*/-1; - Common.Utils.applicationPixelRatio() > 1 && Common.Utils.applicationPixelRatio() < 2 && (itemMargin = itemMargin + 1/Common.Utils.applicationPixelRatio()); - var itemWidth = itemEl.is(':visible') ? parseInt(itemEl.css('width')) : - (cmp.itemWidth + parseInt(itemEl.css('padding-left')) + parseInt(itemEl.css('padding-right')) + - parseInt(itemEl.css('border-left-width')) + parseInt(itemEl.css('border-right-width'))); + Common.Utils.applicationPixelRatio() > 1 && Common.Utils.applicationPixelRatio() < 2 && (itemMargin = -1 / Common.Utils.applicationPixelRatio()); + var itemWidth = itemEl.is(':visible') ? parseFloat(itemEl.css('width')) : + (cmp.itemWidth + parseFloat(itemEl.css('padding-left')) + parseFloat(itemEl.css('padding-right')) + + parseFloat(itemEl.css('border-left-width')) + parseFloat(itemEl.css('border-right-width'))); var minCount = cmp.menuPicker.store.length >= minMenuColumn ? minMenuColumn : cmp.menuPicker.store.length, columnCount = Math.min(cmp.menuPicker.store.length, Math.round($('.dataview', $(cmp.fieldPicker.el)).width() / (itemMargin + itemWidth) + 0.5)); diff --git a/apps/presentationeditor/main/index.html b/apps/presentationeditor/main/index.html index 1b84c63ee..23f19862e 100644 --- a/apps/presentationeditor/main/index.html +++ b/apps/presentationeditor/main/index.html @@ -255,16 +255,12 @@ var params = getUrlParams(), lang = (params["lang"] || 'en').split(/[\-\_]/)[0], - logo = params["headerlogo"] ? encodeUrlParam(params["headerlogo"]) : null; + logo = params["headerlogo"] ? encodeUrlParam(params["headerlogo"]) : null, + logoDark = params["headerlogodark"] ? encodeUrlParam(params["headerlogodark"]) : null; window.frameEditorId = params["frameEditorId"]; window.parentOrigin = params["parentOrigin"]; - var ui_theme_name = params.uitheme || localStorage.getItem("ui-theme"); - if ( !!ui_theme_name ) { - document.documentElement.classList.add(ui_theme_name); - } - if(/MSIE \d|Trident.*rv:/.test(navigator.userAgent)) document.write(' @@ -318,7 +314,7 @@ } else { var elem = document.querySelector('.loading-logo img'); if (elem) { - logo && (elem.setAttribute('src', logo)); + (logo || logoDark) && elem.setAttribute('src', /theme-dark/.test(document.body.className) ? logoDark || logo : logo || logoDark); elem.style.opacity = 1; } } diff --git a/apps/presentationeditor/main/index.html.deploy b/apps/presentationeditor/main/index.html.deploy index b795b5ef9..f730751ed 100644 --- a/apps/presentationeditor/main/index.html.deploy +++ b/apps/presentationeditor/main/index.html.deploy @@ -247,7 +247,8 @@ var params = getUrlParams(), lang = (params["lang"] || 'en').split(/[\-\_]/)[0], - logo = params["headerlogo"] ? encodeUrlParam(params["headerlogo"]) : null; + logo = params["headerlogo"] ? encodeUrlParam(params["headerlogo"]) : null, + logoDark = params["headerlogodark"] ? encodeUrlParam(params["headerlogodark"]) : null; window.frameEditorId = params["frameEditorId"]; window.parentOrigin = params["parentOrigin"]; @@ -315,7 +316,7 @@ } else { var elem = document.querySelector('.loading-logo img'); if (elem) { - logo && (elem.setAttribute('src', logo)); + (logo || logoDark) && elem.setAttribute('src', /theme-dark/.test(document.body.className) ? logoDark || logo : logo || logoDark); elem.style.opacity = 1; } } diff --git a/apps/presentationeditor/mobile/locale/be.json b/apps/presentationeditor/mobile/locale/be.json index 737efc64f..d6c71ddf5 100644 --- a/apps/presentationeditor/mobile/locale/be.json +++ b/apps/presentationeditor/mobile/locale/be.json @@ -382,7 +382,8 @@ "textZoom": "Zoom", "textZoomIn": "Zoom In", "textZoomOut": "Zoom Out", - "textZoomRotate": "Zoom and Rotate" + "textZoomRotate": "Zoom and Rotate", + "textTransitions": "Transitions" }, "Settings": { "mniSlideStandard": "Standard (4:3)", diff --git a/apps/presentationeditor/mobile/locale/bg.json b/apps/presentationeditor/mobile/locale/bg.json index 737efc64f..d6c71ddf5 100644 --- a/apps/presentationeditor/mobile/locale/bg.json +++ b/apps/presentationeditor/mobile/locale/bg.json @@ -382,7 +382,8 @@ "textZoom": "Zoom", "textZoomIn": "Zoom In", "textZoomOut": "Zoom Out", - "textZoomRotate": "Zoom and Rotate" + "textZoomRotate": "Zoom and Rotate", + "textTransitions": "Transitions" }, "Settings": { "mniSlideStandard": "Standard (4:3)", diff --git a/apps/presentationeditor/mobile/locale/ca.json b/apps/presentationeditor/mobile/locale/ca.json index e490d46d5..0b7cd61e8 100644 --- a/apps/presentationeditor/mobile/locale/ca.json +++ b/apps/presentationeditor/mobile/locale/ca.json @@ -382,7 +382,8 @@ "textZoom": "Zoom", "textZoomIn": "Amplia", "textZoomOut": "Redueix", - "textZoomRotate": "Amplia i gira" + "textZoomRotate": "Amplia i gira", + "textTransitions": "Transitions" }, "Settings": { "mniSlideStandard": "Estàndard (4:3)", diff --git a/apps/presentationeditor/mobile/locale/cs.json b/apps/presentationeditor/mobile/locale/cs.json index 737efc64f..d6c71ddf5 100644 --- a/apps/presentationeditor/mobile/locale/cs.json +++ b/apps/presentationeditor/mobile/locale/cs.json @@ -382,7 +382,8 @@ "textZoom": "Zoom", "textZoomIn": "Zoom In", "textZoomOut": "Zoom Out", - "textZoomRotate": "Zoom and Rotate" + "textZoomRotate": "Zoom and Rotate", + "textTransitions": "Transitions" }, "Settings": { "mniSlideStandard": "Standard (4:3)", diff --git a/apps/presentationeditor/mobile/locale/de.json b/apps/presentationeditor/mobile/locale/de.json index b997a69da..7ea38c878 100644 --- a/apps/presentationeditor/mobile/locale/de.json +++ b/apps/presentationeditor/mobile/locale/de.json @@ -27,11 +27,11 @@ "textMessageDeleteComment": "Möchten Sie diesen Kommentar wirklich löschen?", "textMessageDeleteReply": "Möchten Sie diese Antwort wirklich löschen?", "textNoComments": "Dieses Dokument enthält keine Kommentare", + "textOk": "OK", "textReopen": "Wiederöffnen", "textResolve": "Lösen", "textTryUndoRedo": "Die Optionen Rückgängig machen/Wiederholen sind für den Schnellmodus deaktiviert.", - "textUsers": "Benutzer", - "textOk": "Ok" + "textUsers": "Benutzer" }, "ThemeColorPalette": { "textCustomColors": "Benutzerdefinierte Farben", @@ -382,7 +382,8 @@ "textZoom": "Zoom", "textZoomIn": "Vergrößern", "textZoomOut": "Verkleinern", - "textZoomRotate": "Vergrößern und drehen" + "textZoomRotate": "Vergrößern und drehen", + "textTransitions": "Transitions" }, "Settings": { "mniSlideStandard": "Standard (4:3)", diff --git a/apps/presentationeditor/mobile/locale/el.json b/apps/presentationeditor/mobile/locale/el.json index 737efc64f..d6c71ddf5 100644 --- a/apps/presentationeditor/mobile/locale/el.json +++ b/apps/presentationeditor/mobile/locale/el.json @@ -382,7 +382,8 @@ "textZoom": "Zoom", "textZoomIn": "Zoom In", "textZoomOut": "Zoom Out", - "textZoomRotate": "Zoom and Rotate" + "textZoomRotate": "Zoom and Rotate", + "textTransitions": "Transitions" }, "Settings": { "mniSlideStandard": "Standard (4:3)", diff --git a/apps/presentationeditor/mobile/locale/en.json b/apps/presentationeditor/mobile/locale/en.json index 41bc69ff0..34c5d95b1 100644 --- a/apps/presentationeditor/mobile/locale/en.json +++ b/apps/presentationeditor/mobile/locale/en.json @@ -132,7 +132,7 @@ "criticalErrorTitle": "Error", "downloadErrorText": "Download failed.", "errorAccessDeny": "You are trying to perform an action you do not have rights for.
Please contact your admin.", - "errorBadImageUrl": "Image url is incorrect", + "errorBadImageUrl": "Image URL is incorrect", "errorConnectToServer": "Can't save this doc. Check your connection settings or contact your admin.
When you click the 'OK' button, you will be prompted to download the document.", "errorDatabaseConnection": "External error.
Database connection error. Please, contact support.", "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", @@ -376,7 +376,7 @@ "textTopLeft": "Top-Left", "textTopRight": "Top-Right", "textTotalRow": "Total Row", - "textTransition": "Transition", + "textTransitions": "Transitions", "textType": "Type", "textUnCover": "UnCover", "textVerticalIn": "Vertical In", diff --git a/apps/presentationeditor/mobile/locale/es.json b/apps/presentationeditor/mobile/locale/es.json index 0f5d6b04f..c54731282 100644 --- a/apps/presentationeditor/mobile/locale/es.json +++ b/apps/presentationeditor/mobile/locale/es.json @@ -382,7 +382,8 @@ "textZoom": "Zoom", "textZoomIn": "Acercar", "textZoomOut": "Alejar", - "textZoomRotate": "Zoom y giro" + "textZoomRotate": "Zoom y giro", + "textTransitions": "Transitions" }, "Settings": { "mniSlideStandard": "Estándar (4:3)", diff --git a/apps/presentationeditor/mobile/locale/fr.json b/apps/presentationeditor/mobile/locale/fr.json index 6a543a1b3..36c59fc99 100644 --- a/apps/presentationeditor/mobile/locale/fr.json +++ b/apps/presentationeditor/mobile/locale/fr.json @@ -27,11 +27,11 @@ "textMessageDeleteComment": "Voulez-vous vraiment supprimer ce commentaire?", "textMessageDeleteReply": "Voulez-vous vraiment supprimer cette réponse?", "textNoComments": "Il n'y a pas de commentaires dans ce document", + "textOk": "Ok", "textReopen": "Rouvrir", "textResolve": "Résoudre", "textTryUndoRedo": "Les fonctions Annuler/Rétablir sont désactivées pour le mode de co-édition rapide.", - "textUsers": "Utilisateurs", - "textOk": "Ok" + "textUsers": "Utilisateurs" }, "ThemeColorPalette": { "textCustomColors": "Couleurs personnalisées", @@ -382,7 +382,8 @@ "textZoom": "Zoom", "textZoomIn": "Zoom avant", "textZoomOut": "Zoom arrière", - "textZoomRotate": "Zoom et rotation" + "textZoomRotate": "Zoom et rotation", + "textTransitions": "Transitions" }, "Settings": { "mniSlideStandard": "Standard (4:3)", diff --git a/apps/presentationeditor/mobile/locale/hu.json b/apps/presentationeditor/mobile/locale/hu.json index 737efc64f..d6c71ddf5 100644 --- a/apps/presentationeditor/mobile/locale/hu.json +++ b/apps/presentationeditor/mobile/locale/hu.json @@ -382,7 +382,8 @@ "textZoom": "Zoom", "textZoomIn": "Zoom In", "textZoomOut": "Zoom Out", - "textZoomRotate": "Zoom and Rotate" + "textZoomRotate": "Zoom and Rotate", + "textTransitions": "Transitions" }, "Settings": { "mniSlideStandard": "Standard (4:3)", diff --git a/apps/presentationeditor/mobile/locale/it.json b/apps/presentationeditor/mobile/locale/it.json index 737efc64f..3329a3be7 100644 --- a/apps/presentationeditor/mobile/locale/it.json +++ b/apps/presentationeditor/mobile/locale/it.json @@ -1,7 +1,7 @@ { "About": { + "textAddress": "Indirizzo", "textAbout": "About", - "textAddress": "Address", "textBack": "Back", "textEmail": "Email", "textPoweredBy": "Powered By", @@ -10,9 +10,9 @@ }, "Common": { "Collaboration": { + "textAddComment": "Aggiungi commento", + "textAddReply": "Aggiungi risposta", "notcriticalErrorTitle": "Warning", - "textAddComment": "Add Comment", - "textAddReply": "Add Reply", "textBack": "Back", "textCancel": "Cancel", "textCollaboration": "Collaboration", @@ -27,11 +27,11 @@ "textMessageDeleteComment": "Do you really want to delete this comment?", "textMessageDeleteReply": "Do you really want to delete this reply?", "textNoComments": "This document doesn't contain comments", + "textOk": "Ok", "textReopen": "Reopen", "textResolve": "Resolve", "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", - "textUsers": "Users", - "textOk": "Ok" + "textUsers": "Users" }, "ThemeColorPalette": { "textCustomColors": "Custom Colors", @@ -40,9 +40,9 @@ } }, "ContextMenu": { + "menuAddComment": "Aggiungi commento", + "menuAddLink": "Aggiungi link", "errorCopyCutPaste": "Copy, cut and paste actions using the context menu will be performed within the current file only.", - "menuAddComment": "Add Comment", - "menuAddLink": "Add Link", "menuCancel": "Cancel", "menuDelete": "Delete", "menuDeleteTable": "Delete Table", @@ -59,6 +59,7 @@ }, "Controller": { "Main": { + "textAnonymous": "Anonimo", "advDRMOptions": "Protected File", "advDRMPassword": "Password", "closeButtonText": "Close File", @@ -95,7 +96,6 @@ "Y Axis": "Y Axis", "Your text here": "Your text here" }, - "textAnonymous": "Anonymous", "textBuyNow": "Visit website", "textClose": "Close", "textContactUs": "Contact sales", @@ -124,12 +124,14 @@ } }, "Error": { + "openErrorText": "Si è verificato un errore all'apertura del file", + "saveErrorText": "Si è verificato un errore al salvataggio del file", "convertationTimeoutText": "Conversion timeout exceeded.", "criticalErrorExtText": "Press 'OK' to go back to the document list.", "criticalErrorTitle": "Error", "downloadErrorText": "Download failed.", "errorAccessDeny": "You are trying to perform an action you do not have rights for.
Please contact your admin.", - "errorBadImageUrl": "Image url is incorrect", + "errorBadImageUrl": "Image URL is incorrect", "errorConnectToServer": "Can't save this doc. Check your connection settings or contact your admin.
When you click the 'OK' button, you will be prompted to download the document.", "errorDatabaseConnection": "External error.
Database connection error. Please, contact support.", "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", @@ -140,6 +142,7 @@ "errorFileSizeExceed": "The file size exceeds your server limitation.
Please, contact your admin.", "errorKeyEncrypt": "Unknown key descriptor", "errorKeyExpire": "Key descriptor expired", + "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator.", "errorSessionAbsolute": "The document editing session has expired. Please, reload the page.", "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.", @@ -147,10 +150,8 @@ "errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
Before you can continue working, download the file or copy its content to make sure nothing is lost, and then reload this page.", "errorUserDrop": "The file cannot 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 it until the connection is restored and the page is reloaded.", + "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.", "notcriticalErrorTitle": "Warning", - "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.", "splitDividerErrorText": "The number of rows must be a divisor of %1", "splitMaxColsErrorText": "The number of columns must be less than %1", @@ -158,51 +159,13 @@ "unknownErrorText": "Unknown error.", "uploadImageExtMessage": "Unknown image format.", "uploadImageFileCountMessage": "No images uploaded.", - "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.", - "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." - }, - "LongActions": { - "applyChangesTextText": "Loading data...", - "applyChangesTitleText": "Loading Data", - "downloadTextText": "Downloading document...", - "downloadTitleText": "Downloading Document", - "loadFontsTextText": "Loading data...", - "loadFontsTitleText": "Loading Data", - "loadFontTextText": "Loading data...", - "loadFontTitleText": "Loading Data", - "loadImagesTextText": "Loading images...", - "loadImagesTitleText": "Loading Images", - "loadImageTextText": "Loading image...", - "loadImageTitleText": "Loading Image", - "loadingDocumentTextText": "Loading document...", - "loadingDocumentTitleText": "Loading document", - "loadThemeTextText": "Loading theme...", - "loadThemeTitleText": "Loading Theme", - "openTextText": "Opening document...", - "openTitleText": "Opening Document", - "printTextText": "Printing document...", - "printTitleText": "Printing Document", - "savePreparingText": "Preparing to save", - "savePreparingTitle": "Preparing to save. Please wait...", - "saveTextText": "Saving document...", - "saveTitleText": "Saving Document", - "textLoadingDocument": "Loading document", - "txtEditingMode": "Set editing mode...", - "uploadImageTextText": "Uploading image...", - "uploadImageTitleText": "Uploading Image", - "waitText": "Please, wait..." - }, - "Toolbar": { - "dlgLeaveMsgText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", - "dlgLeaveTitleText": "You leave the application", - "leaveButtonText": "Leave this page", - "stayButtonText": "Stay on this Page" + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." }, "View": { "Add": { + "textAddLink": "Aggiungi link", + "textAddress": "Indirizzo", "notcriticalErrorTitle": "Warning", - "textAddLink": "Add Link", - "textAddress": "Address", "textBack": "Back", "textCancel": "Cancel", "textColumns": "Columns", @@ -237,23 +200,23 @@ "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"" }, "Edit": { + "textAddCustomColor": "Aggiungi colore personalizzato", + "textAdditionalFormatting": "Formattazione aggiuntiva", + "textAddress": "Indirizzo", + "textAfter": "Dopo", + "textAlign": "Allinea", + "textAlignBottom": "Allinea in basso", + "textAlignCenter": "Allinea al centro", + "textAlignLeft": "Allinea a sinistra", + "textAlignMiddle": "Allinea in mezzo", + "textAlignRight": "Allinea a destra", + "textAlignTop": "Allinea in alto", + "textAllCaps": "Tutto maiuscolo", + "textApplyAll": "Applica a tutte le diapositive", + "textAuto": "Auto", "notcriticalErrorTitle": "Warning", "textActualSize": "Actual Size", - "textAddCustomColor": "Add Custom Color", "textAdditional": "Additional", - "textAdditionalFormatting": "Additional Formatting", - "textAddress": "Address", - "textAfter": "After", - "textAlign": "Align", - "textAlignBottom": "Align Bottom", - "textAlignCenter": "Align Center", - "textAlignLeft": "Align Left", - "textAlignMiddle": "Align Middle", - "textAlignRight": "Align Right", - "textAlignTop": "Align Top", - "textAllCaps": "All Caps", - "textApplyAll": "Apply to All Slides", - "textAuto": "Auto", "textBack": "Back", "textBandedColumn": "Banded Column", "textBandedRow": "Banded Row", @@ -372,7 +335,7 @@ "textTopLeft": "Top-Left", "textTopRight": "Top-Right", "textTotalRow": "Total Row", - "textTransition": "Transition", + "textTransitions": "Transitions", "textType": "Type", "textUnCover": "UnCover", "textVerticalIn": "Vertical In", @@ -385,13 +348,15 @@ "textZoomRotate": "Zoom and Rotate" }, "Settings": { + "textAddress": "indirizzo: ", + "textApplication": "Applicazione", + "textApplicationSettings": "Impostazioni dell'applicazione", + "textAuthor": "Autore", + "txtScheme3": "Apice", + "txtScheme4": "Aspetto", "mniSlideStandard": "Standard (4:3)", "mniSlideWide": "Widescreen (16:9)", "textAbout": "About", - "textAddress": "address:", - "textApplication": "Application", - "textApplicationSettings": "Application Settings", - "textAuthor": "Author", "textBack": "Back", "textCaseSensitive": "Case Sensitive", "textCentimeter": "Centimeter", @@ -455,13 +420,48 @@ "txtScheme20": "Urban", "txtScheme21": "Verve", "txtScheme22": "New Office", - "txtScheme3": "Apex", - "txtScheme4": "Aspect", "txtScheme5": "Civic", "txtScheme6": "Concourse", "txtScheme7": "Equity", "txtScheme8": "Flow", "txtScheme9": "Foundry" } + }, + "LongActions": { + "applyChangesTextText": "Loading data...", + "applyChangesTitleText": "Loading Data", + "downloadTextText": "Downloading document...", + "downloadTitleText": "Downloading Document", + "loadFontsTextText": "Loading data...", + "loadFontsTitleText": "Loading Data", + "loadFontTextText": "Loading data...", + "loadFontTitleText": "Loading Data", + "loadImagesTextText": "Loading images...", + "loadImagesTitleText": "Loading Images", + "loadImageTextText": "Loading image...", + "loadImageTitleText": "Loading Image", + "loadingDocumentTextText": "Loading document...", + "loadingDocumentTitleText": "Loading document", + "loadThemeTextText": "Loading theme...", + "loadThemeTitleText": "Loading Theme", + "openTextText": "Opening document...", + "openTitleText": "Opening Document", + "printTextText": "Printing document...", + "printTitleText": "Printing Document", + "savePreparingText": "Preparing to save", + "savePreparingTitle": "Preparing to save. Please wait...", + "saveTextText": "Saving document...", + "saveTitleText": "Saving Document", + "textLoadingDocument": "Loading document", + "txtEditingMode": "Set editing mode...", + "uploadImageTextText": "Uploading image...", + "uploadImageTitleText": "Uploading Image", + "waitText": "Please, wait..." + }, + "Toolbar": { + "dlgLeaveMsgText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "dlgLeaveTitleText": "You leave the application", + "leaveButtonText": "Leave this page", + "stayButtonText": "Stay on this Page" } } \ No newline at end of file diff --git a/apps/presentationeditor/mobile/locale/ja.json b/apps/presentationeditor/mobile/locale/ja.json index 7b9916bce..27463b06b 100644 --- a/apps/presentationeditor/mobile/locale/ja.json +++ b/apps/presentationeditor/mobile/locale/ja.json @@ -382,7 +382,8 @@ "textZoom": "ズーム", "textZoomIn": "拡大", "textZoomOut": "縮小", - "textZoomRotate": "ズームと回転" + "textZoomRotate": "ズームと回転", + "textTransitions": "Transitions" }, "Settings": { "mniSlideStandard": "標準(4:3)", diff --git a/apps/presentationeditor/mobile/locale/ko.json b/apps/presentationeditor/mobile/locale/ko.json index 737efc64f..4a51fb1c9 100644 --- a/apps/presentationeditor/mobile/locale/ko.json +++ b/apps/presentationeditor/mobile/locale/ko.json @@ -1,467 +1,468 @@ { "About": { - "textAbout": "About", - "textAddress": "Address", - "textBack": "Back", - "textEmail": "Email", - "textPoweredBy": "Powered By", - "textTel": "Tel", - "textVersion": "Version" + "textAbout": "정보", + "textAddress": "주소", + "textBack": "뒤로", + "textEmail": "이메일", + "textPoweredBy": "기술 지원", + "textTel": "전화 번호", + "textVersion": "버전" }, "Common": { "Collaboration": { - "notcriticalErrorTitle": "Warning", - "textAddComment": "Add Comment", - "textAddReply": "Add Reply", - "textBack": "Back", - "textCancel": "Cancel", - "textCollaboration": "Collaboration", + "notcriticalErrorTitle": "경고", + "textAddComment": "코멘트 달기", + "textAddReply": "댓글 달기", + "textBack": "뒤로", + "textCancel": "취소", + "textCollaboration": "협업", "textComments": "Comments", - "textDeleteComment": "Delete Comment", - "textDeleteReply": "Delete Reply", - "textDone": "Done", - "textEdit": "Edit", - "textEditComment": "Edit Comment", - "textEditReply": "Edit Reply", - "textEditUser": "Users who are editing the file:", - "textMessageDeleteComment": "Do you really want to delete this comment?", - "textMessageDeleteReply": "Do you really want to delete this reply?", - "textNoComments": "This document doesn't contain comments", - "textReopen": "Reopen", - "textResolve": "Resolve", - "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", - "textUsers": "Users", - "textOk": "Ok" + "textDeleteComment": "코멘트 삭제", + "textDeleteReply": "댓글 삭제", + "textDone": "완료", + "textEdit": "편집", + "textEditComment": "코멘트 편집", + "textEditReply": "댓글 편집", + "textEditUser": "파일을 편집 중인 사용자:", + "textMessageDeleteComment": "정말로 삭제 하시겠습니까", + "textMessageDeleteReply": "정말로 삭제 하시겠습니까", + "textNoComments": "이 문서에 달린 코멘트가 없습니다", + "textOk": "확인", + "textReopen": "다시 열기", + "textResolve": "해결", + "textTryUndoRedo": "빠른 공동 편집 모드에서 실행 취소 / 다시 실행 기능을 사용할 수 없습니다.", + "textUsers": "사용자" }, "ThemeColorPalette": { - "textCustomColors": "Custom Colors", - "textStandartColors": "Standard Colors", - "textThemeColors": "Theme Colors" + "textCustomColors": "사용자 정의 색상", + "textStandartColors": "표준 색상", + "textThemeColors": "테마 색" } }, "ContextMenu": { - "errorCopyCutPaste": "Copy, cut and paste actions using the context menu will be performed within the current file only.", - "menuAddComment": "Add Comment", - "menuAddLink": "Add Link", - "menuCancel": "Cancel", - "menuDelete": "Delete", - "menuDeleteTable": "Delete Table", - "menuEdit": "Edit", - "menuMerge": "Merge", - "menuMore": "More", - "menuOpenLink": "Open Link", - "menuSplit": "Split", - "menuViewComment": "View Comment", - "textColumns": "Columns", - "textCopyCutPasteActions": "Copy, Cut and Paste Actions", - "textDoNotShowAgain": "Don't show again", - "textRows": "Rows" + "errorCopyCutPaste": "복사, 자르기 및 붙여 넣기", + "menuAddComment": "코멘트 달기", + "menuAddLink": "링크 추가", + "menuCancel": "취소", + "menuDelete": "삭제", + "menuDeleteTable": "표삭제", + "menuEdit": "편집", + "menuMerge": "병합", + "menuMore": "자세히", + "menuOpenLink": "링크 열기", + "menuSplit": "분할", + "menuViewComment": "코멘트 보기", + "textColumns": "열", + "textCopyCutPasteActions": "복사, 잘라내기 및 붙여 넣기", + "textDoNotShowAgain": "다시 표시하지 않음", + "textRows": "행" }, "Controller": { "Main": { - "advDRMOptions": "Protected File", - "advDRMPassword": "Password", - "closeButtonText": "Close File", - "criticalErrorTitle": "Error", - "errorAccessDeny": "You are trying to perform an action you do not have rights for.
Please, contact your admin.", - "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", - "errorProcessSaveResult": "Saving failed.", - "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", - "errorUpdateVersion": "The file version has been changed. The page will be reloaded.", - "leavePageText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", - "notcriticalErrorTitle": "Warning", + "advDRMOptions": "보호 된 파일", + "advDRMPassword": "비밀번호", + "closeButtonText": "파일 닫기", + "criticalErrorTitle": "오류", + "errorAccessDeny": "권한이 없는 작업을 수행하려고 합니다.
관리자에게 문의하십시오.", + "errorOpensource": "무료 커뮤니티 버전을 사용하는 경우 열린 파일만 볼 수 있습니다. 모바일 온라인 에디터 기능을 사용하기 위해서는 유료 라이선스가 필요합니다.", + "errorProcessSaveResult": "저장하지 못했습니다.", + "errorServerVersion": "편집기 버전이 업데이트되었습니다. 페이지가 다시로드되어 변경 사항이 적용됩니다.", + "errorUpdateVersion": "파일 버전이 변경되었습니다. 페이지가 다시로드됩니다.", + "leavePageText": "이 문서에 저장되지 않은 변경 사항이 있습니다. 자동 저장을 활성화하려면 \"이 페이지에서 나가기\"를 클릭하십시오. \"이 페이지에서 나가기\"를 클릭하면 저장되지 않은 모든 편집 내용이 삭제됩니다.", + "notcriticalErrorTitle": "경고", "SDK": { - "Chart": "Chart", - "Click to add first slide": "Click to add first slide", - "Click to add notes": "Click to add notes", - "ClipArt": "Clip Art", - "Date and time": "Date and time", - "Diagram": "Diagram", - "Diagram Title": "Chart Title", - "Footer": "Footer", - "Header": "Header", - "Image": "Image", - "Loading": "Loading", - "Media": "Media", - "None": "None", - "Picture": "Picture", - "Series": "Series", - "Slide number": "Slide number", - "Slide subtitle": "Slide subtitle", - "Slide text": "Slide text", - "Slide title": "Slide title", - "Table": "Table", - "X Axis": "X Axis XAS", - "Y Axis": "Y Axis", - "Your text here": "Your text here" + "Chart": "차트", + "Click to add first slide": "첫 슬라이드 추가 클릭", + "Click to add notes": "노트를 추가하려면 클릭", + "ClipArt": "클립 아트", + "Date and time": "날짜 및 시간", + "Diagram": "다이어그램", + "Diagram Title": "차트 제목", + "Footer": "꼬리말", + "Header": "머리글", + "Image": "이미지", + "Loading": "로드 중", + "Media": "미디어", + "None": "없음", + "Picture": "그림", + "Series": "시리즈", + "Slide number": "슬라이드 번호", + "Slide subtitle": "슬라이드 부제목", + "Slide text": "슬라이드 텍스트", + "Slide title": "슬라이드 제목", + "Table": "표", + "X Axis": "X 축 XAS", + "Y Axis": "Y 축", + "Your text here": "여기에 귀하의 텍스트를 입력하여 주십시오" }, - "textAnonymous": "Anonymous", - "textBuyNow": "Visit website", - "textClose": "Close", - "textContactUs": "Contact sales", - "textCustomLoader": "Sorry, you are not entitled to change the loader. Please, contact our sales department to get a quote.", - "textGuest": "Guest", - "textHasMacros": "The file contains automatic macros.
Do you want to run macros?", - "textNo": "No", - "textNoLicenseTitle": "License limit reached", - "textOpenFile": "Enter a password to open the file", - "textPaidFeature": "Paid feature", - "textRemember": "Remember my choice", - "textYes": "Yes", - "titleLicenseExp": "License expired", - "titleServerVersion": "Editor updated", - "titleUpdateVersion": "Version changed", - "txtIncorrectPwd": "Password is incorrect", - "txtProtected": "Once you enter the password and open the file, the current password to the file will be reset", - "warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.", - "warnLicenseExp": "Your license has expired. Please, update it and refresh the page.", - "warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your administrator.", - "warnLicenseLimitedRenewed": "The license needs to be renewed. You have limited access to document editing functionality.
Please contact your administrator to get full access", - "warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", - "warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.", - "warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", - "warnProcessRightsChange": "You don't have permission to edit the file." + "textAnonymous": "익명", + "textBuyNow": "웹 사이트 방문", + "textClose": "닫기", + "textContactUs": "영업 담당자에게 문의", + "textCustomLoader": "죄송합니다. 로더를 수정할 권한이 없습니다. 견적을 받으려면 영업 부서에 문의하시기 바랍니다.", + "textGuest": "게스트", + "textHasMacros": "파일에 자동 매크로가 포함되어 있습니다.
매크로를 실행 하시겠습니까?", + "textNo": "아니오", + "textNoLicenseTitle": "라이센스 수를 제한했습니다.", + "textOpenFile": "파일을 열려면 암호를 입력하십시오.", + "textPaidFeature": "유료기능", + "textRemember": "선택사항을 저장", + "textYes": "확인", + "titleLicenseExp": "라이센스 만료", + "titleServerVersion": "편집기가 업데이트되었습니다.", + "titleUpdateVersion": "버전이 변경되었습니다.", + "txtIncorrectPwd": "잘못된 비밀번호", + "txtProtected": "암호를 입력하고 파일을 열면 파일의 현재 암호가 재설정됩니다.", + "warnLicenseExceeded": "% 1 편집 연결 수 제한에 도달했습니다. 이 문서는 보기 모드에서 엽립니다. 자세한 내용은 관리자에게 연락하십시오.", + "warnLicenseExp": "라이센스가 만료되었습니다. 라이선스를 업데이트하고 페이지를 새로고침하세요.", + "warnLicenseLimitedNoAccess": "라이센스가 만료되었습니다. 지금은 문서 편집 기능을 사용할 수 없습니다. 관리자에게 문의하시기 바랍니다.", + "warnLicenseLimitedRenewed": "라이선스를 업데이트해야 합니다. 문서 편집 기능이 제한됩니다.
전체 액세스 권한을 얻으려면 관리자에게 문의하십시오.", + "warnLicenseUsersExceeded": "편집자 사용자 한도인 %1명에 도달했습니다. 자세한 내용은 관리자에게 문의하십시오.", + "warnNoLicense": "% 1 편집 연결 수 제한에 도달했습니다. 이 문서는 보기 모드로 열립니다. 개인적인 업그레이드 사항은 % 1 영업팀에 연락하십시오.", + "warnNoLicenseUsers": "ONLYOFFICE 편집자의이 버전은 동시 사용자에게 일정한 제한이 있습니다.
더 필요한 것이 있으면 현재 라이센스를 업그레이드하거나 상용 라이센스를 구입하십시오.", + "warnProcessRightsChange": "파일을 수정할 수 있는 권한이 없습니다." } }, "Error": { - "convertationTimeoutText": "Conversion timeout exceeded.", - "criticalErrorExtText": "Press 'OK' to go back to the document list.", - "criticalErrorTitle": "Error", - "downloadErrorText": "Download failed.", - "errorAccessDeny": "You are trying to perform an action you do not have rights for.
Please contact your admin.", - "errorBadImageUrl": "Image url is incorrect", - "errorConnectToServer": "Can't save this doc. Check your connection settings or contact your admin.
When you click the 'OK' button, you will be prompted to download the document.", - "errorDatabaseConnection": "External error.
Database connection error. Please, contact support.", - "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", - "errorDataRange": "Incorrect data range.", - "errorDefaultMessage": "Error code: %1", - "errorEditingDownloadas": "An error occurred during the work with the document.
Use the 'Download' option to save the file backup copy locally.", - "errorFilePassProtect": "The file is password protected and could not be opened.", - "errorFileSizeExceed": "The file size exceeds your server limitation.
Please, contact your admin.", - "errorKeyEncrypt": "Unknown key descriptor", - "errorKeyExpire": "Key descriptor expired", - "errorSessionAbsolute": "The document editing session has expired. Please, reload the page.", - "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.", - "errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
Before you can continue working, download the file or copy its content to make sure nothing is lost, and then reload this page.", - "errorUserDrop": "The file cannot 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 it until the connection is restored and the page is reloaded.", - "notcriticalErrorTitle": "Warning", - "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.", - "splitDividerErrorText": "The number of rows must be a divisor of %1", - "splitMaxColsErrorText": "The number of columns must be less than %1", - "splitMaxRowsErrorText": "The number of rows must be less than %1", - "unknownErrorText": "Unknown error.", - "uploadImageExtMessage": "Unknown image format.", - "uploadImageFileCountMessage": "No images uploaded.", - "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.", - "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." + "convertationTimeoutText": "변환 시간을 초과했습니다.", + "criticalErrorExtText": "문서 목록으로 돌아가려면 \"확인\" 버튼을 누르십시오.", + "criticalErrorTitle": "오류", + "downloadErrorText": "다운로드 실패", + "errorAccessDeny": "권한이 없는 작업을 수행하려고 합니다.
관리자에게 문의하십시오.", + "errorBadImageUrl": "이미지 URL이 잘못되었습니다.", + "errorConnectToServer": "저장하지 못했습니다. 네트워크 설정을 확인하거나 관리자에게 문의하세요.
이 문서는 \"확인\" 버튼을 누르면 다운로드할 수 있습니다.", + "errorDatabaseConnection": "외부 오류입니다.
데이터베이스 연결 오류입니다. 지원팀에 문의하십시오.", + "errorDataEncrypted": "암호화 변경 사항이 수신되었으며 해독할 수 없습니다.", + "errorDataRange": "잘못된 참조 대상 입니다.", + "errorDefaultMessage": "오류 코드: %1", + "errorEditingDownloadas": "이 문서를 처리하는 동안 오류가 발생했습니다.
파일 백업을 로컬에 저장하려면 \"저장\" 옵션을 사용하십시오.", + "errorFilePassProtect": "파일이 암호로 보호되어 열 수 없습니다.", + "errorFileSizeExceed": "파일 크기가 서버 제한을 ​​초과합니다.
관리자에게 문의하십시오.", + "errorKeyEncrypt": "알 수없는 키 설명자", + "errorKeyExpire": "키가 만료됨", + "errorLoadingFont": "글꼴 불러오기에 실패하였습니다.
문서 시스템 관리자에게 문의하세요.", + "errorSessionAbsolute": "파일 편집 창이 만료되었습니다. 페이지를 새로고침하세요.", + "errorSessionIdle": "이 문서는 한동안 수정되지 않았습니다. 페이지를 새로고침하세요.", + "errorSessionToken": "서버에 대한 링크가 중단되었습니다. 페이지를 새로고침하세요.", + "errorStockChart": "줄의 순서가 잘못되었습니다. 주식형 차트를 생성하려면
시가, 최고가, 최저가, 종가의 순서로 데이터를 테이블에 배치하십시오.", + "errorUpdateVersionOnDisconnect": "네트워크 링크가 복원되었으며 파일 버전이 변경되었습니다.
진행하기 전에 파일을 다운로드하거나 파일 내용을 복사하여 손실이 발생하지 않도록 하고 페이지를 새로고침하세요.", + "errorUserDrop": "파일에 지금 액세스 할 수 없습니다.", + "errorUsersExceed": "요금제에서 허용하는 사용자 수 초과", + "errorViewerDisconnect": "네트워크 연결에 실패했습니다. 이 문서는 계속 볼 수 있지만
연결이 복원되고 페이지가 새로 고쳐질 때까지 이 문서를 다운로드하거나 인쇄할 수 없습니다.", + "notcriticalErrorTitle": "경고", + "openErrorText": "파일을 여는 동안 오류가 발생했습니다.", + "saveErrorText": "파일을 저장하는 동안 오류가 발생했습니다.", + "scriptLoadError": "인터넷 속도가 너무 느려 이 페이지의 일부 요소가 로드되지 않습니다. 페이지를 새로고침하세요.", + "splitDividerErrorText": "행 수는 % 1의 약수이어야합니다", + "splitMaxColsErrorText": "열 수가 % 1보다 작아야합니다", + "splitMaxRowsErrorText": "행 수가 % 1보다 작아야합니다", + "unknownErrorText": "알 수 없는 오류.", + "uploadImageExtMessage": "알 수없는 이미지 형식입니다.", + "uploadImageFileCountMessage": "이미지가 업로드되지 않았습니다.", + "uploadImageSizeMessage": "이미지 크기 제한을 초과했습니다." }, "LongActions": { - "applyChangesTextText": "Loading data...", - "applyChangesTitleText": "Loading Data", - "downloadTextText": "Downloading document...", - "downloadTitleText": "Downloading Document", - "loadFontsTextText": "Loading data...", - "loadFontsTitleText": "Loading Data", - "loadFontTextText": "Loading data...", - "loadFontTitleText": "Loading Data", - "loadImagesTextText": "Loading images...", - "loadImagesTitleText": "Loading Images", - "loadImageTextText": "Loading image...", - "loadImageTitleText": "Loading Image", - "loadingDocumentTextText": "Loading document...", - "loadingDocumentTitleText": "Loading document", - "loadThemeTextText": "Loading theme...", - "loadThemeTitleText": "Loading Theme", - "openTextText": "Opening document...", - "openTitleText": "Opening Document", - "printTextText": "Printing document...", - "printTitleText": "Printing Document", - "savePreparingText": "Preparing to save", - "savePreparingTitle": "Preparing to save. Please wait...", - "saveTextText": "Saving document...", - "saveTitleText": "Saving Document", - "textLoadingDocument": "Loading document", - "txtEditingMode": "Set editing mode...", - "uploadImageTextText": "Uploading image...", - "uploadImageTitleText": "Uploading Image", - "waitText": "Please, wait..." + "applyChangesTextText": "데이터로드 중 ...", + "applyChangesTitleText": "데이터로드 중", + "downloadTextText": "문서 다운로드 중...", + "downloadTitleText": "문서 다운로드 중", + "loadFontsTextText": "데이터로드 중 ...", + "loadFontsTitleText": "데이터로드 중", + "loadFontTextText": "데이터로드 중 ...", + "loadFontTitleText": "데이터로드 중", + "loadImagesTextText": "이미지로드 중 ...", + "loadImagesTitleText": "이미지로드 중", + "loadImageTextText": "이미지로드 중 ...", + "loadImageTitleText": "이미지로드 중", + "loadingDocumentTextText": "문서로드 중 ...", + "loadingDocumentTitleText": "문서 로드 중", + "loadThemeTextText": "테마로드 중 ...", + "loadThemeTitleText": "테마로드 중", + "openTextText": "문서 열기 중 ...", + "openTitleText": "문서 열기", + "printTextText": "문서 인쇄 중 ...", + "printTitleText": "문서 인쇄 중", + "savePreparingText": "저장 준비 중", + "savePreparingTitle": "저장 준비 중입니다. 잠시 기다려주십시오 ...", + "saveTextText": "문서 저장 중 ...", + "saveTitleText": "문서 저장 중", + "textLoadingDocument": "문서 로드 중", + "txtEditingMode": "편집 모드 설정 ...", + "uploadImageTextText": "이미지 업로드 중 ...", + "uploadImageTitleText": "이미지 업로드 중", + "waitText": "잠시만 기다려주세요..." }, "Toolbar": { - "dlgLeaveMsgText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", - "dlgLeaveTitleText": "You leave the application", - "leaveButtonText": "Leave this page", - "stayButtonText": "Stay on this Page" + "dlgLeaveMsgText": "이 문서에 저장되지 않은 변경 사항이 있습니다. 자동 저장을 활성화하려면 \"이 페이지에서 나가기\"를 클릭하십시오. \"이 페이지에서 나가기\"를 클릭하면 저장되지 않은 모든 편집 내용이 삭제됩니다.", + "dlgLeaveTitleText": "응용 프로그램을 종료합니다", + "leaveButtonText": "이 페이지에서 나가기", + "stayButtonText": "이 페이지에 보관" }, "View": { "Add": { - "notcriticalErrorTitle": "Warning", - "textAddLink": "Add Link", - "textAddress": "Address", - "textBack": "Back", - "textCancel": "Cancel", - "textColumns": "Columns", - "textComment": "Comment", - "textDefault": "Selected text", - "textDisplay": "Display", - "textEmptyImgUrl": "You need to specify the image URL.", - "textExternalLink": "External Link", - "textFirstSlide": "First Slide", - "textImage": "Image", - "textImageURL": "Image URL", - "textInsert": "Insert", - "textInsertImage": "Insert Image", - "textLastSlide": "Last Slide", - "textLink": "Link", - "textLinkSettings": "Link Settings", - "textLinkTo": "Link to", - "textLinkType": "Link Type", - "textNextSlide": "Next Slide", - "textOther": "Other", - "textPictureFromLibrary": "Picture from Library", - "textPictureFromURL": "Picture from URL", - "textPreviousSlide": "Previous Slide", - "textRows": "Rows", - "textScreenTip": "Screen Tip", - "textShape": "Shape", - "textSlide": "Slide", - "textSlideInThisPresentation": "Slide in this Presentation", - "textSlideNumber": "Slide Number", - "textTable": "Table", - "textTableSize": "Table Size", - "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"" + "notcriticalErrorTitle": "경고", + "textAddLink": "링크 추가", + "textAddress": "주소", + "textBack": "뒤로", + "textCancel": "취소", + "textColumns": "열", + "textComment": "코멘트", + "textDefault": "선택한 텍스트", + "textDisplay": "표시", + "textEmptyImgUrl": "이미지의 URL을 지정해야 합니다.", + "textExternalLink": "외부 링크", + "textFirstSlide": "첫 번째 슬라이드", + "textImage": "이미지", + "textImageURL": "이미지 URL", + "textInsert": "삽입", + "textInsertImage": "이미지 삽입", + "textLastSlide": "마지막 슬라이드", + "textLink": "링크", + "textLinkSettings": "링크 설정", + "textLinkTo": "링크 대상", + "textLinkType": "링크 유형", + "textNextSlide": "다음 슬라이드", + "textOther": "기타", + "textPictureFromLibrary": "그림 라이브러리에서", + "textPictureFromURL": "URL에서 그림", + "textPreviousSlide": "이전 슬라이드", + "textRows": "행", + "textScreenTip": "화면 팁", + "textShape": "도형", + "textSlide": "슬라이드", + "textSlideInThisPresentation": "이 프리젠 테이션에서 슬라이드", + "textSlideNumber": "슬라이드 번호", + "textTable": "표", + "textTableSize": "표 크기", + "txtNotUrl": "이 필드는 \"http://www.example.com\"형식의 URL이어야합니다." }, "Edit": { - "notcriticalErrorTitle": "Warning", - "textActualSize": "Actual Size", - "textAddCustomColor": "Add Custom Color", - "textAdditional": "Additional", - "textAdditionalFormatting": "Additional Formatting", - "textAddress": "Address", - "textAfter": "After", - "textAlign": "Align", - "textAlignBottom": "Align Bottom", - "textAlignCenter": "Align Center", - "textAlignLeft": "Align Left", - "textAlignMiddle": "Align Middle", - "textAlignRight": "Align Right", - "textAlignTop": "Align Top", - "textAllCaps": "All Caps", - "textApplyAll": "Apply to All Slides", - "textAuto": "Auto", - "textBack": "Back", - "textBandedColumn": "Banded Column", - "textBandedRow": "Banded Row", - "textBefore": "Before", - "textBlack": "Through Black", - "textBorder": "Border", - "textBottom": "Bottom", - "textBottomLeft": "Bottom-Left", - "textBottomRight": "Bottom-Right", - "textBringToForeground": "Bring to Foreground", - "textBullets": "Bullets", - "textBulletsAndNumbers": "Bullets & Numbers", - "textCaseSensitive": "Case Sensitive", - "textCellMargins": "Cell Margins", - "textChart": "Chart", - "textClock": "Clock", - "textClockwise": "Clockwise", - "textColor": "Color", - "textCounterclockwise": "Counterclockwise", - "textCover": "Cover", - "textCustomColor": "Custom Color", - "textDefault": "Selected text", - "textDelay": "Delay", - "textDeleteSlide": "Delete Slide", - "textDisplay": "Display", - "textDistanceFromText": "Distance From Text", - "textDistributeHorizontally": "Distribute Horizontally", - "textDistributeVertically": "Distribute Vertically", - "textDone": "Done", - "textDoubleStrikethrough": "Double Strikethrough", - "textDuplicateSlide": "Duplicate Slide", - "textDuration": "Duration", - "textEditLink": "Edit Link", - "textEffect": "Effect", - "textEffects": "Effects", - "textEmptyImgUrl": "You need to specify the image URL.", - "textExternalLink": "External Link", - "textFade": "Fade", - "textFill": "Fill", - "textFinalMessage": "The end of slide preview. Click to exit.", - "textFind": "Find", - "textFindAndReplace": "Find and Replace", - "textFirstColumn": "First Column", - "textFirstSlide": "First Slide", - "textFontColor": "Font Color", - "textFontColors": "Font Colors", - "textFonts": "Fonts", - "textFromLibrary": "Picture from Library", - "textFromURL": "Picture from URL", - "textHeaderRow": "Header Row", - "textHighlight": "Highlight Results", - "textHighlightColor": "Highlight Color", - "textHorizontalIn": "Horizontal In", - "textHorizontalOut": "Horizontal Out", - "textHyperlink": "Hyperlink", - "textImage": "Image", - "textImageURL": "Image URL", - "textLastColumn": "Last Column", - "textLastSlide": "Last Slide", - "textLayout": "Layout", - "textLeft": "Left", - "textLetterSpacing": "Letter Spacing", - "textLineSpacing": "Line Spacing", - "textLink": "Link", - "textLinkSettings": "Link Settings", - "textLinkTo": "Link to", - "textLinkType": "Link Type", - "textMoveBackward": "Move Backward", - "textMoveForward": "Move Forward", - "textNextSlide": "Next Slide", - "textNone": "None", - "textNoStyles": "No styles for this type of chart.", - "textNoTextFound": "Text not found", - "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", - "textNumbers": "Numbers", - "textOpacity": "Opacity", - "textOptions": "Options", - "textPictureFromLibrary": "Picture from Library", - "textPictureFromURL": "Picture from URL", - "textPreviousSlide": "Previous Slide", + "notcriticalErrorTitle": "경고", + "textActualSize": "실제 크기", + "textAddCustomColor": "사용자 색상 추가", + "textAdditional": "추가", + "textAdditionalFormatting": "추가 서식 지정", + "textAddress": "주소", + "textAfter": "이후", + "textAlign": "맞춤", + "textAlignBottom": "아래쪽 맞춤", + "textAlignCenter": "가운데 맞춤", + "textAlignLeft": "왼쪽 맞춤", + "textAlignMiddle": "중간 맞춤", + "textAlignRight": "오른쪽 맞춤", + "textAlignTop": "위쪽 맞춤", + "textAllCaps": "모든 대문자", + "textApplyAll": "모든 슬라이드에 적용", + "textAuto": "자동", + "textBack": "뒤로", + "textBandedColumn": "줄무늬 열", + "textBandedRow": "줄무늬 행", + "textBefore": "이전", + "textBlack": "검은 색을 사용", + "textBorder": "테두리", + "textBottom": "하단", + "textBottomLeft": "왼쪽 하단", + "textBottomRight": "오른쪽-하단", + "textBringToForeground": "앞으로 가져오기", + "textBullets": "글 머리 기호", + "textBulletsAndNumbers": "글머리 기호 및 숫자", + "textCaseSensitive": "대소문자 구별", + "textCellMargins": "셀 여백", + "textChart": "차트", + "textClock": "시계", + "textClockwise": "시계 방향", + "textColor": "색상", + "textCounterclockwise": "반 시계 방향", + "textCover": "표지", + "textCustomColor": "사용자 정의 색상", + "textDefault": "선택한 텍스트", + "textDelay": "지연", + "textDeleteSlide": "슬라이드 삭제", + "textDisplay": "표시", + "textDistanceFromText": "텍스트 간격", + "textDistributeHorizontally": "수평 분포", + "textDistributeVertically": "수직 분포", + "textDone": "완료", + "textDoubleStrikethrough": "이중 취소 선", + "textDuplicateSlide": "슬라이드 복사", + "textDuration": "재생 시간", + "textEditLink": "링크 편집", + "textEffect": "효과", + "textEffects": "효과", + "textEmptyImgUrl": "이미지의 URL을 지정해야 합니다.", + "textExternalLink": "외부 링크", + "textFade": "페이드", + "textFill": "채우기", + "textFinalMessage": "슬라이드 미리보기의 끝입니다. 끝내려면 클릭하십시오.", + "textFind": "검색", + "textFindAndReplace": "찾기 및 바꾸기", + "textFirstColumn": "첫 번째 열", + "textFirstSlide": "첫 번째 슬라이드", + "textFontColor": "글꼴 색", + "textFontColors": "글꼴 색", + "textFonts": "글꼴", + "textFromLibrary": "그림 라이브러리에서", + "textFromURL": "URL에서 그림", + "textHeaderRow": "머리글 행", + "textHighlight": "결과 강조 표시", + "textHighlightColor": "텍스트 강조 색", + "textHorizontalIn": "수평 입력", + "textHorizontalOut": "수평 출력", + "textHyperlink": "하이퍼 링크", + "textImage": "이미지", + "textImageURL": "이미지 URL", + "textLastColumn": "마지막 열", + "textLastSlide": "마지막 슬라이드", + "textLayout": "레이아웃", + "textLeft": "왼쪽", + "textLetterSpacing": "문자 간격", + "textLineSpacing": "줄 간격", + "textLink": "링크", + "textLinkSettings": "링크 설정", + "textLinkTo": "링크 대상", + "textLinkType": "링크 유형", + "textMoveBackward": "맨 뒤로 보내기", + "textMoveForward": "맨 앞으로 가져오기", + "textNextSlide": "다음 슬라이드", + "textNone": "없음", + "textNoStyles": "이 유형의 테이블에 해당하는 스타일 설정이 없습니다.", + "textNoTextFound": "텍스트를 찾을 수 없습니다", + "textNotUrl": "이 필드는 \"http://www.example.com\"형식의 URL이어야합니다.", + "textNumbers": "숫자", + "textOpacity": "투명도", + "textOptions": "옵션", + "textPictureFromLibrary": "그림 라이브러리에서", + "textPictureFromURL": "URL에서 그림", + "textPreviousSlide": "이전 슬라이드", "textPt": "pt", - "textPush": "Push", - "textRemoveChart": "Remove Chart", - "textRemoveImage": "Remove Image", - "textRemoveLink": "Remove Link", - "textRemoveShape": "Remove Shape", - "textRemoveTable": "Remove Table", - "textReorder": "Reorder", - "textReplace": "Replace", - "textReplaceAll": "Replace All", - "textReplaceImage": "Replace Image", - "textRight": "Right", - "textScreenTip": "Screen Tip", - "textSearch": "Search", + "textPush": "밀어내기", + "textRemoveChart": "차트 제거", + "textRemoveImage": "이미지 제거", + "textRemoveLink": "링크 제거", + "textRemoveShape": "도형 제거", + "textRemoveTable": "표 제거", + "textReorder": "재주문", + "textReplace": "바꾸기", + "textReplaceAll": "모두 바꾸기", + "textReplaceImage": "이미지 바꾸기", + "textRight": "오른쪽", + "textScreenTip": "화면 팁", + "textSearch": "검색", "textSec": "s", - "textSelectObjectToEdit": "Select object to edit", - "textSendToBackground": "Send to Background", - "textShape": "Shape", - "textSize": "Size", - "textSlide": "Slide", - "textSlideInThisPresentation": "Slide in this Presentation", - "textSlideNumber": "Slide Number", - "textSmallCaps": "Small Caps", - "textSmoothly": "Smoothly", - "textSplit": "Split", - "textStartOnClick": "Start On Click", - "textStrikethrough": "Strikethrough", - "textStyle": "Style", - "textStyleOptions": "Style Options", - "textSubscript": "Subscript", - "textSuperscript": "Superscript", - "textTable": "Table", - "textText": "Text", - "textTheme": "Theme", - "textTop": "Top", - "textTopLeft": "Top-Left", - "textTopRight": "Top-Right", - "textTotalRow": "Total Row", - "textTransition": "Transition", - "textType": "Type", - "textUnCover": "UnCover", - "textVerticalIn": "Vertical In", - "textVerticalOut": "Vertical Out", - "textWedge": "Wedge", - "textWipe": "Wipe", - "textZoom": "Zoom", - "textZoomIn": "Zoom In", - "textZoomOut": "Zoom Out", - "textZoomRotate": "Zoom and Rotate" + "textSelectObjectToEdit": "편집하기 위해 개체를 선택하십시오", + "textSendToBackground": "맨 뒤로 보내기", + "textShape": "도형", + "textSize": "크기", + "textSlide": "슬라이드", + "textSlideInThisPresentation": "이 프리젠 테이션에서 슬라이드", + "textSlideNumber": "슬라이드 번호", + "textSmallCaps": "작은 대문자", + "textSmoothly": "부드럽게", + "textSplit": "분할", + "textStartOnClick": "시작시 클릭", + "textStrikethrough": "취소선", + "textStyle": "스타일", + "textStyleOptions": "스타일 옵션", + "textSubscript": "아래 첨자", + "textSuperscript": "위 첨자", + "textTable": "표", + "textText": "텍스트", + "textTheme": "테마", + "textTop": "위", + "textTopLeft": "왼쪽 위", + "textTopRight": "오른쪽 위", + "textTotalRow": "합계", + "textTransition": "전환", + "textType": "유형", + "textUnCover": "당기기", + "textVerticalIn": "덮기", + "textVerticalOut": "수직 출력", + "textWedge": "쇄기꼴", + "textWipe": "닦아내기", + "textZoom": "확대/축소", + "textZoomIn": "확대", + "textZoomOut": "축소", + "textZoomRotate": "확대 / 축소 및 회전", + "textTransitions": "Transitions" }, "Settings": { - "mniSlideStandard": "Standard (4:3)", - "mniSlideWide": "Widescreen (16:9)", - "textAbout": "About", - "textAddress": "address:", - "textApplication": "Application", - "textApplicationSettings": "Application Settings", - "textAuthor": "Author", - "textBack": "Back", - "textCaseSensitive": "Case Sensitive", - "textCentimeter": "Centimeter", - "textCollaboration": "Collaboration", - "textColorSchemes": "Color Schemes", - "textComment": "Comment", - "textCreated": "Created", - "textDisableAll": "Disable All", - "textDisableAllMacrosWithNotification": "Disable all macros with notification", - "textDisableAllMacrosWithoutNotification": "Disable all macros without notification", - "textDone": "Done", - "textDownload": "Download", - "textDownloadAs": "Download As...", - "textEmail": "email:", - "textEnableAll": "Enable All", - "textEnableAllMacrosWithoutNotification": "Enable all macros without notification", - "textFind": "Find", - "textFindAndReplace": "Find and Replace", - "textFindAndReplaceAll": "Find and Replace All", - "textHelp": "Help", - "textHighlight": "Highlight Results", - "textInch": "Inch", - "textLastModified": "Last Modified", - "textLastModifiedBy": "Last Modified By", - "textLoading": "Loading...", - "textLocation": "Location", - "textMacrosSettings": "Macros Settings", - "textNoTextFound": "Text not found", - "textOwner": "Owner", + "mniSlideStandard": "표준 (4 : 3)", + "mniSlideWide": "와이드 스크린 (16 : 9)", + "textAbout": "정보", + "textAddress": "주소 :", + "textApplication": "어플리케이션", + "textApplicationSettings": "어플리케이션 설정", + "textAuthor": "작성자", + "textBack": "뒤로", + "textCaseSensitive": "대소문자 구별", + "textCentimeter": "센티미터", + "textCollaboration": "협업", + "textColorSchemes": "색 구성표", + "textComment": "코멘트", + "textCreated": "생성되었습니다", + "textDisableAll": "모두 비활성화", + "textDisableAllMacrosWithNotification": "알림이 있는 모든 매크로 닫기", + "textDisableAllMacrosWithoutNotification": "알림 없이 모든 매크로 닫기", + "textDone": "완료", + "textDownload": "다운로드", + "textDownloadAs": "다른 이름으로 다운로드 ...", + "textEmail": "이메일 :", + "textEnableAll": "모두 활성화", + "textEnableAllMacrosWithoutNotification": "알림 없이 모든 매크로 시작", + "textFind": "검색", + "textFindAndReplace": "찾기 및 바꾸기", + "textFindAndReplaceAll": "모두 바꾸기", + "textHelp": "도움말", + "textHighlight": "결과 강조 표시", + "textInch": "인치", + "textLastModified": "최종 편집", + "textLastModifiedBy": "최종 편집자", + "textLoading": "로딩중...", + "textLocation": "위치", + "textMacrosSettings": "매크로 설정", + "textNoTextFound": "텍스트를 찾을 수 없습니다", + "textOwner": "소유자", "textPoint": "Point", - "textPoweredBy": "Powered By", - "textPresentationInfo": "Presentation Info", - "textPresentationSettings": "Presentation Settings", - "textPresentationTitle": "Presentation Title", - "textPrint": "Print", - "textReplace": "Replace", - "textReplaceAll": "Replace All", - "textSearch": "Search", - "textSettings": "Settings", - "textShowNotification": "Show Notification", - "textSlideSize": "Slide Size", - "textSpellcheck": "Spell Checking", - "textSubject": "Subject", - "textTel": "tel:", - "textTitle": "Title", - "textUnitOfMeasurement": "Unit Of Measurement", - "textUploaded": "Uploaded", - "textVersion": "Version", - "txtScheme1": "Office", - "txtScheme10": "Median", - "txtScheme11": "Metro", - "txtScheme12": "Module", - "txtScheme13": "Opulent", - "txtScheme14": "Oriel", - "txtScheme15": "Origin", - "txtScheme16": "Paper", - "txtScheme17": "Solstice", - "txtScheme18": "Technic", - "txtScheme19": "Trek", - "txtScheme2": "Grayscale", - "txtScheme20": "Urban", - "txtScheme21": "Verve", - "txtScheme22": "New Office", - "txtScheme3": "Apex", - "txtScheme4": "Aspect", - "txtScheme5": "Civic", - "txtScheme6": "Concourse", - "txtScheme7": "Equity", - "txtScheme8": "Flow", - "txtScheme9": "Foundry" + "textPoweredBy": "기술 지원", + "textPresentationInfo": "프레젠테이션 정보", + "textPresentationSettings": "프레젠테이션 설정", + "textPresentationTitle": "프레젠테이션 제목", + "textPrint": "인쇄", + "textReplace": "바꾸기", + "textReplaceAll": "모두 바꾸기", + "textSearch": "검색", + "textSettings": "설정", + "textShowNotification": "알림 표시", + "textSlideSize": "슬라이드 크기", + "textSpellcheck": "맞춤법 검사", + "textSubject": "제목", + "textTel": "전화:", + "textTitle": "제목", + "textUnitOfMeasurement": "측정 단위", + "textUploaded": "업로드 되었습니다", + "textVersion": "버전", + "txtScheme1": "사무실", + "txtScheme10": "중앙값", + "txtScheme11": "매트로", + "txtScheme12": "모듈", + "txtScheme13": "호화 로움", + "txtScheme14": "외벽창", + "txtScheme15": "원본", + "txtScheme16": "용지", + "txtScheme17": "지점", + "txtScheme18": "기술", + "txtScheme19": "트레킹", + "txtScheme2": "그레이스케일", + "txtScheme20": "도시", + "txtScheme21": "네온", + "txtScheme22": "신규 오피스", + "txtScheme3": "꼭지점", + "txtScheme4": "화면", + "txtScheme5": "시민", + "txtScheme6": "광장", + "txtScheme7": "같음", + "txtScheme8": "플로우", + "txtScheme9": "발견" } } } \ No newline at end of file diff --git a/apps/presentationeditor/mobile/locale/lo.json b/apps/presentationeditor/mobile/locale/lo.json index 737efc64f..d6c71ddf5 100644 --- a/apps/presentationeditor/mobile/locale/lo.json +++ b/apps/presentationeditor/mobile/locale/lo.json @@ -382,7 +382,8 @@ "textZoom": "Zoom", "textZoomIn": "Zoom In", "textZoomOut": "Zoom Out", - "textZoomRotate": "Zoom and Rotate" + "textZoomRotate": "Zoom and Rotate", + "textTransitions": "Transitions" }, "Settings": { "mniSlideStandard": "Standard (4:3)", diff --git a/apps/presentationeditor/mobile/locale/lv.json b/apps/presentationeditor/mobile/locale/lv.json index 737efc64f..d6c71ddf5 100644 --- a/apps/presentationeditor/mobile/locale/lv.json +++ b/apps/presentationeditor/mobile/locale/lv.json @@ -382,7 +382,8 @@ "textZoom": "Zoom", "textZoomIn": "Zoom In", "textZoomOut": "Zoom Out", - "textZoomRotate": "Zoom and Rotate" + "textZoomRotate": "Zoom and Rotate", + "textTransitions": "Transitions" }, "Settings": { "mniSlideStandard": "Standard (4:3)", diff --git a/apps/presentationeditor/mobile/locale/nb.json b/apps/presentationeditor/mobile/locale/nb.json index 737efc64f..d6c71ddf5 100644 --- a/apps/presentationeditor/mobile/locale/nb.json +++ b/apps/presentationeditor/mobile/locale/nb.json @@ -382,7 +382,8 @@ "textZoom": "Zoom", "textZoomIn": "Zoom In", "textZoomOut": "Zoom Out", - "textZoomRotate": "Zoom and Rotate" + "textZoomRotate": "Zoom and Rotate", + "textTransitions": "Transitions" }, "Settings": { "mniSlideStandard": "Standard (4:3)", diff --git a/apps/presentationeditor/mobile/locale/nl.json b/apps/presentationeditor/mobile/locale/nl.json index ab724708b..8664f1f8f 100644 --- a/apps/presentationeditor/mobile/locale/nl.json +++ b/apps/presentationeditor/mobile/locale/nl.json @@ -382,7 +382,8 @@ "textZoom": "Zoomen", "textZoomIn": "Inzoomen", "textZoomOut": "Uitzoomen", - "textZoomRotate": "Zoomen en draaien" + "textZoomRotate": "Zoomen en draaien", + "textTransitions": "Transitions" }, "Settings": { "mniSlideStandard": "Standaard (4:3)", diff --git a/apps/presentationeditor/mobile/locale/pl.json b/apps/presentationeditor/mobile/locale/pl.json index 737efc64f..d6c71ddf5 100644 --- a/apps/presentationeditor/mobile/locale/pl.json +++ b/apps/presentationeditor/mobile/locale/pl.json @@ -382,7 +382,8 @@ "textZoom": "Zoom", "textZoomIn": "Zoom In", "textZoomOut": "Zoom Out", - "textZoomRotate": "Zoom and Rotate" + "textZoomRotate": "Zoom and Rotate", + "textTransitions": "Transitions" }, "Settings": { "mniSlideStandard": "Standard (4:3)", diff --git a/apps/presentationeditor/mobile/locale/pt.json b/apps/presentationeditor/mobile/locale/pt.json index 7ffd645ff..aa6ebb34e 100644 --- a/apps/presentationeditor/mobile/locale/pt.json +++ b/apps/presentationeditor/mobile/locale/pt.json @@ -382,7 +382,8 @@ "textZoom": "Zoom", "textZoomIn": "Ampliar", "textZoomOut": "Reduzir", - "textZoomRotate": "Zoom e Rotação" + "textZoomRotate": "Zoom e Rotação", + "textTransitions": "Transitions" }, "Settings": { "mniSlideStandard": "Padrão (4:3)", diff --git a/apps/presentationeditor/mobile/locale/ro.json b/apps/presentationeditor/mobile/locale/ro.json index 16cd92870..8fb5eb432 100644 --- a/apps/presentationeditor/mobile/locale/ro.json +++ b/apps/presentationeditor/mobile/locale/ro.json @@ -117,9 +117,9 @@ "warnLicenseExp": "Licența dvs. a expirat. Licența urmează să fie reînnoită iar pagina reîmprospătată.", "warnLicenseLimitedNoAccess": "Licența dvs. a expirat. Nu aveți acces la funcții de editare a documentului.Contactați administratorul dvs. de rețeea.", "warnLicenseLimitedRenewed": "Licență urmează să fie reînnoită. Funcțiile de editare sunt cu acces limitat. Pentru a obține acces nelimitat, contactați administratorul dvs. de rețea.", - "warnLicenseUsersExceeded": "Ați atins numărul maxim de utilizatori al %1 editoare. Pentru detalii, contactați administratorul dvs.", + "warnLicenseUsersExceeded": "Ați atins numărul maxim de utilizatori ai %1 editoare. Pentru detalii, contactați administratorul dvs.", "warnNoLicense": "Ați atins numărul maxim de conexiuni simultane la %1 de editoare. Documentul este disponibil numai pentru vizualizare. Contactați %1 Departamentul de Vânzări pentru acordarea condițiilor personale de actualizare.", - "warnNoLicenseUsers": "Ați atins numărul maxim de utilizatori al %1 editoare. Contactați Grup Vânzări %1 pentru acordarea condițiilor personale de licențiere.", + "warnNoLicenseUsers": "Ați atins numărul maxim de utilizatori ai %1 editoare. Contactați Grup Vânzări %1 pentru acordarea condițiilor personale de licențiere.", "warnProcessRightsChange": "Nu aveți permisiunea de editare pentru fișier." } }, @@ -382,7 +382,8 @@ "textZoom": "Zoom", "textZoomIn": "Mărire", "textZoomOut": "Micșorare", - "textZoomRotate": "Zoom și rotire" + "textZoomRotate": "Zoom și rotire", + "textTransitions": "Transitions" }, "Settings": { "mniSlideStandard": "Standard (4:3)", diff --git a/apps/presentationeditor/mobile/locale/ru.json b/apps/presentationeditor/mobile/locale/ru.json index 18c95443c..9e021687e 100644 --- a/apps/presentationeditor/mobile/locale/ru.json +++ b/apps/presentationeditor/mobile/locale/ru.json @@ -383,7 +383,8 @@ "textZoom": "Масштабирование", "textZoomIn": "Увеличение", "textZoomOut": "Уменьшение", - "textZoomRotate": "Увеличение с поворотом" + "textZoomRotate": "Увеличение с поворотом", + "textTransitions": "Transitions" }, "Settings": { "mniSlideStandard": "Стандартный (4:3)", diff --git a/apps/presentationeditor/mobile/locale/sk.json b/apps/presentationeditor/mobile/locale/sk.json index 737efc64f..d6c71ddf5 100644 --- a/apps/presentationeditor/mobile/locale/sk.json +++ b/apps/presentationeditor/mobile/locale/sk.json @@ -382,7 +382,8 @@ "textZoom": "Zoom", "textZoomIn": "Zoom In", "textZoomOut": "Zoom Out", - "textZoomRotate": "Zoom and Rotate" + "textZoomRotate": "Zoom and Rotate", + "textTransitions": "Transitions" }, "Settings": { "mniSlideStandard": "Standard (4:3)", diff --git a/apps/presentationeditor/mobile/locale/sl.json b/apps/presentationeditor/mobile/locale/sl.json index 737efc64f..d6c71ddf5 100644 --- a/apps/presentationeditor/mobile/locale/sl.json +++ b/apps/presentationeditor/mobile/locale/sl.json @@ -382,7 +382,8 @@ "textZoom": "Zoom", "textZoomIn": "Zoom In", "textZoomOut": "Zoom Out", - "textZoomRotate": "Zoom and Rotate" + "textZoomRotate": "Zoom and Rotate", + "textTransitions": "Transitions" }, "Settings": { "mniSlideStandard": "Standard (4:3)", diff --git a/apps/presentationeditor/mobile/locale/tr.json b/apps/presentationeditor/mobile/locale/tr.json index 737efc64f..d6c71ddf5 100644 --- a/apps/presentationeditor/mobile/locale/tr.json +++ b/apps/presentationeditor/mobile/locale/tr.json @@ -382,7 +382,8 @@ "textZoom": "Zoom", "textZoomIn": "Zoom In", "textZoomOut": "Zoom Out", - "textZoomRotate": "Zoom and Rotate" + "textZoomRotate": "Zoom and Rotate", + "textTransitions": "Transitions" }, "Settings": { "mniSlideStandard": "Standard (4:3)", diff --git a/apps/presentationeditor/mobile/locale/uk.json b/apps/presentationeditor/mobile/locale/uk.json index 737efc64f..d6c71ddf5 100644 --- a/apps/presentationeditor/mobile/locale/uk.json +++ b/apps/presentationeditor/mobile/locale/uk.json @@ -382,7 +382,8 @@ "textZoom": "Zoom", "textZoomIn": "Zoom In", "textZoomOut": "Zoom Out", - "textZoomRotate": "Zoom and Rotate" + "textZoomRotate": "Zoom and Rotate", + "textTransitions": "Transitions" }, "Settings": { "mniSlideStandard": "Standard (4:3)", diff --git a/apps/presentationeditor/mobile/locale/vi.json b/apps/presentationeditor/mobile/locale/vi.json index 737efc64f..d6c71ddf5 100644 --- a/apps/presentationeditor/mobile/locale/vi.json +++ b/apps/presentationeditor/mobile/locale/vi.json @@ -382,7 +382,8 @@ "textZoom": "Zoom", "textZoomIn": "Zoom In", "textZoomOut": "Zoom Out", - "textZoomRotate": "Zoom and Rotate" + "textZoomRotate": "Zoom and Rotate", + "textTransitions": "Transitions" }, "Settings": { "mniSlideStandard": "Standard (4:3)", diff --git a/apps/presentationeditor/mobile/locale/zh.json b/apps/presentationeditor/mobile/locale/zh.json index baa43b29b..c4ec9e4b4 100644 --- a/apps/presentationeditor/mobile/locale/zh.json +++ b/apps/presentationeditor/mobile/locale/zh.json @@ -27,11 +27,11 @@ "textMessageDeleteComment": "您确定要删除此批注吗?", "textMessageDeleteReply": "你确定要删除这一回复吗?", "textNoComments": "此文档不包含批注", + "textOk": "好", "textReopen": "重新打开", "textResolve": "解决", "textTryUndoRedo": "快速共同编辑模式下,撤销/重做功能被禁用。", - "textUsers": "用户", - "textOk": "Ok" + "textUsers": "用户" }, "ThemeColorPalette": { "textCustomColors": "自定义颜色", @@ -72,6 +72,8 @@ "notcriticalErrorTitle": "警告", "SDK": { "Chart": "图表", + "Click to add first slide": "点这里添加首张幻灯片", + "Click to add notes": "点这里添加注释", "ClipArt": "剪贴画", "Date and time": "日期和时间", "Diagram": "图", @@ -79,7 +81,9 @@ "Footer": "页脚", "Header": "页眉", "Image": "图片", + "Loading": "载入中", "Media": "媒体", + "None": "没有", "Picture": "图片", "Series": "系列", "Slide number": "幻灯片编号", @@ -89,11 +93,7 @@ "Table": "表格", "X Axis": "X 轴 XAS", "Y Axis": "Y 轴", - "Your text here": "你的文本在此", - "Click to add first slide": "Click to add first slide", - "Click to add notes": "Click to add notes", - "Loading": "Loading", - "None": "None" + "Your text here": "你的文本在此" }, "textAnonymous": "匿名", "textBuyNow": "访问网站", @@ -140,6 +140,7 @@ "errorFileSizeExceed": "文件大小超出服务器限制。
请联系你的管理员。", "errorKeyEncrypt": "未知密钥描述", "errorKeyExpire": "密钥过期", + "errorLoadingFont": "字体未加载。
请与文档服务器管理员联系。", "errorSessionAbsolute": "该文件编辑窗口已过期。请刷新该页。", "errorSessionIdle": "该文档已经有一段时间没有编辑了。请刷新该页。", "errorSessionToken": "与服务器的链接被打断。请刷新该页。", @@ -158,8 +159,7 @@ "unknownErrorText": "未知错误。", "uploadImageExtMessage": "未知图像格式。", "uploadImageFileCountMessage": "没有图片上传", - "uploadImageSizeMessage": "超过了最大图片大小", - "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." + "uploadImageSizeMessage": "超过了最大图片大小" }, "LongActions": { "applyChangesTextText": "数据加载中…", @@ -264,6 +264,7 @@ "textBottomLeft": "左下", "textBottomRight": "右下", "textBringToForeground": "放到最上面", + "textBullets": "着重号", "textBulletsAndNumbers": "项目符号与编号", "textCaseSensitive": "区分大小写", "textCellMargins": "单元格边距", @@ -327,6 +328,7 @@ "textNoStyles": "这个类型的表格没有对应的样式设定。", "textNoTextFound": "文本没找到", "textNotUrl": "该字段应为“http://www.example.com”格式的URL", + "textNumbers": "数字", "textOpacity": "不透明度", "textOptions": "选项", "textPictureFromLibrary": "图库", @@ -381,8 +383,7 @@ "textZoomIn": "放大", "textZoomOut": "缩小", "textZoomRotate": "缩放并旋转", - "textBullets": "Bullets", - "textNumbers": "Numbers" + "textTransitions": "Transitions" }, "Settings": { "mniSlideStandard": "标准(4:3)", @@ -440,28 +441,28 @@ "textUnitOfMeasurement": "计量单位", "textUploaded": "已上传", "textVersion": "版本", - "txtScheme1": "Office", - "txtScheme10": "Median", - "txtScheme11": "Metro", - "txtScheme12": "Module", - "txtScheme13": "Opulent", - "txtScheme14": "Oriel", - "txtScheme15": "Origin", - "txtScheme16": "Paper", - "txtScheme17": "Solstice", - "txtScheme18": "Technic", - "txtScheme19": "Trek", - "txtScheme2": "Grayscale", - "txtScheme20": "Urban", - "txtScheme21": "Verve", - "txtScheme22": "New Office", - "txtScheme3": "Apex", - "txtScheme4": "Aspect", - "txtScheme5": "Civic", - "txtScheme6": "Concourse", - "txtScheme7": "Equity", - "txtScheme8": "Flow", - "txtScheme9": "Foundry" + "txtScheme1": "办公室", + "txtScheme10": "中位数", + "txtScheme11": "地铁", + "txtScheme12": "模块", + "txtScheme13": "富裕的", + "txtScheme14": "奥丽尔", + "txtScheme15": "原来的", + "txtScheme16": "纸", + "txtScheme17": "冬至", + "txtScheme18": "技术", + "txtScheme19": "行进", + "txtScheme2": "灰度", + "txtScheme20": "城市的", + "txtScheme21": "气势", + "txtScheme22": "新的 Office", + "txtScheme3": "顶点", + "txtScheme4": "方面", + "txtScheme5": "公民", + "txtScheme6": "中央大厅", + "txtScheme7": "公平", + "txtScheme8": "流动", + "txtScheme9": "发现" } } } \ No newline at end of file diff --git a/apps/presentationeditor/mobile/src/view/Toolbar.jsx b/apps/presentationeditor/mobile/src/view/Toolbar.jsx index cd479b3a3..df37c212f 100644 --- a/apps/presentationeditor/mobile/src/view/Toolbar.jsx +++ b/apps/presentationeditor/mobile/src/view/Toolbar.jsx @@ -34,7 +34,7 @@ const ToolbarView = props => { onEditClick: () => props.openOptions('edit'), onAddClick: () => props.openOptions('add') })} - { Device.phone ? null : } + { Device.phone ? null : } {props.displayCollaboration && window.matchMedia("(min-width: 375px)").matches ? props.openOptions('coauth')}> : null} props.openOptions('settings')}> diff --git a/apps/presentationeditor/mobile/src/view/edit/EditImage.jsx b/apps/presentationeditor/mobile/src/view/edit/EditImage.jsx index fdc0f3ece..6c891bdfc 100644 --- a/apps/presentationeditor/mobile/src/view/edit/EditImage.jsx +++ b/apps/presentationeditor/mobile/src/view/edit/EditImage.jsx @@ -149,12 +149,12 @@ const PageReplace = props => { {props.onReplaceByFile()}}> - + - + diff --git a/apps/presentationeditor/mobile/src/view/edit/EditShape.jsx b/apps/presentationeditor/mobile/src/view/edit/EditShape.jsx index 39a55a8b4..d476f12cd 100644 --- a/apps/presentationeditor/mobile/src/view/edit/EditShape.jsx +++ b/apps/presentationeditor/mobile/src/view/edit/EditShape.jsx @@ -12,6 +12,12 @@ const EditShape = props => { const shapeObject = storeFocusObjects.shapeObject; const canFill = shapeObject && shapeObject.get_CanFill(); + const shapeType = shapeObject.asc_getType(); + const hideChangeType = shapeObject.get_FromChart() || shapeType=='line' || shapeType=='bentConnector2' || shapeType=='bentConnector3' + || shapeType=='bentConnector4' || shapeType=='bentConnector5' || shapeType=='curvedConnector2' + || shapeType=='curvedConnector3' || shapeType=='curvedConnector4' || shapeType=='curvedConnector5' + || shapeType=='straightConnector1'; + let disableRemove = !!props.storeFocusObjects.paragraphObject; return ( @@ -30,9 +36,12 @@ const EditShape = props => { onBorderColor: props.onBorderColor }}> } - + { !hideChangeType && + + } + diff --git a/apps/presentationeditor/mobile/src/view/edit/EditSlide.jsx b/apps/presentationeditor/mobile/src/view/edit/EditSlide.jsx index 60acd7b49..a07a9c4bc 100644 --- a/apps/presentationeditor/mobile/src/view/edit/EditSlide.jsx +++ b/apps/presentationeditor/mobile/src/view/edit/EditSlide.jsx @@ -19,7 +19,7 @@ const EditSlide = props => { - { return ( - + {Device.phone && @@ -296,7 +296,7 @@ const PageTransition = props => { onRangeChanged={(value) => {props.onDelay(value)}} >
-
+
{stateRange + ' ' + _t.textSec}
diff --git a/apps/presentationeditor/mobile/src/view/settings/PresentationSettings.jsx b/apps/presentationeditor/mobile/src/view/settings/PresentationSettings.jsx index 0f5b4d39d..31f4d7f9b 100644 --- a/apps/presentationeditor/mobile/src/view/settings/PresentationSettings.jsx +++ b/apps/presentationeditor/mobile/src/view/settings/PresentationSettings.jsx @@ -56,10 +56,8 @@ const PagePresentationColorSchemes = props => { return ( { - if(index !== curScheme) { - setScheme(index); - props.onColorSchemeChange(index); - }; + setScheme(index); + setTimeout(() => props.onColorSchemeChange(index), 10); }}>
diff --git a/apps/presentationeditor/mobile/src/view/settings/Settings.jsx b/apps/presentationeditor/mobile/src/view/settings/Settings.jsx index 6a3704aea..744f34910 100644 --- a/apps/presentationeditor/mobile/src/view/settings/Settings.jsx +++ b/apps/presentationeditor/mobile/src/view/settings/Settings.jsx @@ -57,9 +57,12 @@ const routes = [ ]; -const SettingsList = inject("storeAppOptions")(observer(props => { +const SettingsList = inject("storeAppOptions", "storeToolbarSettings")(observer(props => { const { t } = useTranslation(); const _t = t('View.Settings', {returnObjects: true}); + const storeToolbarSettings = props.storeToolbarSettings; + const disabledPreview = storeToolbarSettings.countPages <= 0; + const navbar = {!props.inPopover && {_t.textDone}} ; @@ -121,7 +124,7 @@ const SettingsList = inject("storeAppOptions")(observer(props => { {navbar} {!props.inPopover && - + } @@ -141,7 +144,7 @@ const SettingsList = inject("storeAppOptions")(observer(props => { - + diff --git a/apps/spreadsheeteditor/embed/js/ApplicationController.js b/apps/spreadsheeteditor/embed/js/ApplicationController.js index 395f6afb5..33464baf1 100644 --- a/apps/spreadsheeteditor/embed/js/ApplicationController.js +++ b/apps/spreadsheeteditor/embed/js/ApplicationController.js @@ -37,6 +37,7 @@ SSE.ApplicationController = new(function(){ docConfig = {}, embedConfig = {}, permissions = {}, + appOptions = {}, maxPages = 0, created = false, iframePrint = null; @@ -351,23 +352,8 @@ SSE.ApplicationController = new(function(){ } function onEditorPermissions(params) { - if ( (params.asc_getLicenseType() === Asc.c_oLicenseResult.Success) && (typeof config.customization == 'object') && - config.customization && config.customization.logo ) { - - var logo = $('#header-logo'); - if (config.customization.logo.image || config.customization.logo.imageEmbedded) { - logo.html(''); - logo.css({'background-image': 'none', width: 'auto', height: 'auto'}); - - config.customization.logo.imageEmbedded && console.log("Obsolete: The 'imageEmbedded' parameter of the 'customization.logo' section is deprecated. Please use 'image' parameter instead."); - } - - if (config.customization.logo.url) { - logo.attr('href', config.customization.logo.url); - } else if (config.customization.logo.url!==undefined) { - logo.removeAttr('href');logo.removeAttr('target'); - } - } + appOptions.canBranding = params.asc_getCustomization(); + appOptions.canBranding && setBranding(config.customization); var $parent = labelDocName.parent(); var _left_width = $parent.position().left, @@ -610,6 +596,24 @@ SSE.ApplicationController = new(function(){ function onBeforeUnload () { common.localStorage.save(); } + + function setBranding(value) { + if ( value && value.logo) { + var logo = $('#header-logo'); + if (value.logo.image || value.logo.imageEmbedded) { + logo.html(''); + logo.css({'background-image': 'none', width: 'auto', height: 'auto'}); + + value.logo.imageEmbedded && console.log("Obsolete: The 'imageEmbedded' parameter of the 'customization.logo' section is deprecated. Please use 'image' parameter instead."); + } + + if (value.logo.url) { + logo.attr('href', value.logo.url); + } else if (value.logo.url!==undefined) { + logo.removeAttr('href');logo.removeAttr('target'); + } + } + } // Helpers // ------------------------- diff --git a/apps/spreadsheeteditor/main/app/controller/LeftMenu.js b/apps/spreadsheeteditor/main/app/controller/LeftMenu.js index ec0ca3b6e..bb426514a 100644 --- a/apps/spreadsheeteditor/main/app/controller/LeftMenu.js +++ b/apps/spreadsheeteditor/main/app/controller/LeftMenu.js @@ -551,7 +551,7 @@ define([ /** coauthoring end **/ onQuerySearch: function(d, w, opts) { - if (opts.textsearch && opts.textsearch.length) { + // if (opts.textsearch && opts.textsearch.length) { var options = this.dlgSearch.findOptions; options.asc_setFindWhat(opts.textsearch); options.asc_setScanForward(d != 'back'); @@ -570,11 +570,11 @@ define([ } }); } - } + // } }, onQueryReplace: function(w, opts) { - if (!_.isEmpty(opts.textsearch)) { + // if (!_.isEmpty(opts.textsearch)) { this.api.isReplaceAll = false; var options = this.dlgSearch.findOptions; @@ -588,11 +588,11 @@ define([ options.asc_setIsReplaceAll(false); this.api.asc_replaceText(options); - } + // } }, onQueryReplaceAll: function(w, opts) { - if (!_.isEmpty(opts.textsearch)) { + // if (!_.isEmpty(opts.textsearch)) { this.api.isReplaceAll = true; var options = this.dlgSearch.findOptions; @@ -606,7 +606,7 @@ define([ options.asc_setIsReplaceAll(true); this.api.asc_replaceText(options); - } + // } }, onSearchHighlight: function(w, highlight) { diff --git a/apps/spreadsheeteditor/main/app/controller/Viewport.js b/apps/spreadsheeteditor/main/app/controller/Viewport.js index 16dfa9b34..10f664432 100644 --- a/apps/spreadsheeteditor/main/app/controller/Viewport.js +++ b/apps/spreadsheeteditor/main/app/controller/Viewport.js @@ -306,7 +306,7 @@ define([ me.header.mnuitemHideHeadings.hide(); me.header.mnuitemHideGridlines.hide(); me.header.mnuitemFreezePanes.hide(); - menu.items[5].hide(); + menu.items[6].hide(); if (!config.canViewComments) { // show advanced settings for editing and commenting mode // mnuitemAdvSettings.hide(); // menu.items[9].hide(); diff --git a/apps/spreadsheeteditor/main/app/view/FormatRulesEditDlg.js b/apps/spreadsheeteditor/main/app/view/FormatRulesEditDlg.js index 4172db974..8d61decb8 100644 --- a/apps/spreadsheeteditor/main/app/view/FormatRulesEditDlg.js +++ b/apps/spreadsheeteditor/main/app/view/FormatRulesEditDlg.js @@ -320,11 +320,11 @@ define([ 'text!spreadsheeteditor/main/app/template/FormatRulesEditDlg.template', fontColor: preset[0], fillColor: preset[1], borderColor: preset[2], - styleObj: {'background-color': preset[1] ? '#' + preset[1] : 'transparent', color: preset[0] ? '#' + preset[0] : 'transparent', border: preset[2] ? '1px solid #' + preset[2] : '', 'text-align': 'center' } + styleObj: {'background-color': preset[1] ? '#' + preset[1] : '#ffffff', color: preset[0] ? '#' + preset[0] : 'transparent', border: preset[2] ? '1px solid #' + preset[2] : '', 'text-align': 'center' } }, caption: preset[0] ? Common.define.conditionalData.exampleText : '', template: presetTemplate, - styleStr: 'background-color: ' + (preset[1] ? '#' + preset[1] : 'transparent') + ';color:' + (preset[0] ? '#' + preset[0] : 'transparent') + ';' + (preset[2] ? 'border: 1px solid #' + preset[2] + ';' : '' + 'text-align: center;') + styleStr: 'background-color: ' + (preset[1] ? '#' + preset[1] : '#ffffff') + ';color:' + (preset[0] ? '#' + preset[0] : 'transparent') + ';' + (preset[2] ? 'border: 1px solid #' + preset[2] + ';' : '' + 'text-align: center;') }); }); diff --git a/apps/spreadsheeteditor/main/app/view/Statusbar.js b/apps/spreadsheeteditor/main/app/view/Statusbar.js index b9038e94a..699080041 100644 --- a/apps/spreadsheeteditor/main/app/view/Statusbar.js +++ b/apps/spreadsheeteditor/main/app/view/Statusbar.js @@ -513,7 +513,8 @@ define([ setMode: function(mode) { this.mode = _.extend({}, this.mode, mode); // this.$el.find('.el-edit')[mode.isEdit?'show':'hide'](); - this.btnAddWorksheet.setVisible(this.mode.isEdit); + //this.btnAddWorksheet.setVisible(this.mode.isEdit); + $('#status-addtabs-box')[this.mode.isEdit ? 'show' : 'hide'](); this.btnAddWorksheet.setDisabled(this.mode.isDisconnected || this.api && (this.api.asc_isWorkbookLocked() || this.api.isCellEdited) || this.rangeSelectionMode!=Asc.c_oAscSelectionDialogType.None); this.updateTabbarBorders(); }, @@ -600,7 +601,11 @@ define([ this.tabbar.setTabVisible(sindex); this.btnAddWorksheet.setDisabled(me.mode.isDisconnected || me.api.asc_isWorkbookLocked() || me.api.asc_isProtectedWorkbook() || me.api.isCellEdited); - this.tabbar.addDataHint(_.findIndex(items, function (item) { return item.sheetindex === sindex; })); + if (this.mode.isEdit) { + this.tabbar.addDataHint(_.findIndex(items, function (item) { + return item.sheetindex === sindex; + })); + } $('#status-label-zoom').text(Common.Utils.String.format(this.zoomText, Math.floor((this.api.asc_getZoom() +.005)*100))); @@ -687,7 +692,9 @@ define([ this.tabbar.setTabVisible(index); } - this.tabbar.addDataHint(index); + if (this.mode.isEdit) { + this.tabbar.addDataHint(index); + } this.fireEvent('sheet:changed', [this, tab.sheetindex]); this.fireEvent('sheet:updateColors', [true]); diff --git a/apps/spreadsheeteditor/main/app/view/Toolbar.js b/apps/spreadsheeteditor/main/app/view/Toolbar.js index 97c8f6dac..402e77cd1 100644 --- a/apps/spreadsheeteditor/main/app/view/Toolbar.js +++ b/apps/spreadsheeteditor/main/app/view/Toolbar.js @@ -917,10 +917,10 @@ define([ if (menu.cmpEl) { var itemEl = $(cmp.cmpEl.find('.dataview.inner .style').get(0)).parent(); var itemMargin = /*parseInt($(itemEl.get(0)).parent().css('margin-right'))*/-1; - Common.Utils.applicationPixelRatio() > 1 && Common.Utils.applicationPixelRatio() < 2 && (itemMargin = itemMargin + 1/Common.Utils.applicationPixelRatio()); - var itemWidth = itemEl.is(':visible') ? parseInt(itemEl.css('width')) : - (cmp.itemWidth + parseInt(itemEl.css('padding-left')) + parseInt(itemEl.css('padding-right')) + - parseInt(itemEl.css('border-left-width')) + parseInt(itemEl.css('border-right-width'))); + Common.Utils.applicationPixelRatio() > 1 && Common.Utils.applicationPixelRatio() < 2 && (itemMargin = -1/Common.Utils.applicationPixelRatio()); + var itemWidth = itemEl.is(':visible') ? parseFloat(itemEl.css('width')) : + (cmp.itemWidth + parseFloat(itemEl.css('padding-left')) + parseFloat(itemEl.css('padding-right')) + + parseFloat(itemEl.css('border-left-width')) + parseFloat(itemEl.css('border-right-width'))); var minCount = cmp.menuPicker.store.length >= minMenuColumn ? minMenuColumn : cmp.menuPicker.store.length, columnCount = Math.min(cmp.menuPicker.store.length, Math.round($('.dataview', $(cmp.fieldPicker.el)).width() / (itemMargin + itemWidth) + 0.5)); diff --git a/apps/spreadsheeteditor/main/index.html b/apps/spreadsheeteditor/main/index.html index 936febcb3..c0f50cf8d 100644 --- a/apps/spreadsheeteditor/main/index.html +++ b/apps/spreadsheeteditor/main/index.html @@ -262,7 +262,8 @@ var params = getUrlParams(), lang = (params["lang"] || 'en').split(/[\-\_]/)[0], - logo = params["headerlogo"] ? encodeUrlParam(params["headerlogo"]) : null; + logo = params["headerlogo"] ? encodeUrlParam(params["headerlogo"]) : null, + logoDark = params["headerlogodark"] ? encodeUrlParam(params["headerlogodark"]) : null; window.frameEditorId = params["frameEditorId"]; window.parentOrigin = params["parentOrigin"]; @@ -334,7 +335,7 @@ } else { var elem = document.querySelector('.loading-logo img'); if (elem) { - logo && (elem.setAttribute('src', logo)); + (logo || logoDark) && elem.setAttribute('src', /theme-dark/.test(document.body.className) ? logoDark || logo : logo || logoDark); elem.style.opacity = 1; } } diff --git a/apps/spreadsheeteditor/main/index.html.deploy b/apps/spreadsheeteditor/main/index.html.deploy index 2e9d6fab0..609a47f39 100644 --- a/apps/spreadsheeteditor/main/index.html.deploy +++ b/apps/spreadsheeteditor/main/index.html.deploy @@ -247,7 +247,8 @@ var params = getUrlParams(), lang = (params["lang"] || 'en').split(/[\-\_]/)[0], - logo = params["headerlogo"] ? encodeUrlParam(params["headerlogo"]) : null; + logo = params["headerlogo"] ? encodeUrlParam(params["headerlogo"]) : null, + logoDark = params["headerlogodark"] ? encodeUrlParam(params["headerlogodark"]) : null; window.frameEditorId = params["frameEditorId"]; window.parentOrigin = params["parentOrigin"]; @@ -328,7 +329,7 @@ } else { var elem = document.querySelector('.loading-logo img'); if (elem) { - logo && (elem.setAttribute('src', logo)); + (logo || logoDark) && elem.setAttribute('src', /theme-dark/.test(document.body.className) ? logoDark || logo : logo || logoDark); elem.style.opacity = 1; } } diff --git a/apps/spreadsheeteditor/mobile/locale/be.json b/apps/spreadsheeteditor/mobile/locale/be.json index be1f2ab84..9a557f4dd 100644 --- a/apps/spreadsheeteditor/mobile/locale/be.json +++ b/apps/spreadsheeteditor/mobile/locale/be.json @@ -214,7 +214,7 @@ "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 it until the connection is restored and the page is reloaded.", "errorWrongBracketsCount": "An error in the formula.
Wrong number of brackets.", - "errorWrongOperator": "An error in the entered formula. The wrong operator is used.
Correct the error or use the Esc button to cancel the formula editing.", + "errorWrongOperator": "An error in the entered formula. Wrong operator is used.
Please correct the error.", "notcriticalErrorTitle": "Warning", "openErrorText": "An error has occurred while opening the file", "pastInMergeAreaError": "Cannot change a part of a merged cell", @@ -224,7 +224,8 @@ "uploadImageExtMessage": "Unknown image format.", "uploadImageFileCountMessage": "No images uploaded.", "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.", - "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." + "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator.", + "errorChangeOnProtectedSheet": "The cell or chart you are trying to change is on a protected sheet. To make a change, unprotect the sheet. You might be requested to enter a password." }, "LongActions": { "applyChangesTextText": "Loading data...", diff --git a/apps/spreadsheeteditor/mobile/locale/bg.json b/apps/spreadsheeteditor/mobile/locale/bg.json index be1f2ab84..9a557f4dd 100644 --- a/apps/spreadsheeteditor/mobile/locale/bg.json +++ b/apps/spreadsheeteditor/mobile/locale/bg.json @@ -214,7 +214,7 @@ "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 it until the connection is restored and the page is reloaded.", "errorWrongBracketsCount": "An error in the formula.
Wrong number of brackets.", - "errorWrongOperator": "An error in the entered formula. The wrong operator is used.
Correct the error or use the Esc button to cancel the formula editing.", + "errorWrongOperator": "An error in the entered formula. Wrong operator is used.
Please correct the error.", "notcriticalErrorTitle": "Warning", "openErrorText": "An error has occurred while opening the file", "pastInMergeAreaError": "Cannot change a part of a merged cell", @@ -224,7 +224,8 @@ "uploadImageExtMessage": "Unknown image format.", "uploadImageFileCountMessage": "No images uploaded.", "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.", - "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." + "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator.", + "errorChangeOnProtectedSheet": "The cell or chart you are trying to change is on a protected sheet. To make a change, unprotect the sheet. You might be requested to enter a password." }, "LongActions": { "applyChangesTextText": "Loading data...", diff --git a/apps/spreadsheeteditor/mobile/locale/ca.json b/apps/spreadsheeteditor/mobile/locale/ca.json index ff16b3ba4..f6353a067 100644 --- a/apps/spreadsheeteditor/mobile/locale/ca.json +++ b/apps/spreadsheeteditor/mobile/locale/ca.json @@ -73,7 +73,7 @@ "leavePageText": "Teniu canvis no desats en aquest document. Cliqueu a \"Mantingueu-vos en aquesta pàgina\" per esperar al desament automàtic. Cliqueu a \"Deixa aquesta pàgina\" per descartar tots els canvis no desats.", "notcriticalErrorTitle": "Advertiment", "SDK": { - "txtAccent": "Accent", + "txtAccent": "Èmfasi", "txtAll": "(Tots)", "txtArt": "El vostre text aquí", "txtBlank": "(en blanc)", @@ -169,6 +169,7 @@ "errorAutoFilterHiddenRange": "Aquesta operació no es pot fer perquè l'àrea conté cel·les filtrades.
Mostreu els elements filtrats i torneu-ho a provar.", "errorBadImageUrl": "L'URL de la imatge no és correcta", "errorChangeArray": "No podeu canviar part d'una matriu.", + "errorChangeOnProtectedSheet": "La cel·la o el gràfic que intenteu canviar es troba en un full protegit. Per fer un canvi, desprotegiu el full. És possible que se us demani que introduïu una contrasenya.", "errorConnectToServer": "No es pot desar aquest document. Comproveu la configuració de la vostra connexió o contacteu amb el vostre administrador.
Quan cliqueu el botó «D'acord», se us demanarà que baixeu el document.", "errorCopyMultiselectArea": "Aquesta ordre no es pot utilitzar amb diverses seleccions.
Seleccioneu un interval únic i torneu-ho a provar.", "errorCountArg": "Hi ha un error en la fórmula.
El nombre d'arguments no és vàlid.", @@ -215,7 +216,7 @@ "errorUsersExceed": "S'ha superat el nombre d’usuaris permès pel vostre pla", "errorViewerDisconnect": "S'ha perdut la connexió. Encara podeu veure el document,
, però no podreu baixar-lo fins que es restableixi la connexió i es torni a carregar la pàgina.", "errorWrongBracketsCount": "Hi ha un error en la fórmula.
El nombre de parèntesis no és correcte.", - "errorWrongOperator": "S'ha produït un error en la fórmula introduïda. L'operador que s'utilitza no és correcte.
Corregiu l'error o useu el botó Esc per cancel·lar l'edició de la fórmula.", + "errorWrongOperator": "S'ha produït un error en la fórmula introduïda. L'operador que s'utilitza no és correcte.
Corregiu l'error.", "notcriticalErrorTitle": "Advertiment", "openErrorText": "S'ha produït un error en obrir el fitxer", "pastInMergeAreaError": "No es pot canviar una part d'una cel·la combinada", @@ -268,7 +269,7 @@ "textDelete": "Suprimeix", "textDuplicate": "Duplica", "textErrNameExists": "Ja existeix un full de càlcul amb aquest nom.", - "textErrNameWrongChar": "El nom de full no pot contenir els caràcters: \\, /, *,?, [,],:", + "textErrNameWrongChar": "El nom del full no pot contenir els caràcters: \\, /, *,?, [,],:", "textErrNotEmpty": "El nom del full no pot estar en blanc", "textErrorLastSheet": "El llibre de treball ha de tenir com a mínim un full de càlcul visible.", "textErrorRemoveSheet": "No es pot suprimir el full de càlcul.", diff --git a/apps/spreadsheeteditor/mobile/locale/cs.json b/apps/spreadsheeteditor/mobile/locale/cs.json index be1f2ab84..9a557f4dd 100644 --- a/apps/spreadsheeteditor/mobile/locale/cs.json +++ b/apps/spreadsheeteditor/mobile/locale/cs.json @@ -214,7 +214,7 @@ "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 it until the connection is restored and the page is reloaded.", "errorWrongBracketsCount": "An error in the formula.
Wrong number of brackets.", - "errorWrongOperator": "An error in the entered formula. The wrong operator is used.
Correct the error or use the Esc button to cancel the formula editing.", + "errorWrongOperator": "An error in the entered formula. Wrong operator is used.
Please correct the error.", "notcriticalErrorTitle": "Warning", "openErrorText": "An error has occurred while opening the file", "pastInMergeAreaError": "Cannot change a part of a merged cell", @@ -224,7 +224,8 @@ "uploadImageExtMessage": "Unknown image format.", "uploadImageFileCountMessage": "No images uploaded.", "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.", - "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." + "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator.", + "errorChangeOnProtectedSheet": "The cell or chart you are trying to change is on a protected sheet. To make a change, unprotect the sheet. You might be requested to enter a password." }, "LongActions": { "applyChangesTextText": "Loading data...", diff --git a/apps/spreadsheeteditor/mobile/locale/de.json b/apps/spreadsheeteditor/mobile/locale/de.json index aee4dc4e4..527269033 100644 --- a/apps/spreadsheeteditor/mobile/locale/de.json +++ b/apps/spreadsheeteditor/mobile/locale/de.json @@ -27,11 +27,11 @@ "textMessageDeleteComment": "Möchten Sie diesen Kommentar wirklich löschen?", "textMessageDeleteReply": "Möchten Sie diese Antwort wirklich löschen?", "textNoComments": "Dieses Dokument enthält keine Kommentare", + "textOk": "OK", "textReopen": "Wiederöffnen", "textResolve": "Lösen", "textTryUndoRedo": "Die Optionen Rückgängig machen/Wiederholen sind für den Schnellmodus deaktiviert.", - "textUsers": "Benutzer", - "textOk": "Ok" + "textUsers": "Benutzer" }, "ThemeColorPalette": { "textCustomColors": "Benutzerdefinierte Farben", @@ -215,7 +215,7 @@ "errorUsersExceed": "Die nach dem Zahlungsplan erlaubte Anzahl der Benutzer ist überschritten", "errorViewerDisconnect": "Die Verbindung wurde abgebrochen. Das Dokument wird angezeigt,
das Herunterladen wird aber nur verfügbar, wenn die Verbindung wiederhergestellt ist.", "errorWrongBracketsCount": "Die Formel enthält einen Fehler.
Falsche Anzahl von Klammern.", - "errorWrongOperator": "Die eingegebene Formel enthält einen Fehler. Falscher Operator wurde genutzt.
Bitte korrigieren Sie den Fehler oder brechen Sie die Formel mit Esc ab.", + "errorWrongOperator": "Die eingegebene Formel enthält einen Fehler. Falscher Operator wurde genutzt.
Bitte korrigieren Sie den Fehler.", "notcriticalErrorTitle": "Warnung", "openErrorText": "Beim Öffnen dieser Datei ist ein Fehler aufgetreten", "pastInMergeAreaError": "Teil einer verbundenen Zelle kann nicht geändert werden", @@ -224,7 +224,8 @@ "unknownErrorText": "Unbekannter Fehler.", "uploadImageExtMessage": "Unbekanntes Bildformat.", "uploadImageFileCountMessage": "Keine Bilder hochgeladen.", - "uploadImageSizeMessage": "Die maximal zulässige Bildgröße von 25 MB ist überschritten." + "uploadImageSizeMessage": "Die maximal zulässige Bildgröße von 25 MB ist überschritten.", + "errorChangeOnProtectedSheet": "The cell or chart you are trying to change is on a protected sheet. To make a change, unprotect the sheet. You might be requested to enter a password." }, "LongActions": { "applyChangesTextText": "Daten werden geladen...", @@ -335,12 +336,12 @@ "textSortAndFilter": "Sortieren und Filtern", "txtExpand": "Erweitern und sortieren", "txtExpandSort": "Die Daten neben der Auswahl werden nicht sortiert. Möchten Sie die Auswahl um die angrenzenden Daten erweitern oder nur mit der Sortierung der aktuell ausgewählten Zellen fortfahren?", + "txtLockSort": "Neben dem ausgewählten Bereich wurde Daten gefunden, aber Sie haben keine Berechtigung, diese Zelle zu verändern.
Möchten Sie mit dem ausgewählten Bereich weiter arbeiten?", + "txtNo": "Nein", "txtNotUrl": "Dieser Bereich soll eine URL im Format \"http://www.example.com\" sein.", "txtSorting": "Sortierung", "txtSortSelected": "Ausgewählte sortieren", - "txtLockSort": "Data is found next to your selection, but you do not have sufficient permissions to change those cells.
Do you wish to continue with the current selection?", - "txtNo": "No", - "txtYes": "Yes" + "txtYes": "Ja" }, "Edit": { "notcriticalErrorTitle": "Warnung", @@ -540,6 +541,9 @@ "textByRows": "Nach Zeilen", "textCancel": "Abbrechen", "textCentimeter": "Zentimeter", + "textChooseCsvOptions": "CSV-Optionen auswählen", + "textChooseDelimeter": "Trennzeichen auswählen", + "textChooseEncoding": "Codierung auswählen", "textCollaboration": "Zusammenarbeit", "textColorSchemes": "Farbschemata", "textComment": "Kommentar", @@ -547,6 +551,7 @@ "textComments": "Kommentare", "textCreated": "Erstellt", "textCustomSize": "Benutzerdefinierte Größe", + "textDelimeter": "Trennzeichen", "textDisableAll": "Alle deaktivieren", "textDisableAllMacrosWithNotification": "Alle Makros mit einer Benachrichtigung deaktivieren", "textDisableAllMacrosWithoutNotification": "Alle Makros ohne Benachrichtigung deaktivieren", @@ -556,6 +561,7 @@ "textEmail": "E-Mail", "textEnableAll": "Alle aktivieren", "textEnableAllMacrosWithoutNotification": "Alle Makros ohne Benachrichtigung aktivieren", + "textEncoding": "Codierung ", "textExample": "Beispiel", "textFind": "Suche", "textFindAndReplace": "Suchen und ersetzen", @@ -612,9 +618,13 @@ "textValues": "Werte", "textVersion": "Version", "textWorkbook": "Arbeitsmappe", + "txtColon": "Doppelpunkt", + "txtComma": "Komma", "txtDelimiter": "Trennzeichen", + "txtDownloadCsv": "CSV herunterladen", "txtEncoding": "Codierung ", "txtIncorrectPwd": "Passwort ist falsch", + "txtOk": "OK", "txtProtected": "Sobald Sie das Passwort eingegeben und die Datei geöffnet haben, wird das aktuelle Passwort für die Datei zurückgesetzt", "txtScheme1": "Office", "txtScheme10": "Median", @@ -638,19 +648,10 @@ "txtScheme7": "Kapital", "txtScheme8": "Fluss", "txtScheme9": "Gießerei", + "txtSemicolon": "Semikolon", "txtSpace": "Leerzeichen", "txtTab": "Tab", - "warnDownloadAs": "Wenn Sie mit dem Speichern in diesem Format fortsetzen, werden alle Objekte außer Text verloren gehen.
Möchten Sie wirklich fortsetzen?", - "textChooseCsvOptions": "Choose CSV Options", - "textChooseDelimeter": "Choose Delimeter", - "textChooseEncoding": "Choose Encoding", - "textDelimeter": "Delimiter", - "textEncoding": "Encoding", - "txtColon": "Colon", - "txtComma": "Comma", - "txtDownloadCsv": "Download CSV", - "txtOk": "Ok", - "txtSemicolon": "Semicolon" + "warnDownloadAs": "Wenn Sie mit dem Speichern in diesem Format fortsetzen, werden alle Objekte außer Text verloren gehen.
Möchten Sie wirklich fortsetzen?" } } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/el.json b/apps/spreadsheeteditor/mobile/locale/el.json index be1f2ab84..9a557f4dd 100644 --- a/apps/spreadsheeteditor/mobile/locale/el.json +++ b/apps/spreadsheeteditor/mobile/locale/el.json @@ -214,7 +214,7 @@ "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 it until the connection is restored and the page is reloaded.", "errorWrongBracketsCount": "An error in the formula.
Wrong number of brackets.", - "errorWrongOperator": "An error in the entered formula. The wrong operator is used.
Correct the error or use the Esc button to cancel the formula editing.", + "errorWrongOperator": "An error in the entered formula. Wrong operator is used.
Please correct the error.", "notcriticalErrorTitle": "Warning", "openErrorText": "An error has occurred while opening the file", "pastInMergeAreaError": "Cannot change a part of a merged cell", @@ -224,7 +224,8 @@ "uploadImageExtMessage": "Unknown image format.", "uploadImageFileCountMessage": "No images uploaded.", "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.", - "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." + "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator.", + "errorChangeOnProtectedSheet": "The cell or chart you are trying to change is on a protected sheet. To make a change, unprotect the sheet. You might be requested to enter a password." }, "LongActions": { "applyChangesTextText": "Loading data...", diff --git a/apps/spreadsheeteditor/mobile/locale/en.json b/apps/spreadsheeteditor/mobile/locale/en.json index e29907491..dc5cd8f9b 100644 --- a/apps/spreadsheeteditor/mobile/locale/en.json +++ b/apps/spreadsheeteditor/mobile/locale/en.json @@ -167,8 +167,9 @@ "errorAutoFilterChangeFormatTable": "The operation could not be done for the selected cells as you cannot move a part of a table.
Select another data range so that the whole table is shifted and try again.", "errorAutoFilterDataRange": "The operation could not be done for the selected range of cells.
Select a uniform data range inside or outside the table and try again.", "errorAutoFilterHiddenRange": "The operation cannot be performed because the area contains filtered cells.
Please, unhide the filtered elements and try again.", - "errorBadImageUrl": "Image url is incorrect", + "errorBadImageUrl": "Image URL is incorrect", "errorChangeArray": "You cannot change part of an array.", + "errorChangeOnProtectedSheet": "The cell or chart you are trying to change is on a protected sheet. To make a change, unprotect the sheet. You might be requested to enter a password.", "errorConnectToServer": "Can't save this doc. Check your connection settings or contact your admin.
When you click the 'OK' button, you will be prompted to download the document.", "errorCopyMultiselectArea": "This command cannot be used with multiple selections.
Select a single range and try again.", "errorCountArg": "An error in the formula.
Invalid number of arguments.", @@ -215,7 +216,7 @@ "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.", "errorWrongBracketsCount": "An error in the formula.
Wrong number of brackets.", - "errorWrongOperator": "An error in the entered formula. The wrong operator is used.
Correct the error or use the Esc button to cancel the formula editing.", + "errorWrongOperator": "An error in the entered formula. Wrong operator is used.
Please correct the error.", "notcriticalErrorTitle": "Warning", "openErrorText": "An error has occurred while opening the file", "pastInMergeAreaError": "Cannot change a part of a merged cell", diff --git a/apps/spreadsheeteditor/mobile/locale/es.json b/apps/spreadsheeteditor/mobile/locale/es.json index 865810fba..5ae9e883c 100644 --- a/apps/spreadsheeteditor/mobile/locale/es.json +++ b/apps/spreadsheeteditor/mobile/locale/es.json @@ -215,7 +215,7 @@ "errorUsersExceed": "Se superó la cantidad de usuarios permitidos por el plan de precios", "errorViewerDisconnect": "Se ha perdido la conexión. Todavía puede ver el documento,
pero no podrá descargarlo ni imprimirlo hasta que se restablezca la conexión y se recargue la página.", "errorWrongBracketsCount": "Un error en la fórmula.
Número de corchetes incorrecto.", - "errorWrongOperator": "Un error en la fórmula introducida. Se ha utilizado el operador incorrecto.
Corrija el error o utilice el botón Esc para cancelar la edición de la fórmula.", + "errorWrongOperator": "Un error en la fórmula introducida. Se ha utilizado el operador incorrecto.
Por favor, corrija el error.", "notcriticalErrorTitle": "Advertencia", "openErrorText": "Se ha producido un error al abrir el archivo ", "pastInMergeAreaError": "No se puede modificar una parte de una celda combinada", @@ -224,7 +224,8 @@ "unknownErrorText": "Error desconocido.", "uploadImageExtMessage": "Formato de imagen desconocido.", "uploadImageFileCountMessage": "No hay imágenes subidas.", - "uploadImageSizeMessage": "La imagen es demasiado grande. El tamaño máximo es de 25 MB." + "uploadImageSizeMessage": "La imagen es demasiado grande. El tamaño máximo es de 25 MB.", + "errorChangeOnProtectedSheet": "The cell or chart you are trying to change is on a protected sheet. To make a change, unprotect the sheet. You might be requested to enter a password." }, "LongActions": { "applyChangesTextText": "Cargando datos...", diff --git a/apps/spreadsheeteditor/mobile/locale/fr.json b/apps/spreadsheeteditor/mobile/locale/fr.json index 556bb7008..a0e18678e 100644 --- a/apps/spreadsheeteditor/mobile/locale/fr.json +++ b/apps/spreadsheeteditor/mobile/locale/fr.json @@ -27,11 +27,11 @@ "textMessageDeleteComment": "Voulez-vous vraiment supprimer ce commentaire?", "textMessageDeleteReply": "Voulez-vous vraiment supprimer cette réponse?", "textNoComments": "Il n'y a pas de commentaires dans ce document", + "textOk": "Ok", "textReopen": "Rouvrir", "textResolve": "Résoudre", "textTryUndoRedo": "Les fonctions Annuler/Rétablir sont désactivées pour le mode de co-édition rapide.", - "textUsers": "Utilisateurs", - "textOk": "Ok" + "textUsers": "Utilisateurs" }, "ThemeColorPalette": { "textCustomColors": "Couleurs personnalisées", @@ -169,6 +169,7 @@ "errorAutoFilterHiddenRange": "L'opération ne peut pas être effectuée car la zone contient des cellules filtrées.
Veuillez supprimer les filtres et réessayez.", "errorBadImageUrl": "L'URL de l'image est incorrecte", "errorChangeArray": "Impossible de modifier une partie de matrice.", + "errorChangeOnProtectedSheet": "La cellule ou le graphique que vous essayé de changer est sur une feuille protégée. Pour effectuer le changement, retirer al protection de la feuille. Un mot de passe pourrait vous être demandé.", "errorConnectToServer": "Impossible d'enregistrer ce document. Veuillez vérifier vos paramètres de connexion ou contactez l'administrateur.
Lorsque vous cliquez sur le bouton 'OK', vous serez invité à télécharger le document.", "errorCopyMultiselectArea": "Impossible d'exécuter cette commande sur des sélections multiples.
Sélectionnez une seule plage et essayez à nouveau.", "errorCountArg": "Il y a une erreur dans la formule : nombre d'arguments incorrecte.", @@ -215,7 +216,7 @@ "errorUsersExceed": "Le nombre d'utilisateurs autorisés par le plan tarifaire a été dépassé", "errorViewerDisconnect": "La connexion a été perdue. Vous pouvez toujours afficher le document,
mais ne pouvez pas le télécharger jusqu'à ce que la connexion soit rétablie et que la page soit rafraichit.", "errorWrongBracketsCount": "Il y a une erreur dans la formule : Mauvais nombre de parenthèses.", - "errorWrongOperator": "Une erreur dans la formule. L'opérateur n'est pas valide. Corriger l'erreur ou presser Echap pour annuler l'édition de la formule.", + "errorWrongOperator": "Une erreur dans la formule entrée. Opérateur utilisé est incorrect.
Veuillez corriger l'erreur.", "notcriticalErrorTitle": "Avertissement", "openErrorText": "Une erreur s’est produite lors de l’ouverture du fichier", "pastInMergeAreaError": "Impossible de modifier une partie d'une cellule fusionnée", @@ -335,12 +336,12 @@ "textSortAndFilter": "Trier et filtrer", "txtExpand": "Développer et trier", "txtExpandSort": "Les données situées à côté de la sélection ne seront pas triées. Souhaitez-vous développer la sélection pour inclure les données adjacentes ou souhaitez-vous continuer à trier iniquement les cellules sélectionnées ?", + "txtLockSort": "Des données se trouvent à côté de votre sélection, mais vous n'avez pas les autorisations suffisantes pour modifier ces cellules.
Voulez-vous continuer avec la sélection actuelle ?", + "txtNo": "Non", "txtNotUrl": "Ce champ doit contenir une URL au format \"http://www.example.com\"", "txtSorting": "Tri", "txtSortSelected": "Trier l'objet sélectionné ", - "txtLockSort": "Data is found next to your selection, but you do not have sufficient permissions to change those cells.
Do you wish to continue with the current selection?", - "txtNo": "No", - "txtYes": "Yes" + "txtYes": "Oui" }, "Edit": { "notcriticalErrorTitle": "Avertissement", @@ -540,6 +541,9 @@ "textByRows": "Par lignes", "textCancel": "Annuler", "textCentimeter": "Centimètre", + "textChooseCsvOptions": "Choisir les options CSV", + "textChooseDelimeter": "Choisir la délimitation", + "textChooseEncoding": "Choisir l'encodage", "textCollaboration": "Collaboration", "textColorSchemes": "Jeux de couleurs", "textComment": "Commentaire", @@ -547,6 +551,7 @@ "textComments": "Commentaires", "textCreated": "Créé", "textCustomSize": "Taille personnalisée", + "textDelimeter": "Délimiteur", "textDisableAll": "Désactiver tout", "textDisableAllMacrosWithNotification": "Désactiver toutes les macros avec notification", "textDisableAllMacrosWithoutNotification": "Désactiver toutes les macros sans notification", @@ -556,6 +561,7 @@ "textEmail": "E-mail", "textEnableAll": "Activer tout", "textEnableAllMacrosWithoutNotification": "Activer toutes les macros sans notification", + "textEncoding": "Encodage", "textExample": "Exemple", "textFind": "Recherche", "textFindAndReplace": "Rechercher et remplacer", @@ -612,9 +618,13 @@ "textValues": "Valeurs", "textVersion": "Version", "textWorkbook": "Classeur", + "txtColon": "Deux-points", + "txtComma": "Virgule", "txtDelimiter": "Délimiteur", + "txtDownloadCsv": "Télécharger le CSV", "txtEncoding": "Codage ", "txtIncorrectPwd": "Mot de passe incorrect", + "txtOk": "Ok", "txtProtected": "Une fois le mot de passe saisi et le ficher ouvert, le mot de passe actuel sera réinitialisé", "txtScheme1": "Office", "txtScheme10": "Médian", @@ -638,19 +648,10 @@ "txtScheme7": "Capitaux", "txtScheme8": "Flux", "txtScheme9": "Fonderie", + "txtSemicolon": "Point-virgule", "txtSpace": "Espace", "txtTab": "Tabulation", - "warnDownloadAs": "Si vous continuez à enregistrer dans ce format toutes les fonctions sauf le texte seront perdues.
Êtes-vous sûr de vouloir continuer?", - "textChooseCsvOptions": "Choose CSV Options", - "textChooseDelimeter": "Choose Delimeter", - "textChooseEncoding": "Choose Encoding", - "textDelimeter": "Delimiter", - "textEncoding": "Encoding", - "txtColon": "Colon", - "txtComma": "Comma", - "txtDownloadCsv": "Download CSV", - "txtOk": "Ok", - "txtSemicolon": "Semicolon" + "warnDownloadAs": "Si vous continuez à enregistrer dans ce format toutes les fonctions sauf le texte seront perdues.
Êtes-vous sûr de vouloir continuer?" } } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/hu.json b/apps/spreadsheeteditor/mobile/locale/hu.json index be1f2ab84..9a557f4dd 100644 --- a/apps/spreadsheeteditor/mobile/locale/hu.json +++ b/apps/spreadsheeteditor/mobile/locale/hu.json @@ -214,7 +214,7 @@ "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 it until the connection is restored and the page is reloaded.", "errorWrongBracketsCount": "An error in the formula.
Wrong number of brackets.", - "errorWrongOperator": "An error in the entered formula. The wrong operator is used.
Correct the error or use the Esc button to cancel the formula editing.", + "errorWrongOperator": "An error in the entered formula. Wrong operator is used.
Please correct the error.", "notcriticalErrorTitle": "Warning", "openErrorText": "An error has occurred while opening the file", "pastInMergeAreaError": "Cannot change a part of a merged cell", @@ -224,7 +224,8 @@ "uploadImageExtMessage": "Unknown image format.", "uploadImageFileCountMessage": "No images uploaded.", "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.", - "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." + "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator.", + "errorChangeOnProtectedSheet": "The cell or chart you are trying to change is on a protected sheet. To make a change, unprotect the sheet. You might be requested to enter a password." }, "LongActions": { "applyChangesTextText": "Loading data...", diff --git a/apps/spreadsheeteditor/mobile/locale/it.json b/apps/spreadsheeteditor/mobile/locale/it.json index 8f1605d71..2cde829d6 100644 --- a/apps/spreadsheeteditor/mobile/locale/it.json +++ b/apps/spreadsheeteditor/mobile/locale/it.json @@ -167,8 +167,9 @@ "errorAutoFilterChangeFormatTable": "The operation could not be done for the selected cells as you cannot move a part of a table.
Select another data range so that the whole table is shifted and try again.", "errorAutoFilterDataRange": "The operation could not be done for the selected range of cells.
Select a uniform data range inside or outside the table and try again.", "errorAutoFilterHiddenRange": "The operation cannot be performed because the area contains filtered cells.
Please, unhide the filtered elements and try again.", - "errorBadImageUrl": "Image url is incorrect", + "errorBadImageUrl": "Image URL is incorrect", "errorChangeArray": "You cannot change part of an array.", + "errorChangeOnProtectedSheet": "The cell or chart you are trying to change is on a protected sheet. To make a change, unprotect the sheet. You might be requested to enter a password.", "errorConnectToServer": "Can't save this doc. Check your connection settings or contact your admin.
When you click the 'OK' button, you will be prompted to download the document.", "errorCopyMultiselectArea": "This command cannot be used with multiple selections.
Select a single range and try again.", "errorCountArg": "An error in the formula.
Invalid number of arguments.", @@ -215,7 +216,7 @@ "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.", "errorWrongBracketsCount": "An error in the formula.
Wrong number of brackets.", - "errorWrongOperator": "An error in the entered formula. The wrong operator is used.
Correct the error or use the Esc button to cancel the formula editing.", + "errorWrongOperator": "An error in the entered formula. Wrong operator is used.
Please correct the error.", "notcriticalErrorTitle": "Warning", "openErrorText": "An error has occurred while opening the file", "pastInMergeAreaError": "Cannot change a part of a merged cell", diff --git a/apps/spreadsheeteditor/mobile/locale/ja.json b/apps/spreadsheeteditor/mobile/locale/ja.json index 9c3673c1e..23f617a40 100644 --- a/apps/spreadsheeteditor/mobile/locale/ja.json +++ b/apps/spreadsheeteditor/mobile/locale/ja.json @@ -215,7 +215,7 @@ "errorUsersExceed": "料金プランで許可されているユーザー数を超えました。", "errorViewerDisconnect": "接続が失われました。あなたはまだ文書を見えるけど,
接続が復元されたしページが再読み込まれたまで文書をダウンロードと印刷できません。", "errorWrongBracketsCount": "数式でエラーがあります。
ブラケットの数が正しくありません。", - "errorWrongOperator": "入力した数式にエラーがあります。間違った演算子が使用されています。
エラーを修正するか、Escキーを使用して数式の編集をキャンセルしてください。", + "errorWrongOperator": "入力した数式にエラーがあります。間違った演算子が使用されています。
エラーを修正する。", "notcriticalErrorTitle": " 警告", "openErrorText": "ファイルを開く際にエラーが発生しました。", "pastInMergeAreaError": "結合したセルの一部は変更できません", @@ -224,7 +224,8 @@ "unknownErrorText": "不明なエラー", "uploadImageExtMessage": "不明なイメージ形式", "uploadImageFileCountMessage": "アップロードしたイメージがない", - "uploadImageSizeMessage": "イメージのサイズの上限が超えさせました。サイズの上限が25MB。" + "uploadImageSizeMessage": "イメージのサイズの上限が超えさせました。サイズの上限が25MB。", + "errorChangeOnProtectedSheet": "The cell or chart you are trying to change is on a protected sheet. To make a change, unprotect the sheet. You might be requested to enter a password." }, "LongActions": { "applyChangesTextText": "データを読み込んでいます...", diff --git a/apps/spreadsheeteditor/mobile/locale/ko.json b/apps/spreadsheeteditor/mobile/locale/ko.json index be1f2ab84..9f8333e58 100644 --- a/apps/spreadsheeteditor/mobile/locale/ko.json +++ b/apps/spreadsheeteditor/mobile/locale/ko.json @@ -1,656 +1,657 @@ { "About": { - "textAbout": "About", - "textAddress": "Address", - "textBack": "Back", - "textEmail": "Email", - "textPoweredBy": "Powered By", - "textTel": "Tel", - "textVersion": "Version" + "textAbout": "정보", + "textAddress": "주소", + "textBack": "뒤로", + "textEmail": "이메일", + "textPoweredBy": "기술 지원", + "textTel": "전화 번호", + "textVersion": "버전" }, "Common": { "Collaboration": { - "notcriticalErrorTitle": "Warning", - "textAddComment": "Add Comment", - "textAddReply": "Add Reply", - "textBack": "Back", - "textCancel": "Cancel", - "textCollaboration": "Collaboration", + "notcriticalErrorTitle": "경고", + "textAddComment": "코멘트 달기", + "textAddReply": "댓글 달기", + "textBack": "뒤로", + "textCancel": "취소", + "textCollaboration": "협업", "textComments": "Comments", - "textDeleteComment": "Delete Comment", - "textDeleteReply": "Delete Reply", - "textDone": "Done", - "textEdit": "Edit", - "textEditComment": "Edit Comment", - "textEditReply": "Edit Reply", - "textEditUser": "Users who are editing the file:", - "textMessageDeleteComment": "Do you really want to delete this comment?", - "textMessageDeleteReply": "Do you really want to delete this reply?", - "textNoComments": "This document doesn't contain comments", - "textReopen": "Reopen", - "textResolve": "Resolve", - "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", - "textUsers": "Users", - "textOk": "Ok" + "textDeleteComment": "코멘트 삭제", + "textDeleteReply": "댓글 삭제", + "textDone": "완료", + "textEdit": "편집", + "textEditComment": "코멘트 편집", + "textEditReply": "댓글 편집", + "textEditUser": "파일을 편집 중인 사용자:", + "textMessageDeleteComment": "이 댓글을 삭제하시겠습니까?", + "textMessageDeleteReply": "이 댓글을 삭제하시겠습니까?", + "textNoComments": "이 문서에 달린 코멘트가 없습니다", + "textOk": "확인", + "textReopen": "다시 열기", + "textResolve": "해결", + "textTryUndoRedo": "빠른 공동 편집 모드에서 실행 취소 / 다시 실행 기능을 사용할 수 없습니다.", + "textUsers": "사용자" }, "ThemeColorPalette": { - "textCustomColors": "Custom Colors", - "textStandartColors": "Standard Colors", - "textThemeColors": "Theme Colors" + "textCustomColors": "사용자 정의 색상", + "textStandartColors": "표준 색상", + "textThemeColors": "테마 색" } }, "ContextMenu": { - "errorCopyCutPaste": "Copy, cut, and paste actions using the context menu will be performed within the current file only.", - "menuAddComment": "Add Comment", - "menuAddLink": "Add Link", - "menuCancel": "Cancel", - "menuCell": "Cell", - "menuDelete": "Delete", - "menuEdit": "Edit", - "menuFreezePanes": "Freeze Panes", - "menuHide": "Hide", - "menuMerge": "Merge", - "menuMore": "More", - "menuOpenLink": "Open Link", - "menuShow": "Show", - "menuUnfreezePanes": "Unfreeze Panes", - "menuUnmerge": "Unmerge", - "menuUnwrap": "Unwrap", - "menuViewComment": "View Comment", - "menuWrap": "Wrap", - "notcriticalErrorTitle": "Warning", - "textCopyCutPasteActions": "Copy, Cut and Paste Actions", - "textDoNotShowAgain": "Don't show again", - "warnMergeLostData": "The operation can destroy data in the selected cells. Continue?" + "errorCopyCutPaste": "오른쪽 클릭 메뉴를 통해 수행된 복사, 잘라내기 및 붙여넣기 작업은 이 파일에서만 유효합니다.", + "menuAddComment": "코멘트 달기", + "menuAddLink": "링크 추가", + "menuCancel": "취소", + "menuCell": "셀", + "menuDelete": "삭제", + "menuEdit": "편집", + "menuFreezePanes": "틀고정", + "menuHide": "숨기기", + "menuMerge": "병합", + "menuMore": "자세히", + "menuOpenLink": "링크 열기", + "menuShow": "표시", + "menuUnfreezePanes": "틀고정 취소", + "menuUnmerge": "병합 해제", + "menuUnwrap": "펼치기", + "menuViewComment": "코멘트 보기", + "menuWrap": "줄 바꾸기", + "notcriticalErrorTitle": "경고", + "textCopyCutPasteActions": "작업 복사, 잘라 내기 및 붙여 넣기", + "textDoNotShowAgain": "다시 표시하지 않음", + "warnMergeLostData": "왼쪽 위 셀의 데이터 만 병합 된 셀에 남아 있습니다.
계속 하시겠습니까?" }, "Controller": { "Main": { - "criticalErrorTitle": "Error", - "errorAccessDeny": "You are trying to perform an action you do not have rights for.
Please, contact your admin.", - "errorProcessSaveResult": "Saving is failed.", - "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", - "errorUpdateVersion": "The file version has been changed. The page will be reloaded.", - "leavePageText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", - "notcriticalErrorTitle": "Warning", + "criticalErrorTitle": "오류", + "errorAccessDeny": "권한이 없는 작업을 수행하려고 합니다.
관리자에게 문의하십시오.", + "errorProcessSaveResult": "저장이 실패했습니다.", + "errorServerVersion": "편집기 버전이 업데이트되었습니다. 페이지가 다시로드되어 변경 사항이 적용됩니다.", + "errorUpdateVersion": "파일 버전이 변경되었습니다. 페이지가 다시로드됩니다.", + "leavePageText": "이 문서에 저장되지 않은 변경 사항이 있습니다. 자동 저장을 활성화하려면 \"이 페이지에서 나가기\"를 클릭하십시오. \"이 페이지에서 나가기\"를 클릭하면 저장되지 않은 모든 편집 내용이 삭제됩니다.", + "notcriticalErrorTitle": "경고", "SDK": { - "txtAccent": "Accent", - "txtAll": "(All)", - "txtArt": "Your text here", - "txtBlank": "(blank)", - "txtByField": "%1 of %2", - "txtClearFilter": "Clear Filter (Alt+C)", - "txtColLbls": "Column Labels", - "txtColumn": "Column", - "txtConfidential": "Confidential", - "txtDate": "Date", - "txtDays": "Days", - "txtDiagramTitle": "Chart Title", - "txtFile": "File", - "txtGrandTotal": "Grand Total", - "txtGroup": "Group", - "txtHours": "Hours", - "txtMinutes": "Minutes", - "txtMonths": "Months", - "txtMultiSelect": "Multi-Select (Alt+S)", - "txtOr": "%1 or %2", - "txtPage": "Page", - "txtPageOf": "Page %1 of %2", - "txtPages": "Pages", - "txtPreparedBy": "Prepared by", - "txtPrintArea": "Print_Area", - "txtQuarter": "Qtr", - "txtQuarters": "Quarters", - "txtRow": "Row", - "txtRowLbls": "Row Labels", - "txtSeconds": "Seconds", - "txtSeries": "Series", - "txtStyle_Bad": "Bad", - "txtStyle_Calculation": "Calculation", - "txtStyle_Check_Cell": "Check Cell", - "txtStyle_Comma": "Comma", - "txtStyle_Currency": "Currency", - "txtStyle_Explanatory_Text": "Explanatory Text", - "txtStyle_Good": "Good", - "txtStyle_Heading_1": "Heading 1", - "txtStyle_Heading_2": "Heading 2", - "txtStyle_Heading_3": "Heading 3", - "txtStyle_Heading_4": "Heading 4", - "txtStyle_Input": "Input", - "txtStyle_Linked_Cell": "Linked Cell", - "txtStyle_Neutral": "Neutral", - "txtStyle_Normal": "Normal", - "txtStyle_Note": "Note", - "txtStyle_Output": "Output", - "txtStyle_Percent": "Percent", - "txtStyle_Title": "Title", - "txtStyle_Total": "Total", - "txtStyle_Warning_Text": "Warning Text", - "txtTab": "Tab", - "txtTable": "Table", - "txtTime": "Time", - "txtValues": "Values", - "txtXAxis": "X Axis", - "txtYAxis": "Y Axis", - "txtYears": "Years" + "txtAccent": "강조", + "txtAll": "(전체)", + "txtArt": "여기에 귀하의 텍스트를 입력하여 주십시오", + "txtBlank": "(빈칸)", + "txtByField": "%2의 %1", + "txtClearFilter": "필터 지우기 (Alt + C)", + "txtColLbls": "열 라벨", + "txtColumn": "열", + "txtConfidential": "비밀", + "txtDate": "날짜", + "txtDays": "일", + "txtDiagramTitle": "차트 제목", + "txtFile": "파일", + "txtGrandTotal": "총합계", + "txtGroup": "그룹", + "txtHours": "시간", + "txtMinutes": "분", + "txtMonths": "월", + "txtMultiSelect": "다중 선택(Alt + S)", + "txtOr": "1% 또는 2%", + "txtPage": "페이지", + "txtPageOf": "전체 %2 중 %1", + "txtPages": "페이지", + "txtPreparedBy": "편집자", + "txtPrintArea": "인쇄 영역", + "txtQuarter": "분기", + "txtQuarters": "분기", + "txtRow": "행", + "txtRowLbls": "행 레이블", + "txtSeconds": "초", + "txtSeries": "시리즈", + "txtStyle_Bad": "나쁜", + "txtStyle_Calculation": "계산", + "txtStyle_Check_Cell": "셀 검사", + "txtStyle_Comma": "쉼표", + "txtStyle_Currency": "통화", + "txtStyle_Explanatory_Text": "텍스트 설명", + "txtStyle_Good": "좋은", + "txtStyle_Heading_1": "제목 1", + "txtStyle_Heading_2": "제목 2", + "txtStyle_Heading_3": "제목 3", + "txtStyle_Heading_4": "제목 4", + "txtStyle_Input": "입력", + "txtStyle_Linked_Cell": "연결된 셀", + "txtStyle_Neutral": "중립", + "txtStyle_Normal": "표준", + "txtStyle_Note": "참고", + "txtStyle_Output": "출력", + "txtStyle_Percent": "백분율", + "txtStyle_Title": "제목", + "txtStyle_Total": "합계", + "txtStyle_Warning_Text": "경고문", + "txtTab": "탭", + "txtTable": "표", + "txtTime": "시간", + "txtValues": "값", + "txtXAxis": "X 축", + "txtYAxis": "Y 축", + "txtYears": "년" }, - "textAnonymous": "Anonymous", - "textBuyNow": "Visit website", - "textClose": "Close", - "textContactUs": "Contact sales", - "textCustomLoader": "Sorry, you are not entitled to change the loader. Please, contact our sales department to get a quote.", - "textGuest": "Guest", - "textHasMacros": "The file contains automatic macros.
Do you want to run macros?", - "textNo": "No", - "textNoLicenseTitle": "License limit reached", - "textPaidFeature": "Paid feature", - "textRemember": "Remember my choice", - "textYes": "Yes", - "titleServerVersion": "Editor updated", - "titleUpdateVersion": "Version changed", - "warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.", - "warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your admin.", - "warnLicenseLimitedRenewed": "License needs to be renewed. You have limited access to document editing functionality.
Please contact your administrator to get full access", - "warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", - "warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.", - "warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", - "warnProcessRightsChange": "You don't have permission to edit the file." + "textAnonymous": "익명", + "textBuyNow": "웹 사이트 방문", + "textClose": "닫기", + "textContactUs": "영업 담당자에게 문의", + "textCustomLoader": "죄송합니다. 로더를 수정할 권한이 없습니다. 견적을 받으려면 영업 부서에 문의하시기 바랍니다.", + "textGuest": "게스트", + "textHasMacros": "파일에 자동 매크로가 포함되어 있습니다.
매크로를 실행 하시겠습니까?", + "textNo": "아니오", + "textNoLicenseTitle": "라이센스 수를 제한했습니다.", + "textPaidFeature": "유료기능", + "textRemember": "선택사항을 저장", + "textYes": "확인", + "titleServerVersion": "편집기가 업데이트되었습니다", + "titleUpdateVersion": "버전이 변경되었습니다.", + "warnLicenseExceeded": "% 1 편집 연결 수 제한에 도달했습니다. 이 문서는 보기 모드에서 엽립니다. 자세한 내용은 관리자에게 연락하십시오.", + "warnLicenseLimitedNoAccess": "라이센스가 만료되었습니다. 문서 편집 기능을 사용할 수 없습니다. 관리자에게 문의하십시오.", + "warnLicenseLimitedRenewed": "라이선스를 업데이트해야 합니다. 모든 문서 편집 기능을 사용할 수는 없습니다.
모든 기능을 사용하려면 관리자에게 문의하세요.", + "warnLicenseUsersExceeded": "편집자 사용자 한도인 %1명에 도달했습니다. 자세한 내용은 관리자에게 문의하십시오.", + "warnNoLicense": "% 1 편집 연결 수 제한에 도달했습니다. 이 문서는 보기 모드로 열립니다. 개인적인 업그레이드 사항은 % 1 영업팀에 연락하십시오.", + "warnNoLicenseUsers": "ONLYOFFICE 편집자의이 버전은 동시 사용자에게 일정한 제한이 있습니다.
더 필요한 것이 있으면 현재 라이센스를 업그레이드하거나 상용 라이센스를 구입하십시오.", + "warnProcessRightsChange": "파일을 수정할 수 있는 권한이 없습니다." } }, "Error": { - "convertationTimeoutText": "Conversion timeout exceeded.", - "criticalErrorExtText": "Press 'OK' to go back to the document list.", - "criticalErrorTitle": "Error", - "downloadErrorText": "Download failed.", - "errorAccessDeny": "You are trying to perform an action you do not have rights for.
Please, contact your admin.", - "errorArgsRange": "An error in the formula.
Incorrect arguments range.", - "errorAutoFilterChange": "The operation is not allowed as it is attempting to shift cells in a table on your worksheet.", - "errorAutoFilterChangeFormatTable": "The operation could not be done for the selected cells as you cannot move a part of a table.
Select another data range so that the whole table is shifted and try again.", - "errorAutoFilterDataRange": "The operation could not be done for the selected range of cells.
Select a uniform data range inside or outside the table and try again.", - "errorAutoFilterHiddenRange": "The operation cannot be performed because the area contains filtered cells.
Please, unhide the filtered elements and try again.", - "errorBadImageUrl": "Image url is incorrect", - "errorChangeArray": "You cannot change part of an array.", - "errorConnectToServer": "Can't save this doc. Check your connection settings or contact your admin.
When you click the 'OK' button, you will be prompted to download the document.", - "errorCopyMultiselectArea": "This command cannot be used with multiple selections.
Select a single range and try again.", - "errorCountArg": "An error in the formula.
Invalid number of arguments.", - "errorCountArgExceed": "An error in the formula.
Maximum number of arguments exceeded.", - "errorCreateDefName": "The existing named ranges cannot be edited and the new ones cannot be created
at the moment as some of them are being edited.", - "errorDatabaseConnection": "External error.
Database connection error. Please, contact support.", - "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", - "errorDataRange": "Incorrect data range.", - "errorDataValidate": "The value you entered is not valid.
A user has restricted values that can be entered into this cell.", - "errorDefaultMessage": "Error code: %1", - "errorEditingDownloadas": "An error occurred during the work with the document.
Use the 'Download' option to save the file backup copy locally.", - "errorFilePassProtect": "The file is password protected and could not be opened.", - "errorFileRequest": "External error.
File Request. Please, contact support.", - "errorFileSizeExceed": "The file size exceeds your server limitation.
Please, contact your admin for details.", - "errorFileVKey": "External error.
Incorrect security key. Please, contact support.", - "errorFillRange": "Could not fill the selected range of cells.
All the merged cells need to be the same size.", - "errorFormulaName": "An error in the formula.
Incorrect formula name.", - "errorFormulaParsing": "Internal error while the formula parsing.", - "errorFrmlMaxLength": "You cannot add this formula as its length exceeds the allowed number of characters.
Please, edit it and try again.", - "errorFrmlMaxReference": "You cannot enter this formula because it has too many values,
cell references, and/or names.", - "errorFrmlMaxTextLength": "Text values in formulas are limited to 255 characters.
Use the CONCATENATE function or concatenation operator (&)", - "errorFrmlWrongReferences": "The function refers to a sheet that does not exist.
Please, check the data and try again.", - "errorInvalidRef": "Enter a correct name for the selection or a valid reference to go to.", - "errorKeyEncrypt": "Unknown key descriptor", - "errorKeyExpire": "Key descriptor expired", - "errorLockedAll": "The operation could not be done as the sheet has been locked by another user.", - "errorLockedCellPivot": "You cannot change data inside a pivot table.", - "errorLockedWorksheetRename": "The sheet cannot be renamed at the moment as it is being renamed by another user", - "errorMaxPoints": "The maximum number of points in series per chart is 4096.", - "errorMoveRange": "Cannot change a part of a merged cell", - "errorMultiCellFormula": "Multi-cell array formulas are not allowed in tables.", - "errorOpenWarning": "The length of one of the formulas in the file exceeded
the allowed number of characters and it was removed.", - "errorOperandExpected": "The entered function syntax is not correct. Please, check if you missed one of the parentheses - '(' or ')'.", - "errorPasteMaxRange": "The copy and paste area does not match. Please, select an area of the same size or click the first cell in a row to paste the copied cells.", - "errorPrintMaxPagesCount": "Unfortunately, it’s not possible to print more than 1500 pages at once in the current version of the program.
This restriction will be eliminated in upcoming releases.", - "errorSessionAbsolute": "The document editing session has expired. Please, reload the page.", - "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.", - "errorUnexpectedGuid": "External error.
Unexpected Guid. Please, contact support.", - "errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.", - "errorUserDrop": "The file cannot 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 it until the connection is restored and the page is reloaded.", - "errorWrongBracketsCount": "An error in the formula.
Wrong number of brackets.", - "errorWrongOperator": "An error in the entered formula. The wrong operator is used.
Correct the error or use the Esc button to cancel the formula editing.", - "notcriticalErrorTitle": "Warning", - "openErrorText": "An error has occurred while opening the file", - "pastInMergeAreaError": "Cannot change a part of a merged cell", - "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.", - "unknownErrorText": "Unknown error.", - "uploadImageExtMessage": "Unknown image format.", - "uploadImageFileCountMessage": "No images uploaded.", - "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.", - "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." + "convertationTimeoutText": "변환 시간을 초과했습니다.", + "criticalErrorExtText": "문서 목록으로 돌아가려면 \"확인\" 버튼을 누르십시오.", + "criticalErrorTitle": "오류", + "downloadErrorText": "다운로드 실패", + "errorAccessDeny": "권한이 없는 작업을 수행하려고 합니다.
관리자에게 문의하십시오.", + "errorArgsRange": "공식에 오류가 있습니다.
파라미터 범위가 잘못되었습니다.", + "errorAutoFilterChange": "워크시트에서 표 셀을 이동하려고 하기 때문에 작업을 수행할 수 없습니다.", + "errorAutoFilterChangeFormatTable": "표의 일부를 이동할 수 없기 때문에 선택한 셀에 대해 작업을 수행할 수 없습니다.
전체 표를 이동할 수 있도록 다른 데이터 범위를 선택하고 다시 시도하십시오.", + "errorAutoFilterDataRange": "지정된 범위의 셀에 대해 작업을 수행할 수 없습니다.
테이블 또는 테이블 외부의 균일한 데이터 범위를 선택하고 다시 시도하십시오.", + "errorAutoFilterHiddenRange": "작업을 수행할 수 없습니다. 그 이유는 선택한 영역에 숨겨진 셀이 있기 때문입니다.
숨겨진 요소를 다시 표시하고 다시 시도하십시오.", + "errorBadImageUrl": "이미지 URL이 잘못되었습니다.", + "errorChangeArray": "배열의 일부를 변경할 수 없습니다.", + "errorConnectToServer": "저장하지 못했습니다. 네트워크 설정을 확인하거나 관리자에게 문의하세요.
이 문서는 \"확인\" 버튼을 누르면 다운로드할 수 있습니다.", + "errorCopyMultiselectArea": "이 명령은 여러 선택 항목과 함께 사용할 수 없습니다.
단일 범위를 선택하고 다시 시도하십시오.", + "errorCountArg": "공식에 오류가 있습니다.
매개변수 수가 잘못되었습니다.", + "errorCountArgExceed": "공식에 오류가 있습니다.
최대 허용 매개변수 제한을 초과했습니다.", + "errorCreateDefName": "기존 명명 된 범위를 편집 할 수 없으며 일부는 편집 중임에 따라 현재 명명 된 범위를 만들 수 없습니다.", + "errorDatabaseConnection": "외부 오류입니다.
데이터베이스 연결 오류입니다. 지원팀에 문의하십시오.", + "errorDataEncrypted": "암호화 변경 사항이 수신되었으며 해독할 수 없습니다.", + "errorDataRange": "잘못된 참조 대상 입니다.", + "errorDataValidate": "입력한 값이 잘못되었습니다.
사용자는 이 셀에 입력할 수 있는 제한 값이 있습니다.", + "errorDefaultMessage": "오류 코드 : % 1", + "errorEditingDownloadas": "이 문서를 처리하는 동안 오류가 발생했습니다.
파일 백업을 로컬에 저장하려면 \"저장\" 옵션을 사용하십시오.", + "errorFilePassProtect": "파일이 암호로 보호되어 열 수 없습니다.", + "errorFileRequest": "외부 오류입니다.
파일 요청. 지원팀에 문의하세요.", + "errorFileSizeExceed": "파일 크기가 서버 제한을 ​​초과했습니다.
자세한 내용은 관리자에게 문의하십시오.", + "errorFileVKey": "외부 오류입니다.
보안 키가 잘못되었습니다. 지원팀에 문의하세요.", + "errorFillRange": "선택한 셀 범위를 채울 수 없습니다.
병합 된 모든 셀이 같은 크기 여야합니다.", + "errorFormulaName": "수식에 오류가 있습니다
잘못된 수식 이름.", + "errorFormulaParsing": "수식을 구문 분석하는 동안 내부 오류가 발생했습니다.", + "errorFrmlMaxLength": "이 수식의 길이가 허용되는 문자 수 제한을 초과하므로 이 수식을 추가할 수 없습니다.
다시 수정하고 다시 시도하십시오.", + "errorFrmlMaxReference": "값, 셀 참조 및/또는 이름이 너무 많기 때문에 이 수식을 입력할 수 없습니다.", + "errorFrmlMaxTextLength": "수식에서 텍스트 값은 255자로 제한됩니다.
글루 함수(CONCATENATE)를 사용하거나 글루 연산자(&)를 사용하세요.", + "errorFrmlWrongReferences": "이 함수는 존재하지 않는 워크시트를 참조합니다.
데이터를 다시 확인하고 다시 시도하십시오.", + "errorInvalidRef": "선택 항목의 정확한 이름을 입력하거나 이동할 참조를 입력하십시오.", + "errorKeyEncrypt": "알수 없는 키 설명자", + "errorKeyExpire": "키가 만료됨", + "errorLoadingFont": "글꼴 불러오기에 실패하였습니다.
문서 시스템 관리자에게 문의하세요.", + "errorLockedAll": "다른 사용자가 시트를 잠근 상태에서 작업을 수행 할 수 없습니다.", + "errorLockedCellPivot": "피벗 테이블에서 데이터를 변경할 수 없습니다.", + "errorLockedWorksheetRename": "시트의 이름을 다른 사용자가 바꾸면 이름을 바꿀 수 없습니다.", + "errorMaxPoints": "차트당 시리즈내 포인트의 최대값은 4096임", + "errorMoveRange": "병합된 셀의 일부는 수정할 수 없습니다.", + "errorMultiCellFormula": "다중 셀 배열 수식은 테이블에서 허용되지 않습니다.", + "errorOpenWarning": "파일에있는 수식 중 하나의 길이가 허용 된 문자 수를 초과하여 제거되었습니다.", + "errorOperandExpected": "입력한 함수 구문이 올바르지 않습니다. 반괄호, 즉 \"(\" 또는 \")\"가 누락되었는지 확인하십시오.", + "errorPasteMaxRange": "복사하여 붙여넣은 영역이 일치하지 않습니다. 같은 크기의 영역을 선택하십시오. 행의 첫 번째 셀을 클릭하여 복사한 셀을 붙여넣을 수도 있습니다.", + "errorPrintMaxPagesCount": "죄송합니다. 이 버전에서는 한 번에 1500페이지 이상을 인쇄할 수 없습니다.
나중 버전에서는 이 제한이 제거됩니다.", + "errorSessionAbsolute": "파일 편집 창이 만료되었습니다. 페이지를 새로고침하세요.", + "errorSessionIdle": "이 문서는 한동안 수정되지 않았습니다. 페이지를 새로고침하세요.", + "errorSessionToken": "서버에 대한 링크가 중단되었습니다. 페이지를 새로고침하세요.", + "errorStockChart": "줄의 순서가 잘못되었습니다. 주식형 차트를 생성하려면
시가, 최고가, 최저가, 종가의 순서로 데이터를 테이블에 배치하십시오.", + "errorUnexpectedGuid": "외부 오류.", + "errorUpdateVersionOnDisconnect": "인터넷 연결이 복구 되었으며 파일에 수정 사항이 발생되었습니다. 작업을 계속 하시기 전에 반드시 기존의 파일을 다운로드하거나 내용을 복사해서 작업 내용을 잃어 버리는 일이 없도록 한 후에 이 페이지를 새로 고침(reload) 해 주시기 바랍니다.", + "errorUserDrop": "파일에 지금 액세스 할 수 없습니다.", + "errorUsersExceed": "가격 책정 계획에서 허용 한 사용자 수가 초과되었습니다", + "errorViewerDisconnect": "네트워크 연결에 실패했습니다. 이 문서는 계속 볼 수 있지만
연결이 복원되고 페이지가 새로 고쳐질 때까지 이 문서를 다운로드하거나 인쇄할 수 없습니다.", + "errorWrongBracketsCount": "공식에 오류가 있습니다.
대괄호 수가 잘못되었습니다.", + "errorWrongOperator": "입력한 수식에 오류가 있습니다. 잘못된 연산자를 사용했습니다.
오류를 수정하십시오.", + "notcriticalErrorTitle": "경고", + "openErrorText": "파일을 여는 동안 오류가 발생했습니다.", + "pastInMergeAreaError": "병합된 셀의 일부는 수정할 수 없습니다.", + "saveErrorText": "파일을 저장하는 동안 오류가 발생했습니다.", + "scriptLoadError": "인터넷 속도가 너무 느려 이 페이지의 일부 요소가 로드되지 않습니다. 페이지를 새로고침하세요.", + "unknownErrorText": "알 수 없는 오류.", + "uploadImageExtMessage": "알수 없는 이미지 형식입니다.", + "uploadImageFileCountMessage": "이미지가 업로드되지 않았습니다.", + "uploadImageSizeMessage": "이미지 크기 제한을 초과했습니다.", + "errorChangeOnProtectedSheet": "The cell or chart you are trying to change is on a protected sheet. To make a change, unprotect the sheet. You might be requested to enter a password." }, "LongActions": { - "applyChangesTextText": "Loading data...", - "applyChangesTitleText": "Loading Data", - "confirmMoveCellRange": "The destination cells range can contain data. Continue the operation?", - "confirmPutMergeRange": "The source data contains merged cells.
They will be unmerged before they are pasted into the table.", - "confirmReplaceFormulaInTable": "Formulas in the header row will be removed and converted to static text.
Do you want to continue?", - "downloadTextText": "Downloading document...", - "downloadTitleText": "Downloading Document", - "loadFontsTextText": "Loading data...", - "loadFontsTitleText": "Loading Data", - "loadFontTextText": "Loading data...", - "loadFontTitleText": "Loading Data", - "loadImagesTextText": "Loading images...", - "loadImagesTitleText": "Loading Images", - "loadImageTextText": "Loading image...", - "loadImageTitleText": "Loading Image", - "loadingDocumentTextText": "Loading document...", - "loadingDocumentTitleText": "Loading document", - "notcriticalErrorTitle": "Warning", - "openTextText": "Opening document...", - "openTitleText": "Opening Document", - "printTextText": "Printing document...", - "printTitleText": "Printing Document", - "savePreparingText": "Preparing to save", - "savePreparingTitle": "Preparing to save. Please wait...", - "saveTextText": "Saving document...", - "saveTitleText": "Saving Document", - "textLoadingDocument": "Loading document", - "textNo": "No", - "textOk": "Ok", - "textYes": "Yes", - "txtEditingMode": "Set editing mode...", - "uploadImageTextText": "Uploading image...", - "uploadImageTitleText": "Uploading Image", - "waitText": "Please, wait..." + "applyChangesTextText": "데이터로드 중 ...", + "applyChangesTitleText": "데이터로드 중", + "confirmMoveCellRange": "마지막 셀 범위에 데이터가 존재합니다. 작업을 계속 하시겠습니까?", + "confirmPutMergeRange": "원본 데이터에 병합된 셀이 있습니다.
이 셀은 이 테이블에 붙여넣기 전에 병합 해제됩니다.", + "confirmReplaceFormulaInTable": "머리글 행의 수식이 삭제되고 정적 텍스트로 변환됩니다.
계속하시겠습니까?", + "downloadTextText": "문서 다운로드 중...", + "downloadTitleText": "문서 다운로드 중", + "loadFontsTextText": "데이터로드 중 ...", + "loadFontsTitleText": "데이터로드 중", + "loadFontTextText": "데이터로드 중 ...", + "loadFontTitleText": "데이터로드 중", + "loadImagesTextText": "이미지로드 중 ...", + "loadImagesTitleText": "이미지로드 중", + "loadImageTextText": "이미지로드 중 ...", + "loadImageTitleText": "이미지로드 중", + "loadingDocumentTextText": "문서로드 중 ...", + "loadingDocumentTitleText": "문서 로드 중", + "notcriticalErrorTitle": "경고", + "openTextText": "문서 열기 중 ...", + "openTitleText": "문서 열기", + "printTextText": "문서 인쇄 중 ...", + "printTitleText": "문서 인쇄 중", + "savePreparingText": "저장 준비 중", + "savePreparingTitle": "저장 준비 중입니다. 잠시 기다려주십시오 ...", + "saveTextText": "문서 저장 중 ...", + "saveTitleText": "문서 저장 중", + "textLoadingDocument": "문서 로드 중", + "textNo": "아니오", + "textOk": "확인", + "textYes": "확인", + "txtEditingMode": "편집 모드 설정 ...", + "uploadImageTextText": "이미지 업로드 중 ...", + "uploadImageTitleText": "이미지 업로드 중", + "waitText": "잠시만 기다려주세요..." }, "Statusbar": { - "notcriticalErrorTitle": "Warning", - "textCancel": "Cancel", - "textDelete": "Delete", - "textDuplicate": "Duplicate", - "textErrNameExists": "Worksheet with this name already exists.", - "textErrNameWrongChar": "A sheet name cannot contains characters: \\, /, *, ?, [, ], :", - "textErrNotEmpty": "Sheet name must not be empty", - "textErrorLastSheet": "The workbook must have at least one visible worksheet.", - "textErrorRemoveSheet": "Can't delete the worksheet.", - "textHide": "Hide", - "textMore": "More", - "textRename": "Rename", - "textRenameSheet": "Rename Sheet", - "textSheet": "Sheet", - "textSheetName": "Sheet Name", - "textUnhide": "Unhide", - "textWarnDeleteSheet": "The worksheet maybe has data. Proceed operation?", - "textOk": "Ok" + "notcriticalErrorTitle": "경고", + "textCancel": "취소", + "textDelete": "삭제", + "textDuplicate": "복사", + "textErrNameExists": "같은 이름의 워크시트가 이미 있습니다.", + "textErrNameWrongChar": "시트 이름에는 \\, /, *,?, [,], 문자를 사용할 수 없습니다 :", + "textErrNotEmpty": "시트 이름은 비워둘 수 없습니다.", + "textErrorLastSheet": "통합 문서에는 표시되는 워크시트가 하나 이상 있어야 합니다.", + "textErrorRemoveSheet": "워크 시트를 삭제할 수 없습니다.", + "textHide": "숨기기", + "textMore": "자세히", + "textOk": "확인", + "textRename": "이름 바꾸기", + "textRenameSheet": "시트 이름 바꾸기", + "textSheet": "시트", + "textSheetName": "시트 이름", + "textUnhide": "숨기기 해제", + "textWarnDeleteSheet": "워크시트에 데이터가 포함될 수 있습니다. 진행 하시겠습니까?" }, "Toolbar": { - "dlgLeaveMsgText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", - "dlgLeaveTitleText": "You leave the application", - "leaveButtonText": "Leave this Page", - "stayButtonText": "Stay on this Page" + "dlgLeaveMsgText": "이 문서에 저장되지 않은 변경 사항이 있습니다. 자동 저장을 활성화하려면 \"이 페이지에서 나가기\"를 클릭하십시오. \"이 페이지에서 나가기\"를 클릭하면 저장되지 않은 모든 편집 내용이 삭제됩니다.", + "dlgLeaveTitleText": "응용 프로그램을 종료합니다", + "leaveButtonText": "이 페이지에서 나가기", + "stayButtonText": "이 페이지에 보관" }, "View": { "Add": { - "errorMaxRows": "ERROR! The maximum number of data series per chart is 255.", - "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.", - "notcriticalErrorTitle": "Warning", - "sCatDateAndTime": "Date and time", - "sCatEngineering": "Engineering", - "sCatFinancial": "Financial", - "sCatInformation": "Information", - "sCatLogical": "Logical", - "sCatLookupAndReference": "Lookup and Reference", - "sCatMathematic": "Math and trigonometry", - "sCatStatistical": "Statistical", - "sCatTextAndData": "Text and data", - "textAddLink": "Add Link", - "textAddress": "Address", - "textBack": "Back", - "textCancel": "Cancel", - "textChart": "Chart", - "textComment": "Comment", - "textDisplay": "Display", - "textEmptyImgUrl": "You need to specify the image URL.", - "textExternalLink": "External Link", - "textFilter": "Filter", - "textFunction": "Function", - "textGroups": "CATEGORIES", - "textImage": "Image", - "textImageURL": "Image URL", - "textInsert": "Insert", - "textInsertImage": "Insert Image", - "textInternalDataRange": "Internal Data Range", - "textInvalidRange": "ERROR! Invalid cells range", - "textLink": "Link", - "textLinkSettings": "Link Settings", - "textLinkType": "Link Type", - "textOther": "Other", - "textPictureFromLibrary": "Picture from library", - "textPictureFromURL": "Picture from URL", - "textRange": "Range", - "textRequired": "Required", - "textScreenTip": "Screen Tip", - "textShape": "Shape", - "textSheet": "Sheet", - "textSortAndFilter": "Sort and Filter", - "txtExpand": "Expand and sort", - "txtExpandSort": "The data next to the selection will not be sorted. Do you want to expand the selection to include the adjacent data or continue with sorting the currently selected cells only?", - "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"", - "txtSorting": "Sorting", - "txtSortSelected": "Sort selected", - "textSelectedRange": "Selected Range", - "txtLockSort": "Data is found next to your selection, but you do not have sufficient permissions to change those cells.
Do you wish to continue with the current selection?", - "txtNo": "No", - "txtYes": "Yes" + "errorMaxRows": "오류! 차트 당 최대 데이터 시리즈 수는 255입니다.", + "errorStockChart": "줄의 순서가 잘못되었습니다. 주식형 차트를 생성하려면
시가, 최고가, 최저가, 종가의 순서로 데이터를 테이블에 배치하십시오.", + "notcriticalErrorTitle": "경고", + "sCatDateAndTime": "날짜 및 시간", + "sCatEngineering": "엔지니어링", + "sCatFinancial": "재무", + "sCatInformation": "정보", + "sCatLogical": "논리적", + "sCatLookupAndReference": "조회 및 참조", + "sCatMathematic": "수학 및 삼각법", + "sCatStatistical": "통계", + "sCatTextAndData": "텍스트 및 데이터", + "textAddLink": "링크 추가", + "textAddress": "주소", + "textBack": "뒤로", + "textCancel": "취소", + "textChart": "차트", + "textComment": "코멘트", + "textDisplay": "표시", + "textEmptyImgUrl": "이미지의 URL을 지정해야 합니다.", + "textExternalLink": "외부 링크", + "textFilter": "필터", + "textFunction": "함수", + "textGroups": "범주", + "textImage": "이미지", + "textImageURL": "이미지 URL", + "textInsert": "삽입", + "textInsertImage": "이미지 삽입", + "textInternalDataRange": "내부 참조 대상", + "textInvalidRange": "오류! 셀 범위가 잘못되었습니다.", + "textLink": "링크", + "textLinkSettings": "링크 설정", + "textLinkType": "링크 유형", + "textOther": "기타", + "textPictureFromLibrary": "그림 라이브러리에서", + "textPictureFromURL": "URL로 부터 그림 가져오기", + "textRange": "범위", + "textRequired": "필수", + "textScreenTip": "화면 팁", + "textSelectedRange": "선택한 범위", + "textShape": "도형", + "textSheet": "시트", + "textSortAndFilter": "정렬 및 필터링", + "txtExpand": "확장 및 정렬", + "txtExpandSort": "선택 영역 옆의 데이터는 정렬되지 않습니다. 인접한 데이터를 포함하도록 선택 영역을 확장 하시겠습니까, 아니면 현재 선택된 셀만 정렬할까요?", + "txtLockSort": "선택의 범위 근처에 데이터가 존재 하지만이 셀을 변경하려면 충분한 권한이 없습니다.
선택의 범위를 계속 하시겠습니까?", + "txtNo": "아니오", + "txtNotUrl": "이 필드는 \"http://www.example.com\"형식의 URL이어야합니다.", + "txtSorting": "정렬", + "txtSortSelected": "정렬 선택", + "txtYes": "확인" }, "Edit": { - "notcriticalErrorTitle": "Warning", - "textAccounting": "Accounting", - "textActualSize": "Actual Size", - "textAddCustomColor": "Add Custom Color", - "textAddress": "Address", - "textAlign": "Align", - "textAlignBottom": "Align Bottom", - "textAlignCenter": "Align Center", - "textAlignLeft": "Align Left", - "textAlignMiddle": "Align Middle", - "textAlignRight": "Align Right", - "textAlignTop": "Align Top", - "textAllBorders": "All Borders", - "textAngleClockwise": "Angle Clockwise", - "textAngleCounterclockwise": "Angle Counterclockwise", - "textAuto": "Auto", - "textAxisCrosses": "Axis Crosses", - "textAxisOptions": "Axis Options", - "textAxisPosition": "Axis Position", - "textAxisTitle": "Axis Title", - "textBack": "Back", - "textBetweenTickMarks": "Between Tick Marks", - "textBillions": "Billions", - "textBorder": "Border", - "textBorderStyle": "Border Style", - "textBottom": "Bottom", - "textBottomBorder": "Bottom Border", - "textBringToForeground": "Bring to Foreground", - "textCell": "Cell", - "textCellStyles": "Cell Styles", - "textCenter": "Center", - "textChart": "Chart", - "textChartTitle": "Chart Title", - "textClearFilter": "Clear Filter", - "textColor": "Color", - "textCross": "Cross", - "textCrossesValue": "Crosses Value", - "textCurrency": "Currency", - "textCustomColor": "Custom Color", - "textDataLabels": "Data Labels", - "textDate": "Date", - "textDefault": "Selected range", - "textDeleteFilter": "Delete Filter", - "textDesign": "Design", - "textDiagonalDownBorder": "Diagonal Down Border", - "textDiagonalUpBorder": "Diagonal Up Border", - "textDisplay": "Display", - "textDisplayUnits": "Display Units", - "textDollar": "Dollar", - "textEditLink": "Edit Link", - "textEffects": "Effects", - "textEmptyImgUrl": "You need to specify the image URL.", - "textEmptyItem": "{Blanks}", - "textErrorMsg": "You must choose at least one value", - "textErrorTitle": "Warning", - "textEuro": "Euro", - "textExternalLink": "External Link", - "textFill": "Fill", - "textFillColor": "Fill Color", - "textFilterOptions": "Filter Options", - "textFit": "Fit Width", - "textFonts": "Fonts", - "textFormat": "Format", - "textFraction": "Fraction", - "textFromLibrary": "Picture from Library", - "textFromURL": "Picture from URL", - "textGeneral": "General", - "textGridlines": "Gridlines", - "textHigh": "High", - "textHorizontal": "Horizontal", - "textHorizontalAxis": "Horizontal Axis", - "textHorizontalText": "Horizontal Text", - "textHundredMil": "100 000 000", - "textHundreds": "Hundreds", - "textHundredThousands": "100 000", - "textHyperlink": "Hyperlink", - "textImage": "Image", - "textImageURL": "Image URL", - "textIn": "In", - "textInnerBottom": "Inner Bottom", - "textInnerTop": "Inner Top", - "textInsideBorders": "Inside Borders", - "textInsideHorizontalBorder": "Inside Horizontal Border", - "textInsideVerticalBorder": "Inside Vertical Border", - "textInteger": "Integer", - "textInternalDataRange": "Internal Data Range", - "textInvalidRange": "Invalid cells range", - "textJustified": "Justified", - "textLabelOptions": "Label Options", - "textLabelPosition": "Label Position", - "textLayout": "Layout", - "textLeft": "Left", - "textLeftBorder": "Left Border", - "textLeftOverlay": "Left Overlay", - "textLegend": "Legend", - "textLink": "Link", - "textLinkSettings": "Link Settings", - "textLinkType": "Link Type", - "textLow": "Low", - "textMajor": "Major", - "textMajorAndMinor": "Major And Minor", - "textMajorType": "Major Type", - "textMaximumValue": "Maximum Value", - "textMedium": "Medium", - "textMillions": "Millions", - "textMinimumValue": "Minimum Value", - "textMinor": "Minor", - "textMinorType": "Minor Type", - "textMoveBackward": "Move Backward", - "textMoveForward": "Move Forward", - "textNextToAxis": "Next to Axis", - "textNoBorder": "No Border", - "textNone": "None", - "textNoOverlay": "No Overlay", - "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", - "textNumber": "Number", - "textOnTickMarks": "On Tick Marks", - "textOpacity": "Opacity", - "textOut": "Out", - "textOuterTop": "Outer Top", - "textOutsideBorders": "Outside Borders", - "textOverlay": "Overlay", - "textPercentage": "Percentage", - "textPictureFromLibrary": "Picture from Library", - "textPictureFromURL": "Picture from URL", - "textPound": "Pound", + "notcriticalErrorTitle": "경고", + "textAccounting": "회계", + "textActualSize": "실제 크기", + "textAddCustomColor": "사용자 색상 추가", + "textAddress": "주소", + "textAlign": "맞춤", + "textAlignBottom": "아래쪽 맞춤", + "textAlignCenter": "가운데 맞춤", + "textAlignLeft": "왼쪽 맞춤", + "textAlignMiddle": "중간 맞춤", + "textAlignRight": "오른쪽 맞춤", + "textAlignTop": "위쪽 맞춤", + "textAllBorders": "모든 테두리", + "textAngleClockwise": "시계 방향으로 회전", + "textAngleCounterclockwise": "시계 반대 방향 회전", + "textAuto": "자동", + "textAxisCrosses": "교차축", + "textAxisOptions": "축 옵션", + "textAxisPosition": "축 위치", + "textAxisTitle": "축 제목", + "textBack": "뒤로", + "textBetweenTickMarks": "눈금 사이", + "textBillions": "10 억", + "textBorder": "테두리", + "textBorderStyle": "테두리 스타일", + "textBottom": "하단", + "textBottomBorder": "아래쪽 테두리", + "textBringToForeground": "앞으로 가져오기", + "textCell": "셀", + "textCellStyles": "셀 스타일", + "textCenter": "가운데", + "textChart": "차트", + "textChartTitle": "차트 제목", + "textClearFilter": "필터 지우기", + "textColor": "색상", + "textCross": "교차", + "textCrossesValue": "교차값", + "textCurrency": "통화", + "textCustomColor": "사용자 정의 색상", + "textDataLabels": "데이터 레이블", + "textDate": "날짜", + "textDefault": "선택한 범위", + "textDeleteFilter": "필터 지우기", + "textDesign": "디자인", + "textDiagonalDownBorder": "대각선 아래쪽 테두리", + "textDiagonalUpBorder": "대각선 위쪽 테두리", + "textDisplay": "표시", + "textDisplayUnits": "표시 단위", + "textDollar": "달러", + "textEditLink": "링크 편집", + "textEffects": "효과", + "textEmptyImgUrl": "이미지의 URL을 지정해야 합니다.", + "textEmptyItem": "{공백}", + "textErrorMsg": "하나 이상의 값을 선택해야합니다.", + "textErrorTitle": "경고", + "textEuro": "유로", + "textExternalLink": "외부 링크", + "textFill": "채우기", + "textFillColor": "색상 채우기", + "textFilterOptions": "필터 옵션", + "textFit": "너비에 맞추기", + "textFonts": "글꼴", + "textFormat": "형식", + "textFraction": "분수", + "textFromLibrary": "그림 라이브러리에서", + "textFromURL": "URL로 부터 그림 가져오기", + "textGeneral": "일반", + "textGridlines": "눈금선", + "textHigh": "높음", + "textHorizontal": "수평", + "textHorizontalAxis": "가로 축", + "textHorizontalText": "가로 텍스트", + "textHundredMil": "100,000,000", + "textHundreds": "백", + "textHundredThousands": "100,000", + "textHyperlink": "하이퍼 링크", + "textImage": "이미지", + "textImageURL": "이미지 URL", + "textIn": "중에", + "textInnerBottom": "내부 (아래)", + "textInnerTop": "내부 (위)", + "textInsideBorders": "테두리 안쪽", + "textInsideHorizontalBorder": "안쪽 가로 테두리", + "textInsideVerticalBorder": "안쪽 세로 테두리", + "textInteger": "정수", + "textInternalDataRange": "내부 참조 대상", + "textInvalidRange": "유효하지 않은 셀 범위", + "textJustified": "균등분할", + "textLabelOptions": "레이블 옵션", + "textLabelPosition": "레이블 위치", + "textLayout": "레이아웃", + "textLeft": "왼쪽", + "textLeftBorder": "왼쪽 테두리", + "textLeftOverlay": "왼쪽 오버레이", + "textLegend": "범례", + "textLink": "링크", + "textLinkSettings": "링크 설정", + "textLinkType": "링크 유형", + "textLow": "낮음", + "textMajor": "메이저", + "textMajorAndMinor": "매이저 및 마이너", + "textMajorType": "주요 유형", + "textMaximumValue": "최대값", + "textMedium": "중", + "textMillions": "백만", + "textMinimumValue": "최소값", + "textMinor": "마이너", + "textMinorType": "보조 유형", + "textMoveBackward": "맨 뒤로 보내기", + "textMoveForward": "맨 앞으로 가져오기", + "textNextToAxis": "다음 축", + "textNoBorder": "테두리 없음", + "textNone": "없음", + "textNoOverlay": "오버레이 없음", + "textNotUrl": "이 필드는 \"http://www.example.com\"형식의 URL이어야합니다.", + "textNumber": "숫자", + "textOnTickMarks": "눈금 표시", + "textOpacity": "투명도", + "textOut": "바깥쪽", + "textOuterTop": "바깥쪽 위", + "textOutsideBorders": "바깥쪽 테두리", + "textOverlay": "오버레이", + "textPercentage": "백분율", + "textPictureFromLibrary": "그림 라이브러리에서", + "textPictureFromURL": "URL로 부터 그림 가져오기", + "textPound": "파운드", "textPt": "pt", - "textRange": "Range", - "textRemoveChart": "Remove Chart", - "textRemoveImage": "Remove Image", - "textRemoveLink": "Remove Link", - "textRemoveShape": "Remove Shape", - "textReorder": "Reorder", - "textReplace": "Replace", - "textReplaceImage": "Replace Image", - "textRequired": "Required", - "textRight": "Right", - "textRightBorder": "Right Border", - "textRightOverlay": "Right Overlay", - "textRotated": "Rotated", - "textRotateTextDown": "Rotate Text Down", - "textRotateTextUp": "Rotate Text Up", - "textRouble": "Rouble", - "textScientific": "Scientific", - "textScreenTip": "Screen Tip", - "textSelectAll": "Select All", - "textSelectObjectToEdit": "Select object to edit", - "textSendToBackground": "Send to Background", - "textSettings": "Settings", - "textShape": "Shape", - "textSheet": "Sheet", - "textSize": "Size", - "textStyle": "Style", - "textTenMillions": "10 000 000", - "textTenThousands": "10 000", - "textText": "Text", - "textTextColor": "Text Color", - "textTextFormat": "Text Format", - "textTextOrientation": "Text Orientation", - "textThick": "Thick", - "textThin": "Thin", - "textThousands": "Thousands", - "textTickOptions": "Tick Options", - "textTime": "Time", - "textTop": "Top", - "textTopBorder": "Top Border", - "textTrillions": "Trillions", - "textType": "Type", - "textValue": "Value", - "textValuesInReverseOrder": "Values in Reverse Order", - "textVertical": "Vertical", - "textVerticalAxis": "Vertical Axis", - "textVerticalText": "Vertical Text", - "textWrapText": "Wrap Text", - "textYen": "Yen", - "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"", - "txtSortHigh2Low": "Sort Highest to Lowest", - "txtSortLow2High": "Sort Lowest to Highest" + "textRange": "범위", + "textRemoveChart": "차트 제거", + "textRemoveImage": "이미지 제거", + "textRemoveLink": "링크 제거", + "textRemoveShape": "도형 제거", + "textReorder": "재정렬", + "textReplace": "바꾸기", + "textReplaceImage": "이미지 바꾸기", + "textRequired": "필수", + "textRight": "오른쪽", + "textRightBorder": "오른쪽 테두리", + "textRightOverlay": "오른쪽 오버레이", + "textRotated": "회전", + "textRotateTextDown": "텍스트 아래로 회전", + "textRotateTextUp": "텍스트 회전", + "textRouble": "루블", + "textScientific": "지수", + "textScreenTip": "화면 팁", + "textSelectAll": "모두 선택", + "textSelectObjectToEdit": "편집하기 위해 개체를 선택하십시오", + "textSendToBackground": "맨 뒤로 보내기", + "textSettings": "설정", + "textShape": "도형", + "textSheet": "시트", + "textSize": "크기", + "textStyle": "스타일", + "textTenMillions": "10,000,000", + "textTenThousands": "10,000", + "textText": "텍스트", + "textTextColor": "글꼴색", + "textTextFormat": "텍스트 형식", + "textTextOrientation": "텍스트 방향", + "textThick": "두꺼운", + "textThin": "얇은", + "textThousands": "천", + "textTickOptions": "눈금 옵션", + "textTime": "시간", + "textTop": "위", + "textTopBorder": "위쪽 테두리", + "textTrillions": "수조", + "textType": "형식", + "textValue": "값", + "textValuesInReverseOrder": "값 역순으로", + "textVertical": "세로", + "textVerticalAxis": "세로 축", + "textVerticalText": "세로 텍스트", + "textWrapText": "텍스트 줄 바꾸기", + "textYen": "엔", + "txtNotUrl": "이 필드는 \"http://www.example.com\"형식의 URL이어야합니다.", + "txtSortHigh2Low": "가장 높은 것부터 가장 낮은 것부터 정렬", + "txtSortLow2High": "오름차순 정렬" }, "Settings": { - "advCSVOptions": "Choose CSV options", - "advDRMEnterPassword": "Your password, please:", - "advDRMOptions": "Protected File", - "advDRMPassword": "Password", - "closeButtonText": "Close File", - "notcriticalErrorTitle": "Warning", - "textAbout": "About", - "textAddress": "Address", - "textApplication": "Application", - "textApplicationSettings": "Application Settings", - "textAuthor": "Author", - "textBack": "Back", - "textBottom": "Bottom", - "textByColumns": "By columns", - "textByRows": "By rows", - "textCancel": "Cancel", - "textCentimeter": "Centimeter", - "textCollaboration": "Collaboration", - "textColorSchemes": "Color Schemes", - "textComment": "Comment", - "textCommentingDisplay": "Commenting Display", + "advCSVOptions": "CSV 옵션 선택", + "advDRMEnterPassword": "비밀번호를 입력하세요:", + "advDRMOptions": "보호 된 파일", + "advDRMPassword": "비밀번호", + "closeButtonText": "파일 닫기", + "notcriticalErrorTitle": "경고", + "textAbout": "정보", + "textAddress": "주소", + "textApplication": "어플리케이션", + "textApplicationSettings": "어플리케이션 설정", + "textAuthor": "작성자", + "textBack": "뒤로", + "textBottom": "하단", + "textByColumns": "열 기준", + "textByRows": "행 기준", + "textCancel": "취소", + "textCentimeter": "센티미터", + "textChooseCsvOptions": "CSV 옵션 선택", + "textChooseDelimeter": "구분자를 선택", + "textChooseEncoding": "인코딩 형식 선택", + "textCollaboration": "협업", + "textColorSchemes": "색 구성표", + "textComment": "코멘트", + "textCommentingDisplay": "주석 달기", "textComments": "Comments", - "textCreated": "Created", - "textCustomSize": "Custom Size", - "textDisableAll": "Disable All", - "textDisableAllMacrosWithNotification": "Disable all macros with a notification", - "textDisableAllMacrosWithoutNotification": "Disable all macros without a notification", - "textDone": "Done", - "textDownload": "Download", - "textDownloadAs": "Download As", - "textEmail": "Email", - "textEnableAll": "Enable All", - "textEnableAllMacrosWithoutNotification": "Enable all macros without a notification", - "textFind": "Find", - "textFindAndReplace": "Find and Replace", - "textFindAndReplaceAll": "Find and Replace All", - "textFormat": "Format", - "textFormulaLanguage": "Formula Language", - "textFormulas": "Formulas", - "textHelp": "Help", - "textHideGridlines": "Hide Gridlines", - "textHideHeadings": "Hide Headings", - "textHighlightRes": "Highlight results", - "textInch": "Inch", - "textLandscape": "Landscape", - "textLastModified": "Last Modified", - "textLastModifiedBy": "Last Modified By", - "textLeft": "Left", - "textLocation": "Location", - "textLookIn": "Look In", - "textMacrosSettings": "Macros Settings", - "textMargins": "Margins", - "textMatchCase": "Match Case", - "textMatchCell": "Match Cell", - "textNoTextFound": "Text not found", - "textOpenFile": "Enter a password to open the file", - "textOrientation": "Orientation", - "textOwner": "Owner", - "textPoint": "Point", - "textPortrait": "Portrait", - "textPoweredBy": "Powered By", - "textPrint": "Print", - "textR1C1Style": "R1C1 Reference Style", - "textRegionalSettings": "Regional Settings", - "textReplace": "Replace", - "textReplaceAll": "Replace All", - "textResolvedComments": "Resolved Comments", - "textRight": "Right", - "textSearch": "Search", - "textSearchBy": "Search", - "textSearchIn": "Search In", - "textSettings": "Settings", - "textSheet": "Sheet", - "textShowNotification": "Show Notification", - "textSpreadsheetFormats": "Spreadsheet Formats", - "textSpreadsheetInfo": "Spreadsheet Info", - "textSpreadsheetSettings": "Spreadsheet Settings", - "textSpreadsheetTitle": "Spreadsheet Title", - "textSubject": "Subject", - "textTel": "Tel", - "textTitle": "Title", - "textTop": "Top", - "textUnitOfMeasurement": "Unit Of Measurement", - "textUploaded": "Uploaded", - "textValues": "Values", - "textVersion": "Version", - "textWorkbook": "Workbook", - "txtDelimiter": "Delimiter", - "txtEncoding": "Encoding", - "txtIncorrectPwd": "Password is incorrect", - "txtProtected": "Once you enter the password and open the file, the current password to the file will be reset", - "txtScheme1": "Office", - "txtScheme10": "Median", - "txtScheme11": "Metro", - "txtScheme12": "Module", - "txtScheme13": "Opulent", - "txtScheme14": "Oriel", - "txtScheme15": "Origin", - "txtScheme16": "Paper", - "txtScheme17": "Solstice", - "txtScheme18": "Technic", - "txtScheme19": "Trek", - "txtScheme2": "Grayscale", - "txtScheme20": "Urban", - "txtScheme21": "Verve", - "txtScheme22": "New Office", - "txtScheme3": "Apex", - "txtScheme4": "Aspect", - "txtScheme5": "Civic", - "txtScheme6": "Concourse", - "txtScheme7": "Equity", - "txtScheme8": "Flow", - "txtScheme9": "Foundry", - "txtSpace": "Space", - "txtTab": "Tab", - "warnDownloadAs": "If you continue saving in this format all features except the text will be lost.
Are you sure you want to continue?", - "textOk": "Ok", - "textChooseCsvOptions": "Choose CSV Options", - "textChooseDelimeter": "Choose Delimeter", - "textChooseEncoding": "Choose Encoding", - "textDelimeter": "Delimiter", - "textEncoding": "Encoding", - "txtColon": "Colon", - "txtComma": "Comma", - "txtDownloadCsv": "Download CSV", - "txtOk": "Ok", - "txtSemicolon": "Semicolon", - "textExample": "Example" + "textCreated": "생성됨", + "textCustomSize": "사용자 정의 크기", + "textDelimeter": "구분 기호", + "textDisableAll": "모두 비활성화", + "textDisableAllMacrosWithNotification": "모든 매크로를 비활성화로 알림", + "textDisableAllMacrosWithoutNotification": "알림없이 모든 매크로를 비활성화", + "textDone": "완료", + "textDownload": "다운로드", + "textDownloadAs": "변환 다운로드", + "textEmail": "이메일", + "textEnableAll": "모두 활성화", + "textEnableAllMacrosWithoutNotification": "알림 없이 모든 매크로 활성화", + "textEncoding": "인코딩", + "textExample": "예시", + "textFind": "찾기", + "textFindAndReplace": "찾기 및 바꾸기", + "textFindAndReplaceAll": "모두 바꾸기", + "textFormat": "형식", + "textFormulaLanguage": "수식 언어", + "textFormulas": "수식", + "textHelp": "도움말", + "textHideGridlines": "눈금선 숨기기", + "textHideHeadings": "제목 숨기기", + "textHighlightRes": "결과 강조 표시", + "textInch": "인치", + "textLandscape": "수평", + "textLastModified": "최종 편집", + "textLastModifiedBy": "최종 편집자", + "textLeft": "왼쪽", + "textLocation": "위치", + "textLookIn": "검색 범위", + "textMacrosSettings": "매크로 설정", + "textMargins": "여백", + "textMatchCase": "대 / 소문자 일치", + "textMatchCell": "셀 일치", + "textNoTextFound": "텍스트를 찾을 수 없습니다", + "textOk": "확인", + "textOpenFile": "파일을 열려면 암호를 입력하십시오.", + "textOrientation": "방향", + "textOwner": "소유자", + "textPoint": "포인트", + "textPortrait": "세로", + "textPoweredBy": "기술 지원", + "textPrint": "인쇄", + "textR1C1Style": "R1C1 참조 양식", + "textRegionalSettings": "국가 별 설정", + "textReplace": "바꾸기", + "textReplaceAll": "모두 바꾸기", + "textResolvedComments": "해결된 코멘트", + "textRight": "오른쪽", + "textSearch": "검색", + "textSearchBy": "검색", + "textSearchIn": "검색 위치", + "textSettings": "설정", + "textSheet": "시트", + "textShowNotification": "알림 표시", + "textSpreadsheetFormats": "스프레드시트 형식", + "textSpreadsheetInfo": "스프레드 시트 정보", + "textSpreadsheetSettings": "스프레드시트 설정", + "textSpreadsheetTitle": "스프레드시트 제목", + "textSubject": "제목", + "textTel": "전화 번호", + "textTitle": "제목", + "textTop": "위", + "textUnitOfMeasurement": "측정 단위", + "textUploaded": "업로드 되었습니다", + "textValues": "값", + "textVersion": "버전", + "textWorkbook": "통합 문서", + "txtColon": "콜론", + "txtComma": "쉼표", + "txtDelimiter": "구분 기호", + "txtDownloadCsv": "CSV 다운로드", + "txtEncoding": "인코딩", + "txtIncorrectPwd": "잘못된 비밀번호", + "txtOk": "확인", + "txtProtected": "암호를 입력하고 파일을 열면 파일의 현재 암호가 재설정됩니다.", + "txtScheme1": "사무실", + "txtScheme10": "중앙값", + "txtScheme11": "매트로", + "txtScheme12": "모듈", + "txtScheme13": "호화 로움", + "txtScheme14": "외벽창", + "txtScheme15": "원본", + "txtScheme16": "종이", + "txtScheme17": "지점", + "txtScheme18": "기술", + "txtScheme19": "트레킹", + "txtScheme2": "흑백", + "txtScheme20": "도시", + "txtScheme21": "네온", + "txtScheme22": "신규 오피스", + "txtScheme3": "꼭지점", + "txtScheme4": "화면", + "txtScheme5": "시민", + "txtScheme6": "광장", + "txtScheme7": "같음", + "txtScheme8": "플로우", + "txtScheme9": "발견", + "txtSemicolon": "세미콜론", + "txtSpace": "공간", + "txtTab": "탭", + "warnDownloadAs": "이 형식으로 저장을 계속하면 텍스트를 제외한 모든 기능이 손실됩니다. 계속 하시겠습니까?" } } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/lo.json b/apps/spreadsheeteditor/mobile/locale/lo.json index be1f2ab84..9a557f4dd 100644 --- a/apps/spreadsheeteditor/mobile/locale/lo.json +++ b/apps/spreadsheeteditor/mobile/locale/lo.json @@ -214,7 +214,7 @@ "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 it until the connection is restored and the page is reloaded.", "errorWrongBracketsCount": "An error in the formula.
Wrong number of brackets.", - "errorWrongOperator": "An error in the entered formula. The wrong operator is used.
Correct the error or use the Esc button to cancel the formula editing.", + "errorWrongOperator": "An error in the entered formula. Wrong operator is used.
Please correct the error.", "notcriticalErrorTitle": "Warning", "openErrorText": "An error has occurred while opening the file", "pastInMergeAreaError": "Cannot change a part of a merged cell", @@ -224,7 +224,8 @@ "uploadImageExtMessage": "Unknown image format.", "uploadImageFileCountMessage": "No images uploaded.", "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.", - "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." + "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator.", + "errorChangeOnProtectedSheet": "The cell or chart you are trying to change is on a protected sheet. To make a change, unprotect the sheet. You might be requested to enter a password." }, "LongActions": { "applyChangesTextText": "Loading data...", diff --git a/apps/spreadsheeteditor/mobile/locale/lv.json b/apps/spreadsheeteditor/mobile/locale/lv.json index be1f2ab84..9a557f4dd 100644 --- a/apps/spreadsheeteditor/mobile/locale/lv.json +++ b/apps/spreadsheeteditor/mobile/locale/lv.json @@ -214,7 +214,7 @@ "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 it until the connection is restored and the page is reloaded.", "errorWrongBracketsCount": "An error in the formula.
Wrong number of brackets.", - "errorWrongOperator": "An error in the entered formula. The wrong operator is used.
Correct the error or use the Esc button to cancel the formula editing.", + "errorWrongOperator": "An error in the entered formula. Wrong operator is used.
Please correct the error.", "notcriticalErrorTitle": "Warning", "openErrorText": "An error has occurred while opening the file", "pastInMergeAreaError": "Cannot change a part of a merged cell", @@ -224,7 +224,8 @@ "uploadImageExtMessage": "Unknown image format.", "uploadImageFileCountMessage": "No images uploaded.", "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.", - "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." + "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator.", + "errorChangeOnProtectedSheet": "The cell or chart you are trying to change is on a protected sheet. To make a change, unprotect the sheet. You might be requested to enter a password." }, "LongActions": { "applyChangesTextText": "Loading data...", diff --git a/apps/spreadsheeteditor/mobile/locale/nb.json b/apps/spreadsheeteditor/mobile/locale/nb.json index be1f2ab84..9a557f4dd 100644 --- a/apps/spreadsheeteditor/mobile/locale/nb.json +++ b/apps/spreadsheeteditor/mobile/locale/nb.json @@ -214,7 +214,7 @@ "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 it until the connection is restored and the page is reloaded.", "errorWrongBracketsCount": "An error in the formula.
Wrong number of brackets.", - "errorWrongOperator": "An error in the entered formula. The wrong operator is used.
Correct the error or use the Esc button to cancel the formula editing.", + "errorWrongOperator": "An error in the entered formula. Wrong operator is used.
Please correct the error.", "notcriticalErrorTitle": "Warning", "openErrorText": "An error has occurred while opening the file", "pastInMergeAreaError": "Cannot change a part of a merged cell", @@ -224,7 +224,8 @@ "uploadImageExtMessage": "Unknown image format.", "uploadImageFileCountMessage": "No images uploaded.", "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.", - "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." + "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator.", + "errorChangeOnProtectedSheet": "The cell or chart you are trying to change is on a protected sheet. To make a change, unprotect the sheet. You might be requested to enter a password." }, "LongActions": { "applyChangesTextText": "Loading data...", diff --git a/apps/spreadsheeteditor/mobile/locale/nl.json b/apps/spreadsheeteditor/mobile/locale/nl.json index 6dbc74e15..df684f5a8 100644 --- a/apps/spreadsheeteditor/mobile/locale/nl.json +++ b/apps/spreadsheeteditor/mobile/locale/nl.json @@ -214,7 +214,7 @@ "errorUsersExceed": "Het onder het prijsplan toegestane aantal gebruikers is overschreden", "errorViewerDisconnect": "De verbinding is verbroken. U kunt het document nog steeds bekijken,
maar u zult het niet kunnen downloaden totdat de verbinding is hersteld en de pagina opnieuw is geladen.", "errorWrongBracketsCount": "Een fout in de formule.
Verkeerd aantal haakjes.", - "errorWrongOperator": "Een fout in de ingevoerde formule. De verkeerde operator is gebruikt.
Corrigeer de fout of gebruik de Esc-toets om het bewerken van de formule te annuleren.", + "errorWrongOperator": "Een fout in de ingevoerde formule. De verkeerde operator is gebruikt.
Corrigeer de fout.", "notcriticalErrorTitle": "Waarschuwing", "openErrorText": "Er is een fout opgetreden bij het openen van het bestand", "pastInMergeAreaError": "Kan een deel van een samengevoegde cel niet wijzigen", @@ -224,6 +224,7 @@ "uploadImageExtMessage": "Onbekende afbeeldingsindeling.", "uploadImageFileCountMessage": "Geen afbeeldingen geüpload.", "uploadImageSizeMessage": "De afbeelding is te groot. De maximale grote is 25MB.", + "errorChangeOnProtectedSheet": "The cell or chart you are trying to change is on a protected sheet. To make a change, unprotect the sheet. You might be requested to enter a password.", "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." }, "LongActions": { diff --git a/apps/spreadsheeteditor/mobile/locale/pl.json b/apps/spreadsheeteditor/mobile/locale/pl.json index be1f2ab84..9a557f4dd 100644 --- a/apps/spreadsheeteditor/mobile/locale/pl.json +++ b/apps/spreadsheeteditor/mobile/locale/pl.json @@ -214,7 +214,7 @@ "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 it until the connection is restored and the page is reloaded.", "errorWrongBracketsCount": "An error in the formula.
Wrong number of brackets.", - "errorWrongOperator": "An error in the entered formula. The wrong operator is used.
Correct the error or use the Esc button to cancel the formula editing.", + "errorWrongOperator": "An error in the entered formula. Wrong operator is used.
Please correct the error.", "notcriticalErrorTitle": "Warning", "openErrorText": "An error has occurred while opening the file", "pastInMergeAreaError": "Cannot change a part of a merged cell", @@ -224,7 +224,8 @@ "uploadImageExtMessage": "Unknown image format.", "uploadImageFileCountMessage": "No images uploaded.", "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.", - "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." + "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator.", + "errorChangeOnProtectedSheet": "The cell or chart you are trying to change is on a protected sheet. To make a change, unprotect the sheet. You might be requested to enter a password." }, "LongActions": { "applyChangesTextText": "Loading data...", diff --git a/apps/spreadsheeteditor/mobile/locale/pt.json b/apps/spreadsheeteditor/mobile/locale/pt.json index a2b6c4364..c9f8808cc 100644 --- a/apps/spreadsheeteditor/mobile/locale/pt.json +++ b/apps/spreadsheeteditor/mobile/locale/pt.json @@ -169,6 +169,7 @@ "errorAutoFilterHiddenRange": "A operação não pode ser realizada porque a área contém células filtradas.
Por favor, desamarre os elementos filtrados e tente novamente.", "errorBadImageUrl": "URL de imagem está incorreta", "errorChangeArray": "Você não pode mudar parte de uma matriz.", + "errorChangeOnProtectedSheet": "A célula ou gráfico que você está tentando alterar está em uma folha protegida. Para fazer uma alteração, desproteja a folha. Você pode ser solicitado a inserir a senha.", "errorConnectToServer": "Não é possível salvar este documento. Verifique as configurações de conexão ou entre em contato com o administrador.
Ao clicar no botão 'OK', você será solicitado a baixar o documento.", "errorCopyMultiselectArea": "Este comando não pode ser usado com várias seleções.
Selecione um intervalo único e tente novamente.", "errorCountArg": "Um erro na fórmula.
Número inválido de argumentos.", @@ -215,7 +216,7 @@ "errorUsersExceed": "O número de usuários permitidos pelo plano de preços foi excedido", "errorViewerDisconnect": "A conexão foi perdida. Você ainda pode ver o documento,
mas não poderá baixá-lo até que a conexão seja restaurada e a página recarregada.", "errorWrongBracketsCount": "Erro na fórmula.
Número incorreto de colchetes.", - "errorWrongOperator": "Um erro na fórmula inserida. O operador errado é usado.
Corrija o erro ou use o botão Esc para cancelar a edição da fórmula.", + "errorWrongOperator": "Um erro na fórmula inserida. O operador errado é usado.
Corrija o erro.", "notcriticalErrorTitle": "Aviso", "openErrorText": "Ocorreu um erro ao abrir o arquivo", "pastInMergeAreaError": "Não é possível alterar uma parte de uma célula mesclada", diff --git a/apps/spreadsheeteditor/mobile/locale/ro.json b/apps/spreadsheeteditor/mobile/locale/ro.json index 5571a18fc..90b049ca2 100644 --- a/apps/spreadsheeteditor/mobile/locale/ro.json +++ b/apps/spreadsheeteditor/mobile/locale/ro.json @@ -125,7 +125,7 @@ "txtStyle_Title": "Titlu", "txtStyle_Total": "Total", "txtStyle_Warning_Text": "Mesaj de avertisment", - "txtTab": "Fila", + "txtTab": "Tabulator", "txtTable": "Tabel", "txtTime": "Oră", "txtValues": "Valori", @@ -150,9 +150,9 @@ "warnLicenseExceeded": "Ați atins numărul maxim de conexiuni simultane la %1 de editoare. Documentul este disponibil numai pentru vizualizare. Contactați administratorul dvs pentru mai multe detalii.", "warnLicenseLimitedNoAccess": "Licența dvs. a expirat. Nu aveți acces la funcții de editare a documentului.Contactați administratorul dvs. de rețeea.", "warnLicenseLimitedRenewed": "Licență urmează să fie reînnoită.
Funcțiile de editare sunt cu acces limitat.
Pentru a obține acces nelimitat, contactați administratorul dvs. de rețea.", - "warnLicenseUsersExceeded": "Ați atins numărul maxim de utilizatori al %1 editoare. Pentru detalii, contactați administratorul dvs.", + "warnLicenseUsersExceeded": "Ați atins numărul maxim de utilizatori ai %1 editoare. Pentru detalii, contactați administratorul dvs.", "warnNoLicense": "Ați atins numărul maxim de conexiuni simultane la %1 de editoare. Documentul este disponibil numai pentru vizualizare. Contactați %1 Departamentul de Vânzări pentru acordarea condițiilor personale de actualizare.", - "warnNoLicenseUsers": "Ați atins numărul maxim de utilizatori al %1 editoare. Contactați Grup Vânzări %1 pentru acordarea condițiilor personale de actualizare.", + "warnNoLicenseUsers": "Ați atins numărul maxim de utilizatori ai %1 editoare. Contactați Grup Vânzări %1 pentru acordarea condițiilor personale de licențiere.", "warnProcessRightsChange": "Nu aveți permisiunea de editare pentru fișier." } }, @@ -169,6 +169,7 @@ "errorAutoFilterHiddenRange": "Operațiunea nu poate fi efectuată deoarece zonă conține celule filtrate.
Reafișați elementele filtrate și încercați din nou.", "errorBadImageUrl": "URL-ul imaginii incorectă", "errorChangeArray": "Nu puteți modifica parte dintr-o matrice.", + "errorChangeOnProtectedSheet": "Celula sau diagrama pe care încercați să schimbați este din foaia de calcul protejată. Dezactivați protejarea foii de calcul dacă doriți s-o schimați.Este posibil să fie necesară introducerea parolei.", "errorConnectToServer": "Salvarea documentului nu este posibilă. Verificați configurarea conexeunii sau contactaţi administratorul dumneavoastră de reţea
Când faceți clic pe OK, vi se va solicita să descărcați documentul.", "errorCopyMultiselectArea": "Această comandă nu poate fi aplicată la selecții multiple
Selectați o singură zonă și încercați din nou.", "errorCountArg": "Eroare în formulă.
Număr incorect de argumente.", @@ -215,7 +216,7 @@ "errorUsersExceed": "Limita de utilizatori stipulată de planul tarifar a fost depășită", "errorViewerDisconnect": "Conexiunea a fost pierdută. Încă mai puteți vizualiza documentul,
dar nu și să-l descărcați până când conexiunea se restabilește și pagina se reîmprospătează.", "errorWrongBracketsCount": "Eroare în formulă.
Numărul de paranteze incorect.", - "errorWrongOperator": "Eroare în formulă. Operator necorespunzător.
Corectați eroarea sau apăsați Esc pentru anularea editărilor formulei.", + "errorWrongOperator": "Eroare în formulă. Operator necorespunzător.
Corectați eroarea.", "notcriticalErrorTitle": "Avertisment", "openErrorText": "Eroare la deschiderea fișierului", "pastInMergeAreaError": "O parte din celulă îmbinată nu poate fi modificată ", @@ -649,7 +650,7 @@ "txtScheme9": "Forjă", "txtSemicolon": "Punct și virgulă", "txtSpace": "Spațiu", - "txtTab": "Fila", + "txtTab": "Tabulator", "warnDownloadAs": "Dacă salvați în acest format de fișier, este posibil ca unele dintre caracteristici să se piardă, cu excepția textului.
Sunteți sigur că doriți să continuați?" } } diff --git a/apps/spreadsheeteditor/mobile/locale/ru.json b/apps/spreadsheeteditor/mobile/locale/ru.json index 9cfdf37b8..9641f0c5d 100644 --- a/apps/spreadsheeteditor/mobile/locale/ru.json +++ b/apps/spreadsheeteditor/mobile/locale/ru.json @@ -169,6 +169,7 @@ "errorAutoFilterHiddenRange": "Операция не может быть произведена, так как область содержит отфильтрованные ячейки.
Выведите на экран скрытые фильтром элементы и повторите попытку.", "errorBadImageUrl": "Неправильный URL-адрес рисунка", "errorChangeArray": "Нельзя изменить часть массива.", + "errorChangeOnProtectedSheet": "Ячейка или диаграмма, которую вы пытаетесь изменить, находится на защищенном листе. Чтобы внести изменения, снимите защиту листа. Может потребоваться пароль.", "errorConnectToServer": "Не удается сохранить документ. Проверьте параметры подключения или обратитесь к вашему администратору.
Когда вы нажмете на кнопку 'OK', вам будет предложено скачать документ.", "errorCopyMultiselectArea": "Данная команда неприменима для несвязных диапазонов.
Выберите один диапазон и повторите попытку.", "errorCountArg": "Ошибка в формуле.
Неверное количество аргументов.", @@ -215,7 +216,7 @@ "errorUsersExceed": "Превышено количество пользователей, разрешенных согласно тарифному плану", "errorViewerDisconnect": "Подключение прервано. Вы можете просматривать документ,
но не сможете скачать или напечатать его до восстановления подключения и обновления страницы.", "errorWrongBracketsCount": "Ошибка в формуле.
Неверное количество скобок.", - "errorWrongOperator": "Ошибка во введенной формуле. Использован неправильный оператор.
Исправьте ошибку или используйте клавишу Esc для отмены редактирования формулы.", + "errorWrongOperator": "Ошибка во введенной формуле. Использован неправильный оператор.
Пожалуйста, исправьте ошибку.", "notcriticalErrorTitle": "Внимание", "openErrorText": "При открытии файла произошла ошибка", "pastInMergeAreaError": "Нельзя изменить часть объединенной ячейки", diff --git a/apps/spreadsheeteditor/mobile/locale/sk.json b/apps/spreadsheeteditor/mobile/locale/sk.json index be1f2ab84..9a557f4dd 100644 --- a/apps/spreadsheeteditor/mobile/locale/sk.json +++ b/apps/spreadsheeteditor/mobile/locale/sk.json @@ -214,7 +214,7 @@ "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 it until the connection is restored and the page is reloaded.", "errorWrongBracketsCount": "An error in the formula.
Wrong number of brackets.", - "errorWrongOperator": "An error in the entered formula. The wrong operator is used.
Correct the error or use the Esc button to cancel the formula editing.", + "errorWrongOperator": "An error in the entered formula. Wrong operator is used.
Please correct the error.", "notcriticalErrorTitle": "Warning", "openErrorText": "An error has occurred while opening the file", "pastInMergeAreaError": "Cannot change a part of a merged cell", @@ -224,7 +224,8 @@ "uploadImageExtMessage": "Unknown image format.", "uploadImageFileCountMessage": "No images uploaded.", "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.", - "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." + "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator.", + "errorChangeOnProtectedSheet": "The cell or chart you are trying to change is on a protected sheet. To make a change, unprotect the sheet. You might be requested to enter a password." }, "LongActions": { "applyChangesTextText": "Loading data...", diff --git a/apps/spreadsheeteditor/mobile/locale/sl.json b/apps/spreadsheeteditor/mobile/locale/sl.json index be1f2ab84..9a557f4dd 100644 --- a/apps/spreadsheeteditor/mobile/locale/sl.json +++ b/apps/spreadsheeteditor/mobile/locale/sl.json @@ -214,7 +214,7 @@ "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 it until the connection is restored and the page is reloaded.", "errorWrongBracketsCount": "An error in the formula.
Wrong number of brackets.", - "errorWrongOperator": "An error in the entered formula. The wrong operator is used.
Correct the error or use the Esc button to cancel the formula editing.", + "errorWrongOperator": "An error in the entered formula. Wrong operator is used.
Please correct the error.", "notcriticalErrorTitle": "Warning", "openErrorText": "An error has occurred while opening the file", "pastInMergeAreaError": "Cannot change a part of a merged cell", @@ -224,7 +224,8 @@ "uploadImageExtMessage": "Unknown image format.", "uploadImageFileCountMessage": "No images uploaded.", "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.", - "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." + "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator.", + "errorChangeOnProtectedSheet": "The cell or chart you are trying to change is on a protected sheet. To make a change, unprotect the sheet. You might be requested to enter a password." }, "LongActions": { "applyChangesTextText": "Loading data...", diff --git a/apps/spreadsheeteditor/mobile/locale/tr.json b/apps/spreadsheeteditor/mobile/locale/tr.json index be1f2ab84..9a557f4dd 100644 --- a/apps/spreadsheeteditor/mobile/locale/tr.json +++ b/apps/spreadsheeteditor/mobile/locale/tr.json @@ -214,7 +214,7 @@ "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 it until the connection is restored and the page is reloaded.", "errorWrongBracketsCount": "An error in the formula.
Wrong number of brackets.", - "errorWrongOperator": "An error in the entered formula. The wrong operator is used.
Correct the error or use the Esc button to cancel the formula editing.", + "errorWrongOperator": "An error in the entered formula. Wrong operator is used.
Please correct the error.", "notcriticalErrorTitle": "Warning", "openErrorText": "An error has occurred while opening the file", "pastInMergeAreaError": "Cannot change a part of a merged cell", @@ -224,7 +224,8 @@ "uploadImageExtMessage": "Unknown image format.", "uploadImageFileCountMessage": "No images uploaded.", "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.", - "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." + "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator.", + "errorChangeOnProtectedSheet": "The cell or chart you are trying to change is on a protected sheet. To make a change, unprotect the sheet. You might be requested to enter a password." }, "LongActions": { "applyChangesTextText": "Loading data...", diff --git a/apps/spreadsheeteditor/mobile/locale/uk.json b/apps/spreadsheeteditor/mobile/locale/uk.json index be1f2ab84..9a557f4dd 100644 --- a/apps/spreadsheeteditor/mobile/locale/uk.json +++ b/apps/spreadsheeteditor/mobile/locale/uk.json @@ -214,7 +214,7 @@ "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 it until the connection is restored and the page is reloaded.", "errorWrongBracketsCount": "An error in the formula.
Wrong number of brackets.", - "errorWrongOperator": "An error in the entered formula. The wrong operator is used.
Correct the error or use the Esc button to cancel the formula editing.", + "errorWrongOperator": "An error in the entered formula. Wrong operator is used.
Please correct the error.", "notcriticalErrorTitle": "Warning", "openErrorText": "An error has occurred while opening the file", "pastInMergeAreaError": "Cannot change a part of a merged cell", @@ -224,7 +224,8 @@ "uploadImageExtMessage": "Unknown image format.", "uploadImageFileCountMessage": "No images uploaded.", "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.", - "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." + "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator.", + "errorChangeOnProtectedSheet": "The cell or chart you are trying to change is on a protected sheet. To make a change, unprotect the sheet. You might be requested to enter a password." }, "LongActions": { "applyChangesTextText": "Loading data...", diff --git a/apps/spreadsheeteditor/mobile/locale/vi.json b/apps/spreadsheeteditor/mobile/locale/vi.json index be1f2ab84..9a557f4dd 100644 --- a/apps/spreadsheeteditor/mobile/locale/vi.json +++ b/apps/spreadsheeteditor/mobile/locale/vi.json @@ -214,7 +214,7 @@ "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 it until the connection is restored and the page is reloaded.", "errorWrongBracketsCount": "An error in the formula.
Wrong number of brackets.", - "errorWrongOperator": "An error in the entered formula. The wrong operator is used.
Correct the error or use the Esc button to cancel the formula editing.", + "errorWrongOperator": "An error in the entered formula. Wrong operator is used.
Please correct the error.", "notcriticalErrorTitle": "Warning", "openErrorText": "An error has occurred while opening the file", "pastInMergeAreaError": "Cannot change a part of a merged cell", @@ -224,7 +224,8 @@ "uploadImageExtMessage": "Unknown image format.", "uploadImageFileCountMessage": "No images uploaded.", "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.", - "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." + "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator.", + "errorChangeOnProtectedSheet": "The cell or chart you are trying to change is on a protected sheet. To make a change, unprotect the sheet. You might be requested to enter a password." }, "LongActions": { "applyChangesTextText": "Loading data...", diff --git a/apps/spreadsheeteditor/mobile/locale/zh.json b/apps/spreadsheeteditor/mobile/locale/zh.json index 9b399c081..035de4299 100644 --- a/apps/spreadsheeteditor/mobile/locale/zh.json +++ b/apps/spreadsheeteditor/mobile/locale/zh.json @@ -74,7 +74,9 @@ "notcriticalErrorTitle": "警告", "SDK": { "txtAccent": "强调", + "txtAll": "(全部)", "txtArt": "你的文本在此", + "txtBlank": "(空白)", "txtDiagramTitle": "图表标题", "txtSeries": "系列", "txtStyle_Bad": "差", @@ -100,8 +102,6 @@ "txtStyle_Warning_Text": "警告文本", "txtXAxis": "X轴", "txtYAxis": "Y轴", - "txtAll": "(All)", - "txtBlank": "(blank)", "txtByField": "%1 of %2", "txtClearFilter": "Clear Filter (Alt+C)", "txtColLbls": "Column Labels", @@ -212,9 +212,9 @@ "errorUpdateVersionOnDisconnect": "网络连接已恢复,文件版本已变更。
在继续工作之前,需要下载文件或复制其内容以避免丢失数据,然后刷新此页。", "errorUserDrop": "该文件现在无法访问。", "errorUsersExceed": "超过了定价计划允许的用户数", - "errorViewerDisconnect": "网络连接失败。你仍然可以查看这个文档,
但在连接恢复并刷新该页之前,你将不能下载这个文档。", + "errorViewerDisconnect": "网络连接失败。你仍然可以查看这个文档,
但在连接恢复并刷新该页之前,你将不能下载或打印这个文档。", "errorWrongBracketsCount": "公式中有错误。
括号数量不对。", - "errorWrongOperator": "输入的公式中有错误。你使用了错误的运算符。
请修正错误,或按下 Esc 按钮取消公式编辑。", + "errorWrongOperator": "输入的公式中有错误。你使用了错误的运算符。
请修正错误。", "notcriticalErrorTitle": "警告", "openErrorText": "打开文件时发生错误", "pastInMergeAreaError": "不能修改合并后的单元格的一部分", @@ -224,6 +224,7 @@ "uploadImageExtMessage": "未知图像格式。", "uploadImageFileCountMessage": "没有图片上传", "uploadImageSizeMessage": "图片太大了。最大允许的大小是 25 MB.", + "errorChangeOnProtectedSheet": "The cell or chart you are trying to change is on a protected sheet. To make a change, unprotect the sheet. You might be requested to enter a password.", "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." }, "LongActions": { @@ -556,6 +557,7 @@ "textEmail": "电子邮件", "textEnableAll": "启动所有项目", "textEnableAllMacrosWithoutNotification": "启动所有不带通知的宏", + "textEncoding": "编码", "textExample": "列入", "textFind": "查找", "textFindAndReplace": "查找和替换", @@ -612,6 +614,7 @@ "textVersion": "版本", "textWorkbook": "工作簿", "txtDelimiter": "字段分隔符", + "txtDownloadCsv": "下载CSV", "txtEncoding": "编码", "txtIncorrectPwd": "密码有误", "txtProtected": "在您输入密码和打开文件后,该文件的当前密码将被重置", @@ -622,11 +625,9 @@ "textChooseDelimeter": "Choose Delimeter", "textChooseEncoding": "Choose Encoding", "textDelimeter": "Delimiter", - "textEncoding": "Encoding", "textOk": "Ok", "txtColon": "Colon", "txtComma": "Comma", - "txtDownloadCsv": "Download CSV", "txtOk": "Ok", "txtScheme1": "Office", "txtScheme10": "Median", diff --git a/apps/spreadsheeteditor/mobile/src/controller/CellEditor.jsx b/apps/spreadsheeteditor/mobile/src/controller/CellEditor.jsx index 9f41efbd5..f67658762 100644 --- a/apps/spreadsheeteditor/mobile/src/controller/CellEditor.jsx +++ b/apps/spreadsheeteditor/mobile/src/controller/CellEditor.jsx @@ -14,7 +14,7 @@ const CellEditor = props => { }, []); const [cellName, setCellName] = useState(''); - const [stateCoauth, setCoauthDisabled] = useState(null); + const [stateFunctions, setFunctionshDisabled] = useState(null); const [stateFuncArr, setFuncArr] = useState(''); const onApiCellSelection = info => { @@ -22,7 +22,17 @@ const CellEditor = props => { }; const onApiSelectionChanged = info => { - setCoauthDisabled(info.asc_getLocked() === true || info.asc_getLockedTable() === true || info.asc_getLockedPivotTable()===true); + let seltype = info.asc_getSelectionType(), + coauth_disable = info.asc_getLocked() === true || info.asc_getLockedTable() === true || info.asc_getLockedPivotTable()===true; + + let is_chart_text = seltype == Asc.c_oAscSelectionType.RangeChartText, + is_chart = seltype == Asc.c_oAscSelectionType.RangeChart, + is_shape_text = seltype == Asc.c_oAscSelectionType.RangeShapeText, + is_shape = seltype == Asc.c_oAscSelectionType.RangeShape, + is_image = seltype == Asc.c_oAscSelectionType.RangeImage || seltype == Asc.c_oAscSelectionType.RangeSlicer, + is_mode_2 = is_shape_text || is_shape || is_chart_text || is_chart; + + setFunctionshDisabled(is_image || is_mode_2 || coauth_disable); } const onFormulaCompleteMenu = funcArr => { @@ -43,7 +53,7 @@ const CellEditor = props => { return ( ({ +@inject (stores => ({ isEdit: stores.storeAppOptions.isEdit, canComments: stores.storeAppOptions.canComments, canViewComments: stores.storeAppOptions.canViewComments, canCoAuthoring: stores.storeAppOptions.canCoAuthoring, users: stores.users, isDisconnected: stores.users.isDisconnected, - storeSheets: stores.sheets + storeSheets: stores.sheets, + wsProps: stores.storeWorksheets.wsProps, + wsLock: stores.storeWorksheets.wsLock })) class ContextMenu extends ContextMenuController { constructor(props) { @@ -120,13 +122,24 @@ class ContextMenu extends ContextMenuController { onMergeCells() { const { t } = this.props; - const _t = t("ContextMenu", { returnObjects: true }); const api = Common.EditorApi.get(); if (api.asc_mergeCellsDataLost(Asc.c_oAscMergeOptions.Merge)) { setTimeout(() => { - f7.dialog.confirm(_t.warnMergeLostData, _t.notcriticalErrorTitle, () => { - api.asc_mergeCells(Asc.c_oAscMergeOptions.Merge); - }); + f7.dialog.create({ + title: t('ContextMenu.notcriticalErrorTitle'), + text: t('ContextMenu.warnMergeLostData'), + buttons: [ + { + text: t('ContextMenu.menuCancel') + }, + { + text: 'OK', + onClick: () => { + api.asc_mergeCells(Asc.c_oAscMergeOptions.Merge); + } + } + ] + }).open(); }, 0); } else { api.asc_mergeCells(Asc.c_oAscMergeOptions.Merge); diff --git a/apps/spreadsheeteditor/mobile/src/controller/Encoding.jsx b/apps/spreadsheeteditor/mobile/src/controller/Encoding.jsx index d99271a38..9052a5bb9 100644 --- a/apps/spreadsheeteditor/mobile/src/controller/Encoding.jsx +++ b/apps/spreadsheeteditor/mobile/src/controller/Encoding.jsx @@ -38,12 +38,11 @@ class EncodingController extends Component { this.mode = mode; this.advOptions = advOptions; this.formatOptions = formatOptions; - this.pages = []; - this.pagesName = []; + this.encodeData = []; const recommendedSettings = this.advOptions.asc_getRecommendedSettings(); - this.initPages(); + this.initEncodeData(); this.valueEncoding = recommendedSettings.asc_getCodePage(); this.valueDelimeter = recommendedSettings && recommendedSettings.asc_getDelimiter() ? recommendedSettings.asc_getDelimiter() : 4; @@ -53,10 +52,13 @@ class EncodingController extends Component { } } - initPages() { + initEncodeData() { for (let page of this.advOptions.asc_getCodePages()) { - this.pages.push(page.asc_getCodePage()); - this.pagesName.push(page.asc_getCodePageName()); + this.encodeData.push({ + value: page.asc_getCodePage(), + displayValue: page.asc_getCodePageName(), + lcid: page.asc_getLcid() + }); } } @@ -85,8 +87,7 @@ class EncodingController extends Component { closeModal={this.closeModal} mode={this.mode} onSaveFormat={this.onSaveFormat} - pages={this.pages} - pagesName={this.pagesName} + encodeData={this.encodeData} namesDelimeter={this.namesDelimeter} valueEncoding={this.valueEncoding} valueDelimeter={this.valueDelimeter} diff --git a/apps/spreadsheeteditor/mobile/src/controller/Error.jsx b/apps/spreadsheeteditor/mobile/src/controller/Error.jsx index bc4927c27..8ef4faff2 100644 --- a/apps/spreadsheeteditor/mobile/src/controller/Error.jsx +++ b/apps/spreadsheeteditor/mobile/src/controller/Error.jsx @@ -304,7 +304,7 @@ const ErrorController = inject('storeAppOptions')(({storeAppOptions, LoadingDocu break; case Asc.c_oAscError.ID.ChangeOnProtectedSheet: - config.msg = _t.errorChangeOnProtectedSheet; + config.msg = t('Error.errorChangeOnProtectedSheet'); break; case Asc.c_oAscError.ID.LoadingFontError: diff --git a/apps/spreadsheeteditor/mobile/src/controller/Main.jsx b/apps/spreadsheeteditor/mobile/src/controller/Main.jsx index e025854b2..06e612b40 100644 --- a/apps/spreadsheeteditor/mobile/src/controller/Main.jsx +++ b/apps/spreadsheeteditor/mobile/src/controller/Main.jsx @@ -32,7 +32,8 @@ import { useTranslation } from 'react-i18next'; "storeSpreadsheetSettings", "storeSpreadsheetInfo", "storeApplicationSettings", - "storeToolbarSettings" + "storeToolbarSettings", + "storeWorksheets" ) class MainController extends Component { constructor(props) { @@ -48,6 +49,9 @@ class MainController extends Component { licenseType: false, isDocModified: false }; + + this.wsLockOptions = ['SelectLockedCells', 'SelectUnlockedCells', 'FormatCells', 'FormatColumns', 'FormatRows', 'InsertColumns', 'InsertRows', 'InsertHyperlinks', 'DeleteColumns', + 'DeleteRows', 'Sort', 'AutoFilter', 'PivotTables', 'Objects', 'Scenarios']; this.defaultTitleText = __APP_TITLE_TEXT__; @@ -397,7 +401,46 @@ class MainController extends Component { storeFocusObjects.setEditFormulaMode(isFormula); } } + + storeFocusObjects.setFunctionsDisabled(state === Asc.c_oAscCellEditorState.editText); }); + + this.api.asc_registerCallback('asc_onChangeProtectWorksheet', this.onChangeProtectSheet.bind(this)); + this.api.asc_registerCallback('asc_onActiveSheetChanged', this.onChangeProtectSheet.bind(this)); + } + + onChangeProtectSheet() { + const storeWorksheets = this.props.storeWorksheets; + let {wsLock, wsProps} = this.getWSProps(true); + + storeWorksheets.setWsLock(wsLock); + storeWorksheets.setWsProps(wsProps); + } + + getWSProps(update) { + const storeAppOptions = this.props.storeAppOptions; + let wsProtection = {}; + if (!storeAppOptions.config || !storeAppOptions.isEdit && !storeAppOptions.isRestrictedEdit) return; + + if (update) { + let wsLock = !!this.api.asc_isProtectedSheet(); + let wsProps = {}; + + if (wsLock) { + let props = this.api.asc_getProtectedSheet(); + props && this.wsLockOptions.forEach(function(item){ + wsProps[item] = props['asc_get' + item] ? props['asc_get' + item]() : false; + }); + } else { + this.wsLockOptions.forEach(function(item){ + wsProps[item] = false; + }); + } + + wsProtection = {wsLock, wsProps}; + } + + return wsProtection; } _onLongActionEnd(type, id) { diff --git a/apps/spreadsheeteditor/mobile/src/controller/Statusbar.jsx b/apps/spreadsheeteditor/mobile/src/controller/Statusbar.jsx index 51d75b610..9455ee9e0 100644 --- a/apps/spreadsheeteditor/mobile/src/controller/Statusbar.jsx +++ b/apps/spreadsheeteditor/mobile/src/controller/Statusbar.jsx @@ -19,6 +19,9 @@ const StatusbarController = inject('sheets', 'storeFocusObjects', 'users')(obser sheets.setWorksheetLocked(index, locked); storeFocusObjects.setIsLocked(api.asc_getCellInfo()); }); + api.asc_registerCallback('asc_onChangeProtectWorkbook', () => { + sheets.setProtectedWorkbook(api.asc_isProtectedWorkbook()); + }); api.asc_registerCallback('asc_onSheetsChanged', onApiSheetsChanged); api.asc_registerCallback('asc_onActiveSheetChanged', onApiActiveSheetChanged); api.asc_registerCallback('asc_onHidePopMenu', onApiHideTabContextMenu); @@ -123,6 +126,7 @@ const Statusbar = inject('sheets', 'storeAppOptions', 'users')(observer(props => const _t = t('Statusbar', {returnObjects: true}); const isEdit = storeAppOptions.isEdit; const isDisconnected = users.isDisconnected; + const isProtectedWorkbook = sheets.isProtectedWorkbook; useEffect(() => { const on_main_view_click = e => { @@ -180,7 +184,7 @@ const Statusbar = inject('sheets', 'storeAppOptions', 'users')(observer(props => if (index == api.asc_getActiveWorksheetIndex()) { if (!opened) { - if (isEdit && !isDisconnected && !model.locked) { + if (isEdit && !isDisconnected && !model.locked && !isProtectedWorkbook) { api.asc_closeCellEditor(); f7.popover.open('#idx-tab-context-menu-popover', target); } @@ -229,7 +233,7 @@ const Statusbar = inject('sheets', 'storeAppOptions', 'users')(observer(props => let current = api.asc_getWorksheetName(api.asc_getActiveWorksheetIndex()); f7.dialog.create({ - title: _t.textRenameSheet, + title: _t.textSheetName, content: Device.ios ? '
' : '
', diff --git a/apps/spreadsheeteditor/mobile/src/controller/Toolbar.jsx b/apps/spreadsheeteditor/mobile/src/controller/Toolbar.jsx index 45c2c5964..882639130 100644 --- a/apps/spreadsheeteditor/mobile/src/controller/Toolbar.jsx +++ b/apps/spreadsheeteditor/mobile/src/controller/Toolbar.jsx @@ -4,14 +4,18 @@ import { f7 } from 'framework7-react'; import { useTranslation } from 'react-i18next'; import ToolbarView from "../view/Toolbar"; -const ToolbarController = inject('storeAppOptions', 'users', 'storeSpreadsheetInfo', 'storeFocusObjects', 'storeToolbarSettings')(observer(props => { +const ToolbarController = inject('storeAppOptions', 'users', 'storeSpreadsheetInfo', 'storeFocusObjects', 'storeToolbarSettings', 'storeWorksheets')(observer(props => { const {t} = useTranslation(); const _t = t("Toolbar", { returnObjects: true }); + const storeWorksheets = props.storeWorksheets; + const wsProps = storeWorksheets.wsProps; + const appOptions = props.storeAppOptions; const isDisconnected = props.users.isDisconnected; const storeFocusObjects = props.storeFocusObjects; + const focusOn = storeFocusObjects.focusOn; const isObjectLocked = storeFocusObjects.isLocked; const isEditCell = storeFocusObjects.isEditCell; const editFormulaMode = storeFocusObjects.editFormulaMode; @@ -153,6 +157,8 @@ const ToolbarController = inject('storeAppOptions', 'users', 'storeSpreadsheetIn showEditDocument={showEditDocument} onEditDocument={onEditDocument} isDisconnected={isDisconnected} + wsProps={wsProps} + focusOn={focusOn} /> ) })); diff --git a/apps/spreadsheeteditor/mobile/src/controller/add/AddFilter.jsx b/apps/spreadsheeteditor/mobile/src/controller/add/AddFilter.jsx index 5a94bdccc..e9efe41cc 100644 --- a/apps/spreadsheeteditor/mobile/src/controller/add/AddFilter.jsx +++ b/apps/spreadsheeteditor/mobile/src/controller/add/AddFilter.jsx @@ -1,6 +1,7 @@ import React, {Component} from 'react'; import { f7 } from 'framework7-react'; import { withTranslation } from 'react-i18next'; +import {observer, inject} from "mobx-react"; import AddSortAndFilter from '../../view/add/AddFilter'; @@ -120,9 +121,10 @@ class AddFilterController extends Component { onInsertSort={this.onInsertSort} onInsertFilter={this.onInsertFilter} isFilter={this.state.isFilter} + wsLock={this.props.storeWorksheets.wsLock} /> ) } } -export default withTranslation()(AddFilterController); \ No newline at end of file +export default inject("storeWorksheets")(observer(withTranslation()(AddFilterController))); \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/src/controller/add/AddOther.jsx b/apps/spreadsheeteditor/mobile/src/controller/add/AddOther.jsx index b168becbe..36250ffc7 100644 --- a/apps/spreadsheeteditor/mobile/src/controller/add/AddOther.jsx +++ b/apps/spreadsheeteditor/mobile/src/controller/add/AddOther.jsx @@ -30,6 +30,7 @@ class AddOtherController extends Component { return ( ) } diff --git a/apps/spreadsheeteditor/mobile/src/page/main.jsx b/apps/spreadsheeteditor/mobile/src/page/main.jsx index bcec812b5..ad588fc10 100644 --- a/apps/spreadsheeteditor/mobile/src/page/main.jsx +++ b/apps/spreadsheeteditor/mobile/src/page/main.jsx @@ -88,6 +88,9 @@ class MainPage extends Component { render() { const appOptions = this.props.storeAppOptions; + const storeWorksheets = this.props.storeWorksheets; + const wsProps = storeWorksheets.wsProps; + const wsLock = storeWorksheets.wsLock; const config = appOptions.config; const showLogo = !(appOptions.canBrandingExt && (config.customization && (config.customization.loaderName || config.customization.loaderLogo))); const showPlaceholder = !appOptions.isDocReady && (!config.customization || !(config.customization.loaderName || config.customization.loaderLogo)); @@ -118,11 +121,11 @@ class MainPage extends Component { { !this.state.editOptionsVisible ? null : - + } { !this.state.addOptionsVisible ? null : - + } { !this.state.settingsVisible ? null : @@ -148,4 +151,4 @@ class MainPage extends Component { } } -export default inject("storeAppOptions")(observer(MainPage)); \ No newline at end of file +export default inject("storeAppOptions", "storeWorksheets")(observer(MainPage)); \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/src/store/cellSettings.js b/apps/spreadsheeteditor/mobile/src/store/cellSettings.js index a715a2353..c34c0d6a3 100644 --- a/apps/spreadsheeteditor/mobile/src/store/cellSettings.js +++ b/apps/spreadsheeteditor/mobile/src/store/cellSettings.js @@ -35,8 +35,8 @@ export class storeCellSettings { } styleSize = { - width: 100, - height: 50 + width: 104, + height: 48 }; borderInfo = { diff --git a/apps/spreadsheeteditor/mobile/src/store/focusObjects.js b/apps/spreadsheeteditor/mobile/src/store/focusObjects.js index c16c6a4c5..dbf5f226f 100644 --- a/apps/spreadsheeteditor/mobile/src/store/focusObjects.js +++ b/apps/spreadsheeteditor/mobile/src/store/focusObjects.js @@ -19,7 +19,9 @@ export class storeFocusObjects { editFormulaMode: observable, setEditFormulaMode: action, isEditCell: observable, - setEditCell: action + setEditCell: action, + functionsDisable: observable, + setFunctionsDisabled: action, }); } @@ -122,4 +124,10 @@ export class storeFocusObjects { this.isEditCell = value; } + functionsDisable = false; + + setFunctionsDisabled(value) { + this.functionsDisable = value; + } + } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/src/store/mainStore.js b/apps/spreadsheeteditor/mobile/src/store/mainStore.js index 93742a6c4..33fe3da4a 100644 --- a/apps/spreadsheeteditor/mobile/src/store/mainStore.js +++ b/apps/spreadsheeteditor/mobile/src/store/mainStore.js @@ -38,6 +38,7 @@ export const stores = { // storeImageSettings: new storeImageSettings(), // storeTableSettings: new storeTableSettings() storeComments: new storeComments(), - storeToolbarSettings: new storeToolbarSettings() + storeToolbarSettings: new storeToolbarSettings(), + storeWorksheets: new storeWorksheets() }; diff --git a/apps/spreadsheeteditor/mobile/src/store/sheets.js b/apps/spreadsheeteditor/mobile/src/store/sheets.js index 54e04a34b..7447b6872 100644 --- a/apps/spreadsheeteditor/mobile/src/store/sheets.js +++ b/apps/spreadsheeteditor/mobile/src/store/sheets.js @@ -33,7 +33,13 @@ export class storeWorksheets { setWorkbookLocked: action, isWorksheetLocked: observable, - setWorksheetLocked: action + setWorksheetLocked: action, + + isProtectedWorkbook: observable, + setProtectedWorkbook: action, + + wsProps: observable, + setWsProps: action }); this.sheets = []; } @@ -87,6 +93,21 @@ export class storeWorksheets { let model = this.sheets[index]; if(model && model.locked !== locked) model.locked = locked; - this.isWorkbookLocked = locked; + this.isWorksheetLocked = locked; + } + + isProtectedWorkbook = false; + setProtectedWorkbook(value) { + this.isProtectedWorkbook = value; + } + + wsProps = {}; + setWsProps(value) { + this.wsProps = value; + } + + wsLock; + setWsLock(value) { + this.wsLock = value; } } diff --git a/apps/spreadsheeteditor/mobile/src/view/CellEditor.jsx b/apps/spreadsheeteditor/mobile/src/view/CellEditor.jsx index f57bf3e3d..b95013fd1 100644 --- a/apps/spreadsheeteditor/mobile/src/view/CellEditor.jsx +++ b/apps/spreadsheeteditor/mobile/src/view/CellEditor.jsx @@ -87,6 +87,7 @@ const CellEditorView = props => { const isPhone = Device.isPhone; const storeAppOptions = props.storeAppOptions; const storeFunctions = props.storeFunctions; + const {functionsDisable} = props.storeFocusObjects; const functions = storeFunctions.functions; const isEdit = storeAppOptions.isEdit; const funcArr = props.funcArr; @@ -100,7 +101,7 @@ const CellEditorView = props => { @@ -154,4 +155,4 @@ const routes = [ ]; -export default inject("storeAppOptions", "storeFunctions")(observer(CellEditorView)); +export default inject("storeAppOptions", "storeFunctions", "storeFocusObjects")(observer(CellEditorView)); diff --git a/apps/spreadsheeteditor/mobile/src/view/Encoding.jsx b/apps/spreadsheeteditor/mobile/src/view/Encoding.jsx index a746a38c9..8899d960f 100644 --- a/apps/spreadsheeteditor/mobile/src/view/Encoding.jsx +++ b/apps/spreadsheeteditor/mobile/src/view/Encoding.jsx @@ -6,13 +6,13 @@ import { Device } from '../../../../common/mobile/utils/device'; const PageEncoding = props => { const { t } = useTranslation(); const _t = t("View.Settings", { returnObjects: true }); - const pagesName = props.pagesName; - const pages = props.pages; + const encodeData = props.encodeData; const valuesDelimeter = props.valuesDelimeter; const namesDelimeter = props.namesDelimeter; const [stateEncoding, setStateEncoding] = useState(props.valueEncoding); const [stateDelimeter, setStateDelimeter] = useState(props.valueDelimeter); - const nameEncoding = pagesName[pages.indexOf(stateEncoding)]; + const getIndexNameEncoding = () => encodeData.findIndex(encoding => encoding.value === stateEncoding); + const nameEncoding = encodeData[getIndexNameEncoding()].displayValue; const nameDelimeter = namesDelimeter[valuesDelimeter.indexOf(stateDelimeter)]; const mode = props.mode; @@ -41,8 +41,7 @@ const PageEncoding = props => { @@ -62,19 +61,18 @@ const PageEncodingList = props => { const { t } = useTranslation(); const _t = t("View.Settings", { returnObjects: true }); const [currentEncoding, changeCurrentEncoding] = useState(props.stateEncoding); - const pages = props.pages; - const pagesName = props.pagesName; + const encodeData = props.encodeData; return ( {_t.textChooseEncoding} - {pagesName.map((name, index) => { + {encodeData.map((encoding, index) => { return ( - { - changeCurrentEncoding(pages[index]); - props.changeStateEncoding(pages[index]); + { + changeCurrentEncoding(encoding.value); + props.changeStateEncoding(encoding.value); f7.views.current.router.back(); }}> ) @@ -122,8 +120,7 @@ class EncodingView extends Component { onSaveFormat={this.props.onSaveFormat} closeModal={this.props.closeModal} mode={this.props.mode} - pages={this.props.pages} - pagesName={this.props.pagesName} + encodeData={this.props.encodeData} namesDelimeter={this.props.namesDelimeter} valueEncoding={this.props.valueEncoding} valueDelimeter={this.props.valueDelimeter} @@ -158,8 +155,7 @@ const Encoding = props => { closeModal={props.closeModal} onSaveFormat={props.onSaveFormat} mode={props.mode} - pages={props.pages} - pagesName={props.pagesName} + encodeData={props.encodeData} namesDelimeter={props.namesDelimeter} valueEncoding={props.valueEncoding} valueDelimeter={props.valueDelimeter} diff --git a/apps/spreadsheeteditor/mobile/src/view/Statusbar.jsx b/apps/spreadsheeteditor/mobile/src/view/Statusbar.jsx index 6ae773384..f31277e63 100644 --- a/apps/spreadsheeteditor/mobile/src/view/Statusbar.jsx +++ b/apps/spreadsheeteditor/mobile/src/view/Statusbar.jsx @@ -16,15 +16,16 @@ const StatusbarView = inject('storeAppOptions', 'sheets', 'users')(observer(prop const {sheets, storeAppOptions, users} = props; const allSheets = sheets.sheets; const hiddenSheets = sheets.hiddenWorksheets(); - // const isWorkbookLocked = sheets.isWorkbookLocked; + const isWorkbookLocked = sheets.isWorkbookLocked; + const isProtectedWorkbook = sheets.isProtectedWorkbook; const isEdit = storeAppOptions.isEdit; const isDisconnected = users.isDisconnected; return ( -
- +
+
diff --git a/apps/spreadsheeteditor/mobile/src/view/Toolbar.jsx b/apps/spreadsheeteditor/mobile/src/view/Toolbar.jsx index 2c7b38da4..3acadd318 100644 --- a/apps/spreadsheeteditor/mobile/src/view/Toolbar.jsx +++ b/apps/spreadsheeteditor/mobile/src/view/Toolbar.jsx @@ -5,12 +5,15 @@ import EditorUIController from '../lib/patch' const ToolbarView = props => { const isDisconnected = props.isDisconnected; + const wsProps = props.wsProps; + const focusOn = props.focusOn; const undo_box = props.isEdit && EditorUIController.toolbarOptions ? EditorUIController.toolbarOptions.getUndoRedo({ disabledUndo: !props.isCanUndo || isDisconnected, disabledRedo: !props.isCanRedo || isDisconnected, onUndoClick: props.onUndo, onRedoClick: props.onRedo }) : null; + return ( @@ -25,6 +28,8 @@ const ToolbarView = props => { } {props.isEdit && EditorUIController.toolbarOptions && EditorUIController.toolbarOptions.getEditOptions({ disabled: props.disabledEditControls || props.disabledControls || isDisconnected, + wsProps, + focusOn, onEditClick: () => props.openOptions('edit'), onAddClick: () => props.openOptions('add') })} diff --git a/apps/spreadsheeteditor/mobile/src/view/add/Add.jsx b/apps/spreadsheeteditor/mobile/src/view/add/Add.jsx index 8721cad25..325442ffa 100644 --- a/apps/spreadsheeteditor/mobile/src/view/add/Add.jsx +++ b/apps/spreadsheeteditor/mobile/src/view/add/Add.jsx @@ -57,6 +57,9 @@ const routes = [ const AddLayoutNavbar = ({ tabs, inPopover }) => { const isAndroid = Device.android; + + if(!tabs.length) return null; + return ( {tabs.length > 1 ? @@ -66,8 +69,7 @@ const AddLayoutNavbar = ({ tabs, inPopover }) => { )} {isAndroid && } -
: - { tabs[0].caption } +
: {tabs[0].caption} } { !inPopover && } @@ -75,6 +77,8 @@ const AddLayoutNavbar = ({ tabs, inPopover }) => { }; const AddLayoutContent = ({ tabs }) => { + if(!tabs.length) return null; + return ( {tabs.map((item, index) => @@ -89,50 +93,54 @@ const AddLayoutContent = ({ tabs }) => { const AddTabs = props => { const { t } = useTranslation(); const _t = t('View.Add', {returnObjects: true}); + const wsLock = props.wsLock; + const wsProps = props.wsProps; const showPanels = props.showPanels; const tabs = []; - if (!showPanels) { - tabs.push({ - caption: _t.textChart, - id: 'add-chart', - icon: 'icon-add-chart', - component: - }); + if(!wsProps.Objects) { + if (!showPanels) { + tabs.push({ + caption: _t.textChart, + id: 'add-chart', + icon: 'icon-add-chart', + component: + }); + } + if (!showPanels || showPanels === 'function') { + tabs.push({ + caption: _t.textFunction, + id: 'add-function', + icon: 'icon-add-formula', + component: + }); + } + if (!showPanels || showPanels.indexOf('shape') > 0) { + tabs.push({ + caption: _t.textShape, + id: 'add-shape', + icon: 'icon-add-shape', + component: + }); + } + if (showPanels && showPanels.indexOf('image') !== -1) { + tabs.push({ + caption: _t.textImage, + id: 'add-image', + icon: 'icon-add-image', + component: + }); + } } - if (!showPanels || showPanels === 'function') { - tabs.push({ - caption: _t.textFunction, - id: 'add-function', - icon: 'icon-add-formula', - component: - }); - } - if (!showPanels || showPanels.indexOf('shape') > 0) { - tabs.push({ - caption: _t.textShape, - id: 'add-shape', - icon: 'icon-add-shape', - component: - }); - } - if (showPanels && showPanels.indexOf('image') !== -1) { - tabs.push({ - caption: _t.textImage, - id: 'add-image', - icon: 'icon-add-image', - component: - }); - } - if (!showPanels) { + if (!showPanels && (!wsProps.InsertHyperlinks || !wsProps.Objects || !wsProps.Sort)) { tabs.push({ caption: _t.textOther, id: 'add-other', icon: 'icon-add-other', - component: + component: }); } - if ((showPanels && showPanels === 'hyperlink') || props.isAddShapeHyperlink) { + if (((showPanels && showPanels === 'hyperlink') || props.isAddShapeHyperlink) && !wsProps.InsertHyperlinks) { tabs.push({ caption: _t.textAddLink, id: 'add-link', @@ -140,6 +148,17 @@ const AddTabs = props => { component: }); } + + if(!tabs.length) { + if (Device.phone) { + f7.popup.close('.add-popup', false); + } else { + f7.popover.close('#add-popover', false); + } + + return null; + } + return ( @@ -164,10 +183,10 @@ class AddView extends Component { return ( show_popover ? this.props.onclosed()}> - + : this.props.onclosed()}> - + ) } @@ -186,6 +205,7 @@ const Add = props => { // component will unmount } }); + const onviewclosed = () => { if ( props.onclosed ) props.onclosed(); @@ -221,6 +241,8 @@ const Add = props => { onclosed={onviewclosed} showPanels={options ? options.panels : undefined} isAddShapeHyperlink = {isAddShapeHyperlink} + wsProps={props.wsProps} + wsLock={props.wsLock} /> }; diff --git a/apps/spreadsheeteditor/mobile/src/view/add/AddFilter.jsx b/apps/spreadsheeteditor/mobile/src/view/add/AddFilter.jsx index 6f97ff992..4369fc5e0 100644 --- a/apps/spreadsheeteditor/mobile/src/view/add/AddFilter.jsx +++ b/apps/spreadsheeteditor/mobile/src/view/add/AddFilter.jsx @@ -6,6 +6,8 @@ const AddSortAndFilter = props => { const { t } = useTranslation(); const _t = t('View.Add', {returnObjects: true}); const isFilter = props.isFilter; + const wsLock = props.wsLock; + return ( @@ -21,14 +23,16 @@ const AddSortAndFilter = props => {
- - - { - props.onInsertFilter(!prev); - }}/> - - + {!wsLock && + + + { + props.onInsertFilter(!prev); + }}/> + + + } ) }; diff --git a/apps/spreadsheeteditor/mobile/src/view/add/AddOther.jsx b/apps/spreadsheeteditor/mobile/src/view/add/AddOther.jsx index 0bd00a652..592929673 100644 --- a/apps/spreadsheeteditor/mobile/src/view/add/AddOther.jsx +++ b/apps/spreadsheeteditor/mobile/src/view/add/AddOther.jsx @@ -6,23 +6,25 @@ const AddOther = props => { const { t } = useTranslation(); const _t = t('View.Add', {returnObjects: true}); const hideAddComment = props.hideAddComment(); + const wsProps = props.wsProps; + return ( - + - {!hideAddComment && { + {(!hideAddComment && !wsProps.Objects) && { props.closeModal(); Common.Notifications.trigger('addcomment'); }}> } - - - - + + + + ) }; diff --git a/apps/spreadsheeteditor/mobile/src/view/edit/Edit.jsx b/apps/spreadsheeteditor/mobile/src/view/edit/Edit.jsx index 96c1c10be..65bfdc88e 100644 --- a/apps/spreadsheeteditor/mobile/src/view/edit/Edit.jsx +++ b/apps/spreadsheeteditor/mobile/src/view/edit/Edit.jsx @@ -306,6 +306,9 @@ const EditLayoutNavbar = ({ editors, inPopover }) => { const isAndroid = Device.android; const { t } = useTranslation(); const _t = t('View.Edit', {returnObjects: true}); + + if(!editors.length) return null; + return ( { @@ -313,8 +316,7 @@ const EditLayoutNavbar = ({ editors, inPopover }) => {
{editors.map((item, index) => {item.caption})} {isAndroid && } -
: - { editors[0].caption } +
: { editors[0].caption } } { !inPopover && } @@ -322,6 +324,8 @@ const EditLayoutNavbar = ({ editors, inPopover }) => { }; const EditLayoutContent = ({ editors }) => { + if(!editors.length) return null; + if (editors.length > 1) { return ( @@ -345,6 +349,8 @@ const EditTabs = props => { const { t } = useTranslation(); const _t = t('View.Edit', {returnObjects: true}); const store = props.storeFocusObjects; + const wsLock = props.wsLock; + const wsProps = props.wsProps; const settings = !store.focusOn ? [] : (store.focusOn === 'obj' ? store.objects : store.selections); let editors = []; @@ -361,41 +367,53 @@ const EditTabs = props => { component: }) } - if (settings.indexOf('shape') > -1) { - editors.push({ - caption: _t.textShape, - id: 'edit-shape', - component: - }) - } - if (settings.indexOf('image') > -1) { - editors.push({ - caption: _t.textImage, - id: 'edit-image', - component: - }) - } - if (settings.indexOf('text') > -1) { - editors.push({ - caption: _t.textText, - id: 'edit-text', - component: - }) - } - if (settings.indexOf('chart') > -1) { - editors.push({ - caption: _t.textChart, - id: 'edit-chart', - component: - }) - } - if (settings.indexOf('hyperlink') > -1 || (props.hyperinfo && props.isAddShapeHyperlink)) { - editors.push({ - caption: _t.textHyperlink, - id: 'edit-link', - component: - }) + if(!wsProps.Objects) { + if (settings.indexOf('shape') > -1) { + editors.push({ + caption: _t.textShape, + id: 'edit-shape', + component: + }) + } + if (settings.indexOf('image') > -1) { + editors.push({ + caption: _t.textImage, + id: 'edit-image', + component: + }) + } + if (settings.indexOf('text') > -1) { + editors.push({ + caption: _t.textText, + id: 'edit-text', + component: + }) + } + if (settings.indexOf('chart') > -1) { + editors.push({ + caption: _t.textChart, + id: 'edit-chart', + component: + }) + } + if (settings.indexOf('hyperlink') > -1 || (props.hyperinfo && props.isAddShapeHyperlink)) { + editors.push({ + caption: _t.textHyperlink, + id: 'edit-link', + component: + }) + } + } + } + + if(!editors.length) { + if (Device.phone) { + f7.sheet.close('#edit-sheet', false); + } else { + f7.popover.close('#edit-popover', false); } + + return null; } return ( @@ -419,10 +437,10 @@ const EditView = props => { return ( show_popover ? props.onClosed()}> - + : props.onClosed()}> - + ) }; @@ -449,7 +467,7 @@ const EditOptions = props => { const isAddShapeHyperlink = api.asc_canAddShapeHyperlink(); return ( - + ) }; diff --git a/apps/spreadsheeteditor/mobile/src/view/edit/EditCell.jsx b/apps/spreadsheeteditor/mobile/src/view/edit/EditCell.jsx index d271bb892..8d771987c 100644 --- a/apps/spreadsheeteditor/mobile/src/view/edit/EditCell.jsx +++ b/apps/spreadsheeteditor/mobile/src/view/edit/EditCell.jsx @@ -11,6 +11,8 @@ const EditCell = props => { const { t } = useTranslation(); const _t = t('View.Edit', {returnObjects: true}); const storeCellSettings = props.storeCellSettings; + const storeWorksheets = props.storeWorksheets; + const wsProps = storeWorksheets.wsProps; const cellStyles = storeCellSettings.cellStyles; const styleName = storeCellSettings.styleName; @@ -40,79 +42,84 @@ const EditCell = props => { onFontSize: props.onFontSize, onFontClick: props.onFontClick }}/> - - - {props.toggleBold(!isBold)}}>B - {props.toggleItalic(!isItalic)}}>I - {props.toggleUnderline(!isUnderline)}} style={{textDecoration: "underline"}}>U - - - - {!isAndroid ? - {fontColorPreview} : - fontColorPreview - } - - - {!isAndroid ? - {fillColorPreview} : - fillColorPreview - } - - - {!isAndroid ? - : null - } - - - {!isAndroid ? - : null - } - - - {!isAndroid ? - : null - } - - - - - {!isAndroid ? - : null - } - - - {_t.textCellStyles} - {cellStyles.length ? ( - - {cellStyles.map((elem, index) => { - return ( - props.onStyleClick(elem.name)}> -
-
- ) - })} -
- ) : null} + {!wsProps.FormatCells && + <> + + + + {props.toggleBold(!isBold)}}>B + {props.toggleItalic(!isItalic)}}>I + {props.toggleUnderline(!isUnderline)}} style={{textDecoration: "underline"}}>U + + + + {!isAndroid ? + {fontColorPreview} : + fontColorPreview + } + + + {!isAndroid ? + {fillColorPreview} : + fillColorPreview + } + + + {!isAndroid ? + : null + } + + + {!isAndroid ? + : null + } + + + {!isAndroid ? + : null + } + + + + + {!isAndroid ? + : null + } + + + {_t.textCellStyles} + {cellStyles.length ? ( + + {cellStyles.map((elem, index) => { + return ( + props.onStyleClick(elem.name)}> +
+
+ ) + })} +
+ ) : null} + } +
) }; @@ -977,7 +984,7 @@ const PageTimeFormatCell = props => { } -const PageEditCell = inject("storeCellSettings")(observer(EditCell)); +const PageEditCell = inject("storeCellSettings", "storeWorksheets")(observer(EditCell)); const TextColorCell = inject("storeCellSettings", "storePalette", "storeFocusObjects")(observer(PageTextColorCell)); const FillColorCell = inject("storeCellSettings", "storePalette", "storeFocusObjects")(observer(PageFillColorCell)); const CustomTextColorCell = inject("storeCellSettings", "storePalette", "storeFocusObjects")(observer(PageCustomTextColorCell)); diff --git a/apps/spreadsheeteditor/mobile/src/view/edit/EditShape.jsx b/apps/spreadsheeteditor/mobile/src/view/edit/EditShape.jsx index ef6ffd9d7..b8a17a049 100644 --- a/apps/spreadsheeteditor/mobile/src/view/edit/EditShape.jsx +++ b/apps/spreadsheeteditor/mobile/src/view/edit/EditShape.jsx @@ -12,6 +12,12 @@ const EditShape = props => { const shapeObject = storeFocusObjects.shapeObject; const canFill = shapeObject && shapeObject.get_ShapeProperties().asc_getCanFill(); + const shapeType = shapeObject.get_ShapeProperties().asc_getType(); + const hideChangeType = shapeObject.get_ShapeProperties().get_FromChart() || shapeType=='line' || shapeType=='bentConnector2' || shapeType=='bentConnector3' + || shapeType=='bentConnector4' || shapeType=='bentConnector5' || shapeType=='curvedConnector2' + || shapeType=='curvedConnector3' || shapeType=='curvedConnector4' || shapeType=='curvedConnector5' + || shapeType=='straightConnector1'; + let disableRemove = storeFocusObjects.selections.indexOf('text') > -1; return ( @@ -30,9 +36,11 @@ const EditShape = props => { onBorderColor: props.onBorderColor }}> } - + { !hideChangeType && + + } diff --git a/apps/spreadsheeteditor/mobile/src/view/settings/ApplicationSettings.jsx b/apps/spreadsheeteditor/mobile/src/view/settings/ApplicationSettings.jsx index 56a34f4c1..1059f894f 100644 --- a/apps/spreadsheeteditor/mobile/src/view/settings/ApplicationSettings.jsx +++ b/apps/spreadsheeteditor/mobile/src/view/settings/ApplicationSettings.jsx @@ -47,7 +47,7 @@ const PageApplicationSettings = props => { {_t.textFormulaLanguage} - @@ -147,7 +147,7 @@ const PageFormulaLanguage = props => { {dataLang.map((elem, index) => { return ( - { storeApplicationSettings.changeFormulaLang(elem.value); props.onFormulaLangChange(elem.value); diff --git a/apps/spreadsheeteditor/mobile/src/view/settings/SpreadsheetSettings.jsx b/apps/spreadsheeteditor/mobile/src/view/settings/SpreadsheetSettings.jsx index be2a38fee..7ce44af2a 100644 --- a/apps/spreadsheeteditor/mobile/src/view/settings/SpreadsheetSettings.jsx +++ b/apps/spreadsheeteditor/mobile/src/view/settings/SpreadsheetSettings.jsx @@ -29,10 +29,8 @@ const PageSpreadsheetColorSchemes = props => { return ( { - if(index !== curScheme) { - setScheme(index); - props.onColorSchemeChange(index); - }; + setScheme(index); + setTimeout(() => props.onColorSchemeChange(index), 15); }}>
@@ -199,6 +197,8 @@ const PageSpreadsheetSettings = props => { const { t } = useTranslation(); const _t = t('View.Settings', {returnObjects: true}); const storeSpreadsheetSettings = props.storeSpreadsheetSettings; + const storeWorksheets = props.storeWorksheets; + const wsProps = storeWorksheets.wsProps; const isPortrait = storeSpreadsheetSettings.isPortrait; const isHideHeadings = storeSpreadsheetSettings.isHideHeadings; const isHideGridlines = storeSpreadsheetSettings.isHideGridlines; @@ -255,7 +255,7 @@ const PageSpreadsheetSettings = props => { - @@ -266,7 +266,7 @@ const PageSpreadsheetSettings = props => { const SpreadsheetFormats = inject("storeSpreadsheetSettings")(observer(PageSpreadsheetFormats)); const SpreadsheetMargins = inject("storeSpreadsheetSettings")(observer(PageSpreadsheetMargins)); -const SpreadsheetSettings = inject("storeSpreadsheetSettings")(observer(PageSpreadsheetSettings)); +const SpreadsheetSettings = inject("storeSpreadsheetSettings", "storeWorksheets")(observer(PageSpreadsheetSettings)); const SpreadsheetColorSchemes = inject("storeSpreadsheetSettings")(observer(PageSpreadsheetColorSchemes)); export { diff --git a/translation/convert_translation.py b/translation/convert_translation.py index a6310ab13..6aee8cf70 100644 --- a/translation/convert_translation.py +++ b/translation/convert_translation.py @@ -18,7 +18,7 @@ def sortByAlphabet(inputStr): app_names = ['documenteditor', 'presentationeditor', 'spreadsheeteditor'] -app_types = ['embed', 'main'] +app_types = ['embed', 'main', 'forms'] prefix_apps = '../apps/' prefix_src = 'src/' prefix_dest = 'dest/'