diff --git a/apps/common/main/lib/controller/Themes.js b/apps/common/main/lib/controller/Themes.js index 039232879..9bde3c593 100644 --- a/apps/common/main/lib/controller/Themes.js +++ b/apps/common/main/lib/controller/Themes.js @@ -11,7 +11,16 @@ define([ Common.UI.Themes = new (function(locale) { !locale && (locale = {}); + + const THEME_TYPE_LIGHT = 'light'; + const THEME_TYPE_DARK = 'dark'; + const THEME_TYPE_SYSTEM = 'system'; var themes_map = { + 'theme-system': { + text: locale.txtThemeSystem || 'Same as system', + type: THEME_TYPE_SYSTEM, + source: 'static', + }, 'theme-light': { text: locale.txtThemeLight || 'Light', type: 'light', @@ -261,6 +270,21 @@ define([ } }; + const is_theme_type_system = id => themes_map[id].type == THEME_TYPE_SYSTEM; + const get_system_theme_type = () => window.matchMedia('(prefers-color-scheme: dark)').matches ? THEME_TYPE_DARK : THEME_TYPE_LIGHT; + const get_system_default_theme = () => { + const id = get_system_theme_type() == THEME_TYPE_DARK ? + id_default_dark_theme : id_default_light_theme; + + return {id: id, info: themes_map[id]}; + }; + + const on_system_theme_dark = function (mql) { + if ( Common.localStorage.getBool('ui-theme-use-system', false) ) { + this.setTheme('theme-system'); + } + }; + return { init: function (api) { var me = this; @@ -313,6 +337,7 @@ define([ obj.name = theme_name; api.asc_setSkin(obj); + window.matchMedia('(prefers-color-scheme: dark)').addEventListener('change', on_system_theme_dark.bind(this)); Common.NotificationCenter.on('document:ready', on_document_ready.bind(this)); }, @@ -333,6 +358,9 @@ define([ }, currentThemeId: function () { + if ( Common.localStorage.getBool('ui-theme-use-system', false) ) + return 'theme-system'; + var t = Common.localStorage.getItem('ui-theme') || Common.localStorage.getItem('ui-theme-id'); var id = get_ui_theme_name(t); return !!themes_map[id] ? id : id_default_light_theme; @@ -346,8 +374,9 @@ define([ return themes_map[this.defaultThemeId(type)] }, - isDarkTheme: function () { - return themes_map[this.currentThemeId()].type == 'dark'; + isDarkTheme: function (id) { + !id && (id = this.currentThemeId()); + return (is_theme_type_system(id) ? get_system_default_theme().info.type : themes_map[id].type) == THEME_TYPE_DARK; }, isContentThemeDark: function () { @@ -384,6 +413,14 @@ define([ if ( !obj ) return; var id = get_ui_theme_name(obj); + + if ( is_theme_type_system(id) ) { + Common.localStorage.setBool('ui-theme-use-system', true); + id = get_system_default_theme().id; + } else { + Common.localStorage.setBool('ui-theme-use-system', false); + } + if ( (this.currentThemeId() != id || force) && !!themes_map[id] ) { document.body.className = document.body.className.replace(/theme-[\w-]+\s?/gi, '').trim(); document.body.classList.add(id, 'theme-type-' + themes_map[id].type); diff --git a/apps/common/main/lib/util/themeinit.js b/apps/common/main/lib/util/themeinit.js index 6b3ea3839..665e33407 100644 --- a/apps/common/main/lib/util/themeinit.js +++ b/apps/common/main/lib/util/themeinit.js @@ -1,5 +1,9 @@ +function init_themes() { + if ( localStorage.getItem("ui-theme-use-system") == '1' ) { + localStorage.removeItem("ui-theme-id"); + } + var objtheme = localStorage.getItem("ui-theme"); if ( typeof(objtheme) == 'string' && objtheme.startsWith("{") && objtheme.endsWith("}") ) diff --git a/apps/common/main/resources/img/header/buttons.svg b/apps/common/main/resources/img/header/buttons.svg deleted file mode 100644 index 25c94131f..000000000 --- a/apps/common/main/resources/img/header/buttons.svg +++ /dev/null @@ -1,184 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/apps/common/main/resources/img/header/buttons150.svg b/apps/common/main/resources/img/header/buttons150.svg deleted file mode 100644 index ae53c467c..000000000 --- a/apps/common/main/resources/img/header/buttons150.svg +++ /dev/null @@ -1,170 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/apps/common/main/resources/less/treeview.less b/apps/common/main/resources/less/treeview.less index 295850fba..059dfddff 100644 --- a/apps/common/main/resources/less/treeview.less +++ b/apps/common/main/resources/less/treeview.less @@ -53,7 +53,7 @@ .tree-item { width: 100%; min-height: 28px; - padding: 0px 6px 0 24px; + padding: 0px 12px 0 24px; } .name { diff --git a/apps/common/mobile/resources/less/common.less b/apps/common/mobile/resources/less/common.less index 975b48c32..b42f2de37 100644 --- a/apps/common/mobile/resources/less/common.less +++ b/apps/common/mobile/resources/less/common.less @@ -184,8 +184,9 @@ } .popover { - .list { + .page .list{ ul { + background-color: var(--f7-list-bg-color); li:first-child, li:last-child { .item-link { border-radius: 0; diff --git a/apps/documenteditor/forms/locale/ko.json b/apps/documenteditor/forms/locale/ko.json index 95ffe33c6..b1bc0f04a 100644 --- a/apps/documenteditor/forms/locale/ko.json +++ b/apps/documenteditor/forms/locale/ko.json @@ -123,6 +123,7 @@ "DE.Controllers.ApplicationController.textSaveAs": "PDF로 저장", "DE.Controllers.ApplicationController.textSaveAsDesktop": "다른 이름으로 저장...", "DE.Controllers.ApplicationController.textSubmited": "양식이 성공적으로 전송되었습니다.
여기를 클릭하여 프롬프트를 닫으십시오", + "DE.Controllers.ApplicationController.titleLicenseExp": "라이센스 만료", "DE.Controllers.ApplicationController.titleServerVersion": "편집기가 업데이트되었습니다.", "DE.Controllers.ApplicationController.titleUpdateVersion": "버전이 변경되었습니다.", "DE.Controllers.ApplicationController.txtArt": "여기에 텍스트를 입력하여 주십시오", @@ -139,6 +140,7 @@ "DE.Controllers.ApplicationController.uploadImageSizeMessage": "이미지 크기 제한을 초과했습니다.", "DE.Controllers.ApplicationController.waitText": "잠시만 기다려주세요...", "DE.Controllers.ApplicationController.warnLicenseExceeded": "귀하의 시스템은 동시에 연결을 편집하는 %1명의 편집자에게 도달했습니다. 이 문서는 보기 모드에서만 열 수 있습니다.
자세한 내용은 관리자에게 문의하십시오.", + "DE.Controllers.ApplicationController.warnLicenseExp": "귀하의 라이센스가 만료되었습니다.
라이센스를 업데이트하고 페이지를 새로 고침하십시오.", "DE.Controllers.ApplicationController.warnLicenseLimitedNoAccess": "라이센스가 만료되었습니다.
더 이상 파일을 수정할 수 있는 권한이 없습니다.
관리자에게 문의하세요.", "DE.Controllers.ApplicationController.warnLicenseLimitedRenewed": "라이센스를 갱신해야합니다.
문서 편집 기능에 대한 액세스가 제한되어 있습니다.
전체 액세스 권한을 얻으려면 관리자에게 문의하십시오", "DE.Controllers.ApplicationController.warnLicenseUsersExceeded": "편집자 사용자 한도인 %1명에 도달했습니다. 자세한 내용은 관리자에게 문의하십시오.", @@ -147,12 +149,15 @@ "DE.Views.ApplicationView.textClear": "모든 필드 지우기", "DE.Views.ApplicationView.textCopy": "복사", "DE.Views.ApplicationView.textCut": "잘라 내기", + "DE.Views.ApplicationView.textFitToPage": "페이지에 맞춤", + "DE.Views.ApplicationView.textFitToWidth": "너비에 맞춤", "DE.Views.ApplicationView.textNext": "다음 필드", "DE.Views.ApplicationView.textPaste": "붙여 넣기", "DE.Views.ApplicationView.textPrintSel": "선택 항목 인쇄", "DE.Views.ApplicationView.textRedo": "다시 실행", "DE.Views.ApplicationView.textSubmit": "전송", "DE.Views.ApplicationView.textUndo": "실행 취소", + "DE.Views.ApplicationView.textZoom": "확대 / 축소", "DE.Views.ApplicationView.txtDarkMode": "다크 모드", "DE.Views.ApplicationView.txtDownload": "다운로드 ", "DE.Views.ApplicationView.txtDownloadDocx": "docx 형식으로 다운로드", diff --git a/apps/documenteditor/main/app/controller/LeftMenu.js b/apps/documenteditor/main/app/controller/LeftMenu.js index 3bcb075ad..07a94cb51 100644 --- a/apps/documenteditor/main/app/controller/LeftMenu.js +++ b/apps/documenteditor/main/app/controller/LeftMenu.js @@ -458,7 +458,7 @@ define([ default: value = (fast_coauth) ? Asc.c_oAscCollaborativeMarksShowType.None : Asc.c_oAscCollaborativeMarksShowType.LastChanges; } this.api.SetCollaborativeMarksShowType(value); - } else if (!this.mode.isEdit && !this.mode.isRestrictedEdit && !this.mode.isOffline && this.mode.canChangeCoAuthoring) { // viewer + } else if (this.mode.canLiveView && !this.mode.isOffline && this.mode.canChangeCoAuthoring) { // viewer fast_coauth = Common.localStorage.getBool("de-settings-view-coauthmode", false); Common.Utils.InternalSettings.set("de-settings-coauthmode", fast_coauth); this.api.asc_SetFastCollaborative(fast_coauth); diff --git a/apps/documenteditor/main/app/controller/Main.js b/apps/documenteditor/main/app/controller/Main.js index f841a5cf7..cc29c1909 100644 --- a/apps/documenteditor/main/app/controller/Main.js +++ b/apps/documenteditor/main/app/controller/Main.js @@ -473,9 +473,6 @@ define([ docInfo.put_Lang(this.editorConfig.lang); docInfo.put_Mode(this.editorConfig.mode); - if (typeof this.editorConfig.coEditing == 'object' && this.editorConfig.coEditing.mode!==undefined) - docInfo.put_CoEditingMode(this.editorConfig.coEditing.mode); - var enable = !this.editorConfig.customization || (this.editorConfig.customization.macros!==false); docInfo.asc_putIsEnabledMacroses(!!enable); enable = !this.editorConfig.customization || (this.editorConfig.customization.plugins!==false); @@ -483,6 +480,12 @@ define([ // docInfo.put_Review(this.permissions.review); var type = /^(?:(pdf|djvu|xps|oxps))$/.exec(data.doc.fileType); + var coEditMode = (type && typeof type[1] === 'string') ? 'strict' : // offline viewer for pdf|djvu|xps|oxps + !(this.editorConfig.coEditing && typeof this.editorConfig.coEditing == 'object') ? 'fast' : // fast by default + this.editorConfig.mode === 'view' && this.editorConfig.coEditing.change!==false ? 'fast' : // if can change mode in viewer - set fast for using live viewer + this.editorConfig.coEditing.mode || 'fast'; + docInfo.put_CoEditingMode(coEditMode); + if (type && typeof type[1] === 'string') { this.permissions.edit = this.permissions.review = false; } @@ -844,6 +847,12 @@ define([ } }, + disableLiveViewing: function(disable) { + this.appOptions.canLiveView = !disable; + this.api.asc_SetFastCollaborative(!disable); + Common.Utils.InternalSettings.set("de-settings-coauthmode", !disable); + }, + onRequestClose: function() { var me = this; if (this.api.isDocumentModified()) { @@ -1243,7 +1252,7 @@ define([ leftmenuController.getView('LeftMenu').getMenu('file').loadDocument({doc:me.document}); leftmenuController.setMode(me.appOptions).createDelayedElements().setApi(me.api); - navigationController.setApi(me.api).setMode(this.appOptions); + navigationController.setMode(me.appOptions).setApi(me.api); chatController.setApi(this.api).setMode(this.appOptions); application.getController('Common.Controllers.ExternalDiagramEditor').setApi(this.api).loadConfig({config:this.editorConfig, customization: this.editorConfig.customization}); @@ -1307,8 +1316,7 @@ define([ } else { documentHolderController.getView().createDelayedElementsViewer(); Common.NotificationCenter.trigger('document:ready', 'main'); - if (me.editorConfig.mode !== 'view') // if want to open editor, but viewer is loaded - me.applyLicense(); + me.applyLicense(); } // TODO bug 43960 @@ -1346,12 +1354,20 @@ define([ || licType===Asc.c_oLicenseResult.SuccessLimit && (this.appOptions.trialMode & Asc.c_oLicenseMode.Limited) !== 0)) this._state.licenseType = licType; + if (licType !== undefined && this.appOptions.canLiveView && (licType===Asc.c_oLicenseResult.ConnectionsLive || licType===Asc.c_oLicenseResult.ConnectionsLiveOS)) + this._state.licenseType = licType; + if (this._isDocReady) this.applyLicense(); }, applyLicense: function() { - if (this._state.licenseType) { + if (this.editorConfig.mode === 'view') { + if (this.appOptions.canLiveView && (this._state.licenseType===Asc.c_oLicenseResult.ConnectionsLive || this._state.licenseType===Asc.c_oLicenseResult.ConnectionsLiveOS)) { + // show warning or write to log if Common.Utils.InternalSettings.get("de-settings-coauthmode") was true ??? + this.disableLiveViewing(true); + } + } else if (this._state.licenseType) { var license = this._state.licenseType, buttons = ['ok'], primary = 'ok'; @@ -1547,9 +1563,10 @@ define([ Common.NotificationCenter.on('comments:cleardummy', _.bind(this.onClearDummyComment, this)); Common.NotificationCenter.on('comments:showdummy', _.bind(this.onShowDummyComment, this)); - // change = true by default in editor, change = false by default in viewer - this.appOptions.canChangeCoAuthoring = this.appOptions.isEdit && this.appOptions.canCoAuthoring && !(typeof this.editorConfig.coEditing == 'object' && this.editorConfig.coEditing.change===false) || - !this.appOptions.isEdit && !this.appOptions.isRestrictedEdit && (typeof this.editorConfig.coEditing == 'object' && this.editorConfig.coEditing.change===true) ; + // change = true by default in editor + this.appOptions.canLiveView = !!params.asc_getLiveViewerSupport() && (this.editorConfig.mode === 'view') && !isPDFViewer; // viewer: change=false when no flag canLiveViewer (i.g. old license), change=true by default when canLiveViewer==true + this.appOptions.canChangeCoAuthoring = this.appOptions.isEdit && this.appOptions.canCoAuthoring && !(this.editorConfig.coEditing && typeof this.editorConfig.coEditing == 'object' && this.editorConfig.coEditing.change===false) || + this.appOptions.canLiveView && !(this.editorConfig.coEditing && typeof this.editorConfig.coEditing == 'object' && this.editorConfig.coEditing.change===false); this.loadCoAuthSettings(); this.applyModeCommonElements(); @@ -1596,16 +1613,16 @@ define([ Common.Utils.InternalSettings.set((fastCoauth) ? "de-settings-showchanges-fast" : "de-settings-showchanges-strict", value); } else if (!this.appOptions.isEdit && this.appOptions.isRestrictedEdit) { fastCoauth = true; - } else if (!this.appOptions.isEdit && !this.appOptions.isRestrictedEdit && !this.appOptions.isOffline) { // viewer - if (!this.appOptions.canChangeCoAuthoring) { //can't change co-auth. mode. Use coEditing.mode or 'strict' by default - value = this.editorConfig.coEditing && this.editorConfig.coEditing.mode==='fast' ? 1 : 0; - } else { - value = Common.localStorage.getItem("de-settings-view-coauthmode"); - if (value===null) { - value = this.editorConfig.coEditing && this.editorConfig.coEditing.mode==='fast' ? 1 : 0; - } + } else if (this.appOptions.canLiveView && !this.appOptions.isOffline) { // viewer + value = Common.localStorage.getItem("de-settings-view-coauthmode"); + if (!this.appOptions.canChangeCoAuthoring || value===null) { // Use coEditing.mode or 'fast' by default + value = this.editorConfig.coEditing && this.editorConfig.coEditing.mode==='strict' ? 0 : 1; } fastCoauth = (parseInt(value) == 1); + + // don't show collaborative marks in live viewer + Common.Utils.InternalSettings.set("de-settings-showchanges-fast", 'none'); + Common.Utils.InternalSettings.set("de-settings-showchanges-strict", 'none'); } else { fastCoauth = false; autosave = 0; diff --git a/apps/documenteditor/main/app/controller/Navigation.js b/apps/documenteditor/main/app/controller/Navigation.js index bbb09fca9..fa2f2b980 100644 --- a/apps/documenteditor/main/app/controller/Navigation.js +++ b/apps/documenteditor/main/app/controller/Navigation.js @@ -65,6 +65,8 @@ define([ if (me.panelNavigation && me.panelNavigation.viewNavigationList && me.panelNavigation.viewNavigationList.scroller) me.panelNavigation.viewNavigationList.scroller.update({alwaysVisibleY: true}); } + if (!me.mode.isEdit && !me.mode.isRestrictedEdit) + me.panelNavigation.viewNavigationList.focus(); }, 'hide': function() { if (!this.canUseViwerNavigation) { @@ -103,8 +105,10 @@ define([ setMode: function(mode) { this.mode = mode; this.canUseViwerNavigation = this.mode.canUseViwerNavigation; - if (this.panelNavigation && this.panelNavigation.viewNavigationList) + if (this.panelNavigation && this.panelNavigation.viewNavigationList) { this.panelNavigation.viewNavigationList.setEmptyText(this.mode.isEdit ? this.panelNavigation.txtEmpty : this.panelNavigation.txtEmptyViewer); + this.panelNavigation.viewNavigationList.enableKeyEvents = !this.mode.isEdit && !this.mode.isRestrictedEdit; + } return this; }, @@ -232,7 +236,7 @@ define([ } else if (this._viewerNavigationObject) { this.api.asc_viewerNavigateTo(record.get('index')); } - Common.NotificationCenter.trigger('edit:complete', this.panelNavigation); + (this.mode.isEdit || this.mode.isRestrictedEdit) && Common.NotificationCenter.trigger('edit:complete', this.panelNavigation); }, onItemAdd: function(picker, item, record, e){ diff --git a/apps/documenteditor/main/app/controller/Toolbar.js b/apps/documenteditor/main/app/controller/Toolbar.js index 59f352856..7125ea6c0 100644 --- a/apps/documenteditor/main/app/controller/Toolbar.js +++ b/apps/documenteditor/main/app/controller/Toolbar.js @@ -724,21 +724,23 @@ define([ plain_del_lock = (frame_pr) ? !frame_pr.can_DeleteInlineContentControl() : false, plain_edit_lock = (frame_pr) ? !frame_pr.can_EditInlineContentControl() : false; - this.toolbar.lockToolbar(Common.enumLock.cantAddQuotedComment, !this.api.can_AddQuotedComment(), {array: this.btnsComment}); - this.toolbar.lockToolbar(Common.enumLock.imageLock, image_locked, {array: this.btnsComment}); - this.mode.compatibleFeatures && this.toolbar.lockToolbar(Common.enumLock.inImage, in_image, {array: this.btnsComment}); - if (this.api.asc_IsContentControl()) { - var control_props = this.api.asc_GetContentControlProperties(), - spectype = control_props ? control_props.get_SpecificType() : Asc.c_oAscContentControlSpecificType.None; - this.toolbar.lockToolbar(Common.enumLock.inSpecificForm, spectype==Asc.c_oAscContentControlSpecificType.CheckBox || spectype==Asc.c_oAscContentControlSpecificType.Picture || - spectype==Asc.c_oAscContentControlSpecificType.ComboBox || spectype==Asc.c_oAscContentControlSpecificType.DropDownList || spectype==Asc.c_oAscContentControlSpecificType.DateTime, {array: this.btnsComment}); + if (this.btnsComment) { + this.toolbar.lockToolbar(Common.enumLock.cantAddQuotedComment, !this.api.can_AddQuotedComment(), {array: this.btnsComment}); + this.toolbar.lockToolbar(Common.enumLock.imageLock, image_locked, {array: this.btnsComment}); + this.mode.compatibleFeatures && this.toolbar.lockToolbar(Common.enumLock.inImage, in_image, {array: this.btnsComment}); + if (this.api.asc_IsContentControl()) { + var control_props = this.api.asc_GetContentControlProperties(), + spectype = control_props ? control_props.get_SpecificType() : Asc.c_oAscContentControlSpecificType.None; + this.toolbar.lockToolbar(Common.enumLock.inSpecificForm, spectype==Asc.c_oAscContentControlSpecificType.CheckBox || spectype==Asc.c_oAscContentControlSpecificType.Picture || + spectype==Asc.c_oAscContentControlSpecificType.ComboBox || spectype==Asc.c_oAscContentControlSpecificType.DropDownList || spectype==Asc.c_oAscContentControlSpecificType.DateTime, {array: this.btnsComment}); + } + this.toolbar.lockToolbar(Common.enumLock.paragraphLock, paragraph_locked, {array: this.btnsComment}); + this.toolbar.lockToolbar(Common.enumLock.headerLock, header_locked, {array: this.btnsComment}); + this.toolbar.lockToolbar(Common.enumLock.richEditLock, rich_edit_lock, {array: this.btnsComment}); + this.toolbar.lockToolbar(Common.enumLock.plainEditLock, plain_edit_lock, {array: this.btnsComment}); + this.toolbar.lockToolbar(Common.enumLock.richDelLock, rich_del_lock, {array: this.btnsComment}); + this.toolbar.lockToolbar(Common.enumLock.plainDelLock, plain_del_lock, {array: this.btnsComment}); } - this.toolbar.lockToolbar(Common.enumLock.paragraphLock, paragraph_locked, {array: this.btnsComment}); - this.toolbar.lockToolbar(Common.enumLock.headerLock, header_locked, {array: this.btnsComment}); - this.toolbar.lockToolbar(Common.enumLock.richEditLock, rich_edit_lock, {array: this.btnsComment}); - this.toolbar.lockToolbar(Common.enumLock.plainEditLock, plain_edit_lock, {array: this.btnsComment}); - this.toolbar.lockToolbar(Common.enumLock.richDelLock, rich_del_lock, {array: this.btnsComment}); - this.toolbar.lockToolbar(Common.enumLock.plainDelLock, plain_del_lock, {array: this.btnsComment}); }, onApiFocusObject: function(selectedObjects) { @@ -814,9 +816,9 @@ define([ this.toolbar.lockToolbar(Common.enumLock.richEditLock, rich_edit_lock, {array: this.toolbar.paragraphControls.concat([toolbar.btnClearStyle])}); this.toolbar.lockToolbar(Common.enumLock.plainEditLock, plain_edit_lock, {array: this.toolbar.paragraphControls.concat([toolbar.btnClearStyle])}); - this.toolbar.lockToolbar(Common.enumLock.richDelLock, rich_del_lock, {array: this.btnsComment.concat(toolbar.btnsPageBreak).concat([toolbar.btnInsertTable, toolbar.btnInsertImage, toolbar.btnInsertChart, toolbar.btnInsertTextArt, + this.toolbar.lockToolbar(Common.enumLock.richDelLock, rich_del_lock, {array: toolbar.btnsPageBreak.concat(this.btnsComment).concat([toolbar.btnInsertTable, toolbar.btnInsertImage, toolbar.btnInsertChart, toolbar.btnInsertTextArt, toolbar.btnInsDateTime, toolbar.btnBlankPage, toolbar.btnInsertEquation, toolbar.btnInsertSymbol ])}); - this.toolbar.lockToolbar(Common.enumLock.plainDelLock, plain_del_lock, {array: this.btnsComment.concat(toolbar.btnsPageBreak).concat([toolbar.btnInsertTable, toolbar.btnInsertImage, toolbar.btnInsertChart, toolbar.btnInsertTextArt, + this.toolbar.lockToolbar(Common.enumLock.plainDelLock, plain_del_lock, {array: toolbar.btnsPageBreak.concat(this.btnsComment).concat([toolbar.btnInsertTable, toolbar.btnInsertImage, toolbar.btnInsertChart, toolbar.btnInsertTextArt, toolbar.btnInsDateTime, toolbar.btnBlankPage, toolbar.btnInsertEquation, toolbar.btnInsertSymbol ])}); this.toolbar.lockToolbar(Common.enumLock.inChart, in_chart, {array: toolbar.textOnlyControls.concat([toolbar.btnClearStyle, toolbar.btnInsertEquation])}); @@ -888,15 +890,17 @@ define([ if (toolbar.listStylesAdditionalMenuItem && (frame_pr===undefined) !== toolbar.listStylesAdditionalMenuItem.isDisabled()) toolbar.listStylesAdditionalMenuItem.setDisabled(frame_pr===undefined); - // comments - this.toolbar.lockToolbar(Common.enumLock.cantAddQuotedComment, !this.api.can_AddQuotedComment(), {array: this.btnsComment}); - this.toolbar.lockToolbar(Common.enumLock.imageLock, image_locked, {array: this.btnsComment}); - this.mode.compatibleFeatures && this.toolbar.lockToolbar(Common.enumLock.inImage, in_image, {array: this.btnsComment}); - if (control_props) { - var spectype = control_props.get_SpecificType(); - this.toolbar.lockToolbar(Common.enumLock.inSpecificForm, spectype==Asc.c_oAscContentControlSpecificType.CheckBox || spectype==Asc.c_oAscContentControlSpecificType.Picture || - spectype==Asc.c_oAscContentControlSpecificType.ComboBox || spectype==Asc.c_oAscContentControlSpecificType.DropDownList || spectype==Asc.c_oAscContentControlSpecificType.DateTime, - {array: this.btnsComment}); + if (this.btnsComment) { + // comments + this.toolbar.lockToolbar(Common.enumLock.cantAddQuotedComment, !this.api.can_AddQuotedComment(), {array: this.btnsComment}); + this.toolbar.lockToolbar(Common.enumLock.imageLock, image_locked, {array: this.btnsComment}); + this.mode.compatibleFeatures && this.toolbar.lockToolbar(Common.enumLock.inImage, in_image, {array: this.btnsComment}); + if (control_props) { + var spectype = control_props.get_SpecificType(); + this.toolbar.lockToolbar(Common.enumLock.inSpecificForm, spectype==Asc.c_oAscContentControlSpecificType.CheckBox || spectype==Asc.c_oAscContentControlSpecificType.Picture || + spectype==Asc.c_oAscContentControlSpecificType.ComboBox || spectype==Asc.c_oAscContentControlSpecificType.DropDownList || spectype==Asc.c_oAscContentControlSpecificType.DateTime, + {array: this.btnsComment}); + } } if (frame_pr) { this._state.suppress_num = !!frame_pr.get_SuppressLineNumbers(); @@ -3217,6 +3221,7 @@ define([ var me = this; me.appOptions = config; + this.btnsComment = []; if ( config.canCoAuthoring && config.canComments ) { this.btnsComment = Common.Utils.injectButtons(this.toolbar.$el.find('.slot-comment'), 'tlbtn-addcomment-', 'toolbar__icon btn-menu-comments', this.toolbar.capBtnComment, [ Common.enumLock.paragraphLock, Common.enumLock.headerLock, Common.enumLock.richEditLock, Common.enumLock.plainEditLock, Common.enumLock.richDelLock, Common.enumLock.plainDelLock, diff --git a/apps/documenteditor/main/app/view/FileMenuPanels.js b/apps/documenteditor/main/app/view/FileMenuPanels.js index 2937c60ee..0e98802b5 100644 --- a/apps/documenteditor/main/app/view/FileMenuPanels.js +++ b/apps/documenteditor/main/app/view/FileMenuPanels.js @@ -679,7 +679,7 @@ define([ dataHintDirection: 'bottom', dataHintOffset: 'big' }).on('selected', function(combo, record) { - me.chDarkMode.setDisabled(record.themeType!=='dark'); + me.chDarkMode.setDisabled(!Common.UI.Themes.isDarkTheme(record.value)); }); this.chDarkMode = new Common.UI.CheckBox({ @@ -755,7 +755,7 @@ define([ $('tr.coauth', this.el)[mode.isEdit && mode.canCoAuthoring ? 'show' : 'hide'](); $('tr.coauth.changes-mode', this.el)[mode.isEdit && !mode.isOffline && mode.canCoAuthoring && mode.canChangeCoAuthoring ? 'show' : 'hide'](); $('tr.coauth.changes-show', this.el)[mode.isEdit && !mode.isOffline && mode.canCoAuthoring ? 'show' : 'hide'](); - $('tr.live-viewer', this.el)[!mode.isEdit && !mode.isRestrictedEdit && !mode.isOffline && mode.canChangeCoAuthoring ? 'show' : 'hide'](); + $('tr.live-viewer', this.el)[mode.canLiveView && !mode.isOffline && mode.canChangeCoAuthoring ? 'show' : 'hide'](); $('tr.view-review', this.el)[mode.canViewReview ? 'show' : 'hide'](); $('tr.spellcheck', this.el)[mode.isEdit && Common.UI.FeaturesManager.canChange('spellcheck') ? 'show' : 'hide'](); $('tr.comments', this.el)[mode.canCoAuthoring ? 'show' : 'hide'](); @@ -868,7 +868,7 @@ define([ this.mode.canChangeCoAuthoring && Common.localStorage.setItem("de-settings-coauthmode", this.rbCoAuthModeFast.getValue() ? 1 : 0 ); Common.localStorage.setItem(this.rbCoAuthModeFast.getValue() ? "de-settings-showchanges-fast" : "de-settings-showchanges-strict", this.rbShowChangesNone.getValue()?'none':this.rbShowChangesLast.getValue()?'last':'all'); - } else if (!this.mode.isEdit && !this.mode.isRestrictedEdit && !this.mode.isOffline && this.mode.canChangeCoAuthoring) { // viewer + } else if (this.mode.canLiveView && !this.mode.isOffline && this.mode.canChangeCoAuthoring) { // viewer Common.localStorage.setItem("de-settings-view-coauthmode", this.chLiveViewer.isChecked() ? 1 : 0); } /** coauthoring end **/ diff --git a/apps/documenteditor/main/locale/az.json b/apps/documenteditor/main/locale/az.json index 7f1bf357d..c018b1eab 100644 --- a/apps/documenteditor/main/locale/az.json +++ b/apps/documenteditor/main/locale/az.json @@ -1704,21 +1704,12 @@ "DE.Views.FileMenuPanels.ProtectDoc.txtView": "İmzalara baxın", "DE.Views.FileMenuPanels.Settings.okButtonText": "Tətbiq et", "DE.Views.FileMenuPanels.Settings.strAlignGuides": "Düzülüş bələdçilərini aktivləşdirin", - "DE.Views.FileMenuPanels.Settings.strAutoRecover": "Avtomatik bərpanı aktivləşdirin", - "DE.Views.FileMenuPanels.Settings.strAutosave": "Avtomatik Saxla funksiyasını aktivləşdirin", "DE.Views.FileMenuPanels.Settings.strCoAuthMode": "Birgə redaktə Rejimi", - "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Digər istifadəçilər dəyişikliklərinizi dərhal görəcəklər", - "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "Dəyişiklikləri görməzdən əvvəl onları qəbul etməlisiniz", "DE.Views.FileMenuPanels.Settings.strFast": "Sürətli", "DE.Views.FileMenuPanels.Settings.strFontRender": "Şrift Hamarlaşdırma", "DE.Views.FileMenuPanels.Settings.strForcesave": "Yadda saxla və ya Ctrl+S düyməsinə kliklədikdən sonra versiyanı yaddaşa əlavə edin", - "DE.Views.FileMenuPanels.Settings.strInputMode": "Heroqlifi aktivləşdirin", - "DE.Views.FileMenuPanels.Settings.strLiveComment": "Şərhlərin ekranını yandırın", "DE.Views.FileMenuPanels.Settings.strMacrosSettings": "Makro Parametrləri", - "DE.Views.FileMenuPanels.Settings.strPaste": "Kes, kopyala ve yapıştır", "DE.Views.FileMenuPanels.Settings.strPasteButton": "Məzmun yapışdırıldıqda Yapışdırma Seçimləri düyməsini göstərin", - "DE.Views.FileMenuPanels.Settings.strResolvedComment": "Həll edilmiş şərhlərin ekranını yandırın", - "DE.Views.FileMenuPanels.Settings.strReviewHover": "Dəyişiklikləri İzləmə ekranı", "DE.Views.FileMenuPanels.Settings.strShowChanges": "Birgə redaktədə dəyişikliklər", "DE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Orfoqrafiya yoxlamasını aktivləşdirin", "DE.Views.FileMenuPanels.Settings.strStrict": "Məhdudlaşdır", diff --git a/apps/documenteditor/main/locale/be.json b/apps/documenteditor/main/locale/be.json index 6e40d94c6..019484c50 100644 --- a/apps/documenteditor/main/locale/be.json +++ b/apps/documenteditor/main/locale/be.json @@ -1632,20 +1632,12 @@ "DE.Views.FileMenuPanels.ProtectDoc.txtView": "Прагляд подпісаў", "DE.Views.FileMenuPanels.Settings.okButtonText": "Ужыць", "DE.Views.FileMenuPanels.Settings.strAlignGuides": "Уключыць кірункі выраўноўвання", - "DE.Views.FileMenuPanels.Settings.strAutoRecover": "Уключыць аўтааднаўленне", - "DE.Views.FileMenuPanels.Settings.strAutosave": "Уключыць аўтазахаванне", "DE.Views.FileMenuPanels.Settings.strCoAuthMode": "Рэжым сумеснага рэдагавання", - "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Іншыя карыстальнікі адразу будуць бачыць вашыя змены.", - "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "Перш чым убачыць змены іх патрэбна ухваліць", "DE.Views.FileMenuPanels.Settings.strFast": "Хуткі", "DE.Views.FileMenuPanels.Settings.strFontRender": "Хінтынг шрыфтоў", "DE.Views.FileMenuPanels.Settings.strForcesave": " Дадаваць версію ў сховішча пасля націскання кнопкі \"Захаваць\" або \"Ctrl+S\"", - "DE.Views.FileMenuPanels.Settings.strInputMode": "Уключыць іерогліфы", - "DE.Views.FileMenuPanels.Settings.strLiveComment": "Уключыць адлюстраванне каментароў у тэксце", "DE.Views.FileMenuPanels.Settings.strMacrosSettings": "Налады макрасаў", - "DE.Views.FileMenuPanels.Settings.strPaste": "Выразаць, капіяваць і ўставіць", "DE.Views.FileMenuPanels.Settings.strPasteButton": "Паказваць кнопку параметраў устаўкі падчас устаўкі", - "DE.Views.FileMenuPanels.Settings.strResolvedComment": "Уключыць адлюстраванне вырашаных каментароў", "DE.Views.FileMenuPanels.Settings.strShowChanges": "Адлюстроўваць змены падчас сумеснай працы", "DE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Уключыць праверку правапісу", "DE.Views.FileMenuPanels.Settings.strStrict": "Строгі", diff --git a/apps/documenteditor/main/locale/bg.json b/apps/documenteditor/main/locale/bg.json index 7288f6418..93f238eb9 100644 --- a/apps/documenteditor/main/locale/bg.json +++ b/apps/documenteditor/main/locale/bg.json @@ -1381,17 +1381,10 @@ "DE.Views.FileMenuPanels.ProtectDoc.txtView": "Преглед на подписи", "DE.Views.FileMenuPanels.Settings.okButtonText": "Приложи", "DE.Views.FileMenuPanels.Settings.strAlignGuides": "Включете водачите за подравняване", - "DE.Views.FileMenuPanels.Settings.strAutoRecover": "Включете функцията за автоматично откриване", - "DE.Views.FileMenuPanels.Settings.strAutosave": "Включете автоматичното запазване", "DE.Views.FileMenuPanels.Settings.strCoAuthMode": "Режим на съвместно редактиране", - "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Други потребители ще виждат промените Ви наведнъж", - "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "Трябва да приемете промените, преди да можете да ги видите", "DE.Views.FileMenuPanels.Settings.strFast": "Бърз", "DE.Views.FileMenuPanels.Settings.strFontRender": "Подсказване на шрифт", "DE.Views.FileMenuPanels.Settings.strForcesave": "Винаги да се съхранява в сървър (в случай, че случайно се запазва сървър)", - "DE.Views.FileMenuPanels.Settings.strInputMode": "Включете йероглифите", - "DE.Views.FileMenuPanels.Settings.strLiveComment": "Включете показването на коментарите", - "DE.Views.FileMenuPanels.Settings.strResolvedComment": "Включете показването на разрешените коментари", "DE.Views.FileMenuPanels.Settings.strShowChanges": "Промени в сътрудничеството в реално време", "DE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Включване на опцията за проверка на правописа", "DE.Views.FileMenuPanels.Settings.strStrict": "Стриктен", diff --git a/apps/documenteditor/main/locale/ca.json b/apps/documenteditor/main/locale/ca.json index 756b73abf..8c9f52257 100644 --- a/apps/documenteditor/main/locale/ca.json +++ b/apps/documenteditor/main/locale/ca.json @@ -1727,21 +1727,12 @@ "DE.Views.FileMenuPanels.ProtectDoc.txtView": "Mostra les signatures", "DE.Views.FileMenuPanels.Settings.okButtonText": "Aplica", "DE.Views.FileMenuPanels.Settings.strAlignGuides": "Activa les guies d'alineació", - "DE.Views.FileMenuPanels.Settings.strAutoRecover": "Activa la recuperació automàtica", - "DE.Views.FileMenuPanels.Settings.strAutosave": "Activa el desament automàtic", "DE.Views.FileMenuPanels.Settings.strCoAuthMode": "Mode de coedició", - "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Els altres usuaris veuran els teus canvis immediatament", - "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "Hauràs d’acceptar els canvis abans de poder-los veure", "DE.Views.FileMenuPanels.Settings.strFast": "Ràpid", "DE.Views.FileMenuPanels.Settings.strFontRender": "Tipus de lletra suggerides", "DE.Views.FileMenuPanels.Settings.strForcesave": "Afegeix la versió a l'emmagatzematge després de clicar a Desa o Ctrl + S", - "DE.Views.FileMenuPanels.Settings.strInputMode": "Activa els jeroglífics", - "DE.Views.FileMenuPanels.Settings.strLiveComment": "Activa la visualització dels comentaris", "DE.Views.FileMenuPanels.Settings.strMacrosSettings": "Configuració de les macros", - "DE.Views.FileMenuPanels.Settings.strPaste": "Talla copia i enganxa", "DE.Views.FileMenuPanels.Settings.strPasteButton": "Mostra el botó d'opcions d’enganxar quan s’enganxa contingut", - "DE.Views.FileMenuPanels.Settings.strResolvedComment": "Activa la visualització dels comentaris resolts", - "DE.Views.FileMenuPanels.Settings.strReviewHover": "Visualització del control de canvis", "DE.Views.FileMenuPanels.Settings.strShowChanges": "Canvis de col·laboració en temps real", "DE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Activa l’opció de correcció ortogràfica", "DE.Views.FileMenuPanels.Settings.strStrict": "Estricte", diff --git a/apps/documenteditor/main/locale/cs.json b/apps/documenteditor/main/locale/cs.json index 8d58ecc1f..b2fedf03b 100644 --- a/apps/documenteditor/main/locale/cs.json +++ b/apps/documenteditor/main/locale/cs.json @@ -1727,21 +1727,12 @@ "DE.Views.FileMenuPanels.ProtectDoc.txtView": "Zobrazit podpisy", "DE.Views.FileMenuPanels.Settings.okButtonText": "Použít", "DE.Views.FileMenuPanels.Settings.strAlignGuides": "Zapnout vodítka pro zarovnávání", - "DE.Views.FileMenuPanels.Settings.strAutoRecover": "Zapnout automatickou obnovu", - "DE.Views.FileMenuPanels.Settings.strAutosave": "Zapnout automatické ukládání", "DE.Views.FileMenuPanels.Settings.strCoAuthMode": "Režim spolupráce na úpravách", - "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Ostatní uživatelé okamžitě uvidí vámi prováděné změny", - "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "Abyste změny uviděli, je třeba je nejprve přijmout", "DE.Views.FileMenuPanels.Settings.strFast": "Automatický", "DE.Views.FileMenuPanels.Settings.strFontRender": "Vyhlazování hran znaků", "DE.Views.FileMenuPanels.Settings.strForcesave": "Přidejte verzi do úložiště kliknutím na Uložit nebo Ctrl+S", - "DE.Views.FileMenuPanels.Settings.strInputMode": "Zapnout podporu pro obrázková písma", - "DE.Views.FileMenuPanels.Settings.strLiveComment": "Zapnout zobrazování komentářů.", "DE.Views.FileMenuPanels.Settings.strMacrosSettings": "Nastavení maker", - "DE.Views.FileMenuPanels.Settings.strPaste": "Vyjmout, kopírovat, vložit", "DE.Views.FileMenuPanels.Settings.strPasteButton": "Zobrazit možnosti vložení, při vkládání obsahu", - "DE.Views.FileMenuPanels.Settings.strResolvedComment": "Zobrazovat i vyřešené komentáře", - "DE.Views.FileMenuPanels.Settings.strReviewHover": "Zobrazit sledovaní změn", "DE.Views.FileMenuPanels.Settings.strShowChanges": "Změny při spolupráci v reálném čase", "DE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Zapnout kontrolu pravopisu", "DE.Views.FileMenuPanels.Settings.strStrict": "Statický", diff --git a/apps/documenteditor/main/locale/da.json b/apps/documenteditor/main/locale/da.json index 9ececb645..ecef6db09 100644 --- a/apps/documenteditor/main/locale/da.json +++ b/apps/documenteditor/main/locale/da.json @@ -1704,21 +1704,12 @@ "DE.Views.FileMenuPanels.ProtectDoc.txtView": "Se underskrifter", "DE.Views.FileMenuPanels.Settings.okButtonText": "Anvend", "DE.Views.FileMenuPanels.Settings.strAlignGuides": "Slå justeringsguide til", - "DE.Views.FileMenuPanels.Settings.strAutoRecover": "Slå automatisk genoprettelse til", - "DE.Views.FileMenuPanels.Settings.strAutosave": "Slå gem automatisk til", "DE.Views.FileMenuPanels.Settings.strCoAuthMode": "Fællesredigeringstilstand", - "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Andre brugere vil se dine ændringer på en gang", - "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "Du skal acceptere ændringer før du kan se dem", "DE.Views.FileMenuPanels.Settings.strFast": "Hurtig", "DE.Views.FileMenuPanels.Settings.strFontRender": "Skrifttype hentydning", "DE.Views.FileMenuPanels.Settings.strForcesave": "Gem altid til serveren (ellers gem til serveren når dokumentet lukkes)", - "DE.Views.FileMenuPanels.Settings.strInputMode": "Slå hieroglyfher til ", - "DE.Views.FileMenuPanels.Settings.strLiveComment": "Slå visning af kommentarer til ", "DE.Views.FileMenuPanels.Settings.strMacrosSettings": "Makroindstillinger", - "DE.Views.FileMenuPanels.Settings.strPaste": "Klip, kopier og indsæt", "DE.Views.FileMenuPanels.Settings.strPasteButton": "Vis knappen for Indsæt-optioner når indhold indsættes", - "DE.Views.FileMenuPanels.Settings.strResolvedComment": "Slå visning af de løste kommentarer", - "DE.Views.FileMenuPanels.Settings.strReviewHover": "Spor ændringer Display", "DE.Views.FileMenuPanels.Settings.strShowChanges": "Real tids samarbejdsændringer", "DE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Slå stavekontrolstilstand til ", "DE.Views.FileMenuPanels.Settings.strStrict": "Striks", diff --git a/apps/documenteditor/main/locale/de.json b/apps/documenteditor/main/locale/de.json index d92e3cba8..7544cff11 100644 --- a/apps/documenteditor/main/locale/de.json +++ b/apps/documenteditor/main/locale/de.json @@ -1715,21 +1715,12 @@ "DE.Views.FileMenuPanels.ProtectDoc.txtView": "Signaturen anzeigen", "DE.Views.FileMenuPanels.Settings.okButtonText": "Anwenden", "DE.Views.FileMenuPanels.Settings.strAlignGuides": "Ausrichtungslinien einschalten", - "DE.Views.FileMenuPanels.Settings.strAutoRecover": "AutoWiederherstellen einschalten ", - "DE.Views.FileMenuPanels.Settings.strAutosave": "AutoSpeichern einschalten", "DE.Views.FileMenuPanels.Settings.strCoAuthMode": "Modus \"Gemeinsame Bearbeitung\"", - "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Andere Benutzer werden Ihre Änderungen gleichzeitig sehen", - "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "Sie müssen die Änderungen annehmen, bevor Sie diese sehen können", "DE.Views.FileMenuPanels.Settings.strFast": "Schnell", "DE.Views.FileMenuPanels.Settings.strFontRender": "Schriftglättung", "DE.Views.FileMenuPanels.Settings.strForcesave": "Immer auf dem Server speichern (ansonsten auf dem Server beim Schließen des Dokuments speichern)", - "DE.Views.FileMenuPanels.Settings.strInputMode": "Hieroglyphen einschalten", - "DE.Views.FileMenuPanels.Settings.strLiveComment": "Live-Kommentare einschalten", "DE.Views.FileMenuPanels.Settings.strMacrosSettings": "Einstellungen von Makros", - "DE.Views.FileMenuPanels.Settings.strPaste": "Ausschneiden, Kopieren und Einfügen", "DE.Views.FileMenuPanels.Settings.strPasteButton": "Die Schaltfläche Einfügeoptionen beim Einfügen von Inhalten anzeigen", - "DE.Views.FileMenuPanels.Settings.strResolvedComment": "Die Anzeige der aufgelösten Kommentare einschalten", - "DE.Views.FileMenuPanels.Settings.strReviewHover": "Änderungen bei der Überprüfung anzeigen", "DE.Views.FileMenuPanels.Settings.strShowChanges": "Änderungen bei der Echtzeit-Zusammenarbeit zeigen", "DE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Rechtschreibprüfung einschalten", "DE.Views.FileMenuPanels.Settings.strStrict": "Formal", diff --git a/apps/documenteditor/main/locale/el.json b/apps/documenteditor/main/locale/el.json index e04ea236e..b49d30c21 100644 --- a/apps/documenteditor/main/locale/el.json +++ b/apps/documenteditor/main/locale/el.json @@ -1719,21 +1719,12 @@ "DE.Views.FileMenuPanels.ProtectDoc.txtView": "Προβολή υπογραφών", "DE.Views.FileMenuPanels.Settings.okButtonText": "Εφαρμογή", "DE.Views.FileMenuPanels.Settings.strAlignGuides": "Ενεργοποίηση οδηγών στοίχισης", - "DE.Views.FileMenuPanels.Settings.strAutoRecover": "Ενεργοποίηση αυτόματης αποκατάστασης", - "DE.Views.FileMenuPanels.Settings.strAutosave": "Ενεργοποίηση αυτόματης αποθήκευσης", "DE.Views.FileMenuPanels.Settings.strCoAuthMode": "Κατάσταση Συν-επεξεργασίας", - "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Οι άλλοι χρήστες θα δουν αμέσως τις αλλαγές σας", - "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "Θα χρειαστεί να αποδεχτείτε τις αλλαγές προτού τις δείτε", "DE.Views.FileMenuPanels.Settings.strFast": "Γρήγορη", "DE.Views.FileMenuPanels.Settings.strFontRender": "Βελτιστοποίηση Γραμματοσειράς", "DE.Views.FileMenuPanels.Settings.strForcesave": "Προσθήκη έκδοσης στο χώρο αποθήκευσης μετά την Αποθήκευση ή Ctrl+S", - "DE.Views.FileMenuPanels.Settings.strInputMode": "Ενεργοποίηση ιερογλυφικών", - "DE.Views.FileMenuPanels.Settings.strLiveComment": "Ενεργοποίηση προβολής σχολίων", "DE.Views.FileMenuPanels.Settings.strMacrosSettings": "Ρυθμίσεις Mακροεντολών", - "DE.Views.FileMenuPanels.Settings.strPaste": "Αποκοπή, αντιγραφή και επικόλληση", "DE.Views.FileMenuPanels.Settings.strPasteButton": "Εμφάνιση κουμπιού Επιλογών Επικόλλησης κατά την επικόλληση περιεχομένου", - "DE.Views.FileMenuPanels.Settings.strResolvedComment": "Ενεργοποίηση εμφάνισης επιλυμένων σχολίων", - "DE.Views.FileMenuPanels.Settings.strReviewHover": "Οθόνη Παρακολούθησης Αλλαγών", "DE.Views.FileMenuPanels.Settings.strShowChanges": "Αλλαγές Συνεργασίας Πραγματικού Χρόνου", "DE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Ενεργοποίηση επιλογής ορθογραφικού ελέγχου", "DE.Views.FileMenuPanels.Settings.strStrict": "Αυστηρή", diff --git a/apps/documenteditor/main/locale/en.json b/apps/documenteditor/main/locale/en.json index 9b771f458..715124b96 100644 --- a/apps/documenteditor/main/locale/en.json +++ b/apps/documenteditor/main/locale/en.json @@ -188,6 +188,7 @@ "Common.UI.Themes.txtThemeClassicLight": "Classic Light", "Common.UI.Themes.txtThemeDark": "Dark", "Common.UI.Themes.txtThemeLight": "Light", + "Common.UI.Themes.txtThemeSystem": "Same as system", "Common.UI.Window.cancelButtonText": "Cancel", "Common.UI.Window.closeButtonText": "Close", "Common.UI.Window.noButtonText": "No", @@ -286,6 +287,7 @@ "Common.Views.Header.textHideLines": "Hide Rulers", "Common.Views.Header.textHideStatusBar": "Hide Status Bar", "Common.Views.Header.textRemoveFavorite": "Remove from Favorites", + "Common.Views.Header.textShare": "Share", "Common.Views.Header.textZoom": "Zoom", "Common.Views.Header.tipAccessRights": "Manage document access rights", "Common.Views.Header.tipDownload": "Download file", @@ -294,12 +296,11 @@ "Common.Views.Header.tipRedo": "Redo", "Common.Views.Header.tipSave": "Save", "Common.Views.Header.tipUndo": "Undo", + "Common.Views.Header.tipUsers": "View users", "Common.Views.Header.tipViewSettings": "View settings", "Common.Views.Header.tipViewUsers": "View users and manage document access rights", - "Common.Views.Header.tipUsers": "View users", "Common.Views.Header.txtAccessRights": "Change access rights", "Common.Views.Header.txtRename": "Rename", - "Common.Views.Header.textShare": "Share", "Common.Views.History.textCloseHistory": "Close History", "Common.Views.History.textHide": "Collapse", "Common.Views.History.textHideAll": "Hide detailed changes", @@ -543,6 +544,7 @@ "DE.Controllers.Main.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.Controllers.Main.errorEditingSaveas": "An error occurred during the work with the document.
Use the 'Save as...' option to save the file backup copy to your computer hard drive.", "DE.Controllers.Main.errorEmailClient": "No email client could be found.", + "DE.Controllers.Main.errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.", "DE.Controllers.Main.errorFilePassProtect": "The file is password protected and cannot be opened.", "DE.Controllers.Main.errorFileSizeExceed": "The file size exceeds the limitation set for your server.
Please contact your Document Server administrator for details.", "DE.Controllers.Main.errorForceSave": "An error occurred while saving the file. Please use the 'Download as' option to save the file to your computer hard drive or try again later.", @@ -551,6 +553,7 @@ "DE.Controllers.Main.errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator.", "DE.Controllers.Main.errorMailMergeLoadFile": "Loading the document failed. Please select a different file.", "DE.Controllers.Main.errorMailMergeSaveFile": "Merge failed.", + "DE.Controllers.Main.errorNoTOC": "There's no table of contents to update. You can insert one from the References tab.", "DE.Controllers.Main.errorProcessSaveResult": "Saving failed.", "DE.Controllers.Main.errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", "DE.Controllers.Main.errorSessionAbsolute": "The document editing session has expired. Please reload the page.", @@ -566,8 +569,6 @@ "DE.Controllers.Main.errorUserDrop": "The file cannot be accessed right now.", "DE.Controllers.Main.errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", "DE.Controllers.Main.errorViewerDisconnect": "Connection is lost. You can still view the document,
but will not be able to download or print it until the connection is restored and page is reloaded.", - "DE.Controllers.Main.errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.", - "DE.Controllers.Main.errorNoTOC": "There's no table of contents to update. You can insert one from the References tab.", "DE.Controllers.Main.leavePageText": "You have unsaved changes in this document. Click \"Stay on This Page\", then \"Save\" to save them. Click \"Leave This Page\" to discard all the unsaved changes.", "DE.Controllers.Main.leavePageTextOnClose": "All unsaved changes in this document will be lost.
Click \"Cancel\" then \"Save\" to save them. Click \"OK\" to discard all the unsaved changes.", "DE.Controllers.Main.loadFontsTextText": "Loading data...", @@ -1742,14 +1743,16 @@ "DE.Views.FileMenuPanels.Settings.strForcesave": "Add version to storage after clicking Save or Ctrl+S", "del_DE.Views.FileMenuPanels.Settings.strInputMode": "Turn on hieroglyphs", "del_DE.Views.FileMenuPanels.Settings.strLiveComment": "Turn on display of the comments", + "DE.Views.FileMenuPanels.Settings.strIgnoreWordsInUPPERCASE": "Ignore words in UPPERCASE", + "DE.Views.FileMenuPanels.Settings.strIgnoreWordsWithNumbers": "Ignore words with numbers", "DE.Views.FileMenuPanels.Settings.strMacrosSettings": "Macros Settings", "del_DE.Views.FileMenuPanels.Settings.strPaste": "Cut, copy and paste", "DE.Views.FileMenuPanels.Settings.strPasteButton": "Show the Paste Options button when the content is pasted", "del_DE.Views.FileMenuPanels.Settings.strResolvedComment": "Turn on display of the resolved comments", "del_DE.Views.FileMenuPanels.Settings.strReviewHover": "Track Changes Display", "DE.Views.FileMenuPanels.Settings.strShowChanges": "Real-time Collaboration Changes", - "DE.Views.FileMenuPanels.Settings.strShowResolvedComments": "Show resolved comments", "DE.Views.FileMenuPanels.Settings.strShowComments": "Show comments in text", + "DE.Views.FileMenuPanels.Settings.strShowResolvedComments": "Show resolved comments", "DE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Turn on spell checking option", "DE.Views.FileMenuPanels.Settings.strStrict": "Strict", "DE.Views.FileMenuPanels.Settings.strTheme": "Interface theme", @@ -1800,8 +1803,6 @@ "DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Disable all macros with a notification", "DE.Views.FileMenuPanels.Settings.txtWin": "as Windows", "DE.Views.FileMenuPanels.Settings.txtWorkspace": "Workspace", - "DE.Views.FileMenuPanels.Settings.strIgnoreWordsInUPPERCASE": "Ignore words in UPPERCASE", - "DE.Views.FileMenuPanels.Settings.strIgnoreWordsWithNumbers": "Ignore words with numbers", "DE.Views.FormSettings.textAlways": "Always", "DE.Views.FormSettings.textAspect": "Lock aspect ratio", "DE.Views.FormSettings.textAutofit": "AutoFit", @@ -2039,6 +2040,7 @@ "DE.Views.LineNumbersDialog.textStartAt": "Start at", "DE.Views.LineNumbersDialog.textTitle": "Line Numbers", "DE.Views.LineNumbersDialog.txtAutoText": "Auto", + "DE.Views.Links.capBtnAddText": "Add Text", "DE.Views.Links.capBtnBookmarks": "Bookmark", "DE.Views.Links.capBtnCaption": "Caption", "DE.Views.Links.capBtnContentsUpdate": "Update Table", @@ -2063,6 +2065,7 @@ "DE.Views.Links.textSwapNotes": "Swap Footnotes and Endnotes", "DE.Views.Links.textUpdateAll": "Update entire table", "DE.Views.Links.textUpdatePages": "Update page numbers only", + "DE.Views.Links.tipAddText": "Include heading in the Table of Contents", "DE.Views.Links.tipBookmarks": "Create a bookmark", "DE.Views.Links.tipCaption": "Insert caption", "DE.Views.Links.tipContents": "Insert table of contents", @@ -2073,8 +2076,6 @@ "DE.Views.Links.tipTableFigures": "Insert table of figures", "DE.Views.Links.tipTableFiguresUpdate": "Update table of figures", "DE.Views.Links.titleUpdateTOF": "Update Table of Figures", - "DE.Views.Links.capBtnAddText": "Add Text", - "DE.Views.Links.tipAddText": "Include heading in the Table of Contents", "DE.Views.Links.txtDontShowTof": "Do Not Show in Table of Contents", "DE.Views.Links.txtLevel": "Level", "DE.Views.ListSettingsDialog.textAuto": "Automatic", @@ -2660,6 +2661,8 @@ "DE.Views.Toolbar.mniImageFromStorage": "Image from Storage", "DE.Views.Toolbar.mniImageFromUrl": "Image from URL", "DE.Views.Toolbar.mniLowerCase": "lowercase", + "DE.Views.Toolbar.mniRemoveFooter": "Remove Footer", + "DE.Views.Toolbar.mniRemoveHeader": "Remove Header", "DE.Views.Toolbar.mniSentenceCase": "Sentence case.", "DE.Views.Toolbar.mniTextToTable": "Convert Text to Table", "DE.Views.Toolbar.mniToggleCase": "tOGGLE cASE", @@ -2838,8 +2841,6 @@ "DE.Views.Toolbar.txtScheme7": "Equity", "DE.Views.Toolbar.txtScheme8": "Flow", "DE.Views.Toolbar.txtScheme9": "Foundry", - "DE.Views.Toolbar.mniRemoveHeader": "Remove Header", - "DE.Views.Toolbar.mniRemoveFooter": "Remove Footer", "DE.Views.ViewTab.textAlwaysShowToolbar": "Always show toolbar", "DE.Views.ViewTab.textDarkDocument": "Dark document", "DE.Views.ViewTab.textFitToPage": "Fit To Page", diff --git a/apps/documenteditor/main/locale/es.json b/apps/documenteditor/main/locale/es.json index 5109d2453..2d4ec44eb 100644 --- a/apps/documenteditor/main/locale/es.json +++ b/apps/documenteditor/main/locale/es.json @@ -1727,21 +1727,12 @@ "DE.Views.FileMenuPanels.ProtectDoc.txtView": "Ver firmas", "DE.Views.FileMenuPanels.Settings.okButtonText": "Aplicar", "DE.Views.FileMenuPanels.Settings.strAlignGuides": "Activar guías de alineación", - "DE.Views.FileMenuPanels.Settings.strAutoRecover": "Activar autorecuperación", - "DE.Views.FileMenuPanels.Settings.strAutosave": "Activar autoguardado", "DE.Views.FileMenuPanels.Settings.strCoAuthMode": "El modo Co-edición", - "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Otros usuarios verán los cambios a la vez", - "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "Usted tendrá que aceptar los cambios antes de poder verlos", "DE.Views.FileMenuPanels.Settings.strFast": "rápido", "DE.Views.FileMenuPanels.Settings.strFontRender": "Hinting", "DE.Views.FileMenuPanels.Settings.strForcesave": "Agregar la versión al almacenamiento después de hacer clic en Guardar o Ctrl+S", - "DE.Views.FileMenuPanels.Settings.strInputMode": "Activar jeroglíficos", - "DE.Views.FileMenuPanels.Settings.strLiveComment": "Activar opción de demostración de comentarios", "DE.Views.FileMenuPanels.Settings.strMacrosSettings": "Ajustes de macros", - "DE.Views.FileMenuPanels.Settings.strPaste": "Cortar, copiar y pegar", "DE.Views.FileMenuPanels.Settings.strPasteButton": "Mostrar el botón Opciones de pegado cuando se pegue contenido", - "DE.Views.FileMenuPanels.Settings.strResolvedComment": "Activar la visualización de los comentarios resueltos", - "DE.Views.FileMenuPanels.Settings.strReviewHover": "Mostrar el seguimiento de cambios", "DE.Views.FileMenuPanels.Settings.strShowChanges": "Cambios de colaboración en tiempo real", "DE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Activar corrección ortográfica", "DE.Views.FileMenuPanels.Settings.strStrict": "Estricto", diff --git a/apps/documenteditor/main/locale/fi.json b/apps/documenteditor/main/locale/fi.json index 9562d7db0..1c3453786 100644 --- a/apps/documenteditor/main/locale/fi.json +++ b/apps/documenteditor/main/locale/fi.json @@ -1056,15 +1056,9 @@ "DE.Views.FileMenuPanels.ProtectDoc.txtEdit": "Muokkaa asiakirjaa", "DE.Views.FileMenuPanels.Settings.okButtonText": "Käytä", "DE.Views.FileMenuPanels.Settings.strAlignGuides": "Aseta päälle tasauksen oppaat", - "DE.Views.FileMenuPanels.Settings.strAutoRecover": "Aseta päälle automaattinen palautus", - "DE.Views.FileMenuPanels.Settings.strAutosave": "Aseta päälle automaattinen talletus", "DE.Views.FileMenuPanels.Settings.strCoAuthMode": "Yhteismuokkauksen tila", - "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Muut käyttäjät näkevät muutoksesi välittömästi", - "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "Sinun tulee hyväksyä muutokset ennenkuin näet ne", "DE.Views.FileMenuPanels.Settings.strFast": "Nopea", "DE.Views.FileMenuPanels.Settings.strFontRender": "Fontin ehdotukset", - "DE.Views.FileMenuPanels.Settings.strInputMode": "Aseta päälle hieroglyfit", - "DE.Views.FileMenuPanels.Settings.strLiveComment": "Aseta päälle kommenttien näkymä", "DE.Views.FileMenuPanels.Settings.strShowChanges": "Reaaliaikaiset yhteistyöhön perustuvat muutokset ", "DE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Aseta päälle oikeintarkistuksen valinta", "DE.Views.FileMenuPanels.Settings.strStrict": "Ehdoton", diff --git a/apps/documenteditor/main/locale/fr.json b/apps/documenteditor/main/locale/fr.json index e72b567e0..4322d0030 100644 --- a/apps/documenteditor/main/locale/fr.json +++ b/apps/documenteditor/main/locale/fr.json @@ -262,6 +262,7 @@ "Common.Views.Comments.textResolved": "Résolu", "Common.Views.Comments.textSort": "Trier les commentaires", "Common.Views.Comments.textViewResolved": "Vous n'avez pas la permission de rouvrir le commentaire", + "Common.Views.Comments.txtEmpty": "Il n'y a pas de commentaires dans le document.", "Common.Views.CopyWarningDialog.textDontShow": "Ne plus afficher ce message", "Common.Views.CopyWarningDialog.textMsg": "Vous pouvez réaliser les actions de copier, couper et coller en utilisant les boutons de la barre d'outils et à l'aide du menu contextuel à partir de cet onglet uniquement.

Pour copier ou coller de / vers les applications en dehors de l'onglet de l'éditeur, utilisez les combinaisons de touches suivantes :", "Common.Views.CopyWarningDialog.textTitle": "Fonctions de Copier, Couper et Coller", @@ -1690,12 +1691,17 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Changer les droits d'accès", "DE.Views.FileMenuPanels.DocumentInfo.txtComment": "Commentaire", "DE.Views.FileMenuPanels.DocumentInfo.txtCreated": "Créé", + "DE.Views.FileMenuPanels.DocumentInfo.txtFastWV": "Affichage rapide sur le Web", "DE.Views.FileMenuPanels.DocumentInfo.txtLoading": "Chargement en cours...", "DE.Views.FileMenuPanels.DocumentInfo.txtModifyBy": "Dernière modification par", "DE.Views.FileMenuPanels.DocumentInfo.txtModifyDate": "Dernière modification", + "DE.Views.FileMenuPanels.DocumentInfo.txtNo": "Non", "DE.Views.FileMenuPanels.DocumentInfo.txtOwner": "Propriétaire", "DE.Views.FileMenuPanels.DocumentInfo.txtPages": "Pages", + "DE.Views.FileMenuPanels.DocumentInfo.txtPageSize": "Taille de la page", "DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs": "Paragraphes", + "DE.Views.FileMenuPanels.DocumentInfo.txtPdfTagged": "PDF marqué", + "DE.Views.FileMenuPanels.DocumentInfo.txtPdfVer": "Version PDF", "DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Emplacement", "DE.Views.FileMenuPanels.DocumentInfo.txtRights": "Personnes qui ont des droits", "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Symboles avec des espaces", @@ -1705,6 +1711,7 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Titre du document", "DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Chargé", "DE.Views.FileMenuPanels.DocumentInfo.txtWords": "Mots", + "DE.Views.FileMenuPanels.DocumentInfo.txtYes": "Oui", "DE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Changer les droits d'accès", "DE.Views.FileMenuPanels.DocumentRights.txtRights": "Personnes qui ont des droits", "DE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Avertissement", @@ -1720,21 +1727,12 @@ "DE.Views.FileMenuPanels.ProtectDoc.txtView": "Voir les signatures", "DE.Views.FileMenuPanels.Settings.okButtonText": "Appliquer", "DE.Views.FileMenuPanels.Settings.strAlignGuides": "Activer les repères d'alignement", - "DE.Views.FileMenuPanels.Settings.strAutoRecover": "Activer la récupération automatique", - "DE.Views.FileMenuPanels.Settings.strAutosave": "Activer l'enregistrement automatique", "DE.Views.FileMenuPanels.Settings.strCoAuthMode": "Mode de co-édition ", - "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Les autres utilisateurs verront vos modifications en temps reel", - "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "Avant de pouvoir afficher les modifications, vous avez besoin de les accépter ", "DE.Views.FileMenuPanels.Settings.strFast": "Rapide", "DE.Views.FileMenuPanels.Settings.strFontRender": "Hinting de la police", "DE.Views.FileMenuPanels.Settings.strForcesave": "Ajouter une version à l'espace de stockage en cliquant Enregistrer ou Ctrl+S", - "DE.Views.FileMenuPanels.Settings.strInputMode": "Activer des hiéroglyphes", - "DE.Views.FileMenuPanels.Settings.strLiveComment": "Activer l'affichage des commentaires", "DE.Views.FileMenuPanels.Settings.strMacrosSettings": "Réglages macros", - "DE.Views.FileMenuPanels.Settings.strPaste": "Couper,copier et coller", "DE.Views.FileMenuPanels.Settings.strPasteButton": "Afficher le bouton \"Options de collage\" lorsque le contenu est collé ", - "DE.Views.FileMenuPanels.Settings.strResolvedComment": "Activer l'affichage des commentaires résolus", - "DE.Views.FileMenuPanels.Settings.strReviewHover": "Afficher le suivi des modifications", "DE.Views.FileMenuPanels.Settings.strShowChanges": "Visibilité des modifications en co-édition", "DE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Activer la vérification de l'orthographe", "DE.Views.FileMenuPanels.Settings.strStrict": "Strict", diff --git a/apps/documenteditor/main/locale/gl.json b/apps/documenteditor/main/locale/gl.json index 0932f72a1..7d4c34146 100644 --- a/apps/documenteditor/main/locale/gl.json +++ b/apps/documenteditor/main/locale/gl.json @@ -1715,21 +1715,12 @@ "DE.Views.FileMenuPanels.ProtectDoc.txtView": "Ver sinaturas", "DE.Views.FileMenuPanels.Settings.okButtonText": "Aplicar", "DE.Views.FileMenuPanels.Settings.strAlignGuides": "Activar guías de aliñación", - "DE.Views.FileMenuPanels.Settings.strAutoRecover": "Activar autorecuperación", - "DE.Views.FileMenuPanels.Settings.strAutosave": "Activar autogardado", "DE.Views.FileMenuPanels.Settings.strCoAuthMode": "O modo Co-edición", - "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Outras persoas usuarias verán os cambios á vez", - "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "Terá que aceptar os cambios antes de poder velos", "DE.Views.FileMenuPanels.Settings.strFast": "Rápido", "DE.Views.FileMenuPanels.Settings.strFontRender": "Busca das fontes", "DE.Views.FileMenuPanels.Settings.strForcesave": "Engadir a versión ao almacenamento despois de premer en Gardar ou Ctrl+S", - "DE.Views.FileMenuPanels.Settings.strInputMode": "Activar xeroglíficos", - "DE.Views.FileMenuPanels.Settings.strLiveComment": "Activar opción de demostración de comentarios", "DE.Views.FileMenuPanels.Settings.strMacrosSettings": "Configuración das macros", - "DE.Views.FileMenuPanels.Settings.strPaste": "Cortar, copiar e pegar", "DE.Views.FileMenuPanels.Settings.strPasteButton": "Amosar o botón Opcións de pegado cando se pegue contido", - "DE.Views.FileMenuPanels.Settings.strResolvedComment": "Activar a visualización dos comentarios resoltos", - "DE.Views.FileMenuPanels.Settings.strReviewHover": "Amosar o seguemento dos cambios", "DE.Views.FileMenuPanels.Settings.strShowChanges": "Cambios de colaboración en tempo real", "DE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Activar corrección ortográfica", "DE.Views.FileMenuPanels.Settings.strStrict": "Estrito", diff --git a/apps/documenteditor/main/locale/hu.json b/apps/documenteditor/main/locale/hu.json index 408602ea3..df56a7319 100644 --- a/apps/documenteditor/main/locale/hu.json +++ b/apps/documenteditor/main/locale/hu.json @@ -1719,21 +1719,12 @@ "DE.Views.FileMenuPanels.ProtectDoc.txtView": "Aláírások megtekintése", "DE.Views.FileMenuPanels.Settings.okButtonText": "Alkalmaz", "DE.Views.FileMenuPanels.Settings.strAlignGuides": "Elrendezési segéd bekapcsolása", - "DE.Views.FileMenuPanels.Settings.strAutoRecover": "Automatikus visszaállítás bekapcsolása", - "DE.Views.FileMenuPanels.Settings.strAutosave": "Automatikus mentés bekapcsolása", "DE.Views.FileMenuPanels.Settings.strCoAuthMode": "Együttes szerkesztési mód", - "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Más felhasználók azonnal látják a módosításokat", - "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "El kell fogadnia a módosításokat mielőtt meg tudná nézni", "DE.Views.FileMenuPanels.Settings.strFast": "Gyors", "DE.Views.FileMenuPanels.Settings.strFontRender": "Betűtípus ajánlás", "DE.Views.FileMenuPanels.Settings.strForcesave": "A Mentés vagy a Ctrl+S gomb megnyomása után adja hozzá a verziót a tárhelyhez", - "DE.Views.FileMenuPanels.Settings.strInputMode": "Hieroglifák bekapcsolása", - "DE.Views.FileMenuPanels.Settings.strLiveComment": "Kapcsolja be a megjegyzések megjelenítését", "DE.Views.FileMenuPanels.Settings.strMacrosSettings": "Makró beállítások", - "DE.Views.FileMenuPanels.Settings.strPaste": "Kivágás, másolás és beillesztés", "DE.Views.FileMenuPanels.Settings.strPasteButton": "A tartalom beillesztésekor jelenítse meg a beillesztési beállítások gombot", - "DE.Views.FileMenuPanels.Settings.strResolvedComment": "Kapcsolja be a megoldott megjegyzések megjelenítését", - "DE.Views.FileMenuPanels.Settings.strReviewHover": "Változások követésének megjelenése", "DE.Views.FileMenuPanels.Settings.strShowChanges": "Valós idejű együttműködés módosításai", "DE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Helyesírás-ellenőrzés bekapcsolása", "DE.Views.FileMenuPanels.Settings.strStrict": "Biztonságos", diff --git a/apps/documenteditor/main/locale/it.json b/apps/documenteditor/main/locale/it.json index a169290fb..10f5b078b 100644 --- a/apps/documenteditor/main/locale/it.json +++ b/apps/documenteditor/main/locale/it.json @@ -1715,21 +1715,12 @@ "DE.Views.FileMenuPanels.ProtectDoc.txtView": "Mostra firme", "DE.Views.FileMenuPanels.Settings.okButtonText": "Applica", "DE.Views.FileMenuPanels.Settings.strAlignGuides": "Abilita guide di allineamento", - "DE.Views.FileMenuPanels.Settings.strAutoRecover": "Attiva il ripristino automatico", - "DE.Views.FileMenuPanels.Settings.strAutosave": "Attiva salvataggio automatico", "DE.Views.FileMenuPanels.Settings.strCoAuthMode": "Modalità di co-editing", - "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Gli altri utenti vedranno le tue modifiche contemporaneamente", - "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "Dovrai accettare i cambiamenti prima di poterli visualizzare.", "DE.Views.FileMenuPanels.Settings.strFast": "Rapido", "DE.Views.FileMenuPanels.Settings.strFontRender": "Suggerimento per i caratteri", "DE.Views.FileMenuPanels.Settings.strForcesave": "‎Aggiungere la versione all'archivio dopo aver fatto clic su Salva o CTRL+S‎", - "DE.Views.FileMenuPanels.Settings.strInputMode": "Attiva geroglifici", - "DE.Views.FileMenuPanels.Settings.strLiveComment": "Attivare visualizzazione dei commenti", "DE.Views.FileMenuPanels.Settings.strMacrosSettings": "Impostazioni macro", - "DE.Views.FileMenuPanels.Settings.strPaste": "Taglia, copia e incolla", "DE.Views.FileMenuPanels.Settings.strPasteButton": "Mostra il pulsante opzioni Incolla quando il contenuto viene incollato", - "DE.Views.FileMenuPanels.Settings.strResolvedComment": "Attiva la visualizzazione dei commenti risolti", - "DE.Views.FileMenuPanels.Settings.strReviewHover": "Visualizzazione di revisioni", "DE.Views.FileMenuPanels.Settings.strShowChanges": "Evidenzia modifiche di collaborazione in tempo reale", "DE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Attiva controllo ortografia", "DE.Views.FileMenuPanels.Settings.strStrict": "Rigorosa", diff --git a/apps/documenteditor/main/locale/ja.json b/apps/documenteditor/main/locale/ja.json index 35e86b759..7d1b1ed55 100644 --- a/apps/documenteditor/main/locale/ja.json +++ b/apps/documenteditor/main/locale/ja.json @@ -7,7 +7,7 @@ "Common.Controllers.ExternalDiagramEditor.warningTitle": "警告", "Common.Controllers.ExternalMergeEditor.textAnonymous": "匿名者", "Common.Controllers.ExternalMergeEditor.textClose": "閉じる", - "Common.Controllers.ExternalMergeEditor.warningText": "他のユーザは編集しているのためオブジェクトが無効になります。", + "Common.Controllers.ExternalMergeEditor.warningText": "他のユーザーが編集しているのためオブジェクトが無効になります。", "Common.Controllers.ExternalMergeEditor.warningTitle": "警告", "Common.Controllers.History.notcriticalErrorTitle": "警告", "Common.Controllers.ReviewChanges.textAcceptBeforeCompare": "文書を比較するために、文書内のすべての変更履歴が承認されたと見なされます。続行しますか?", @@ -62,22 +62,22 @@ "Common.Controllers.ReviewChanges.textRight": "右揃え", "Common.Controllers.ReviewChanges.textShape": "図形", "Common.Controllers.ReviewChanges.textShd": "背景色", - "Common.Controllers.ReviewChanges.textShow": "変更を表示する", + "Common.Controllers.ReviewChanges.textShow": "での変更点を表示", "Common.Controllers.ReviewChanges.textSmallCaps": "小型英大文字", "Common.Controllers.ReviewChanges.textSpacing": "間隔", - "Common.Controllers.ReviewChanges.textSpacingAfter": "段落の後の行間", - "Common.Controllers.ReviewChanges.textSpacingBefore": "段落の前の行間", + "Common.Controllers.ReviewChanges.textSpacingAfter": "の後の行間", + "Common.Controllers.ReviewChanges.textSpacingBefore": "の前の行間", "Common.Controllers.ReviewChanges.textStrikeout": "取り消し線", - "Common.Controllers.ReviewChanges.textSubScript": "下付き", + "Common.Controllers.ReviewChanges.textSubScript": "下付き文字", "Common.Controllers.ReviewChanges.textSuperScript": "上付き文字", "Common.Controllers.ReviewChanges.textTableChanged": "テーブル設定が変更されました", "Common.Controllers.ReviewChanges.textTableRowsAdd": "テーブルに行が追加されました", "Common.Controllers.ReviewChanges.textTableRowsDel": "テーブルの行が削除されました", "Common.Controllers.ReviewChanges.textTabs": "タブの変更", "Common.Controllers.ReviewChanges.textTitleComparison": "比較設定", - "Common.Controllers.ReviewChanges.textUnderline": "下線", - "Common.Controllers.ReviewChanges.textUrl": "文書へのURLリンクの貼り付け", - "Common.Controllers.ReviewChanges.textWidow": " 改ページ時 1 行残して段落を区切らない]", + "Common.Controllers.ReviewChanges.textUnderline": "アンダーライン", + "Common.Controllers.ReviewChanges.textUrl": "ドキュメントのURLを貼り付け", + "Common.Controllers.ReviewChanges.textWidow": "ウインドウ制御", "Common.Controllers.ReviewChanges.textWord": "単語レベル", "Common.define.chartData.textArea": "面グラフ", "Common.define.chartData.textAreaStacked": "積み上げ面", @@ -113,7 +113,7 @@ "Common.define.chartData.textLineStackedPerMarker": "マーカー付き 積み上げ折れ線 100% ", "Common.define.chartData.textPie": "円グラフ", "Common.define.chartData.textPie3d": "3-D 円", - "Common.define.chartData.textPoint": "点グラフ", + "Common.define.chartData.textPoint": "XY (散布図)", "Common.define.chartData.textScatter": "散布図", "Common.define.chartData.textScatterLine": "直線付き散布図", "Common.define.chartData.textScatterLineMarker": "マーカーと直線付き散布図", @@ -176,14 +176,14 @@ "Common.UI.SearchDialog.textSearchStart": "テキストをここに挿入してください。", "Common.UI.SearchDialog.textTitle": "検索と置換", "Common.UI.SearchDialog.textTitle2": "検索", - "Common.UI.SearchDialog.textWholeWords": "単語全体", + "Common.UI.SearchDialog.textWholeWords": "単語全体のみ", "Common.UI.SearchDialog.txtBtnHideReplace": "置換を表示しない", - "Common.UI.SearchDialog.txtBtnReplace": "置き換え", - "Common.UI.SearchDialog.txtBtnReplaceAll": "全ての置き換え", + "Common.UI.SearchDialog.txtBtnReplace": "置換する", + "Common.UI.SearchDialog.txtBtnReplaceAll": "全てを置き換える", "Common.UI.SynchronizeTip.textDontShow": "今後このメッセージを表示しない", - "Common.UI.SynchronizeTip.textSynchronize": "ドキュメントは他のユーザーによって変更されました。
変更を保存するためにここでクリックし、アップデートを再ロードしてください。", - "Common.UI.ThemeColorPalette.textStandartColors": "標準の色", - "Common.UI.ThemeColorPalette.textThemeColors": "テーマカラー", + "Common.UI.SynchronizeTip.textSynchronize": "このドキュメントは他のユーザーによって変更されました。クリックして変更を保存し、更新を再読み込みしてください。", + "Common.UI.ThemeColorPalette.textStandartColors": "標準色", + "Common.UI.ThemeColorPalette.textThemeColors": "テーマの色", "Common.UI.Themes.txtThemeClassicLight": "明るい(クラシック)", "Common.UI.Themes.txtThemeDark": "暗い", "Common.UI.Themes.txtThemeLight": "明るい", @@ -209,7 +209,7 @@ "Common.Views.AutoCorrectDialog.textAdd": "追加", "Common.Views.AutoCorrectDialog.textApplyText": "入力時に適用する", "Common.Views.AutoCorrectDialog.textAutoCorrect": "テキストオートコレクト", - "Common.Views.AutoCorrectDialog.textAutoFormat": "入力時に自動調整", + "Common.Views.AutoCorrectDialog.textAutoFormat": "入力時にオートフォーマット", "Common.Views.AutoCorrectDialog.textBulleted": "自動箇条書きリスト", "Common.Views.AutoCorrectDialog.textBy": "幅", "Common.Views.AutoCorrectDialog.textDelete": "削除する", @@ -223,7 +223,7 @@ "Common.Views.AutoCorrectDialog.textQuotes": "左右の区別がない引用符を、区別がある引用符に変更する", "Common.Views.AutoCorrectDialog.textRecognized": "認識された関数", "Common.Views.AutoCorrectDialog.textRecognizedDesc": "以下の式は、認識される数式です。 自動的にイタリック体になることはありません。", - "Common.Views.AutoCorrectDialog.textReplace": "置き換え", + "Common.Views.AutoCorrectDialog.textReplace": "置換する", "Common.Views.AutoCorrectDialog.textReplaceText": "入力時に置き換える\n\t", "Common.Views.AutoCorrectDialog.textReplaceType": "入力時にテキストを置き換える", "Common.Views.AutoCorrectDialog.textReset": "リセット", @@ -257,8 +257,8 @@ "Common.Views.Comments.textEnterCommentHint": "ここにコメントを挿入してください。", "Common.Views.Comments.textHintAddComment": "コメントを追加", "Common.Views.Comments.textOpenAgain": "もう一度開く", - "Common.Views.Comments.textReply": "返信", - "Common.Views.Comments.textResolve": "解決", + "Common.Views.Comments.textReply": "返信する", + "Common.Views.Comments.textResolve": "解決する", "Common.Views.Comments.textResolved": "解決済み", "Common.Views.Comments.textSort": "コメントを並べ替える", "Common.Views.Comments.textViewResolved": "コメントを再開する権限がありません", @@ -271,10 +271,10 @@ "Common.Views.DocumentAccessDialog.textLoading": "読み込み中...", "Common.Views.DocumentAccessDialog.textTitle": "共有設定", "Common.Views.ExternalDiagramEditor.textClose": "閉じる", - "Common.Views.ExternalDiagramEditor.textSave": "保存&終了", + "Common.Views.ExternalDiagramEditor.textSave": "保存と終了", "Common.Views.ExternalDiagramEditor.textTitle": "チャートのエディタ", "Common.Views.ExternalMergeEditor.textClose": "閉じる", - "Common.Views.ExternalMergeEditor.textSave": "保存&終了", + "Common.Views.ExternalMergeEditor.textSave": "保存と終了", "Common.Views.ExternalMergeEditor.textTitle": "差し込み印刷の宛先", "Common.Views.Header.labelCoUsersDescr": "ファイルを編集しているユーザー:", "Common.Views.Header.textAddFavorite": "お気に入りとしてマーク", @@ -284,56 +284,56 @@ "Common.Views.Header.textHideLines": "ルーラーを表示しない", "Common.Views.Header.textHideStatusBar": "ステータスバーを表示しない", "Common.Views.Header.textRemoveFavorite": "お気に入りから削除", - "Common.Views.Header.textZoom": "拡大率", + "Common.Views.Header.textZoom": "ズーム", "Common.Views.Header.tipAccessRights": "文書のアクセス許可のの管理", "Common.Views.Header.tipDownload": "ファイルをダウンロード", "Common.Views.Header.tipGoEdit": "現在のファイルを編集する", - "Common.Views.Header.tipPrint": "印刷", - "Common.Views.Header.tipRedo": "やり直す", + "Common.Views.Header.tipPrint": "ファイルを印刷する", + "Common.Views.Header.tipRedo": "やり直し", "Common.Views.Header.tipSave": "保存する", "Common.Views.Header.tipUndo": "元に戻す", "Common.Views.Header.tipViewSettings": "表示の設定", - "Common.Views.Header.tipViewUsers": "ユーザーの表示と文書のアクセス権の管理", + "Common.Views.Header.tipViewUsers": "ユーザーとドキュメントのアクセス権限の管理を表示", "Common.Views.Header.txtAccessRights": "アクセス権限の変更", - "Common.Views.Header.txtRename": "名前の変更", + "Common.Views.Header.txtRename": "名前を変更する", "Common.Views.History.textCloseHistory": "履歴を閉じる", "Common.Views.History.textHide": "折りたたみ", "Common.Views.History.textHideAll": "詳細変更を表示しない", "Common.Views.History.textRestore": "復元する", "Common.Views.History.textShow": "拡張する", - "Common.Views.History.textShowAll": "詳細な変更を表示する", - "Common.Views.History.textVer": "版", + "Common.Views.History.textShowAll": "変更の詳細を表示する", + "Common.Views.History.textVer": "ver.", "Common.Views.ImageFromUrlDialog.textUrl": "画像URLの貼り付け", - "Common.Views.ImageFromUrlDialog.txtEmpty": "このフィールドは必須項目です", + "Common.Views.ImageFromUrlDialog.txtEmpty": "この項目は必須です", "Common.Views.ImageFromUrlDialog.txtNotUrl": "このフィールドは「http://www.example.com」の形式のURLである必要があります。", "Common.Views.InsertTableDialog.textInvalidRowsCols": "有効な行と列の数を指定する必要があります。", "Common.Views.InsertTableDialog.txtColumns": "列数", "Common.Views.InsertTableDialog.txtMaxText": "このフィールドの最大値は{0}です。", "Common.Views.InsertTableDialog.txtMinText": "このフィールドの最小値は{0}です。", "Common.Views.InsertTableDialog.txtRows": "行数", - "Common.Views.InsertTableDialog.txtTitle": "表のサイズ", + "Common.Views.InsertTableDialog.txtTitle": "テーブルのサイズ", "Common.Views.InsertTableDialog.txtTitleSplit": "セルの分割", - "Common.Views.LanguageDialog.labelSelect": "文書の言語を選択する", + "Common.Views.LanguageDialog.labelSelect": "ドキュメントの言語の選択", "Common.Views.OpenDialog.closeButtonText": "ファイルを閉じる", "Common.Views.OpenDialog.txtEncoding": "エンコード", "Common.Views.OpenDialog.txtIncorrectPwd": "パスワードが正しくありません。", "Common.Views.OpenDialog.txtOpenFile": "ファイルを開くためにパスワードを入力してください。", "Common.Views.OpenDialog.txtPassword": "パスワード", - "Common.Views.OpenDialog.txtPreview": "下見", + "Common.Views.OpenDialog.txtPreview": "プレビュー", "Common.Views.OpenDialog.txtProtected": "一度パスワードを入力してファイルを開くと、そのファイルの既存のパスワードがリセットされます。", "Common.Views.OpenDialog.txtTitle": "%1オプションの選択", - "Common.Views.OpenDialog.txtTitleProtected": "保護ファイル", + "Common.Views.OpenDialog.txtTitleProtected": "保護されたファイル", "Common.Views.PasswordDialog.txtDescription": "この文書を保護するためのパスワードを設定してください", "Common.Views.PasswordDialog.txtIncorrectPwd": "先に入力したパスワードと一致しません。", "Common.Views.PasswordDialog.txtPassword": "パスワード", "Common.Views.PasswordDialog.txtRepeat": "パスワードを再入力", - "Common.Views.PasswordDialog.txtTitle": "パスワードの設定", - "Common.Views.PasswordDialog.txtWarning": "注意: パスワードを忘れると、元に戻せません。", + "Common.Views.PasswordDialog.txtTitle": "パスワードを設定する", + "Common.Views.PasswordDialog.txtWarning": "警告: パスワードを忘れると元に戻せません。安全な場所に記録してください。", "Common.Views.PluginDlg.textLoading": "読み込み中", "Common.Views.Plugins.groupCaption": "プラグイン", "Common.Views.Plugins.strPlugins": "プラグイン", "Common.Views.Plugins.textLoading": "読み込み中", - "Common.Views.Plugins.textStart": "スタート", + "Common.Views.Plugins.textStart": "開始", "Common.Views.Plugins.textStop": "停止", "Common.Views.Protection.hintAddPwd": "パスワードを使用して暗号化する", "Common.Views.Protection.hintPwd": "パスワードを変更か削除する", @@ -343,20 +343,20 @@ "Common.Views.Protection.txtDeletePwd": "パスワードを削除する", "Common.Views.Protection.txtEncrypt": "暗号化する", "Common.Views.Protection.txtInvisibleSignature": "デジタル署名を追加", - "Common.Views.Protection.txtSignature": "サイン", + "Common.Views.Protection.txtSignature": "署名", "Common.Views.Protection.txtSignatureLine": "署名欄の追加", "Common.Views.RenameDialog.textName": "ファイル名", "Common.Views.RenameDialog.txtInvalidName": "ファイル名に次の文字を使うことはできません。", - "Common.Views.ReviewChanges.hintNext": "次の変更箇所", - "Common.Views.ReviewChanges.hintPrev": "以前の変更へ", + "Common.Views.ReviewChanges.hintNext": "次の変更箇所へ", + "Common.Views.ReviewChanges.hintPrev": "以前の変更箇所へ", "Common.Views.ReviewChanges.mniFromFile": "ファイルからの文書", "Common.Views.ReviewChanges.mniFromStorage": "ストレージからの文書", "Common.Views.ReviewChanges.mniFromUrl": "URLからの文書", "Common.Views.ReviewChanges.mniSettings": "比較設定", - "Common.Views.ReviewChanges.strFast": "ファスト", + "Common.Views.ReviewChanges.strFast": "高速", "Common.Views.ReviewChanges.strFastDesc": "リアルタイムの共同編集です。すべての変更は自動的に保存されます。", - "Common.Views.ReviewChanges.strStrict": "高レベル", - "Common.Views.ReviewChanges.strStrictDesc": "あなたや他の人が行った変更を同期するために、[保存]ボタンを使用する", + "Common.Views.ReviewChanges.strStrict": "厳格", + "Common.Views.ReviewChanges.strStrictDesc": "あなたや他のユーザーが行った変更を同期するために、[保存]ボタンを使用する", "Common.Views.ReviewChanges.textEnable": "有効にする", "Common.Views.ReviewChanges.textWarnTrackChanges": "変更履歴はフルアクセス権を持つすべてのユーザーに対して有効になります。次に他のユーザーがドキュメントを開いた時にも、変更履歴は有効になっています。", "Common.Views.ReviewChanges.textWarnTrackChangesTitle": "全員に変更履歴を有効しますか?", @@ -368,11 +368,11 @@ "Common.Views.ReviewChanges.tipCommentResolveCurrent": "現在のコメントを解決する", "Common.Views.ReviewChanges.tipCompare": "現在の文書を別の文書と比較する", "Common.Views.ReviewChanges.tipHistory": "バージョン履歴を表示する", - "Common.Views.ReviewChanges.tipRejectCurrent": "現在の変更を元に戻します。", + "Common.Views.ReviewChanges.tipRejectCurrent": "現在の変更を元に戻す", "Common.Views.ReviewChanges.tipReview": "変更履歴", - "Common.Views.ReviewChanges.tipReviewView": "変更を表示するモードを選択してください", - "Common.Views.ReviewChanges.tipSetDocLang": "文書の言語を設定する", - "Common.Views.ReviewChanges.tipSetSpelling": "スペル チェック", + "Common.Views.ReviewChanges.tipReviewView": "変更内容を表示するモードを選択してください", + "Common.Views.ReviewChanges.tipSetDocLang": "文書の言語を設定", + "Common.Views.ReviewChanges.tipSetSpelling": "スペルチェック", "Common.Views.ReviewChanges.tipSharing": "文書のアクセス許可のの管理", "Common.Views.ReviewChanges.txtAccept": "承諾", "Common.Views.ReviewChanges.txtAcceptAll": "すべての変更を承諾する", @@ -383,14 +383,14 @@ "Common.Views.ReviewChanges.txtCoAuthMode": "共同編集のモード", "Common.Views.ReviewChanges.txtCommentRemAll": "全てのコメントを削除する", "Common.Views.ReviewChanges.txtCommentRemCurrent": "現在のコメントを削除する", - "Common.Views.ReviewChanges.txtCommentRemMy": "私のコメントを削除する", - "Common.Views.ReviewChanges.txtCommentRemMyCurrent": "私の現在のコメントを削除する", + "Common.Views.ReviewChanges.txtCommentRemMy": "自分のコメントを削除する", + "Common.Views.ReviewChanges.txtCommentRemMyCurrent": "自分の今のコメントを削除する", "Common.Views.ReviewChanges.txtCommentRemove": "削除する", - "Common.Views.ReviewChanges.txtCommentResolve": "解決", - "Common.Views.ReviewChanges.txtCommentResolveAll": "すべてのコメントを解決する。", + "Common.Views.ReviewChanges.txtCommentResolve": "解決する", + "Common.Views.ReviewChanges.txtCommentResolveAll": "すべてのコメントを解決する", "Common.Views.ReviewChanges.txtCommentResolveCurrent": "現在のコメントを解決する", - "Common.Views.ReviewChanges.txtCommentResolveMy": "自分のコメントを解決する。", - "Common.Views.ReviewChanges.txtCommentResolveMyCurrent": "現在のコメントを解決する", + "Common.Views.ReviewChanges.txtCommentResolveMy": "自分のコメントを解決する", + "Common.Views.ReviewChanges.txtCommentResolveMyCurrent": "現在の自分のコメントを解決する", "Common.Views.ReviewChanges.txtCompare": "比較", "Common.Views.ReviewChanges.txtDocLang": "言語", "Common.Views.ReviewChanges.txtEditing": "編集", @@ -408,25 +408,25 @@ "Common.Views.ReviewChanges.txtOnGlobal": "私と全員オンにする", "Common.Views.ReviewChanges.txtOriginal": "全ての変更が拒否されました{0}", "Common.Views.ReviewChanges.txtOriginalCap": "原本", - "Common.Views.ReviewChanges.txtPrev": "前の​​変更箇所", - "Common.Views.ReviewChanges.txtPreview": "下見", + "Common.Views.ReviewChanges.txtPrev": "前回の", + "Common.Views.ReviewChanges.txtPreview": "プレビュー", "Common.Views.ReviewChanges.txtReject": "拒否する", - "Common.Views.ReviewChanges.txtRejectAll": "すべての変更を元に戻す", - "Common.Views.ReviewChanges.txtRejectChanges": "変更を拒否する", - "Common.Views.ReviewChanges.txtRejectCurrent": "現在の変更を元に戻します。", - "Common.Views.ReviewChanges.txtSharing": "共有する", - "Common.Views.ReviewChanges.txtSpelling": "スペル チェック", + "Common.Views.ReviewChanges.txtRejectAll": "すべての変更を拒否する", + "Common.Views.ReviewChanges.txtRejectChanges": "変更を拒否", + "Common.Views.ReviewChanges.txtRejectCurrent": "現在の変更を元に戻す", + "Common.Views.ReviewChanges.txtSharing": "共有", + "Common.Views.ReviewChanges.txtSpelling": "スペルチェック", "Common.Views.ReviewChanges.txtTurnon": "変更履歴", "Common.Views.ReviewChanges.txtView": "表示モード", "Common.Views.ReviewChangesDialog.textTitle": "変更の確認", "Common.Views.ReviewChangesDialog.txtAccept": "承諾", "Common.Views.ReviewChangesDialog.txtAcceptAll": "すべての変更を承諾する", "Common.Views.ReviewChangesDialog.txtAcceptCurrent": "現在の変更を承諾する", - "Common.Views.ReviewChangesDialog.txtNext": "次の変更箇所", - "Common.Views.ReviewChangesDialog.txtPrev": "以前の変更へ", + "Common.Views.ReviewChangesDialog.txtNext": "次の変更箇所へ", + "Common.Views.ReviewChangesDialog.txtPrev": "以前の変更箇所へ", "Common.Views.ReviewChangesDialog.txtReject": "拒否する", - "Common.Views.ReviewChangesDialog.txtRejectAll": "すべての変更を元に戻す", - "Common.Views.ReviewChangesDialog.txtRejectCurrent": "現在の変更を元に戻します。", + "Common.Views.ReviewChangesDialog.txtRejectAll": "すべての変更を拒否する", + "Common.Views.ReviewChangesDialog.txtRejectCurrent": "現在の変更を元に戻す", "Common.Views.ReviewPopover.textAdd": "追加", "Common.Views.ReviewPopover.textAddReply": "返信を追加", "Common.Views.ReviewPopover.textCancel": "キャンセル", @@ -436,8 +436,8 @@ "Common.Views.ReviewPopover.textMention": "+メンションされるユーザーは文書にアクセスのメール通知を取得します", "Common.Views.ReviewPopover.textMentionNotify": "+メンションされるユーザーはメールで通知されます", "Common.Views.ReviewPopover.textOpenAgain": "もう一度開く", - "Common.Views.ReviewPopover.textReply": "返事する", - "Common.Views.ReviewPopover.textResolve": "解決", + "Common.Views.ReviewPopover.textReply": "返信する", + "Common.Views.ReviewPopover.textResolve": "解決する", "Common.Views.ReviewPopover.textViewResolved": "コメントを再開する権限がありません", "Common.Views.ReviewPopover.txtAccept": "同意する", "Common.Views.ReviewPopover.txtDeleteTip": "削除する", @@ -446,7 +446,7 @@ "Common.Views.SaveAsDlg.textLoading": "読み込み中", "Common.Views.SaveAsDlg.textTitle": "保存先のフォルダ", "Common.Views.SelectFileDlg.textLoading": "読み込み中", - "Common.Views.SelectFileDlg.textTitle": "データ・ソースを選択する", + "Common.Views.SelectFileDlg.textTitle": "データソースを選択する", "Common.Views.SignDialog.textBold": "太字", "Common.Views.SignDialog.textCertificate": "証明書", "Common.Views.SignDialog.textChange": "変更する", @@ -454,10 +454,10 @@ "Common.Views.SignDialog.textItalic": "イタリック", "Common.Views.SignDialog.textNameError": "署名者の名前を空にしておくことはできません。", "Common.Views.SignDialog.textPurpose": "この文書にサインする目的", - "Common.Views.SignDialog.textSelect": "選択", + "Common.Views.SignDialog.textSelect": "選択する", "Common.Views.SignDialog.textSelectImage": "画像を選択する", - "Common.Views.SignDialog.textSignature": "署名は次のようになります", - "Common.Views.SignDialog.textTitle": "文書のサイン", + "Common.Views.SignDialog.textSignature": "署名は次のようになります:", + "Common.Views.SignDialog.textTitle": "文書に署名する", "Common.Views.SignDialog.textUseImage": "または「画像を選択」をクリックして、画像を署名として使用します", "Common.Views.SignDialog.textValid": "%1から%2まで有効", "Common.Views.SignDialog.tipFontName": "フォント名", @@ -488,7 +488,7 @@ "Common.Views.SymbolTableDialog.textQEmSpace": "1/4スペース", "Common.Views.SymbolTableDialog.textRange": "範囲", "Common.Views.SymbolTableDialog.textRecent": "最近使用した記号", - "Common.Views.SymbolTableDialog.textRegistered": "商標記号", + "Common.Views.SymbolTableDialog.textRegistered": "登録商標マーク", "Common.Views.SymbolTableDialog.textSCQuote": "単一引用符(右)を終了する", "Common.Views.SymbolTableDialog.textSection": "節記号", "Common.Views.SymbolTableDialog.textShortcut": "ショートカットキー", @@ -497,20 +497,20 @@ "Common.Views.SymbolTableDialog.textSpecial": "特殊文字", "Common.Views.SymbolTableDialog.textSymbols": "記号", "Common.Views.SymbolTableDialog.textTitle": "記号", - "Common.Views.SymbolTableDialog.textTradeMark": "商標記号", + "Common.Views.SymbolTableDialog.textTradeMark": "商標マーク", "Common.Views.UserNameDialog.textDontShow": "二度と表示しない", "Common.Views.UserNameDialog.textLabel": "ラベル:", "Common.Views.UserNameDialog.textLabelError": "ラベルは空白にできません", "DE.Controllers.LeftMenu.leavePageText": "この文書で保存されていない変更はすべて失われます。
「キャンセル」をクリックし、「保存」をクリックすると、変更が保存されます。「OK」をクリックすると、保存されていないすべての変更が破棄されます。", - "DE.Controllers.LeftMenu.newDocumentTitle": "名前が付けられていないドキュメント", + "DE.Controllers.LeftMenu.newDocumentTitle": "無名のドキュメント", "DE.Controllers.LeftMenu.notcriticalErrorTitle": "警告", - "DE.Controllers.LeftMenu.requestEditRightsText": "アクセス権の編集の要求中...", + "DE.Controllers.LeftMenu.requestEditRightsText": "編集の権限を要求中...", "DE.Controllers.LeftMenu.textLoadHistory": "バリエーションの履歴の読み込み中...", - "DE.Controllers.LeftMenu.textNoTextFound": "検索データが見つかりませんでした。他の検索設定を選択してください。", - "DE.Controllers.LeftMenu.textReplaceSkipped": "置換が完了しました。{0}つスキップされました。", - "DE.Controllers.LeftMenu.textReplaceSuccess": "検索が行われました。変更された発生回数は{0}です。", + "DE.Controllers.LeftMenu.textNoTextFound": "検索データが見つかりませんでした。検索オプションを変更してください。", + "DE.Controllers.LeftMenu.textReplaceSkipped": "置換が行われました。スキップされた発生回数は{0}です。", + "DE.Controllers.LeftMenu.textReplaceSuccess": "検索が完了しました。{0}つが置換されました。", "DE.Controllers.LeftMenu.txtCompatible": "ドキュメントは新しい形式で保存されます。 すべてのエディタ機能を使用できますが、ドキュメントのレイアウトに影響する可能性があります。
ファイルを古いバージョンのMS Wordと互換性を持たせる場合は、詳細設定の[互換性]オプションをご使用ください。", - "DE.Controllers.LeftMenu.txtUntitled": "タイトルなし", + "DE.Controllers.LeftMenu.txtUntitled": "無題", "DE.Controllers.LeftMenu.warnDownloadAs": "この形式で保存を続けると、テキスト以外のすべての機能が失われます。
本当に続行してもよろしいですか?", "DE.Controllers.LeftMenu.warnDownloadAsPdf": "あなたの{0}は編集可能な形式に変換されます。これには時間がかかる場合があります。変換後のドキュメントは、テキストを編集できるように最適化されるため、特に元のファイルに多くのグラフィックが含まれている場合、元の {0} と全く同じようには見えないかもしれません。", "DE.Controllers.LeftMenu.warnDownloadAsRTF": "この形式で保存を続けると、一部の書式が失われる可能性があります。
本当に続行しますか?", @@ -518,24 +518,24 @@ "DE.Controllers.Main.applyChangesTextText": "変更の読み込み中...", "DE.Controllers.Main.applyChangesTitleText": "変更の読み込み中", "DE.Controllers.Main.convertationTimeoutText": "変換タイムアウトを超過しました。", - "DE.Controllers.Main.criticalErrorExtText": "OKボタンを押すと文書リストに戻ることができます。", + "DE.Controllers.Main.criticalErrorExtText": "OKボタンを押すとドキュメントリストに戻ることができます。", "DE.Controllers.Main.criticalErrorTitle": "エラー", "DE.Controllers.Main.downloadErrorText": "ダウンロード失敗", "DE.Controllers.Main.downloadMergeText": "ダウンロード中...", "DE.Controllers.Main.downloadMergeTitle": "ダウンロード中", "DE.Controllers.Main.downloadTextText": "ドキュメントのダウンロード中...", "DE.Controllers.Main.downloadTitleText": "ドキュメントのダウンロード中", - "DE.Controllers.Main.errorAccessDeny": "権限のない操作をしようとしています。
ドキュメント・サーバー管理者に連絡してください。", + "DE.Controllers.Main.errorAccessDeny": "権限のない操作を実行しようとしています。
ドキュメントサーバーの管理者にご連絡ください。", "DE.Controllers.Main.errorBadImageUrl": "画像のURLが正しくありません", - "DE.Controllers.Main.errorCoAuthoringDisconnect": "サーバーとの接続が失われました。今、文書を編集することができません。", - "DE.Controllers.Main.errorComboSeries": "組み合わせグラフを作成するには、最低2つのデータを選択します。", + "DE.Controllers.Main.errorCoAuthoringDisconnect": "サーバーとの接続が失われました。現在、文書を編集することができません。", + "DE.Controllers.Main.errorComboSeries": "組み合わせチャートを作成するには、最低2つのデータを選択します。", "DE.Controllers.Main.errorCompare": "共同編集中は、ドキュメントの比較機能は使用できません。", - "DE.Controllers.Main.errorConnectToServer": "文書を保存できません。接続設定を確認するまたは、アドミニストレータを連絡してください。
「OK」ボタンをクリックすると文書をダウンロードするように求められます。", + "DE.Controllers.Main.errorConnectToServer": "ドキュメントを保存できませんでした。接続設定を確認するか、管理者にお問い合わせください。
「OK」ボタンをクリックすると、ドキュメントのダウンロードを促すメッセージが表示されます。", "DE.Controllers.Main.errorDatabaseConnection": "外部エラーです。
データベース接続エラーです。この問題は解決しない場合は、サポートにお問い合わせください。", "DE.Controllers.Main.errorDataEncrypted": "暗号化された変更を受信しました。残念ながら解読できません。", "DE.Controllers.Main.errorDataRange": "データ範囲が正しくありません。", "DE.Controllers.Main.errorDefaultMessage": "エラー コード:%1", - "DE.Controllers.Main.errorDirectUrl": "文書へのリンクを確認してください。
このリンクは、ダウンロードしたいファイルへの直接なリンクであるのは必要です。", + "DE.Controllers.Main.errorDirectUrl": "文ドキュメントへのリンクを確認してください。
このリンクは、ダウンロード用のファイルへの直接リンクである必要があります。", "DE.Controllers.Main.errorEditingDownloadas": "文書の処理中にエラーが発生しました。
「名前を付けてダウンロード」オプションを使用して、ファイルのバックアップコピーをコンピューターのハードディスクに保存してください。", "DE.Controllers.Main.errorEditingSaveas": "文書の処理中にエラーが発生しました。
「名前を付けてダウンロード」オプションを使用して、ファイルのバックアップコピーをコンピューターのハードディスクに保存してください。", "DE.Controllers.Main.errorEmailClient": "メールクライアントが見つかりませんでした。", @@ -549,20 +549,20 @@ "DE.Controllers.Main.errorMailMergeSaveFile": "結合に失敗しました。", "DE.Controllers.Main.errorProcessSaveResult": "保存に失敗しました", "DE.Controllers.Main.errorServerVersion": "エディターのバージョンが更新されました。 変更を適用するために、ページが再読み込みされます。", - "DE.Controllers.Main.errorSessionAbsolute": "ドキュメント編集セッションが終了しました。 ページを再度お読み込みください。", - "DE.Controllers.Main.errorSessionIdle": "このドキュメントはかなり長い間編集されていませんでした。このページを再度お読み込みください。", - "DE.Controllers.Main.errorSessionToken": "サーバーとの接続が中断されました。このページを再度お読み込みください。", + "DE.Controllers.Main.errorSessionAbsolute": "ドキュメント編集セッションが終了しました。 ページを再度読み込みしてください。", + "DE.Controllers.Main.errorSessionIdle": "このドキュメントは長い間編集されていませんでした。このページを再度読み込みしてください。", + "DE.Controllers.Main.errorSessionToken": "サーバーとの接続が中断されました。このページを再度読み込みしてください。", "DE.Controllers.Main.errorSetPassword": "パスワードを設定できませんでした。", "DE.Controllers.Main.errorStockChart": "行の順序が正しくありません。この株価チャートを作成するには、
始値、最大値、最小値、終値の順でシートのデータを配置してください。", "DE.Controllers.Main.errorSubmit": "送信に失敗しました。", - "DE.Controllers.Main.errorToken": "ドキュメント・セキュリティ・トークンが正しく形成されていません。
ドキュメントサーバーの管理者にご連絡ください。", - "DE.Controllers.Main.errorTokenExpire": "ドキュメント・セキュリティ・トークンの有効期限が切れています。
ドキュメントサーバーの管理者にご連絡ください。", - "DE.Controllers.Main.errorUpdateVersion": "ファイルのバージョンが変更されました。ページが再ロードされます。", + "DE.Controllers.Main.errorToken": "ドキュメントセキュリティトークンが正しく形成されていません。
ドキュメントサーバーの管理者にご連絡ください。", + "DE.Controllers.Main.errorTokenExpire": "ドキュメントセキュリティトークンの有効期限が切れています。
ドキュメントサーバーの管理者に連絡してください。", + "DE.Controllers.Main.errorUpdateVersion": "ファイルのバージョンが変更されました。ページを再読み込みします。", "DE.Controllers.Main.errorUpdateVersionOnDisconnect": "インターネット接続が復旧し、ファイルのバージョンが更新されています。
作業を継続する前に、ファイルをダウンロードするか内容をコピーして、変更が消えてしまわないようにしてからページを再読み込みしてください。", - "DE.Controllers.Main.errorUserDrop": "ファイルにアクセスできません", - "DE.Controllers.Main.errorUsersExceed": "料金プランによってユーザ数を超過しています。", + "DE.Controllers.Main.errorUserDrop": "現在、このファイルにはアクセスできません。", + "DE.Controllers.Main.errorUsersExceed": "料金プランで許可されているユーザー数を超過しました。", "DE.Controllers.Main.errorViewerDisconnect": "接続が切断されました。文書の表示は可能ですが、
再度接続されてページが再ロードされるまで、ダウンロードまたは印刷することはできません。", - "DE.Controllers.Main.leavePageText": "この文書の保存されていない変更があります。保存するために「このページにとどまる」、「保存」をクリックしてください。全ての保存しない変更をキャンサルするために「このページを離れる」をクリックしてください。", + "DE.Controllers.Main.leavePageText": "この文書の保存されていない変更があります。保存するために「このページにとどまる」をクリックし、その後「保存」をクリックしてください。「このページを離れる」をクリックすると、未保存の変更がすべて破棄されます。", "DE.Controllers.Main.leavePageTextOnClose": "この文書で保存されていない変更はすべて失われます。
「キャンセル」をクリックし、「保存」をクリックすると、変更が保存されます。「OK」をクリックすると、保存されていないすべての変更が破棄されます。", "DE.Controllers.Main.loadFontsTextText": "データを読み込んでいます…", "DE.Controllers.Main.loadFontsTitleText": "データを読み込んでいます", @@ -577,33 +577,33 @@ "DE.Controllers.Main.mailMergeLoadFileText": "データソースを読み込んでいます...", "DE.Controllers.Main.mailMergeLoadFileTitle": "データソースを読み込んでいます", "DE.Controllers.Main.notcriticalErrorTitle": "警告", - "DE.Controllers.Main.openErrorText": "ファイルを開くときにエラーが発生しました。", + "DE.Controllers.Main.openErrorText": "ファイルを読み込み中にエラーが発生しました。", "DE.Controllers.Main.openTextText": "ドキュメントを開いています...", "DE.Controllers.Main.openTitleText": "ドキュメントを開いています", - "DE.Controllers.Main.printTextText": "印刷ドキュメント中...", - "DE.Controllers.Main.printTitleText": "印刷ドキュメント中", + "DE.Controllers.Main.printTextText": "ドキュメント印刷中...", + "DE.Controllers.Main.printTitleText": "ドキュメント印刷中", "DE.Controllers.Main.reloadButtonText": "ページの再読み込み", - "DE.Controllers.Main.requestEditFailedMessageText": "この文書は他のユーザによって編集しています。後で編集してください。", + "DE.Controllers.Main.requestEditFailedMessageText": "この文書は他のユーザによって編集されています。後でもう一度お試しください。", "DE.Controllers.Main.requestEditFailedTitleText": "アクセスが拒否されました", "DE.Controllers.Main.saveErrorText": "ファイルを保存中にエラーが発生しました。", - "DE.Controllers.Main.saveErrorTextDesktop": "このファイルは作成または保存できません。
考えられる理由は次のとおりです:
1. ファイルが読み取り専用です。
2. ファイルが他のユーザーによって編集されています。
3. ディスクがいっぱいか破損しています。", + "DE.Controllers.Main.saveErrorTextDesktop": "このファイルは作成または保存できません。
考えられる理由は次のとおりです:
1. ファイルが読み取り専用です。
2. ファイルが他のユーザーによって編集されています。
3. ディスクに空きスペースがないか破損しています。", "DE.Controllers.Main.saveTextText": "ドキュメントを保存しています...", - "DE.Controllers.Main.saveTitleText": "ドキュメントを保存しています", - "DE.Controllers.Main.scriptLoadError": "インターネット接続が遅いため、一部のコンポーネントをロードできませんでした。ページを再度お読み込みください。", - "DE.Controllers.Main.sendMergeText": "結合の結果の送信中...", - "DE.Controllers.Main.sendMergeTitle": "結合の結果の送信中", + "DE.Controllers.Main.saveTitleText": "ドキュメントの保存中", + "DE.Controllers.Main.scriptLoadError": "インターネット接続が遅いため、一部のコンポーネントをロードできませんでした。ページを再読み込みしてください。", + "DE.Controllers.Main.sendMergeText": "マージを送信中...", + "DE.Controllers.Main.sendMergeTitle": "マージを送信中", "DE.Controllers.Main.splitDividerErrorText": "行数は%1の除数になければなりません。", "DE.Controllers.Main.splitMaxColsErrorText": "列の数は%1より小さくなければなりません。", "DE.Controllers.Main.splitMaxRowsErrorText": "行数は%1より小さくなければなりません。", "DE.Controllers.Main.textAnonymous": "匿名者", "DE.Controllers.Main.textApplyAll": "全ての数式に適用する", - "DE.Controllers.Main.textBuyNow": "ウェブサイトを訪問する", + "DE.Controllers.Main.textBuyNow": "ウェブサイトにアクセス", "DE.Controllers.Main.textChangesSaved": "全ての変更が保存されました", "DE.Controllers.Main.textClose": "閉じる", "DE.Controllers.Main.textCloseTip": "クリックでヒントを閉じる", "DE.Controllers.Main.textContactUs": "営業部に連絡する", "DE.Controllers.Main.textConvertEquation": "この数式は、サポートされなくなった古いバージョンの数式エディタで作成されました。 編集するには、方程式をOffice Math ML形式に変換します。
今すぐ変換しますか?", - "DE.Controllers.Main.textCustomLoader": "ライセンスの条件によっては、ローダーを変更する権利がないことにご注意ください。
見積もりについては、営業部門にお問い合わせください。", + "DE.Controllers.Main.textCustomLoader": "ライセンス条項により、ローダーを変更する権利がないことにご注意ください。
見積もりについては、弊社営業部門にお問い合わせください。", "DE.Controllers.Main.textDisconnect": "接続が切断されました", "DE.Controllers.Main.textGuest": "ゲスト", "DE.Controllers.Main.textHasMacros": "ファイルには自動マクロが含まれています。
マクロを実行しますか?", @@ -613,37 +613,37 @@ "DE.Controllers.Main.textNoLicenseTitle": "ライセンス制限に達しました。", "DE.Controllers.Main.textPaidFeature": "有料機能", "DE.Controllers.Main.textReconnect": "接続が回復しました", - "DE.Controllers.Main.textRemember": "選択内容を保存する", + "DE.Controllers.Main.textRemember": "すべてのファイルに自分の選択を記憶させる", "DE.Controllers.Main.textRenameError": "ユーザー名は空にできません。", "DE.Controllers.Main.textRenameLabel": "コラボレーションに使用する名前を入力して下さい。", "DE.Controllers.Main.textShape": "図形", "DE.Controllers.Main.textStrict": "厳格モード", - "DE.Controllers.Main.textTryUndoRedo": "ファスト共同編集モードに元に戻す/やり直しの機能は無効になります。
他のユーザーの干渉なし編集するために「厳密なモード」をクリックして、厳密な共同編集モードに切り替えてください。保存した後にのみ、変更を送信してください。編集の詳細設定を使用して共同編集モードを切り替えることができます。", - "DE.Controllers.Main.textTryUndoRedoWarn": "ファスト共同編集モードでは、元に戻す/やり直し機能が無効になります。", + "DE.Controllers.Main.textTryUndoRedo": "ファスト共同編集モードに元に戻す/やり直しの機能は無効になります。
他のユーザーの干渉なし編集するために「厳格モード」をクリックして、厳格共同編集モードに切り替えてください。保存した後にのみ、変更してください。編集の詳細設定を使用して共同編集モードを切り替えることができます。", + "DE.Controllers.Main.textTryUndoRedoWarn": "高速共同編集モードでは、元に戻す/やり直し機能が無効になります。", "DE.Controllers.Main.titleLicenseExp": "ライセンスの有効期限が切れています", "DE.Controllers.Main.titleServerVersion": "編集者が更新されました", - "DE.Controllers.Main.titleUpdateVersion": "バージョンを変更しました。", + "DE.Controllers.Main.titleUpdateVersion": "バージョンが変更されました", "DE.Controllers.Main.txtAbove": "上", - "DE.Controllers.Main.txtArt": "あなたのテキストはここです。", + "DE.Controllers.Main.txtArt": "ここにテキストを入力", "DE.Controllers.Main.txtBasicShapes": "基本図形", "DE.Controllers.Main.txtBelow": "下", "DE.Controllers.Main.txtBookmarkError": "エラー!ブックマークが定義されていません。", "DE.Controllers.Main.txtButtons": "ボタン", - "DE.Controllers.Main.txtCallouts": "引き出し", + "DE.Controllers.Main.txtCallouts": "吹き出し", "DE.Controllers.Main.txtCharts": "チャート", "DE.Controllers.Main.txtChoose": "アイテムを選択してください", "DE.Controllers.Main.txtClickToLoad": "クリックして画像を読み込む", "DE.Controllers.Main.txtCurrentDocument": "現在の文書", "DE.Controllers.Main.txtDiagramTitle": "チャートのタイトル", - "DE.Controllers.Main.txtEditingMode": "編集モードを設定します。", - "DE.Controllers.Main.txtEndOfFormula": "数式の予期しない完了", + "DE.Controllers.Main.txtEditingMode": "編集モードを設定します...", + "DE.Controllers.Main.txtEndOfFormula": "予期しない数式の終了", "DE.Controllers.Main.txtEnterDate": "日付を入力してください", "DE.Controllers.Main.txtErrorLoadHistory": "履歴の読み込みに失敗しました。", "DE.Controllers.Main.txtEvenPage": "偶数ページ", "DE.Controllers.Main.txtFiguredArrows": "図形矢印", "DE.Controllers.Main.txtFirstPage": "最初のページ", "DE.Controllers.Main.txtFooter": "フッター", - "DE.Controllers.Main.txtFormulaNotInTable": "表にない数式", + "DE.Controllers.Main.txtFormulaNotInTable": "テーブルにない数式", "DE.Controllers.Main.txtHeader": "ヘッダー", "DE.Controllers.Main.txtHyperlink": "ハイパーリンク", "DE.Controllers.Main.txtIndTooLarge": "インデックスが大きすぎます", @@ -652,17 +652,17 @@ "DE.Controllers.Main.txtMath": "数学", "DE.Controllers.Main.txtMissArg": "引数がありません", "DE.Controllers.Main.txtMissOperator": "演算子がありません ", - "DE.Controllers.Main.txtNeedSynchronize": "更新があります。", + "DE.Controllers.Main.txtNeedSynchronize": "更新があります", "DE.Controllers.Main.txtNone": "なし", - "DE.Controllers.Main.txtNoTableOfContents": "ドキュメントに見出しはありません。 目次に表示されるように、テキストに見出しスタイルをご適用ください。", + "DE.Controllers.Main.txtNoTableOfContents": "ドキュメントに見出しがありません。 目次に表示されるように、テキストに見出しスタイルを適用ください。", "DE.Controllers.Main.txtNoTableOfFigures": "図表のエントリーはありません。", "DE.Controllers.Main.txtNoText": "エラー!文書に指定されたスタイルのテキストがありません。", "DE.Controllers.Main.txtNotInTable": "テーブルにありません", "DE.Controllers.Main.txtNotValidBookmark": "エラー!ブックマークの自己参照が無効です。", "DE.Controllers.Main.txtOddPage": "奇数ページ", "DE.Controllers.Main.txtOnPage": "ページで", - "DE.Controllers.Main.txtRectangles": "四角形", - "DE.Controllers.Main.txtSameAsPrev": "以前と同じ", + "DE.Controllers.Main.txtRectangles": "矩形", + "DE.Controllers.Main.txtSameAsPrev": "前と同じ", "DE.Controllers.Main.txtSection": "-セクション", "DE.Controllers.Main.txtSeries": "系列", "DE.Controllers.Main.txtShape_accentBorderCallout1": "線吹き出し1(枠付きと強調線)", @@ -682,7 +682,7 @@ "DE.Controllers.Main.txtShape_actionButtonInformation": "[情報]ボタン", "DE.Controllers.Main.txtShape_actionButtonMovie": "[ムービー]ボタン", "DE.Controllers.Main.txtShape_actionButtonReturn": "[戻る]ボタン", - "DE.Controllers.Main.txtShape_actionButtonSound": "音のボタン", + "DE.Controllers.Main.txtShape_actionButtonSound": "「音」ボタン", "DE.Controllers.Main.txtShape_arc": "円弧", "DE.Controllers.Main.txtShape_bentArrow": "曲げ矢印", "DE.Controllers.Main.txtShape_bentConnector5": "カギ線コネクタ", @@ -703,7 +703,7 @@ "DE.Controllers.Main.txtShape_chord": "コード", "DE.Controllers.Main.txtShape_circularArrow": "円弧の矢印", "DE.Controllers.Main.txtShape_cloud": "クラウド", - "DE.Controllers.Main.txtShape_cloudCallout": "クラウドコールアウト", + "DE.Controllers.Main.txtShape_cloudCallout": "雲形吹き出し", "DE.Controllers.Main.txtShape_corner": "角", "DE.Controllers.Main.txtShape_cube": "立方体", "DE.Controllers.Main.txtShape_curvedConnector3": "曲線コネクタ", @@ -789,23 +789,23 @@ "DE.Controllers.Main.txtShape_pie": "円グラフ", "DE.Controllers.Main.txtShape_plaque": "サイン", "DE.Controllers.Main.txtShape_plus": "プラス", - "DE.Controllers.Main.txtShape_polyline1": "落書き", + "DE.Controllers.Main.txtShape_polyline1": "走り書き", "DE.Controllers.Main.txtShape_polyline2": "フリーフォーム", - "DE.Controllers.Main.txtShape_quadArrow": "クワッド矢印", - "DE.Controllers.Main.txtShape_quadArrowCallout": "四角矢印の吹き出し", - "DE.Controllers.Main.txtShape_rect": "長方形", + "DE.Controllers.Main.txtShape_quadArrow": "四方向矢印", + "DE.Controllers.Main.txtShape_quadArrowCallout": "四方向矢印の吹き出し", + "DE.Controllers.Main.txtShape_rect": "矩形", "DE.Controllers.Main.txtShape_ribbon": "下リボン", "DE.Controllers.Main.txtShape_ribbon2": "上リボン", "DE.Controllers.Main.txtShape_rightArrow": "右矢印", "DE.Controllers.Main.txtShape_rightArrowCallout": "右矢印吹き出し", - "DE.Controllers.Main.txtShape_rightBrace": "右ブレース", - "DE.Controllers.Main.txtShape_rightBracket": "右かっこ", + "DE.Controllers.Main.txtShape_rightBrace": "右中括弧", + "DE.Controllers.Main.txtShape_rightBracket": "右大括弧", "DE.Controllers.Main.txtShape_round1Rect": "1つの角を丸めた四角形", - "DE.Controllers.Main.txtShape_round2DiagRect": "円形対角長方形", - "DE.Controllers.Main.txtShape_round2SameRect": "同じ辺の角を丸める矩形", - "DE.Controllers.Main.txtShape_roundRect": "角丸四角形", + "DE.Controllers.Main.txtShape_round2DiagRect": "角丸長方形", + "DE.Controllers.Main.txtShape_round2SameRect": "同辺角丸四角形", + "DE.Controllers.Main.txtShape_roundRect": "角丸長方形", "DE.Controllers.Main.txtShape_rtTriangle": "直角三角形", - "DE.Controllers.Main.txtShape_smileyFace": "絵文字", + "DE.Controllers.Main.txtShape_smileyFace": "笑顔のマーク", "DE.Controllers.Main.txtShape_snip1Rect": "1つの角を切り取った四角形", "DE.Controllers.Main.txtShape_snip2DiagRect": "対角する2つの角を切り取った四角形", "DE.Controllers.Main.txtShape_snip2SameRect": "片側の2つの角を切り取った四角形", @@ -823,18 +823,18 @@ "DE.Controllers.Main.txtShape_star8": "8ポイントスター", "DE.Controllers.Main.txtShape_stripedRightArrow": "ストライプの右矢印", "DE.Controllers.Main.txtShape_sun": "太陽形", - "DE.Controllers.Main.txtShape_teardrop": "滴", + "DE.Controllers.Main.txtShape_teardrop": "涙の滴", "DE.Controllers.Main.txtShape_textRect": "テキストボックス", "DE.Controllers.Main.txtShape_trapezoid": "台形", "DE.Controllers.Main.txtShape_triangle": "三角形", "DE.Controllers.Main.txtShape_upArrow": "上矢印", "DE.Controllers.Main.txtShape_upArrowCallout": "上矢印吹き出し", - "DE.Controllers.Main.txtShape_upDownArrow": "上下の矢印", + "DE.Controllers.Main.txtShape_upDownArrow": "上下矢印", "DE.Controllers.Main.txtShape_uturnArrow": "U形矢印", "DE.Controllers.Main.txtShape_verticalScroll": "縦スクロール", "DE.Controllers.Main.txtShape_wave": "波", "DE.Controllers.Main.txtShape_wedgeEllipseCallout": "円形吹き出し", - "DE.Controllers.Main.txtShape_wedgeRectCallout": "長方形の吹き出し", + "DE.Controllers.Main.txtShape_wedgeRectCallout": "矩形の吹き出し", "DE.Controllers.Main.txtShape_wedgeRoundRectCallout": "角丸長方形の吹き出し", "DE.Controllers.Main.txtStarsRibbons": "スター&リボン", "DE.Controllers.Main.txtStyle_Caption": "キャプション", @@ -854,55 +854,55 @@ "DE.Controllers.Main.txtStyle_No_Spacing": "間隔なし", "DE.Controllers.Main.txtStyle_Normal": "正常", "DE.Controllers.Main.txtStyle_Quote": "引用", - "DE.Controllers.Main.txtStyle_Subtitle": "小見出し", + "DE.Controllers.Main.txtStyle_Subtitle": "サブタイトル", "DE.Controllers.Main.txtStyle_Title": "タイトル", - "DE.Controllers.Main.txtSyntaxError": "構文間違い", + "DE.Controllers.Main.txtSyntaxError": "構文エラー", "DE.Controllers.Main.txtTableInd": "テーブルインデックスをゼロにすることはできません", "DE.Controllers.Main.txtTableOfContents": "目次", - "DE.Controllers.Main.txtTableOfFigures": "図表目次", + "DE.Controllers.Main.txtTableOfFigures": "図表", "DE.Controllers.Main.txtTOCHeading": "目次 見出し", "DE.Controllers.Main.txtTooLarge": "数値が大きすぎて書式設定できません。", - "DE.Controllers.Main.txtTypeEquation": "こちらで数式を入力してください", + "DE.Controllers.Main.txtTypeEquation": "こちらに数式を入力してください", "DE.Controllers.Main.txtUndefBookmark": "未定義のブックマーク", "DE.Controllers.Main.txtXAxis": "X 軸", - "DE.Controllers.Main.txtYAxis": "Y 軸", + "DE.Controllers.Main.txtYAxis": "Y軸", "DE.Controllers.Main.txtZeroDivide": "ゼロ除算", "DE.Controllers.Main.unknownErrorText": "不明なエラー", - "DE.Controllers.Main.unsupportedBrowserErrorText": "お使いのブラウザがサポートされていません。", + "DE.Controllers.Main.unsupportedBrowserErrorText": "お使いのブラウザはサポートされていません。", "DE.Controllers.Main.uploadDocExtMessage": "不明な文書形式", "DE.Controllers.Main.uploadDocFileCountMessage": "アップロードされた文書がありません。", "DE.Controllers.Main.uploadDocSizeMessage": "文書の最大サイズ制限を超えました", "DE.Controllers.Main.uploadImageExtMessage": "不明な画像形式", "DE.Controllers.Main.uploadImageFileCountMessage": "画像のアップロードはありません。", - "DE.Controllers.Main.uploadImageSizeMessage": "最大の画像サイズの上限を超えました。", - "DE.Controllers.Main.uploadImageTextText": "画像がアップロード中...", - "DE.Controllers.Main.uploadImageTitleText": "画像がアップロード中", + "DE.Controllers.Main.uploadImageSizeMessage": "画像サイズの上限を超えました。サイズの上限は25MBです。", + "DE.Controllers.Main.uploadImageTextText": "画像のアップロード中...", + "DE.Controllers.Main.uploadImageTitleText": "画像のアップロード中", "DE.Controllers.Main.waitText": "少々お待ちください...", - "DE.Controllers.Main.warnBrowserIE9": "IE9にアプリケーションの機能のレベルが低いです。IE10または次のバージョンを使ってください。", - "DE.Controllers.Main.warnBrowserZoom": "お使いのブラウザの現在のズームの設定は完全にサポートされていません。Ctrl+0を押して、デフォルトのズームにリセットしてください。", + "DE.Controllers.Main.warnBrowserIE9": "このアプリケーションはIE9では低機能です。IE10以上のバージョンをご使用ください。", + "DE.Controllers.Main.warnBrowserZoom": "お使いのブラウザの現在のZoomの設定は完全にサポートされていません。Ctrl+0を押して、デフォルトのZoomにリセットしてください。", "DE.Controllers.Main.warnLicenseExceeded": "%1エディターへの同時接続の制限に達しました。 このドキュメントは表示専用で開かれます。
詳細については、管理者にお問い合わせください。", "DE.Controllers.Main.warnLicenseExp": "ライセンスの有効期限が切れています。
ライセンスを更新してページをリロードしてください。", "DE.Controllers.Main.warnLicenseLimitedNoAccess": "ライセンスの有効期限が切れています。
ドキュメント編集機能にアクセスできません。
管理者にご連絡ください。", "DE.Controllers.Main.warnLicenseLimitedRenewed": "ライセンスを更新する必要があります。
ドキュメント編集機能へのアクセスが制限されています。
フルアクセスを取得するには、管理者にご連絡ください。", "DE.Controllers.Main.warnLicenseUsersExceeded": "%1エディターのユーザー制限に達しました。 詳細については、管理者にお問い合わせください。", "DE.Controllers.Main.warnNoLicense": "%1エディターへの同時接続の制限に達しました。 このドキュメントは閲覧のみを目的として開かれます。
個人的なアップグレード条件については、%1セールスチームにお問い合わせください。", - "DE.Controllers.Main.warnNoLicenseUsers": "%1エディターのユーザー制限に達しました。 個人的なアップグレード条件については、%1営業チームにお問い合わせください。", + "DE.Controllers.Main.warnNoLicenseUsers": "%1エディターのユーザー制限に達しました。 個人的なアップグレード条件については、%1セールスチームにお問い合わせください。", "DE.Controllers.Main.warnProcessRightsChange": "ファイルを編集する権限を拒否されています。", "DE.Controllers.Navigation.txtBeginning": "文書の先頭", "DE.Controllers.Navigation.txtGotoBeginning": "文書の先頭に移動する", "DE.Controllers.Statusbar.textDisconnect": "接続が切断されました
接続を試みています。接続設定を確認してください。", "DE.Controllers.Statusbar.textHasChanges": "新しい変更点を追記しました", "DE.Controllers.Statusbar.textSetTrackChanges": "変更履歴モードで編集中です", - "DE.Controllers.Statusbar.textTrackChanges": "有効な変更履歴のモードにドキュメントがドキュメントが開かれました。", + "DE.Controllers.Statusbar.textTrackChanges": "ドキュメントが変更履歴モードが有効な状態で開かれています", "DE.Controllers.Statusbar.tipReview": "変更履歴", "DE.Controllers.Statusbar.zoomText": "ズーム{0}%", - "DE.Controllers.Toolbar.confirmAddFontName": "保存しようとしているフォントを現在のデバイスで使用することができません。
システムフォントを使って、テキストのスタイルが表示されます。利用できます時、保存されたフォントが使用されます。
続行しますか。", + "DE.Controllers.Toolbar.confirmAddFontName": "保存しようとしているフォントを現在のデバイスで使用することができません。
システムフォントを使って、テキストのスタイルが表示されます。利用可能になったとき、保存されたフォントが適用されます。
続行しますか。", "DE.Controllers.Toolbar.dataUrl": "データのURLを貼り付け", "DE.Controllers.Toolbar.notcriticalErrorTitle": "警告", "DE.Controllers.Toolbar.textAccent": "アクセントカラー", "DE.Controllers.Toolbar.textBracket": "括弧", - "DE.Controllers.Toolbar.textEmptyImgUrl": "画像のURLを指定しなければなりません。", - "DE.Controllers.Toolbar.textEmptyMMergeUrl": "URLを指定することが必要です。", + "DE.Controllers.Toolbar.textEmptyImgUrl": "画像のURLを指定する必要があります。", + "DE.Controllers.Toolbar.textEmptyMMergeUrl": "URLを指定してください。", "DE.Controllers.Toolbar.textFontSizeErr": "入力された値が正しくありません。
1〜300の数値を入力してください。", "DE.Controllers.Toolbar.textFraction": "分数", "DE.Controllers.Toolbar.textFunction": "関数", @@ -913,7 +913,7 @@ "DE.Controllers.Toolbar.textLimitAndLog": "制限と対数", "DE.Controllers.Toolbar.textMatrix": "行列", "DE.Controllers.Toolbar.textOperator": "演算子", - "DE.Controllers.Toolbar.textRadical": "冪根", + "DE.Controllers.Toolbar.textRadical": "ラジカル", "DE.Controllers.Toolbar.textRecentlyUsed": "最近使用された", "DE.Controllers.Toolbar.textScript": "スクリプト", "DE.Controllers.Toolbar.textSymbols": "記号", @@ -924,17 +924,17 @@ "DE.Controllers.Toolbar.txtAccent_ArrowL": "左に矢印 (上)", "DE.Controllers.Toolbar.txtAccent_ArrowR": "右向き矢印 (上)", "DE.Controllers.Toolbar.txtAccent_Bar": "バー", - "DE.Controllers.Toolbar.txtAccent_BarBot": "アンダーライン", + "DE.Controllers.Toolbar.txtAccent_BarBot": "アンダーバー", "DE.Controllers.Toolbar.txtAccent_BarTop": "オーバーライン", "DE.Controllers.Toolbar.txtAccent_BorderBox": "四角囲み数式 (プレースホルダ付き)", "DE.Controllers.Toolbar.txtAccent_BorderBoxCustom": "四角囲み数式 (例)", "DE.Controllers.Toolbar.txtAccent_Check": "チェック", - "DE.Controllers.Toolbar.txtAccent_CurveBracketBot": "下かっこ", + "DE.Controllers.Toolbar.txtAccent_CurveBracketBot": "下括弧", "DE.Controllers.Toolbar.txtAccent_CurveBracketTop": "上括弧", "DE.Controllers.Toolbar.txtAccent_Custom_1": "ベクトルA", "DE.Controllers.Toolbar.txtAccent_Custom_2": "オーバーライン付き ABC", "DE.Controllers.Toolbar.txtAccent_Custom_3": "x XORと上線", - "DE.Controllers.Toolbar.txtAccent_DDDot": "トリプル ドット", + "DE.Controllers.Toolbar.txtAccent_DDDot": "トリプルドット", "DE.Controllers.Toolbar.txtAccent_DDot": "複付点", "DE.Controllers.Toolbar.txtAccent_Dot": "点", "DE.Controllers.Toolbar.txtAccent_DoubleBar": "二重上線", @@ -949,12 +949,12 @@ "DE.Controllers.Toolbar.txtBracket_Angle": "括弧", "DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2": "括弧と区切り線", "DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3": "括弧と区切り線", - "DE.Controllers.Toolbar.txtBracket_Angle_NoneOpen": "単一かっこ", - "DE.Controllers.Toolbar.txtBracket_Angle_OpenNone": "単一かっこ", + "DE.Controllers.Toolbar.txtBracket_Angle_NoneOpen": "単一括弧", + "DE.Controllers.Toolbar.txtBracket_Angle_OpenNone": "単一括弧", "DE.Controllers.Toolbar.txtBracket_Curve": "括弧", "DE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2": "括弧と区切り線", - "DE.Controllers.Toolbar.txtBracket_Curve_NoneOpen": "単一かっこ", - "DE.Controllers.Toolbar.txtBracket_Curve_OpenNone": "単一かっこ", + "DE.Controllers.Toolbar.txtBracket_Curve_NoneOpen": "単一括弧", + "DE.Controllers.Toolbar.txtBracket_Curve_OpenNone": "単一括弧", "DE.Controllers.Toolbar.txtBracket_Custom_1": "場合分け(条件2つ)", "DE.Controllers.Toolbar.txtBracket_Custom_2": "場合分け (条件 3 つ)", "DE.Controllers.Toolbar.txtBracket_Custom_3": "縦並びオブジェクト", @@ -963,37 +963,37 @@ "DE.Controllers.Toolbar.txtBracket_Custom_6": "二項係数", "DE.Controllers.Toolbar.txtBracket_Custom_7": "二項係数", "DE.Controllers.Toolbar.txtBracket_Line": "括弧", - "DE.Controllers.Toolbar.txtBracket_Line_NoneOpen": "単一かっこ", - "DE.Controllers.Toolbar.txtBracket_Line_OpenNone": "単一かっこ", + "DE.Controllers.Toolbar.txtBracket_Line_NoneOpen": "単一括弧", + "DE.Controllers.Toolbar.txtBracket_Line_OpenNone": "単一括弧", "DE.Controllers.Toolbar.txtBracket_LineDouble": "括弧", - "DE.Controllers.Toolbar.txtBracket_LineDouble_NoneOpen": "単一かっこ", - "DE.Controllers.Toolbar.txtBracket_LineDouble_OpenNone": "単一かっこ", + "DE.Controllers.Toolbar.txtBracket_LineDouble_NoneOpen": "単一括弧", + "DE.Controllers.Toolbar.txtBracket_LineDouble_OpenNone": "単一括弧", "DE.Controllers.Toolbar.txtBracket_LowLim": "括弧", - "DE.Controllers.Toolbar.txtBracket_LowLim_NoneNone": "単一かっこ", - "DE.Controllers.Toolbar.txtBracket_LowLim_OpenNone": "単一かっこ", + "DE.Controllers.Toolbar.txtBracket_LowLim_NoneNone": "単一括弧", + "DE.Controllers.Toolbar.txtBracket_LowLim_OpenNone": "単一括弧", "DE.Controllers.Toolbar.txtBracket_Round": "括弧", "DE.Controllers.Toolbar.txtBracket_Round_Delimiter_2": "括弧と区切り線", - "DE.Controllers.Toolbar.txtBracket_Round_NoneOpen": "単一かっこ", - "DE.Controllers.Toolbar.txtBracket_Round_OpenNone": "単一かっこ", + "DE.Controllers.Toolbar.txtBracket_Round_NoneOpen": "単一括弧", + "DE.Controllers.Toolbar.txtBracket_Round_OpenNone": "単一括弧", "DE.Controllers.Toolbar.txtBracket_Square": "括弧", "DE.Controllers.Toolbar.txtBracket_Square_CloseClose": "括弧", "DE.Controllers.Toolbar.txtBracket_Square_CloseOpen": "括弧", - "DE.Controllers.Toolbar.txtBracket_Square_NoneOpen": "単一かっこ", - "DE.Controllers.Toolbar.txtBracket_Square_OpenNone": "単一かっこ", + "DE.Controllers.Toolbar.txtBracket_Square_NoneOpen": "単一括弧", + "DE.Controllers.Toolbar.txtBracket_Square_OpenNone": "単一括弧", "DE.Controllers.Toolbar.txtBracket_Square_OpenOpen": "括弧", "DE.Controllers.Toolbar.txtBracket_SquareDouble": "括弧", - "DE.Controllers.Toolbar.txtBracket_SquareDouble_NoneOpen": "単一かっこ", - "DE.Controllers.Toolbar.txtBracket_SquareDouble_OpenNone": "単一かっこ", + "DE.Controllers.Toolbar.txtBracket_SquareDouble_NoneOpen": "単一括弧", + "DE.Controllers.Toolbar.txtBracket_SquareDouble_OpenNone": "単一括弧", "DE.Controllers.Toolbar.txtBracket_UppLim": "括弧", - "DE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen": "単一かっこ", - "DE.Controllers.Toolbar.txtBracket_UppLim_OpenNone": "単一かっこ", + "DE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen": "単一括弧", + "DE.Controllers.Toolbar.txtBracket_UppLim_OpenNone": "単一括弧", "DE.Controllers.Toolbar.txtFractionDiagonal": "分数 (斜め)", "DE.Controllers.Toolbar.txtFractionDifferential_1": "微分", "DE.Controllers.Toolbar.txtFractionDifferential_2": "微分", "DE.Controllers.Toolbar.txtFractionDifferential_3": "微分", "DE.Controllers.Toolbar.txtFractionDifferential_4": "微分", "DE.Controllers.Toolbar.txtFractionHorizontal": "分数 (横)", - "DE.Controllers.Toolbar.txtFractionPi_2": "円周率を2で割る", + "DE.Controllers.Toolbar.txtFractionPi_2": "Pi/2", "DE.Controllers.Toolbar.txtFractionSmall": "分数 (小)", "DE.Controllers.Toolbar.txtFractionVertical": "分数 (縦)", "DE.Controllers.Toolbar.txtFunction_1_Cos": "逆余弦関数", @@ -1016,12 +1016,12 @@ "DE.Controllers.Toolbar.txtFunction_Csch": "双曲線余割関数", "DE.Controllers.Toolbar.txtFunction_Custom_1": "Sin θ", "DE.Controllers.Toolbar.txtFunction_Custom_2": "Cos 2x", - "DE.Controllers.Toolbar.txtFunction_Custom_3": "正接式", + "DE.Controllers.Toolbar.txtFunction_Custom_3": "正接数式", "DE.Controllers.Toolbar.txtFunction_Sec": "正割関数", "DE.Controllers.Toolbar.txtFunction_Sech": "双曲線正割", "DE.Controllers.Toolbar.txtFunction_Sin": "正弦関数", "DE.Controllers.Toolbar.txtFunction_Sinh": "双曲線正弦", - "DE.Controllers.Toolbar.txtFunction_Tan": "逆正接関数", + "DE.Controllers.Toolbar.txtFunction_Tan": "正接関数", "DE.Controllers.Toolbar.txtFunction_Tanh": "双曲線正接関数", "DE.Controllers.Toolbar.txtIntegral": "積分", "DE.Controllers.Toolbar.txtIntegral_dtheta": "微分シータ", @@ -1041,9 +1041,9 @@ "DE.Controllers.Toolbar.txtIntegralOrientedTripleCenterSubSup": "体積積分", "DE.Controllers.Toolbar.txtIntegralOrientedTripleSubSup": "体積積分", "DE.Controllers.Toolbar.txtIntegralSubSup": "積分", - "DE.Controllers.Toolbar.txtIntegralTriple": "3 重積分", - "DE.Controllers.Toolbar.txtIntegralTripleCenterSubSup": "3 重積分", - "DE.Controllers.Toolbar.txtIntegralTripleSubSup": "3 重積分", + "DE.Controllers.Toolbar.txtIntegralTriple": "三重積分", + "DE.Controllers.Toolbar.txtIntegralTripleCenterSubSup": "三重積分", + "DE.Controllers.Toolbar.txtIntegralTripleSubSup": "三重積分", "DE.Controllers.Toolbar.txtLargeOperator_Conjunction": "くさび形", "DE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSub": "くさび形", "DE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSubSup": "くさび形", @@ -1054,31 +1054,31 @@ "DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup": "双対積", "DE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub": "双対積", "DE.Controllers.Toolbar.txtLargeOperator_CoProd_SubSup": "双対積", - "DE.Controllers.Toolbar.txtLargeOperator_Custom_1": "総和", - "DE.Controllers.Toolbar.txtLargeOperator_Custom_2": "総和", - "DE.Controllers.Toolbar.txtLargeOperator_Custom_3": "総和", - "DE.Controllers.Toolbar.txtLargeOperator_Custom_4": "積", + "DE.Controllers.Toolbar.txtLargeOperator_Custom_1": "合計", + "DE.Controllers.Toolbar.txtLargeOperator_Custom_2": "合計", + "DE.Controllers.Toolbar.txtLargeOperator_Custom_3": "合計", + "DE.Controllers.Toolbar.txtLargeOperator_Custom_4": "乗積", "DE.Controllers.Toolbar.txtLargeOperator_Custom_5": "和集合", - "DE.Controllers.Toolbar.txtLargeOperator_Disjunction": "V", - "DE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSub": "V", - "DE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSubSup": "V", - "DE.Controllers.Toolbar.txtLargeOperator_Disjunction_Sub": "V", - "DE.Controllers.Toolbar.txtLargeOperator_Disjunction_SubSup": "V", + "DE.Controllers.Toolbar.txtLargeOperator_Disjunction": "V字形", + "DE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSub": "V字形", + "DE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSubSup": "V字形", + "DE.Controllers.Toolbar.txtLargeOperator_Disjunction_Sub": "V字形", + "DE.Controllers.Toolbar.txtLargeOperator_Disjunction_SubSup": "V字形", "DE.Controllers.Toolbar.txtLargeOperator_Intersection": "交点", "DE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSub": "交点", "DE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSubSup": "交点", "DE.Controllers.Toolbar.txtLargeOperator_Intersection_Sub": "交点", "DE.Controllers.Toolbar.txtLargeOperator_Intersection_SubSup": "交点", - "DE.Controllers.Toolbar.txtLargeOperator_Prod": "積", - "DE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSub": "積", - "DE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSubSup": "積", - "DE.Controllers.Toolbar.txtLargeOperator_Prod_Sub": "積", - "DE.Controllers.Toolbar.txtLargeOperator_Prod_SubSup": "積", - "DE.Controllers.Toolbar.txtLargeOperator_Sum": "総和", - "DE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSub": "総和", - "DE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSubSup": "総和", - "DE.Controllers.Toolbar.txtLargeOperator_Sum_Sub": "総和", - "DE.Controllers.Toolbar.txtLargeOperator_Sum_SubSup": "総和", + "DE.Controllers.Toolbar.txtLargeOperator_Prod": "乗積", + "DE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSub": "乗積", + "DE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSubSup": "乗積", + "DE.Controllers.Toolbar.txtLargeOperator_Prod_Sub": "乗積", + "DE.Controllers.Toolbar.txtLargeOperator_Prod_SubSup": "乗積", + "DE.Controllers.Toolbar.txtLargeOperator_Sum": "合計", + "DE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSub": "合計", + "DE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSubSup": "合計", + "DE.Controllers.Toolbar.txtLargeOperator_Sum_Sub": "合計", + "DE.Controllers.Toolbar.txtLargeOperator_Sum_SubSup": "合計", "DE.Controllers.Toolbar.txtLargeOperator_Union": "和集合", "DE.Controllers.Toolbar.txtLargeOperator_Union_CenterSub": "和集合", "DE.Controllers.Toolbar.txtLargeOperator_Union_CenterSubSup": "和集合", @@ -1092,7 +1092,7 @@ "DE.Controllers.Toolbar.txtLimitLog_LogBase": "対数", "DE.Controllers.Toolbar.txtLimitLog_Max": "最大", "DE.Controllers.Toolbar.txtLimitLog_Min": "最小", - "DE.Controllers.Toolbar.txtMarginsH": "指定されたページの高さのために上下の余白は高すぎます。", + "DE.Controllers.Toolbar.txtMarginsH": "指定されたページの高さ対して、上下の余白が大きすぎます。", "DE.Controllers.Toolbar.txtMarginsW": "ページ幅に対して左右の余白が広すぎます。", "DE.Controllers.Toolbar.txtMatrix_1_2": "1x2空行列", "DE.Controllers.Toolbar.txtMatrix_1_3": "1x3空行列", @@ -1123,7 +1123,7 @@ "DE.Controllers.Toolbar.txtOperator_ArrowR_Bot": "右向き矢印 (下)", "DE.Controllers.Toolbar.txtOperator_ArrowR_Top": "右向き矢印 (上)", "DE.Controllers.Toolbar.txtOperator_ColonEquals": "コロン付き等号", - "DE.Controllers.Toolbar.txtOperator_Custom_1": "導出", + "DE.Controllers.Toolbar.txtOperator_Custom_1": "収率", "DE.Controllers.Toolbar.txtOperator_Custom_2": "デルタイールド", "DE.Controllers.Toolbar.txtOperator_Definition": "定義上等しい", "DE.Controllers.Toolbar.txtOperator_DeltaEquals": "デルタ付き等号", @@ -1135,19 +1135,19 @@ "DE.Controllers.Toolbar.txtOperator_DoubleArrowR_Top": "右向き矢印 (上)", "DE.Controllers.Toolbar.txtOperator_EqualsEquals": "等号等号", "DE.Controllers.Toolbar.txtOperator_MinusEquals": "マイナス付き等号", - "DE.Controllers.Toolbar.txtOperator_PlusEquals": "プラス付き等号", + "DE.Controllers.Toolbar.txtOperator_PlusEquals": "プラス イコール", "DE.Controllers.Toolbar.txtOperator_UnitOfMeasure": "測度", - "DE.Controllers.Toolbar.txtRadicalCustom_1": "冪根", - "DE.Controllers.Toolbar.txtRadicalCustom_2": "冪根", + "DE.Controllers.Toolbar.txtRadicalCustom_1": "ラジアル", + "DE.Controllers.Toolbar.txtRadicalCustom_2": "ラジアル", "DE.Controllers.Toolbar.txtRadicalRoot_2": "次数付き平方根", "DE.Controllers.Toolbar.txtRadicalRoot_3": "立方根", - "DE.Controllers.Toolbar.txtRadicalRoot_n": "次数付きべき乗根", + "DE.Controllers.Toolbar.txtRadicalRoot_n": "度付きラジカル", "DE.Controllers.Toolbar.txtRadicalSqrt": "平方根", "DE.Controllers.Toolbar.txtScriptCustom_1": "スクリプト", "DE.Controllers.Toolbar.txtScriptCustom_2": "スクリプト", "DE.Controllers.Toolbar.txtScriptCustom_3": "スクリプト", "DE.Controllers.Toolbar.txtScriptCustom_4": "スクリプト", - "DE.Controllers.Toolbar.txtScriptSub": "下付き", + "DE.Controllers.Toolbar.txtScriptSub": "下付き文字", "DE.Controllers.Toolbar.txtScriptSubSup": "下付き文字 - 上付き文字", "DE.Controllers.Toolbar.txtScriptSubSupLeft": "左下付き文字 - 上付き文字", "DE.Controllers.Toolbar.txtScriptSup": "上付き文字", @@ -1177,7 +1177,7 @@ "DE.Controllers.Toolbar.txtSymbol_equals": "等号", "DE.Controllers.Toolbar.txtSymbol_equiv": "と同一", "DE.Controllers.Toolbar.txtSymbol_eta": "エータ", - "DE.Controllers.Toolbar.txtSymbol_exists": "存在する\t", + "DE.Controllers.Toolbar.txtSymbol_exists": "存在します\t", "DE.Controllers.Toolbar.txtSymbol_factorial": "階乗", "DE.Controllers.Toolbar.txtSymbol_fahrenheit": "華氏", "DE.Controllers.Toolbar.txtSymbol_forall": "全てに", @@ -1213,7 +1213,7 @@ "DE.Controllers.Toolbar.txtSymbol_pi": "パイ", "DE.Controllers.Toolbar.txtSymbol_plus": "プラス", "DE.Controllers.Toolbar.txtSymbol_pm": "プラス マイナス", - "DE.Controllers.Toolbar.txtSymbol_propto": "プロポーショナル", + "DE.Controllers.Toolbar.txtSymbol_propto": "比例", "DE.Controllers.Toolbar.txtSymbol_psi": "プサイ", "DE.Controllers.Toolbar.txtSymbol_qdrt": "四乗根", "DE.Controllers.Toolbar.txtSymbol_qed": "証明終了", @@ -1221,9 +1221,9 @@ "DE.Controllers.Toolbar.txtSymbol_rho": "ロー", "DE.Controllers.Toolbar.txtSymbol_rightarrow": "右矢印", "DE.Controllers.Toolbar.txtSymbol_sigma": "シグマ", - "DE.Controllers.Toolbar.txtSymbol_sqrt": "根号", + "DE.Controllers.Toolbar.txtSymbol_sqrt": "平方根", "DE.Controllers.Toolbar.txtSymbol_tau": "タウ", - "DE.Controllers.Toolbar.txtSymbol_therefore": "ゆえに", + "DE.Controllers.Toolbar.txtSymbol_therefore": "従って", "DE.Controllers.Toolbar.txtSymbol_theta": "シータ", "DE.Controllers.Toolbar.txtSymbol_times": "乗算記号", "DE.Controllers.Toolbar.txtSymbol_uparrow": "上矢印", @@ -1275,7 +1275,7 @@ "DE.Views.CaptionDialog.textNumbering": "ナンバリング", "DE.Views.CaptionDialog.textPeriod": "期間", "DE.Views.CaptionDialog.textSeparator": "セパレーターを使用する", - "DE.Views.CaptionDialog.textTable": "表", + "DE.Views.CaptionDialog.textTable": "テーブル", "DE.Views.CaptionDialog.textTitle": "キャプションの挿入", "DE.Views.CellsAddDialog.textCol": "列", "DE.Views.CellsAddDialog.textDown": "カーソルの下", @@ -1284,21 +1284,21 @@ "DE.Views.CellsAddDialog.textRow": "行", "DE.Views.CellsAddDialog.textTitle": "複数を挿入する", "DE.Views.CellsAddDialog.textUp": "カーソルより上", - "DE.Views.ChartSettings.textAdvanced": "詳細設定の表示", + "DE.Views.ChartSettings.textAdvanced": "詳細設定を表示", "DE.Views.ChartSettings.textChartType": "グラフの種類の変更", "DE.Views.ChartSettings.textEditData": "データの編集", "DE.Views.ChartSettings.textHeight": "高さ", "DE.Views.ChartSettings.textOriginalSize": "実際のサイズ", "DE.Views.ChartSettings.textSize": "サイズ", "DE.Views.ChartSettings.textStyle": "スタイル", - "DE.Views.ChartSettings.textUndock": "パネルからのドッキング解除", + "DE.Views.ChartSettings.textUndock": "パネルからドッキング解除", "DE.Views.ChartSettings.textWidth": "幅", "DE.Views.ChartSettings.textWrap": "折り返しの種類と配置", "DE.Views.ChartSettings.txtBehind": "テキストの背後に", "DE.Views.ChartSettings.txtInFront": "テキストの前に", "DE.Views.ChartSettings.txtInline": "テキストに沿って", "DE.Views.ChartSettings.txtSquare": "四角", - "DE.Views.ChartSettings.txtThrough": "スルー", + "DE.Views.ChartSettings.txtThrough": "内部", "DE.Views.ChartSettings.txtTight": "外周", "DE.Views.ChartSettings.txtTitle": "チャート", "DE.Views.ChartSettings.txtTopAndBottom": "上と下", @@ -1323,11 +1323,11 @@ "DE.Views.ControlSettingsDialog.textName": "タイトル", "DE.Views.ControlSettingsDialog.textNone": "なし", "DE.Views.ControlSettingsDialog.textPlaceholder": "プレースホルダ", - "DE.Views.ControlSettingsDialog.textShowAs": "として示す", + "DE.Views.ControlSettingsDialog.textShowAs": "として表示する", "DE.Views.ControlSettingsDialog.textSystemColor": "システム", "DE.Views.ControlSettingsDialog.textTag": "タグ", "DE.Views.ControlSettingsDialog.textTitle": "コンテンツコントロール設定", - "DE.Views.ControlSettingsDialog.textUnchecked": "[チェックしない]記号", + "DE.Views.ControlSettingsDialog.textUnchecked": "[チェックされていない]記号", "DE.Views.ControlSettingsDialog.textUp": "上", "DE.Views.ControlSettingsDialog.textValue": "値", "DE.Views.ControlSettingsDialog.tipChange": "記号の変更", @@ -1361,8 +1361,8 @@ "DE.Views.CrossReferenceDialog.textParaNum": "段落番号", "DE.Views.CrossReferenceDialog.textParaNumFull": "段落番号(全文)", "DE.Views.CrossReferenceDialog.textParaNumNo": "段落番号(文脈なし)", - "DE.Views.CrossReferenceDialog.textSeparate": "数字を分ける", - "DE.Views.CrossReferenceDialog.textTable": "表", + "DE.Views.CrossReferenceDialog.textSeparate": "で区切られた数字", + "DE.Views.CrossReferenceDialog.textTable": "テーブル", "DE.Views.CrossReferenceDialog.textText": "段落テキスト", "DE.Views.CrossReferenceDialog.textWhich": "どのキャプションに対して", "DE.Views.CrossReferenceDialog.textWhichBookmark": "どのブックマークに対して", @@ -1378,7 +1378,7 @@ "DE.Views.CustomColumnsDialog.textSpacing": "列の間隔", "DE.Views.CustomColumnsDialog.textTitle": "列", "DE.Views.DateTimeDialog.confirmDefault": "{0}に既定の形式を設定:\"{1}\"", - "DE.Views.DateTimeDialog.textDefault": "既定に設定", + "DE.Views.DateTimeDialog.textDefault": "デフォルトに設定", "DE.Views.DateTimeDialog.textFormat": "形式", "DE.Views.DateTimeDialog.textLang": "言語", "DE.Views.DateTimeDialog.textUpdate": "自動的に更新", @@ -1403,10 +1403,10 @@ "DE.Views.DocumentHolder.deleteRowText": "行の削除", "DE.Views.DocumentHolder.deleteTableText": "表の削除", "DE.Views.DocumentHolder.deleteText": "削除する", - "DE.Views.DocumentHolder.direct270Text": "270度回転", - "DE.Views.DocumentHolder.direct90Text": "90度回転", + "DE.Views.DocumentHolder.direct270Text": "上にテキストを回転", + "DE.Views.DocumentHolder.direct90Text": "下にテキストを回転", "DE.Views.DocumentHolder.directHText": "水平", - "DE.Views.DocumentHolder.directionText": "文字列の方向", + "DE.Views.DocumentHolder.directionText": "文字の方向", "DE.Views.DocumentHolder.editChartText": "データの編集", "DE.Views.DocumentHolder.editFooterText": "フッターの編集", "DE.Views.DocumentHolder.editHeaderText": "ヘッダーの編集", @@ -1441,13 +1441,13 @@ "DE.Views.DocumentHolder.selectColumnText": "列の選択", "DE.Views.DocumentHolder.selectRowText": "行の選択", "DE.Views.DocumentHolder.selectTableText": "テーブルの選択", - "DE.Views.DocumentHolder.selectText": "選択", + "DE.Views.DocumentHolder.selectText": "選択する", "DE.Views.DocumentHolder.shapeText": "図形の詳細設定", - "DE.Views.DocumentHolder.spellcheckText": "スペル チェック", + "DE.Views.DocumentHolder.spellcheckText": "スペルチェック", "DE.Views.DocumentHolder.splitCellsText": "セルの分割...", "DE.Views.DocumentHolder.splitCellTitleText": "セルの分割", "DE.Views.DocumentHolder.strDelete": "署名の削除", - "DE.Views.DocumentHolder.strDetails": "サインの詳細", + "DE.Views.DocumentHolder.strDetails": "署名の詳細", "DE.Views.DocumentHolder.strSetup": "署名の設定", "DE.Views.DocumentHolder.strSign": "サイン", "DE.Views.DocumentHolder.styleText": "スタイルとしての書式設定", @@ -1479,7 +1479,7 @@ "DE.Views.DocumentHolder.textFromStorage": "ストレージから", "DE.Views.DocumentHolder.textFromUrl": "URLから", "DE.Views.DocumentHolder.textJoinList": "前のリストに結合", - "DE.Views.DocumentHolder.textLeft": "左方向にシフト", + "DE.Views.DocumentHolder.textLeft": "セルの左シフト", "DE.Views.DocumentHolder.textNest": "ネスト表", "DE.Views.DocumentHolder.textNextPage": "次のページ", "DE.Views.DocumentHolder.textNumberingValue": "ナンバリング値", @@ -1488,19 +1488,19 @@ "DE.Views.DocumentHolder.textRefreshField": "フィールドの更新", "DE.Views.DocumentHolder.textReject": "変更を拒否", "DE.Views.DocumentHolder.textRemCheckBox": "チェックボックスを削除する", - "DE.Views.DocumentHolder.textRemComboBox": "コンボ・ボックスを削除する", - "DE.Views.DocumentHolder.textRemDropdown": "ドロップダウン・リストを削除する", + "DE.Views.DocumentHolder.textRemComboBox": "コンボボックスを削除する", + "DE.Views.DocumentHolder.textRemDropdown": "ドロップダウンリストを削除する", "DE.Views.DocumentHolder.textRemField": "テキストフィールドを削除する", "DE.Views.DocumentHolder.textRemove": "削除する", - "DE.Views.DocumentHolder.textRemoveControl": "コンテンツ コントロールを削除する", + "DE.Views.DocumentHolder.textRemoveControl": "コンテンツコントロールを削除する", "DE.Views.DocumentHolder.textRemPicture": "画像を削除する", "DE.Views.DocumentHolder.textRemRadioBox": "ラジオボタンの削除", - "DE.Views.DocumentHolder.textReplace": "画像の置き換え", + "DE.Views.DocumentHolder.textReplace": "画像を置き換える", "DE.Views.DocumentHolder.textRotate": "回転させる", - "DE.Views.DocumentHolder.textRotate270": "逆時計方向に90度回転", - "DE.Views.DocumentHolder.textRotate90": "時計方向に90度回転", + "DE.Views.DocumentHolder.textRotate270": "反時計回りに90度回転", + "DE.Views.DocumentHolder.textRotate90": "時計回りに90度回転", "DE.Views.DocumentHolder.textRow": "行全体を削除", - "DE.Views.DocumentHolder.textSeparateList": "リストの分離", + "DE.Views.DocumentHolder.textSeparateList": "別のリスト", "DE.Views.DocumentHolder.textSettings": "設定", "DE.Views.DocumentHolder.textSeveral": "複数の行/列", "DE.Views.DocumentHolder.textShapeAlignBottom": "下揃え", @@ -1516,10 +1516,10 @@ "DE.Views.DocumentHolder.textTOCSettings": "目次設定", "DE.Views.DocumentHolder.textUndo": "元に戻す", "DE.Views.DocumentHolder.textUpdateAll": "テーブル全体の更新", - "DE.Views.DocumentHolder.textUpdatePages": "ページ番号の更新のみ", + "DE.Views.DocumentHolder.textUpdatePages": "ページ番号のみの更新", "DE.Views.DocumentHolder.textUpdateTOC": "目次を更新する", "DE.Views.DocumentHolder.textWrap": "折り返しの種類と配置", - "DE.Views.DocumentHolder.tipIsLocked": "今、この要素が他のユーザによって編集されています。", + "DE.Views.DocumentHolder.tipIsLocked": "今、この要素が他のユーザーによって編集されています。", "DE.Views.DocumentHolder.toDictionaryText": "辞書に追加", "DE.Views.DocumentHolder.txtAddBottom": "下罫線の追加", "DE.Views.DocumentHolder.txtAddFractionBar": "分数罫の追加", @@ -1584,35 +1584,35 @@ "DE.Views.DocumentHolder.txtOverbar": "テキストの上のバー", "DE.Views.DocumentHolder.txtOverwriteCells": "セルを上書きする", "DE.Views.DocumentHolder.txtPasteSourceFormat": "元の書式付けを保存する", - "DE.Views.DocumentHolder.txtPressLink": "リンクをクリックしてCTRLを押してください。 ", + "DE.Views.DocumentHolder.txtPressLink": "Ctrlキーを押しながらリンクをクリックしてください", "DE.Views.DocumentHolder.txtPrintSelection": "選択範囲の印刷", - "DE.Views.DocumentHolder.txtRemFractionBar": "分数罫の削除", - "DE.Views.DocumentHolder.txtRemLimit": "極限の削除", + "DE.Views.DocumentHolder.txtRemFractionBar": "分数線の削除", + "DE.Views.DocumentHolder.txtRemLimit": "制限を削除する", "DE.Views.DocumentHolder.txtRemoveAccentChar": "アクセント記号の削除", - "DE.Views.DocumentHolder.txtRemoveBar": "上/下線の削除", + "DE.Views.DocumentHolder.txtRemoveBar": "線を削除する", "DE.Views.DocumentHolder.txtRemoveWarning": "この署名を削除しますか?
この操作は元に戻せません。", "DE.Views.DocumentHolder.txtRemScripts": "スクリプトの削除", - "DE.Views.DocumentHolder.txtRemSubscript": "下付きの削除", + "DE.Views.DocumentHolder.txtRemSubscript": "下付き文字の削除", "DE.Views.DocumentHolder.txtRemSuperscript": "上付き文字の削除", "DE.Views.DocumentHolder.txtScriptsAfter": "テキストの後のスクリプト", "DE.Views.DocumentHolder.txtScriptsBefore": "テキストの前のスクリプト", - "DE.Views.DocumentHolder.txtShowBottomLimit": "下極限を表示します。", - "DE.Views.DocumentHolder.txtShowCloseBracket": "右かっこの表示", + "DE.Views.DocumentHolder.txtShowBottomLimit": "下限を表示する", + "DE.Views.DocumentHolder.txtShowCloseBracket": "右大括弧を表示", "DE.Views.DocumentHolder.txtShowDegree": "次数を表示", - "DE.Views.DocumentHolder.txtShowOpenBracket": "左かっこの表示", + "DE.Views.DocumentHolder.txtShowOpenBracket": "左大括弧の表示", "DE.Views.DocumentHolder.txtShowPlaceholder": "プレースホルダーの表示", - "DE.Views.DocumentHolder.txtShowTopLimit": "上の極限の表示", + "DE.Views.DocumentHolder.txtShowTopLimit": "上限を表示する", "DE.Views.DocumentHolder.txtSquare": "四角", - "DE.Views.DocumentHolder.txtStretchBrackets": "かっこの拡大", - "DE.Views.DocumentHolder.txtThrough": "スルー", + "DE.Views.DocumentHolder.txtStretchBrackets": "括弧の拡大", + "DE.Views.DocumentHolder.txtThrough": "内部", "DE.Views.DocumentHolder.txtTight": "外周", - "DE.Views.DocumentHolder.txtTop": "トップ", + "DE.Views.DocumentHolder.txtTop": "上", "DE.Views.DocumentHolder.txtTopAndBottom": "上と下", "DE.Views.DocumentHolder.txtUnderbar": "テキストの下のバー", - "DE.Views.DocumentHolder.txtUngroup": "グループ解除", + "DE.Views.DocumentHolder.txtUngroup": "グループ化解除", "DE.Views.DocumentHolder.txtWarnUrl": "このリンクをクリックすると、お使いの端末やデータに悪影響を与える可能性があります。
本当に続けてよろしいですか?", "DE.Views.DocumentHolder.updateStyleText": "%1スタイルの更新", - "DE.Views.DocumentHolder.vertAlignText": "垂直方向の整列", + "DE.Views.DocumentHolder.vertAlignText": "垂直方向の配置", "DE.Views.DropcapSettingsAdvanced.strBorders": "罫線と塗りつぶし", "DE.Views.DropcapSettingsAdvanced.strDropcap": "ドロップキャップ", "DE.Views.DropcapSettingsAdvanced.strMargins": "余白", @@ -1644,13 +1644,13 @@ "DE.Views.DropcapSettingsAdvanced.textParagraph": "段落", "DE.Views.DropcapSettingsAdvanced.textParameters": "パラメーター", "DE.Views.DropcapSettingsAdvanced.textPosition": "位置", - "DE.Views.DropcapSettingsAdvanced.textRelative": "相対", + "DE.Views.DropcapSettingsAdvanced.textRelative": "と相対", "DE.Views.DropcapSettingsAdvanced.textRight": "右に", "DE.Views.DropcapSettingsAdvanced.textRowHeight": "行の高さ", "DE.Views.DropcapSettingsAdvanced.textTitle": "ドロップキャップの詳細設定", "DE.Views.DropcapSettingsAdvanced.textTitleFrame": "フレーム - 詳細設定", - "DE.Views.DropcapSettingsAdvanced.textTop": "トップ", - "DE.Views.DropcapSettingsAdvanced.textVertical": "縦", + "DE.Views.DropcapSettingsAdvanced.textTop": "上", + "DE.Views.DropcapSettingsAdvanced.textVertical": "垂直", "DE.Views.DropcapSettingsAdvanced.textWidth": "幅", "DE.Views.DropcapSettingsAdvanced.tipFontName": "フォント", "DE.Views.DropcapSettingsAdvanced.txtNoBorders": "罫線なし", @@ -1670,12 +1670,12 @@ "DE.Views.FileMenu.btnPrintCaption": "印刷", "DE.Views.FileMenu.btnProtectCaption": "保護する", "DE.Views.FileMenu.btnRecentFilesCaption": "最近開いた...", - "DE.Views.FileMenu.btnRenameCaption": "名前変更", + "DE.Views.FileMenu.btnRenameCaption": "名前の変更...", "DE.Views.FileMenu.btnReturnCaption": "文書に戻る", "DE.Views.FileMenu.btnRightsCaption": "アクセス許可...", "DE.Views.FileMenu.btnSaveAsCaption": "名前を付けて保存", "DE.Views.FileMenu.btnSaveCaption": "保存", - "DE.Views.FileMenu.btnSaveCopyAsCaption": "別名で保存...", + "DE.Views.FileMenu.btnSaveCopyAsCaption": "コピーを別名で保存...", "DE.Views.FileMenu.btnSettingsCaption": "詳細設定...", "DE.Views.FileMenu.btnToEditCaption": "ドキュメントを編集", "DE.Views.FileMenu.textDownload": "ダウンロード", @@ -1696,20 +1696,20 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtPages": "ページ", "DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs": "段落", "DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "場所", - "DE.Views.FileMenuPanels.DocumentInfo.txtRights": "権利を持っている者", - "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "スペースを含む記号です。", + "DE.Views.FileMenuPanels.DocumentInfo.txtRights": "権利を有する者", + "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "スペースを含む記号", "DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "統計", "DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "件名", "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "記号", "DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "タイトル", - "DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "アップロードされた", - "DE.Views.FileMenuPanels.DocumentInfo.txtWords": "文字数", + "DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "アップロード済み", + "DE.Views.FileMenuPanels.DocumentInfo.txtWords": "単語", "DE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "アクセス許可の変更", - "DE.Views.FileMenuPanels.DocumentRights.txtRights": "権利を持っている者", + "DE.Views.FileMenuPanels.DocumentRights.txtRights": "権利を有する者", "DE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "警告", "DE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "パスワードを使って", - "DE.Views.FileMenuPanels.ProtectDoc.strProtect": "文書を保護", - "DE.Views.FileMenuPanels.ProtectDoc.strSignature": "サインを使って", + "DE.Views.FileMenuPanels.ProtectDoc.strProtect": "文書を保護する", + "DE.Views.FileMenuPanels.ProtectDoc.strSignature": "署名を使って", "DE.Views.FileMenuPanels.ProtectDoc.txtEdit": "ドキュメントを編集", "DE.Views.FileMenuPanels.ProtectDoc.txtEditWarning": "編集すると、文書から署名が削除されます。
続行しますか?", "DE.Views.FileMenuPanels.ProtectDoc.txtEncrypted": "このドキュメントはパスワードで保護されています", @@ -1719,24 +1719,15 @@ "DE.Views.FileMenuPanels.ProtectDoc.txtView": "署名の表示", "DE.Views.FileMenuPanels.Settings.okButtonText": "適用する", "DE.Views.FileMenuPanels.Settings.strAlignGuides": "配置ガイドを有効にする", - "DE.Views.FileMenuPanels.Settings.strAutoRecover": "自動バックアップをオンにします。", - "DE.Views.FileMenuPanels.Settings.strAutosave": "自動保存をオンにします。", "DE.Views.FileMenuPanels.Settings.strCoAuthMode": "共同編集のモード", - "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "他のユーザーにすぐに変更が表示されます", - "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "変更を見る前に、変更を承諾する必要があります。", - "DE.Views.FileMenuPanels.Settings.strFast": "ファスト", + "DE.Views.FileMenuPanels.Settings.strFast": "高速", "DE.Views.FileMenuPanels.Settings.strFontRender": "フォントヒンティング", "DE.Views.FileMenuPanels.Settings.strForcesave": "保存またはCtrl + Sを押した後、バージョンをサーバーに保存する。", - "DE.Views.FileMenuPanels.Settings.strInputMode": "漢字をオンにします。", - "DE.Views.FileMenuPanels.Settings.strLiveComment": "テキストコメントの表示をオンにします。", "DE.Views.FileMenuPanels.Settings.strMacrosSettings": "マクロの設定", - "DE.Views.FileMenuPanels.Settings.strPaste": "切り取り、コピー、貼り付け", "DE.Views.FileMenuPanels.Settings.strPasteButton": "貼り付けるときに[貼り付けオプション]ボタンを表示する", - "DE.Views.FileMenuPanels.Settings.strResolvedComment": "解決されたコメントの表示をオンにする", - "DE.Views.FileMenuPanels.Settings.strReviewHover": "変更の表示をトラックする", "DE.Views.FileMenuPanels.Settings.strShowChanges": "リアルタイム共同編集の変更表示モード", - "DE.Views.FileMenuPanels.Settings.strSpellCheckMode": "スペル・チェックの機能を有効にする", - "DE.Views.FileMenuPanels.Settings.strStrict": "高レベル", + "DE.Views.FileMenuPanels.Settings.strSpellCheckMode": "スペルチェック機能を有効にする", + "DE.Views.FileMenuPanels.Settings.strStrict": "厳格", "DE.Views.FileMenuPanels.Settings.strTheme": "インターフェイスのテーマ", "DE.Views.FileMenuPanels.Settings.strUnit": "測定単位", "DE.Views.FileMenuPanels.Settings.strZoom": "デフォルトのズーム値", @@ -1752,7 +1743,7 @@ "DE.Views.FileMenuPanels.Settings.textForceSave": "中間バージョンの保存", "DE.Views.FileMenuPanels.Settings.textMinute": "1 分ごと", "DE.Views.FileMenuPanels.Settings.textOldVersions": "DOCXとして保存する場合は、MS Wordの古いバージョンと互換性のあるファイルにしてください", - "DE.Views.FileMenuPanels.Settings.txtAll": "全ての表示", + "DE.Views.FileMenuPanels.Settings.txtAll": "全て表示", "DE.Views.FileMenuPanels.Settings.txtAutoCorrect": "オートコレクト設定", "DE.Views.FileMenuPanels.Settings.txtCacheMode": "デフォルトのキャッシュモード", "DE.Views.FileMenuPanels.Settings.txtChangesBalloons": "バルーンをクリックで表示する", @@ -1763,7 +1754,7 @@ "DE.Views.FileMenuPanels.Settings.txtFitWidth": "幅に合わせる", "DE.Views.FileMenuPanels.Settings.txtInch": "インチ", "DE.Views.FileMenuPanels.Settings.txtInput": "代替入力", - "DE.Views.FileMenuPanels.Settings.txtLast": "最後の", + "DE.Views.FileMenuPanels.Settings.txtLast": "最後の表示", "DE.Views.FileMenuPanels.Settings.txtLiveComment": "コメント表示", "DE.Views.FileMenuPanels.Settings.txtMac": "OS Xとして", "DE.Views.FileMenuPanels.Settings.txtNative": "ネイティブ", @@ -1772,13 +1763,13 @@ "DE.Views.FileMenuPanels.Settings.txtPt": "ポイント", "DE.Views.FileMenuPanels.Settings.txtRunMacros": "全てを有効にする", "DE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "全てのマクロを有効にして、通知しない", - "DE.Views.FileMenuPanels.Settings.txtSpellCheck": "スペル チェック", + "DE.Views.FileMenuPanels.Settings.txtSpellCheck": "スペルチェック", "DE.Views.FileMenuPanels.Settings.txtStopMacros": "全てを無効にする", "DE.Views.FileMenuPanels.Settings.txtStopMacrosDesc": "全てのマクロを無効にして、通知しない", "DE.Views.FileMenuPanels.Settings.txtWarnMacros": "通知を表示する", "DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "全てのマクロを無効にして、通知する", "DE.Views.FileMenuPanels.Settings.txtWin": "Windowsとして", - "DE.Views.FormSettings.textAlways": "常に", + "DE.Views.FormSettings.textAlways": "常時", "DE.Views.FormSettings.textAspect": "縦横比の固定", "DE.Views.FormSettings.textAutofit": "自動調整", "DE.Views.FormSettings.textBackgroundColor": "背景色", @@ -1855,7 +1846,7 @@ "DE.Views.HeaderFooterSettings.textBottomRight": "右下", "DE.Views.HeaderFooterSettings.textDiffFirst": "先頭ページのみ別指定\t", "DE.Views.HeaderFooterSettings.textDiffOdd": "奇数/偶数ページ別指定", - "DE.Views.HeaderFooterSettings.textFrom": "から始まる", + "DE.Views.HeaderFooterSettings.textFrom": "から開始", "DE.Views.HeaderFooterSettings.textHeaderFromBottom": "下からのフッター位置", "DE.Views.HeaderFooterSettings.textHeaderFromTop": "上からのヘッダー位置", "DE.Views.HeaderFooterSettings.textInsertCurrent": "現在の位置に挿入", @@ -1869,7 +1860,7 @@ "DE.Views.HeaderFooterSettings.textTopLeft": "左上", "DE.Views.HeaderFooterSettings.textTopPage": "ページの上部", "DE.Views.HeaderFooterSettings.textTopRight": "右上", - "DE.Views.HyperlinkSettingsDialog.textDefault": "テキスト フラグメントの選択", + "DE.Views.HyperlinkSettingsDialog.textDefault": "選択されたテキストフラグメント", "DE.Views.HyperlinkSettingsDialog.textDisplay": "表示", "DE.Views.HyperlinkSettingsDialog.textExternal": "外部リンク", "DE.Views.HyperlinkSettingsDialog.textInternal": "文書内の場所", @@ -1878,11 +1869,11 @@ "DE.Views.HyperlinkSettingsDialog.textUrl": "リンク先", "DE.Views.HyperlinkSettingsDialog.txtBeginning": "文書の先頭", "DE.Views.HyperlinkSettingsDialog.txtBookmarks": "ブックマーク", - "DE.Views.HyperlinkSettingsDialog.txtEmpty": "このフィールドは必須項目です", + "DE.Views.HyperlinkSettingsDialog.txtEmpty": "この項目は必須です", "DE.Views.HyperlinkSettingsDialog.txtHeadings": "見出し", "DE.Views.HyperlinkSettingsDialog.txtNotUrl": "このフィールドは「http://www.example.com」の形式のURLである必要があります。", - "DE.Views.HyperlinkSettingsDialog.txtSizeLimit": "このフィールドは2083文字に制限されています", - "DE.Views.ImageSettings.textAdvanced": "詳細設定の表示", + "DE.Views.HyperlinkSettingsDialog.txtSizeLimit": "このフィールドは最大2083文字に制限されています", + "DE.Views.ImageSettings.textAdvanced": "詳細設定を表示", "DE.Views.ImageSettings.textCrop": "トリミング", "DE.Views.ImageSettings.textCropFill": "塗りつぶし", "DE.Views.ImageSettings.textCropFit": "収める", @@ -1895,8 +1886,8 @@ "DE.Views.ImageSettings.textFromStorage": "ストレージから", "DE.Views.ImageSettings.textFromUrl": "URLから", "DE.Views.ImageSettings.textHeight": "高さ", - "DE.Views.ImageSettings.textHint270": "逆時計方向に90度回転", - "DE.Views.ImageSettings.textHint90": "時計方向に90度回転", + "DE.Views.ImageSettings.textHint270": "反時計回りに90度回転", + "DE.Views.ImageSettings.textHint90": "時計回りに90度回転", "DE.Views.ImageSettings.textHintFlipH": "左右に反転", "DE.Views.ImageSettings.textHintFlipV": "上下に反転", "DE.Views.ImageSettings.textInsert": "画像を置き換える", @@ -1911,7 +1902,7 @@ "DE.Views.ImageSettings.txtInFront": "テキストの前に", "DE.Views.ImageSettings.txtInline": "テキストに沿って", "DE.Views.ImageSettings.txtSquare": "四角", - "DE.Views.ImageSettings.txtThrough": "スルー", + "DE.Views.ImageSettings.txtThrough": "内部", "DE.Views.ImageSettings.txtTight": "外周", "DE.Views.ImageSettings.txtTopAndBottom": "上と下", "DE.Views.ImageSettingsAdvanced.strMargins": "テキストの埋め込み文字", @@ -1932,7 +1923,7 @@ "DE.Views.ImageSettingsAdvanced.textBottom": "下", "DE.Views.ImageSettingsAdvanced.textBottomMargin": "下余白", "DE.Views.ImageSettingsAdvanced.textBtnWrap": "テキストの折り返し\t", - "DE.Views.ImageSettingsAdvanced.textCapType": "線の先端", + "DE.Views.ImageSettingsAdvanced.textCapType": "キャップタイプ", "DE.Views.ImageSettingsAdvanced.textCenter": "中央揃え", "DE.Views.ImageSettingsAdvanced.textCharacter": "文字", "DE.Views.ImageSettingsAdvanced.textColumn": "列", @@ -1960,33 +1951,33 @@ "DE.Views.ImageSettingsAdvanced.textParagraph": "段落", "DE.Views.ImageSettingsAdvanced.textPosition": "位置", "DE.Views.ImageSettingsAdvanced.textPositionPc": "相対位置", - "DE.Views.ImageSettingsAdvanced.textRelative": "相対", - "DE.Views.ImageSettingsAdvanced.textRelativeWH": "相対的な", + "DE.Views.ImageSettingsAdvanced.textRelative": "と相対", + "DE.Views.ImageSettingsAdvanced.textRelativeWH": "相対的", "DE.Views.ImageSettingsAdvanced.textResizeFit": "テキストに合わせて図形を調整", "DE.Views.ImageSettingsAdvanced.textRight": "右に", "DE.Views.ImageSettingsAdvanced.textRightMargin": "右余白", "DE.Views.ImageSettingsAdvanced.textRightOf": "の右に", "DE.Views.ImageSettingsAdvanced.textRotation": "回転", - "DE.Views.ImageSettingsAdvanced.textRound": "ラウンド", + "DE.Views.ImageSettingsAdvanced.textRound": "円い", "DE.Views.ImageSettingsAdvanced.textShape": "図形の設定", "DE.Views.ImageSettingsAdvanced.textSize": "サイズ", - "DE.Views.ImageSettingsAdvanced.textSquare": "四角の", + "DE.Views.ImageSettingsAdvanced.textSquare": "四角", "DE.Views.ImageSettingsAdvanced.textTextBox": "テキストボックス", "DE.Views.ImageSettingsAdvanced.textTitle": "画像 - 詳細設定", "DE.Views.ImageSettingsAdvanced.textTitleChart": "チャートー詳細設定", "DE.Views.ImageSettingsAdvanced.textTitleShape": "図形 - 詳細設定", - "DE.Views.ImageSettingsAdvanced.textTop": "トップ", + "DE.Views.ImageSettingsAdvanced.textTop": "上", "DE.Views.ImageSettingsAdvanced.textTopMargin": "上余白", - "DE.Views.ImageSettingsAdvanced.textVertical": "縦", + "DE.Views.ImageSettingsAdvanced.textVertical": "垂直", "DE.Views.ImageSettingsAdvanced.textVertically": "縦に", - "DE.Views.ImageSettingsAdvanced.textWeightArrows": "線&矢印", + "DE.Views.ImageSettingsAdvanced.textWeightArrows": "太さ&矢印", "DE.Views.ImageSettingsAdvanced.textWidth": "幅", "DE.Views.ImageSettingsAdvanced.textWrap": "折り返しの種類と配置", "DE.Views.ImageSettingsAdvanced.textWrapBehindTooltip": "テキストの背後に", "DE.Views.ImageSettingsAdvanced.textWrapInFrontTooltip": "テキストの前に", "DE.Views.ImageSettingsAdvanced.textWrapInlineTooltip": "テキストに沿って", "DE.Views.ImageSettingsAdvanced.textWrapSquareTooltip": "四角", - "DE.Views.ImageSettingsAdvanced.textWrapThroughTooltip": "スルー", + "DE.Views.ImageSettingsAdvanced.textWrapThroughTooltip": "内部", "DE.Views.ImageSettingsAdvanced.textWrapTightTooltip": "外周", "DE.Views.ImageSettingsAdvanced.textWrapTopbottomTooltip": "上と下", "DE.Views.LeftMenu.tipAbout": "詳細情報", @@ -1999,7 +1990,7 @@ "DE.Views.LeftMenu.tipTitles": "タイトル", "DE.Views.LeftMenu.txtDeveloper": "開発者モード", "DE.Views.LeftMenu.txtLimit": "制限されたアクセス", - "DE.Views.LeftMenu.txtTrial": "試用版", + "DE.Views.LeftMenu.txtTrial": "試用モード", "DE.Views.LeftMenu.txtTrialDev": "試用開発者モード", "DE.Views.LineNumbersDialog.textAddLineNumbering": "行番号を追加する", "DE.Views.LineNumbersDialog.textApplyTo": "に変更を適用する", @@ -2012,7 +2003,7 @@ "DE.Views.LineNumbersDialog.textRestartEachPage": "各ページに振り直し", "DE.Views.LineNumbersDialog.textRestartEachSection": "各セクションに振り直し", "DE.Views.LineNumbersDialog.textSection": "現在のセクション", - "DE.Views.LineNumbersDialog.textStartAt": "から始まる", + "DE.Views.LineNumbersDialog.textStartAt": "から開始", "DE.Views.LineNumbersDialog.textTitle": "行番号", "DE.Views.LineNumbersDialog.txtAutoText": "自動", "DE.Views.Links.capBtnBookmarks": "ブックマーク", @@ -2038,7 +2029,7 @@ "DE.Views.Links.textGotoFootnote": "脚注に移動する", "DE.Views.Links.textSwapNotes": "脚注と文末脚注を交換する", "DE.Views.Links.textUpdateAll": "テーブル全体の更新", - "DE.Views.Links.textUpdatePages": "ページ番号の更新のみ", + "DE.Views.Links.textUpdatePages": "ページ番号のみの更新", "DE.Views.Links.tipBookmarks": "ブックマークの作成", "DE.Views.Links.tipCaption": "キャプションの挿入", "DE.Views.Links.tipContents": "目次を挿入", @@ -2053,7 +2044,7 @@ "DE.Views.ListSettingsDialog.textCenter": "中央揃え", "DE.Views.ListSettingsDialog.textLeft": "左", "DE.Views.ListSettingsDialog.textLevel": "レベル", - "DE.Views.ListSettingsDialog.textPreview": "下見", + "DE.Views.ListSettingsDialog.textPreview": "プレビュー", "DE.Views.ListSettingsDialog.textRight": "右揃え", "DE.Views.ListSettingsDialog.txtAlign": "配置", "DE.Views.ListSettingsDialog.txtBullet": "箇条書き", @@ -2076,11 +2067,11 @@ "DE.Views.MailMergeEmailDlg.textFrom": "から", "DE.Views.MailMergeEmailDlg.textHTML": "HTML", "DE.Views.MailMergeEmailDlg.textMessage": "メッセージ", - "DE.Views.MailMergeEmailDlg.textSubject": "件名行", + "DE.Views.MailMergeEmailDlg.textSubject": "件名", "DE.Views.MailMergeEmailDlg.textTitle": "メールに送信する", "DE.Views.MailMergeEmailDlg.textTo": "へ", "DE.Views.MailMergeEmailDlg.textWarning": "警告!", - "DE.Views.MailMergeEmailDlg.textWarningMsg": "「送信」というボタンをクリックするとメーリングを停止することはできません。", + "DE.Views.MailMergeEmailDlg.textWarningMsg": "「送信」ボタンをクリックするとメール送信を中止することはできません。", "DE.Views.MailMergeSettings.downloadMergeTitle": "結合中", "DE.Views.MailMergeSettings.errorMailMergeSaveFile": "結合に失敗しました。", "DE.Views.MailMergeSettings.notcriticalErrorTitle": "警告", @@ -2102,28 +2093,28 @@ "DE.Views.MailMergeSettings.textMergeTo": "に結合", "DE.Views.MailMergeSettings.textPdf": "PDF", "DE.Views.MailMergeSettings.textPortal": "保存", - "DE.Views.MailMergeSettings.textPreview": "結果のプレビュー", + "DE.Views.MailMergeSettings.textPreview": "プレビューの結果", "DE.Views.MailMergeSettings.textReadMore": "続きを読む", "DE.Views.MailMergeSettings.textSendMsg": "すべてのメールの準備ができました。 しばらくするとメッセージが送信されます。
配信速度はメールサーバにより変動します。
ドキュメントの作業を続けることも、閉じることもできます。操作終了後、登録したメールアドレスに通知が届きます。", "DE.Views.MailMergeSettings.textTo": "へ", - "DE.Views.MailMergeSettings.txtFirst": "先頭レコード", + "DE.Views.MailMergeSettings.txtFirst": "最初の記録へ", "DE.Views.MailMergeSettings.txtFromToError": "\"From \"の値は \"To \"の値よりも小さくなければなりません。", - "DE.Views.MailMergeSettings.txtLast": "最後のレコード", - "DE.Views.MailMergeSettings.txtNext": "次のレコード", - "DE.Views.MailMergeSettings.txtPrev": "前のレコード", + "DE.Views.MailMergeSettings.txtLast": "最後の記録へ", + "DE.Views.MailMergeSettings.txtNext": "次の記録へ", + "DE.Views.MailMergeSettings.txtPrev": "以前の記録へ", "DE.Views.MailMergeSettings.txtUntitled": "無題", - "DE.Views.MailMergeSettings.warnProcessMailMerge": "結合の開始に失敗しました", + "DE.Views.MailMergeSettings.warnProcessMailMerge": "マージの開始に失敗しました", "DE.Views.Navigation.txtCollapse": "すべてを折りたたむ", "DE.Views.Navigation.txtDemote": "下げる", - "DE.Views.Navigation.txtEmpty": "ドキュメントに見出しはありません。
目次に表示されるように、テキストに見出しスタイルをご適用ください。", + "DE.Views.Navigation.txtEmpty": "ドキュメントに見出しがありません。
目次に表示されるように、テキストに見出しスタイルを適用ください。", "DE.Views.Navigation.txtEmptyItem": "空白の見出し", - "DE.Views.Navigation.txtEmptyViewer": "ドキュメントに見出しはありません。", + "DE.Views.Navigation.txtEmptyViewer": "ドキュメントに見出しがありません。", "DE.Views.Navigation.txtExpand": "すべてを拡張する", "DE.Views.Navigation.txtExpandToLevel": "レベルまで拡張する", "DE.Views.Navigation.txtHeadingAfter": "後の新しい見出し", "DE.Views.Navigation.txtHeadingBefore": "前の新しい見出し", "DE.Views.Navigation.txtNewHeading": "新しい小見出し", - "DE.Views.Navigation.txtPromote": "レベルアップ", + "DE.Views.Navigation.txtPromote": "促進", "DE.Views.Navigation.txtSelect": "コンテンツの選択", "DE.Views.NoteSettingsDialog.textApply": "適用する", "DE.Views.NoteSettingsDialog.textApplyTo": "変更適用", @@ -2131,8 +2122,8 @@ "DE.Views.NoteSettingsDialog.textCustom": "カスタムマーク", "DE.Views.NoteSettingsDialog.textDocEnd": "文書の最後", "DE.Views.NoteSettingsDialog.textDocument": "全ての文書", - "DE.Views.NoteSettingsDialog.textEachPage": "ページごとに振り直し", - "DE.Views.NoteSettingsDialog.textEachSection": "セクションごとに振り直し", + "DE.Views.NoteSettingsDialog.textEachPage": "各ページに振り直し", + "DE.Views.NoteSettingsDialog.textEachSection": "各セクションに振り直し", "DE.Views.NoteSettingsDialog.textEndnote": "文末脚注", "DE.Views.NoteSettingsDialog.textFootnote": "脚注", "DE.Views.NoteSettingsDialog.textFormat": "形式", @@ -2143,7 +2134,7 @@ "DE.Views.NoteSettingsDialog.textPageBottom": "ページの下部", "DE.Views.NoteSettingsDialog.textSectEnd": "セクションの終わり", "DE.Views.NoteSettingsDialog.textSection": "現在のセクション", - "DE.Views.NoteSettingsDialog.textStart": "から始まる", + "DE.Views.NoteSettingsDialog.textStart": "から開始", "DE.Views.NoteSettingsDialog.textTextBottom": "テキストの下", "DE.Views.NoteSettingsDialog.textTitle": "ノートの設定", "DE.Views.NotesRemoveDialog.textEnd": "すべての文末脚注を削除", @@ -2162,11 +2153,11 @@ "DE.Views.PageMarginsDialog.textOrientation": "印刷の向き", "DE.Views.PageMarginsDialog.textOutside": "外面", "DE.Views.PageMarginsDialog.textPortrait": "縦向き", - "DE.Views.PageMarginsDialog.textPreview": "下見", + "DE.Views.PageMarginsDialog.textPreview": "プレビュー", "DE.Views.PageMarginsDialog.textRight": "右", "DE.Views.PageMarginsDialog.textTitle": "余白", - "DE.Views.PageMarginsDialog.textTop": "トップ", - "DE.Views.PageMarginsDialog.txtMarginsH": "指定されたページの高さのために上下の余白は高すぎます。", + "DE.Views.PageMarginsDialog.textTop": "上", + "DE.Views.PageMarginsDialog.txtMarginsH": "指定されたページの高さ対して、上下の余白が大きすぎます。", "DE.Views.PageMarginsDialog.txtMarginsW": "ページ幅に対して左右の余白が広すぎます。", "DE.Views.PageSizeDialog.textHeight": "高さ", "DE.Views.PageSizeDialog.textPreset": "あらかじめ設定された", @@ -2180,13 +2171,13 @@ "DE.Views.ParagraphSettings.strIndent": "インデント", "DE.Views.ParagraphSettings.strIndentsLeftText": "左", "DE.Views.ParagraphSettings.strIndentsRightText": "右", - "DE.Views.ParagraphSettings.strIndentsSpecial": "スペシャル", + "DE.Views.ParagraphSettings.strIndentsSpecial": "特殊", "DE.Views.ParagraphSettings.strLineHeight": "行間", "DE.Views.ParagraphSettings.strParagraphSpacing": "段落間隔", "DE.Views.ParagraphSettings.strSomeParagraphSpace": "同じスタイルの場合は、段落間に間隔を追加しません。", - "DE.Views.ParagraphSettings.strSpacingAfter": "後", + "DE.Views.ParagraphSettings.strSpacingAfter": "後に", "DE.Views.ParagraphSettings.strSpacingBefore": "前", - "DE.Views.ParagraphSettings.textAdvanced": "詳細設定の表示", + "DE.Views.ParagraphSettings.textAdvanced": "詳細設定を表示", "DE.Views.ParagraphSettings.textAt": "行間", "DE.Views.ParagraphSettings.textAtLeast": "最小", "DE.Views.ParagraphSettings.textAuto": "複数", @@ -2221,9 +2212,9 @@ "DE.Views.ParagraphSettingsAdvanced.strSomeParagraphSpace": "同じスタイルの場合は、段落間に間隔を追加しません。", "DE.Views.ParagraphSettingsAdvanced.strSpacing": "間隔", "DE.Views.ParagraphSettingsAdvanced.strStrike": "取り消し線", - "DE.Views.ParagraphSettingsAdvanced.strSubscript": "下付き", + "DE.Views.ParagraphSettingsAdvanced.strSubscript": "下付き文字", "DE.Views.ParagraphSettingsAdvanced.strSuperscript": "上付き文字", - "DE.Views.ParagraphSettingsAdvanced.strSuppressLineNumbers": "行番号を無効にする", + "DE.Views.ParagraphSettingsAdvanced.strSuppressLineNumbers": "行番号を表示しない", "DE.Views.ParagraphSettingsAdvanced.strTabs": "タブ", "DE.Views.ParagraphSettingsAdvanced.textAlign": "配置", "DE.Views.ParagraphSettingsAdvanced.textAtLeast": "最小", @@ -2258,15 +2249,15 @@ "DE.Views.ParagraphSettingsAdvanced.textTabPosition": "タブの位置", "DE.Views.ParagraphSettingsAdvanced.textTabRight": "右揃え", "DE.Views.ParagraphSettingsAdvanced.textTitle": "段落 - 詳細設定", - "DE.Views.ParagraphSettingsAdvanced.textTop": "トップ", - "DE.Views.ParagraphSettingsAdvanced.tipAll": "外部の罫線と全ての内部の線", - "DE.Views.ParagraphSettingsAdvanced.tipBottom": "下罫線だけを設定します。 ", - "DE.Views.ParagraphSettingsAdvanced.tipInner": "横線内部の線だけを設定します。", - "DE.Views.ParagraphSettingsAdvanced.tipLeft": "下罫線だけを設定します。", + "DE.Views.ParagraphSettingsAdvanced.textTop": "上", + "DE.Views.ParagraphSettingsAdvanced.tipAll": "外枠とすべての内枠の線を設定", + "DE.Views.ParagraphSettingsAdvanced.tipBottom": "下罫線のみを設定", + "DE.Views.ParagraphSettingsAdvanced.tipInner": "水平方向の内側の線のみを設定", + "DE.Views.ParagraphSettingsAdvanced.tipLeft": "左縁だけを設定", "DE.Views.ParagraphSettingsAdvanced.tipNone": "罫線の設定なし", - "DE.Views.ParagraphSettingsAdvanced.tipOuter": "外部の罫線だけを設定します。", - "DE.Views.ParagraphSettingsAdvanced.tipRight": "右罫線だけを設定します。", - "DE.Views.ParagraphSettingsAdvanced.tipTop": "上罫線だけを設定します。", + "DE.Views.ParagraphSettingsAdvanced.tipOuter": "外枠の罫線だけを設定", + "DE.Views.ParagraphSettingsAdvanced.tipRight": "右罫線だけを設定", + "DE.Views.ParagraphSettingsAdvanced.tipTop": "上罫線だけを設定", "DE.Views.ParagraphSettingsAdvanced.txtAutoText": "自動", "DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "罫線なし", "DE.Views.RightMenu.txtChartSettings": "チャート設定", @@ -2276,8 +2267,8 @@ "DE.Views.RightMenu.txtMailMergeSettings": "差し込み印刷の設定", "DE.Views.RightMenu.txtParagraphSettings": "段落の設定", "DE.Views.RightMenu.txtShapeSettings": "図形の設定", - "DE.Views.RightMenu.txtSignatureSettings": "サインの設定", - "DE.Views.RightMenu.txtTableSettings": "表の設定", + "DE.Views.RightMenu.txtSignatureSettings": "署名の設定", + "DE.Views.RightMenu.txtTableSettings": "テーブルの設定", "DE.Views.RightMenu.txtTextArtSettings": "テキストアートの設定", "DE.Views.ShapeSettings.strBackground": "背景色", "DE.Views.ShapeSettings.strChange": "オートシェイプの変更", @@ -2290,7 +2281,7 @@ "DE.Views.ShapeSettings.strStroke": "行", "DE.Views.ShapeSettings.strTransparency": "不透明度", "DE.Views.ShapeSettings.strType": "タイプ", - "DE.Views.ShapeSettings.textAdvanced": "詳細設定の表示", + "DE.Views.ShapeSettings.textAdvanced": "詳細設定を表示", "DE.Views.ShapeSettings.textAngle": "角度", "DE.Views.ShapeSettings.textBorderSizeErr": "入力された値が正しくありません。
0〜1584の数値を入力してください。", "DE.Views.ShapeSettings.textColor": "色で塗りつぶし", @@ -2302,8 +2293,8 @@ "DE.Views.ShapeSettings.textFromUrl": "URLから", "DE.Views.ShapeSettings.textGradient": "グラデーションのポイント", "DE.Views.ShapeSettings.textGradientFill": "塗りつぶし (グラデーション)", - "DE.Views.ShapeSettings.textHint270": "逆時計方向に90度回転", - "DE.Views.ShapeSettings.textHint90": "時計方向に90度回転", + "DE.Views.ShapeSettings.textHint270": "反時計回りに90度回転", + "DE.Views.ShapeSettings.textHint90": "時計回りに90度回転", "DE.Views.ShapeSettings.textHintFlipH": "左右に反転", "DE.Views.ShapeSettings.textHintFlipV": "上下に反転", "DE.Views.ShapeSettings.textImageTexture": "図またはテクスチャ", @@ -2311,12 +2302,12 @@ "DE.Views.ShapeSettings.textNoFill": "塗りつぶしなし", "DE.Views.ShapeSettings.textPatternFill": "パターン", "DE.Views.ShapeSettings.textPosition": "位置", - "DE.Views.ShapeSettings.textRadial": "放射状", + "DE.Views.ShapeSettings.textRadial": "ラジアル", "DE.Views.ShapeSettings.textRecentlyUsed": "最近使用された", "DE.Views.ShapeSettings.textRotate90": "90度回転", "DE.Views.ShapeSettings.textRotation": "回転", "DE.Views.ShapeSettings.textSelectImage": "画像の選択", - "DE.Views.ShapeSettings.textSelectTexture": "選択", + "DE.Views.ShapeSettings.textSelectTexture": "選択する", "DE.Views.ShapeSettings.textStretch": "ストレッチ", "DE.Views.ShapeSettings.textStyle": "スタイル", "DE.Views.ShapeSettings.textTexture": "テクスチャから", @@ -2339,7 +2330,7 @@ "DE.Views.ShapeSettings.txtNoBorders": "線なし", "DE.Views.ShapeSettings.txtPapyrus": "パピルス", "DE.Views.ShapeSettings.txtSquare": "四角", - "DE.Views.ShapeSettings.txtThrough": "スルー", + "DE.Views.ShapeSettings.txtThrough": "内部", "DE.Views.ShapeSettings.txtTight": "外周", "DE.Views.ShapeSettings.txtTopAndBottom": "上と下", "DE.Views.ShapeSettings.txtWood": "木", @@ -2347,10 +2338,10 @@ "DE.Views.SignatureSettings.strDelete": "署名の削除", "DE.Views.SignatureSettings.strDetails": "署名の詳細", "DE.Views.SignatureSettings.strInvalid": "無効な署名", - "DE.Views.SignatureSettings.strRequested": "必要な署名", + "DE.Views.SignatureSettings.strRequested": "要求された署名", "DE.Views.SignatureSettings.strSetup": "署名の設定", "DE.Views.SignatureSettings.strSign": "サイン", - "DE.Views.SignatureSettings.strSignature": "サイン", + "DE.Views.SignatureSettings.strSignature": "署名", "DE.Views.SignatureSettings.strSigner": "署名者", "DE.Views.SignatureSettings.strValid": "有効な署名", "DE.Views.SignatureSettings.txtContinueEditing": "無視して編集する", @@ -2364,17 +2355,17 @@ "DE.Views.Statusbar.tipFitPage": "ページに合わせる", "DE.Views.Statusbar.tipFitWidth": "幅に合わせる", "DE.Views.Statusbar.tipSelectTool": "選択ツール", - "DE.Views.Statusbar.tipSetLang": "テキストの言語を設定します。", - "DE.Views.Statusbar.tipZoomFactor": "拡大率", - "DE.Views.Statusbar.tipZoomIn": "拡大", - "DE.Views.Statusbar.tipZoomOut": "縮小", + "DE.Views.Statusbar.tipSetLang": "テキストの言語を設定", + "DE.Views.Statusbar.tipZoomFactor": "ズーム", + "DE.Views.Statusbar.tipZoomIn": "ズームイン", + "DE.Views.Statusbar.tipZoomOut": "ズームアウト", "DE.Views.Statusbar.txtPageNumInvalid": "ページ番号が正しくありません。", "DE.Views.StyleTitleDialog.textHeader": "新しいスタイルの作成", "DE.Views.StyleTitleDialog.textNextStyle": "次の段落スタイル", "DE.Views.StyleTitleDialog.textTitle": "タイトル", - "DE.Views.StyleTitleDialog.txtEmpty": "このフィールドは必須項目です", + "DE.Views.StyleTitleDialog.txtEmpty": "この項目は必須です", "DE.Views.StyleTitleDialog.txtNotEmpty": "フィールドは空にできません。", - "DE.Views.StyleTitleDialog.txtSameAs": "作成された新しいスタイルと同じ", + "DE.Views.StyleTitleDialog.txtSameAs": "新規作成したスタイルと同じ", "DE.Views.TableFormulaDialog.textBookmark": "ブックマークの貼り付け", "DE.Views.TableFormulaDialog.textFormat": "数の書式", "DE.Views.TableFormulaDialog.textFormula": "数式", @@ -2399,7 +2390,7 @@ "DE.Views.TableOfContentsSettings.textRadioStyles": "選択されたスタイル", "DE.Views.TableOfContentsSettings.textStyle": "スタイル", "DE.Views.TableOfContentsSettings.textStyles": "スタイル", - "DE.Views.TableOfContentsSettings.textTable": "表", + "DE.Views.TableOfContentsSettings.textTable": "テーブル", "DE.Views.TableOfContentsSettings.textTitle": "目次", "DE.Views.TableOfContentsSettings.textTitleTOF": "図表", "DE.Views.TableOfContentsSettings.txtCentered": "中央揃え済み", @@ -2425,9 +2416,9 @@ "DE.Views.TableSettings.selectTableText": "テーブルの選択", "DE.Views.TableSettings.splitCellsText": "セルの分割...", "DE.Views.TableSettings.splitCellTitleText": "セルの分割", - "DE.Views.TableSettings.strRepeatRow": "毎ページの上に見出し行として繰り返す", + "DE.Views.TableSettings.strRepeatRow": "各ページの上部に見出し行として繰り返す", "DE.Views.TableSettings.textAddFormula": "式を追加", - "DE.Views.TableSettings.textAdvanced": "詳細設定の表示", + "DE.Views.TableSettings.textAdvanced": "詳細設定を表示", "DE.Views.TableSettings.textBackColor": "背景色", "DE.Views.TableSettings.textBanded": "縞模様", "DE.Views.TableSettings.textBorderColor": "色", @@ -2448,16 +2439,16 @@ "DE.Views.TableSettings.textTemplate": "テンプレートから選択する", "DE.Views.TableSettings.textTotal": "合計", "DE.Views.TableSettings.textWidth": "幅", - "DE.Views.TableSettings.tipAll": "外部の罫線と全ての内部の線", - "DE.Views.TableSettings.tipBottom": "外部の罫線(下)だけを設定します。", - "DE.Views.TableSettings.tipInner": "内部の線だけを設定します。", - "DE.Views.TableSettings.tipInnerHor": "横線内部の線だけを設定します。", - "DE.Views.TableSettings.tipInnerVert": "内部の縦線だけを設定します。", - "DE.Views.TableSettings.tipLeft": "外部の罫線(左)だけを設定します。", + "DE.Views.TableSettings.tipAll": "外枠とすべての内枠の線を設定", + "DE.Views.TableSettings.tipBottom": "外部の罫線(下)だけを設定", + "DE.Views.TableSettings.tipInner": "内側の線のみを設定", + "DE.Views.TableSettings.tipInnerHor": "水平方向の内側の線のみを設定", + "DE.Views.TableSettings.tipInnerVert": "縦方向の内線のみを設定", + "DE.Views.TableSettings.tipLeft": "外部の罫線(左)だけを設定", "DE.Views.TableSettings.tipNone": "罫線の設定なし", - "DE.Views.TableSettings.tipOuter": "外部の罫線だけを設定します。", - "DE.Views.TableSettings.tipRight": "外部の罫線(右)だけを設定します。", - "DE.Views.TableSettings.tipTop": "外部の罫線(上)だけを設定します。", + "DE.Views.TableSettings.tipOuter": "外枠の罫線だけを設定", + "DE.Views.TableSettings.tipRight": "外部の罫線(右)だけを設定", + "DE.Views.TableSettings.tipTop": "外部の罫線(上)だけを設定", "DE.Views.TableSettings.txtNoBorders": "罫線なし", "DE.Views.TableSettings.txtTable_Accent": "アクセント", "DE.Views.TableSettings.txtTable_Colorful": "カラフル", @@ -2488,7 +2479,7 @@ "DE.Views.TableSettingsAdvanced.textCellSize": "セルのサイズ", "DE.Views.TableSettingsAdvanced.textCenter": "中央揃え", "DE.Views.TableSettingsAdvanced.textCenterTooltip": "中央揃え", - "DE.Views.TableSettingsAdvanced.textCheckMargins": "既定の余白を使用します。", + "DE.Views.TableSettingsAdvanced.textCheckMargins": "既定の余白を使用", "DE.Views.TableSettingsAdvanced.textDefaultMargins": "デフォルトのセルの余白", "DE.Views.TableSettingsAdvanced.textDistance": "文字列との間隔", "DE.Views.TableSettingsAdvanced.textHorizontal": "水平", @@ -2504,36 +2495,36 @@ "DE.Views.TableSettingsAdvanced.textOverlap": "オーバーラップを許可する", "DE.Views.TableSettingsAdvanced.textPage": "ページ", "DE.Views.TableSettingsAdvanced.textPosition": "位置", - "DE.Views.TableSettingsAdvanced.textPrefWidth": "幅", - "DE.Views.TableSettingsAdvanced.textPreview": "下見", - "DE.Views.TableSettingsAdvanced.textRelative": "相対", + "DE.Views.TableSettingsAdvanced.textPrefWidth": "希望する幅", + "DE.Views.TableSettingsAdvanced.textPreview": "プレビュー", + "DE.Views.TableSettingsAdvanced.textRelative": "と相対", "DE.Views.TableSettingsAdvanced.textRight": "右に", "DE.Views.TableSettingsAdvanced.textRightOf": "の右に", "DE.Views.TableSettingsAdvanced.textRightTooltip": "右揃え", - "DE.Views.TableSettingsAdvanced.textTable": "表", - "DE.Views.TableSettingsAdvanced.textTableBackColor": "表の背景", - "DE.Views.TableSettingsAdvanced.textTablePosition": "表の位置", - "DE.Views.TableSettingsAdvanced.textTableSize": "表のサイズ", + "DE.Views.TableSettingsAdvanced.textTable": "テーブル", + "DE.Views.TableSettingsAdvanced.textTableBackColor": "テーブルの背景", + "DE.Views.TableSettingsAdvanced.textTablePosition": "テーブルの位置", + "DE.Views.TableSettingsAdvanced.textTableSize": "テーブルのサイズ", "DE.Views.TableSettingsAdvanced.textTitle": "テーブル - 詳細設定", - "DE.Views.TableSettingsAdvanced.textTop": "トップ", - "DE.Views.TableSettingsAdvanced.textVertical": "縦", + "DE.Views.TableSettingsAdvanced.textTop": "上", + "DE.Views.TableSettingsAdvanced.textVertical": "垂直", "DE.Views.TableSettingsAdvanced.textWidth": "幅", "DE.Views.TableSettingsAdvanced.textWidthSpaces": "幅&スペース", "DE.Views.TableSettingsAdvanced.textWrap": "テキストの折り返し\t", "DE.Views.TableSettingsAdvanced.textWrapNoneTooltip": "インラインテーブル", "DE.Views.TableSettingsAdvanced.textWrapParallelTooltip": "フローテーブル", "DE.Views.TableSettingsAdvanced.textWrappingStyle": "折り返しの種類と配置", - "DE.Views.TableSettingsAdvanced.textWrapText": "左右の折り返し", - "DE.Views.TableSettingsAdvanced.tipAll": "外部の罫線と全ての内部の線", - "DE.Views.TableSettingsAdvanced.tipCellAll": "内部セルだけのために罫線を設定します。", - "DE.Views.TableSettingsAdvanced.tipCellInner": "内部のセルだけのために縦線と横線を設定します。", - "DE.Views.TableSettingsAdvanced.tipCellOuter": "外部の罫線と内部のセルだけを設定します。", - "DE.Views.TableSettingsAdvanced.tipInner": "内部の線だけを設定します。", + "DE.Views.TableSettingsAdvanced.textWrapText": "テキストの折り返し", + "DE.Views.TableSettingsAdvanced.tipAll": "外枠とすべての内枠の線を設定", + "DE.Views.TableSettingsAdvanced.tipCellAll": "内部セルだけに罫線を設定", + "DE.Views.TableSettingsAdvanced.tipCellInner": "内部のセルだけのために縦線と横線を設定", + "DE.Views.TableSettingsAdvanced.tipCellOuter": "内側のセルにのみ外枠罫線を設定", + "DE.Views.TableSettingsAdvanced.tipInner": "内側の線のみを設定", "DE.Views.TableSettingsAdvanced.tipNone": "罫線の設定なし", - "DE.Views.TableSettingsAdvanced.tipOuter": "外部の罫線だけを設定します。", - "DE.Views.TableSettingsAdvanced.tipTableOuterCellAll": "内部セルの罫線と外部の罫線を設定します。", - "DE.Views.TableSettingsAdvanced.tipTableOuterCellInner": "外部の罫線と内部のセルのための縦線と横線を設定します。", - "DE.Views.TableSettingsAdvanced.tipTableOuterCellOuter": "タブの外部の罫線と内部のセルのための外部の罫線を設定します。", + "DE.Views.TableSettingsAdvanced.tipOuter": "外枠の罫線だけを設定", + "DE.Views.TableSettingsAdvanced.tipTableOuterCellAll": "内部セルの罫線と外部の罫線を設定", + "DE.Views.TableSettingsAdvanced.tipTableOuterCellInner": "内側のセルに外枠と縦線・横線を設定", + "DE.Views.TableSettingsAdvanced.tipTableOuterCellOuter": "テーブルの外枠の罫線と内部セルの外枠罫線を設定", "DE.Views.TableSettingsAdvanced.txtCm": "センチ", "DE.Views.TableSettingsAdvanced.txtInch": "インチ", "DE.Views.TableSettingsAdvanced.txtNoBorders": "罫線なし", @@ -2562,8 +2553,8 @@ "DE.Views.TextArtSettings.textLinear": "線形", "DE.Views.TextArtSettings.textNoFill": "塗りつぶしなし", "DE.Views.TextArtSettings.textPosition": "位置", - "DE.Views.TextArtSettings.textRadial": "放射状", - "DE.Views.TextArtSettings.textSelectTexture": "選択", + "DE.Views.TextArtSettings.textRadial": "ラジアル", + "DE.Views.TextArtSettings.textSelectTexture": "選択する", "DE.Views.TextArtSettings.textStyle": "スタイル", "DE.Views.TextArtSettings.textTemplate": "テンプレート", "DE.Views.TextArtSettings.textTransform": "変換", @@ -2581,7 +2572,7 @@ "DE.Views.TextToTableDialog.textSemicolon": "セミコロン", "DE.Views.TextToTableDialog.textSeparator": "でテキストを分離", "DE.Views.TextToTableDialog.textTab": "タブ", - "DE.Views.TextToTableDialog.textTableSize": "表のサイズ", + "DE.Views.TextToTableDialog.textTableSize": "テーブルのサイズ", "DE.Views.TextToTableDialog.textTitle": "文字を表に変換する", "DE.Views.TextToTableDialog.textWindow": "ウインドウへの自動調整", "DE.Views.TextToTableDialog.txtAutoText": "自動", @@ -2599,8 +2590,8 @@ "DE.Views.Toolbar.capBtnInsPagebreak": "区切り", "DE.Views.Toolbar.capBtnInsShape": "図形", "DE.Views.Toolbar.capBtnInsSymbol": "記号", - "DE.Views.Toolbar.capBtnInsTable": "表", - "DE.Views.Toolbar.capBtnInsTextart": "ワードアート", + "DE.Views.Toolbar.capBtnInsTable": "テーブル", + "DE.Views.Toolbar.capBtnInsTextart": "テキストアート", "DE.Views.Toolbar.capBtnInsTextbox": "テキストボックス", "DE.Views.Toolbar.capBtnLineNumbers": "行番号", "DE.Views.Toolbar.capBtnMargins": "余白", @@ -2644,8 +2635,8 @@ "DE.Views.Toolbar.textColumnsLeft": "左", "DE.Views.Toolbar.textColumnsOne": "1", "DE.Views.Toolbar.textColumnsRight": "右に", - "DE.Views.Toolbar.textColumnsThree": "三", - "DE.Views.Toolbar.textColumnsTwo": "二", + "DE.Views.Toolbar.textColumnsThree": "3", + "DE.Views.Toolbar.textColumnsTwo": "2", "DE.Views.Toolbar.textComboboxControl": "コンボボックス", "DE.Views.Toolbar.textContinuous": "継続的", "DE.Views.Toolbar.textContPage": "連続ページ", @@ -2681,7 +2672,7 @@ "DE.Views.Toolbar.textPictureControl": "画像", "DE.Views.Toolbar.textPlainControl": "プレーンテキスト", "DE.Views.Toolbar.textPortrait": "縦向き", - "DE.Views.Toolbar.textRemoveControl": "コンテンツ コントロールを削除する", + "DE.Views.Toolbar.textRemoveControl": "コンテンツコントロールを削除する", "DE.Views.Toolbar.textRemWatermark": "透かしの削除", "DE.Views.Toolbar.textRestartEachPage": "各ページに振り直し", "DE.Views.Toolbar.textRestartEachSection": "各セクションに振り直し", @@ -2693,10 +2684,10 @@ "DE.Views.Toolbar.textStyleMenuNew": "選択からの新しいスタイル", "DE.Views.Toolbar.textStyleMenuRestore": "デフォルトへの復元", "DE.Views.Toolbar.textStyleMenuRestoreAll": "全てのデフォルトスタイルの復元", - "DE.Views.Toolbar.textStyleMenuUpdate": "選択からの更新", - "DE.Views.Toolbar.textSubscript": "下付き", + "DE.Views.Toolbar.textStyleMenuUpdate": "選択範囲からの更新", + "DE.Views.Toolbar.textSubscript": "下付き文字", "DE.Views.Toolbar.textSuperscript": "上付き文字", - "DE.Views.Toolbar.textSuppressForCurrentParagraph": "この段落に無効する", + "DE.Views.Toolbar.textSuppressForCurrentParagraph": "現在の段落を表示しない ", "DE.Views.Toolbar.textTabCollaboration": "共同編集", "DE.Views.Toolbar.textTabFile": "ファイル", "DE.Views.Toolbar.textTabHome": "ホーム", @@ -2704,12 +2695,12 @@ "DE.Views.Toolbar.textTabLayout": "レイアウト", "DE.Views.Toolbar.textTabLinks": "参考資料", "DE.Views.Toolbar.textTabProtect": "保護", - "DE.Views.Toolbar.textTabReview": "見直し", + "DE.Views.Toolbar.textTabReview": "レビュー", "DE.Views.Toolbar.textTabView": "表示", "DE.Views.Toolbar.textTitleError": "エラー", - "DE.Views.Toolbar.textToCurrent": "現在の場所", + "DE.Views.Toolbar.textToCurrent": "現在の場所へ", "DE.Views.Toolbar.textTop": "トップ:", - "DE.Views.Toolbar.textUnderline": "下線", + "DE.Views.Toolbar.textUnderline": "アンダーライン", "DE.Views.Toolbar.tipAlignCenter": "中央揃え", "DE.Views.Toolbar.tipAlignJust": "両端揃え", "DE.Views.Toolbar.tipAlignLeft": "左揃え", @@ -2735,7 +2726,7 @@ "DE.Views.Toolbar.tipHighlightColor": "ハイライトの色", "DE.Views.Toolbar.tipImgAlign": "オブジェクトを配置する", "DE.Views.Toolbar.tipImgGroup": "オブジェクトをグループ化する", - "DE.Views.Toolbar.tipImgWrapping": "文字列の折り返し", + "DE.Views.Toolbar.tipImgWrapping": "テキストの折り返し", "DE.Views.Toolbar.tipIncFont": "フォントサイズの増分", "DE.Views.Toolbar.tipIncPrLeft": "インデントを増やす", "DE.Views.Toolbar.tipInsertChart": "グラフの挿入", @@ -2770,11 +2761,11 @@ "DE.Views.Toolbar.tipPrint": "印刷", "DE.Views.Toolbar.tipRedo": "やり直し", "DE.Views.Toolbar.tipSave": "保存", - "DE.Views.Toolbar.tipSaveCoauth": "他のユーザが変更を見れるために変更を保存します。", + "DE.Views.Toolbar.tipSaveCoauth": "変更内容を保存して、他のユーザーが確認できるようにします。", "DE.Views.Toolbar.tipSendBackward": "背面へ移動", "DE.Views.Toolbar.tipSendForward": "前面へ移動", "DE.Views.Toolbar.tipShowHiddenChars": "非表示文字", - "DE.Views.Toolbar.tipSynchronize": "ドキュメントは他のユーザーによって変更されました。変更を保存するためにここでクリックし、アップデートを再ロードしてください。", + "DE.Views.Toolbar.tipSynchronize": "このドキュメントは他のユーザーによって変更されました。クリックして変更を保存し、更新を再読み込みしてください。", "DE.Views.Toolbar.tipUndo": "元に戻す", "DE.Views.Toolbar.tipWatermark": "透かしを編集する", "DE.Views.Toolbar.txtDistribHor": "左右に整列", @@ -2790,9 +2781,9 @@ "DE.Views.Toolbar.txtScheme14": "オリエル", "DE.Views.Toolbar.txtScheme15": "発生元", "DE.Views.Toolbar.txtScheme16": "紙", - "DE.Views.Toolbar.txtScheme17": "フレッシュ", - "DE.Views.Toolbar.txtScheme18": "テクノロジー", - "DE.Views.Toolbar.txtScheme19": "トラベル", + "DE.Views.Toolbar.txtScheme17": "ソルスティス", + "DE.Views.Toolbar.txtScheme18": "テクニック", + "DE.Views.Toolbar.txtScheme19": "トレッキング", "DE.Views.Toolbar.txtScheme2": "グレースケール", "DE.Views.Toolbar.txtScheme20": "アーバン", "DE.Views.Toolbar.txtScheme21": "ネオン", @@ -2815,7 +2806,7 @@ "DE.Views.ViewTab.textZoom": "ズーム", "DE.Views.WatermarkSettingsDialog.textAuto": "自動", "DE.Views.WatermarkSettingsDialog.textBold": "太字", - "DE.Views.WatermarkSettingsDialog.textColor": "テキスト色", + "DE.Views.WatermarkSettingsDialog.textColor": "文字の色", "DE.Views.WatermarkSettingsDialog.textDiagonal": "斜め", "DE.Views.WatermarkSettingsDialog.textFont": "フォント", "DE.Views.WatermarkSettingsDialog.textFromFile": "ファイルから", @@ -2828,13 +2819,13 @@ "DE.Views.WatermarkSettingsDialog.textLayout": "レイアウト", "DE.Views.WatermarkSettingsDialog.textNone": "なし", "DE.Views.WatermarkSettingsDialog.textScale": "規模", - "DE.Views.WatermarkSettingsDialog.textSelect": "画像を選択", + "DE.Views.WatermarkSettingsDialog.textSelect": "画像を選択する", "DE.Views.WatermarkSettingsDialog.textStrikeout": "取り消し線", "DE.Views.WatermarkSettingsDialog.textText": "テキスト", "DE.Views.WatermarkSettingsDialog.textTextW": "テキスト透かし", "DE.Views.WatermarkSettingsDialog.textTitle": "透かし設定", "DE.Views.WatermarkSettingsDialog.textTransparency": "半透明", - "DE.Views.WatermarkSettingsDialog.textUnderline": "下線", + "DE.Views.WatermarkSettingsDialog.textUnderline": "アンダーライン", "DE.Views.WatermarkSettingsDialog.tipFontName": "フォント名", "DE.Views.WatermarkSettingsDialog.tipFontSize": "フォントのサイズ" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/ko.json b/apps/documenteditor/main/locale/ko.json index a87f4e191..506a9dcd6 100644 --- a/apps/documenteditor/main/locale/ko.json +++ b/apps/documenteditor/main/locale/ko.json @@ -242,6 +242,7 @@ "Common.Views.Comments.textAddComment": "덧글 추가", "Common.Views.Comments.textAddCommentToDoc": "문서에 설명 추가", "Common.Views.Comments.textAddReply": "답장 추가", + "Common.Views.Comments.textAll": "모두", "Common.Views.Comments.textAnonym": "손님", "Common.Views.Comments.textCancel": "취소", "Common.Views.Comments.textClose": "닫기", @@ -902,6 +903,7 @@ "DE.Controllers.Toolbar.textMatrix": "Matrices", "DE.Controllers.Toolbar.textOperator": "연산자", "DE.Controllers.Toolbar.textRadical": "Radicals", + "DE.Controllers.Toolbar.textRecentlyUsed": "최근 사용된", "DE.Controllers.Toolbar.textScript": "스크립트", "DE.Controllers.Toolbar.textSymbols": "Symbols", "DE.Controllers.Toolbar.textTabForms": "폼", @@ -1647,7 +1649,7 @@ "DE.Views.FileMenu.btnCloseMenuCaption": "메뉴 닫기", "DE.Views.FileMenu.btnCreateNewCaption": "새로 만들기", "DE.Views.FileMenu.btnDownloadCaption": "다운로드 방법 ...", - "DE.Views.FileMenu.btnExitCaption": "나가기", + "DE.Views.FileMenu.btnExitCaption": "닫기", "DE.Views.FileMenu.btnFileOpenCaption": "열기", "DE.Views.FileMenu.btnHelpCaption": "Help ...", "DE.Views.FileMenu.btnHistoryCaption": "버전 기록", @@ -1677,8 +1679,10 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtLoading": "로드 중 ...", "DE.Views.FileMenuPanels.DocumentInfo.txtModifyBy": "최종 편집자", "DE.Views.FileMenuPanels.DocumentInfo.txtModifyDate": "최종 편집", + "DE.Views.FileMenuPanels.DocumentInfo.txtNo": "아니오", "DE.Views.FileMenuPanels.DocumentInfo.txtOwner": "소유자", "DE.Views.FileMenuPanels.DocumentInfo.txtPages": "Pages", + "DE.Views.FileMenuPanels.DocumentInfo.txtPageSize": "페이지 크기", "DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs": "단락", "DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "위치", "DE.Views.FileMenuPanels.DocumentInfo.txtRights": "권한이있는 사람", @@ -1689,6 +1693,7 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "문서 제목", "DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "업로드 되었습니다", "DE.Views.FileMenuPanels.DocumentInfo.txtWords": "단어", + "DE.Views.FileMenuPanels.DocumentInfo.txtYes": "예", "DE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "액세스 권한 변경", "DE.Views.FileMenuPanels.DocumentRights.txtRights": "권한이있는 사람", "DE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "경고", @@ -1704,21 +1709,12 @@ "DE.Views.FileMenuPanels.ProtectDoc.txtView": "서명 보기", "DE.Views.FileMenuPanels.Settings.okButtonText": "적용", "DE.Views.FileMenuPanels.Settings.strAlignGuides": "정렬 안내선 켜기", - "DE.Views.FileMenuPanels.Settings.strAutoRecover": "자동 검색 켜기", - "DE.Views.FileMenuPanels.Settings.strAutosave": "자동 저장 기능 켜기", "DE.Views.FileMenuPanels.Settings.strCoAuthMode": "공동 편집 모드", - "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "다른 사용자가 변경 사항을 즉시 보게됩니다", - "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "변경 사항을 확인하기 전에 변경 사항을 수락해야합니다.", "DE.Views.FileMenuPanels.Settings.strFast": "Fast", "DE.Views.FileMenuPanels.Settings.strFontRender": "글꼴 힌트", "DE.Views.FileMenuPanels.Settings.strForcesave": "저장과 동시에 서버에 업로드 (아니면 문서가 닫힐 때 업로드)", - "DE.Views.FileMenuPanels.Settings.strInputMode": "상형 문자 켜기", - "DE.Views.FileMenuPanels.Settings.strLiveComment": "주석 표시 켜기", "DE.Views.FileMenuPanels.Settings.strMacrosSettings": "매크로 설정", - "DE.Views.FileMenuPanels.Settings.strPaste": "잘라내기, 복사 및 붙여넣기", "DE.Views.FileMenuPanels.Settings.strPasteButton": "내용을 붙여넣을 때 \"붙여넣기 옵션\" 표시", - "DE.Views.FileMenuPanels.Settings.strResolvedComment": "해결 된 주석의 표시를 켜십시오", - "DE.Views.FileMenuPanels.Settings.strReviewHover": "변경 내용 추적 표시", "DE.Views.FileMenuPanels.Settings.strShowChanges": "실시간 협업 변경 사항", "DE.Views.FileMenuPanels.Settings.strSpellCheckMode": "맞춤법 검사 옵션 켜기", "DE.Views.FileMenuPanels.Settings.strStrict": "Strict", @@ -1884,6 +1880,7 @@ "DE.Views.ImageSettings.textHintFlipV": "상하대칭", "DE.Views.ImageSettings.textInsert": "이미지 바꾸기", "DE.Views.ImageSettings.textOriginalSize": "실제 크기", + "DE.Views.ImageSettings.textRecentlyUsed": "최근 사용된", "DE.Views.ImageSettings.textRotate90": "90도 회전", "DE.Views.ImageSettings.textRotation": "회전", "DE.Views.ImageSettings.textSize": "크기", @@ -2020,7 +2017,7 @@ "DE.Views.Links.textGotoFootnote": "각주로 이동", "DE.Views.Links.textSwapNotes": "각주와 미주 바꾸기", "DE.Views.Links.textUpdateAll": "전체 테이블을 새로고침하세요", - "DE.Views.Links.textUpdatePages": "페이지 번호만 새로고침하세요", + "DE.Views.Links.textUpdatePages": "페이지 번호만 업테이트 하세요", "DE.Views.Links.tipBookmarks": "책갈피 만들기", "DE.Views.Links.tipCaption": "캡션 삽입", "DE.Views.Links.tipContents": "콘텐트 테이블 삽입", @@ -2290,6 +2287,7 @@ "DE.Views.ShapeSettings.textPatternFill": "패턴", "DE.Views.ShapeSettings.textPosition": "위치", "DE.Views.ShapeSettings.textRadial": "방사형", + "DE.Views.ShapeSettings.textRecentlyUsed": "최근 사용된", "DE.Views.ShapeSettings.textRotate90": "90도 회전", "DE.Views.ShapeSettings.textRotation": "회전", "DE.Views.ShapeSettings.textSelectImage": "그림선택", @@ -2681,6 +2679,7 @@ "DE.Views.Toolbar.textTabLinks": "참조", "DE.Views.Toolbar.textTabProtect": "보호", "DE.Views.Toolbar.textTabReview": "다시보기", + "DE.Views.Toolbar.textTabView": "뷰", "DE.Views.Toolbar.textTitleError": "오류", "DE.Views.Toolbar.textToCurrent": "현재 위치로", "DE.Views.Toolbar.textTop": "Top :", @@ -2772,6 +2771,11 @@ "DE.Views.Toolbar.txtScheme7": "Equity", "DE.Views.Toolbar.txtScheme8": "흐름", "DE.Views.Toolbar.txtScheme9": "주조", + "DE.Views.ViewTab.textFitToPage": "페이지에 맞춤", + "DE.Views.ViewTab.textFitToWidth": "너비에 맞춤", + "DE.Views.ViewTab.textInterfaceTheme": "인터페이스 테마", + "DE.Views.ViewTab.textNavigation": "네비게이션", + "DE.Views.ViewTab.textZoom": "확대 / 축소", "DE.Views.WatermarkSettingsDialog.textAuto": "자동", "DE.Views.WatermarkSettingsDialog.textBold": "굵게", "DE.Views.WatermarkSettingsDialog.textColor": "글꼴색", diff --git a/apps/documenteditor/main/locale/lo.json b/apps/documenteditor/main/locale/lo.json index fef9fb281..0bac7e6b1 100644 --- a/apps/documenteditor/main/locale/lo.json +++ b/apps/documenteditor/main/locale/lo.json @@ -1722,21 +1722,12 @@ "DE.Views.FileMenuPanels.ProtectDoc.txtView": "ເບິ່ງລາຍເຊັນ", "DE.Views.FileMenuPanels.Settings.okButtonText": "ໃຊ້", "DE.Views.FileMenuPanels.Settings.strAlignGuides": "ເປີດຄູ່ມືການຈັດຕໍາແໜ່ງ", - "DE.Views.FileMenuPanels.Settings.strAutoRecover": "ເປີດໃຊ້ງານອັດຕະໂນມັດ", - "DE.Views.FileMenuPanels.Settings.strAutosave": "ເປີດໃຊ້ງານອັດຕະໂນມັດ", "DE.Views.FileMenuPanels.Settings.strCoAuthMode": "ໂຫມດແກ້ໄຂຮ່ວມກັນ", - "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "ຜູ້ໃຊ້ຊື່ອຶ່ນຈະເຫັນການປ່ຽນແປງຂອງເຈົ້າ", - "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "ທ່ານຈະຕ້ອງຍອມຮັບການປ່ຽນແປງກ່ອນທີ່ທ່ານຈະເຫັນການປ່ຽນແປງ", "DE.Views.FileMenuPanels.Settings.strFast": "ໄວ", "DE.Views.FileMenuPanels.Settings.strFontRender": "ຕົວອັກສອນມົວ ບໍ່ເເຈ້ງ", "DE.Views.FileMenuPanels.Settings.strForcesave": "ເກັບຮັກສາໄວ້ໃນເຊີບເວີຢູ່ສະເໝີ (ຫຼືບັນທຶກໄວ້ໃນເຊີເວີເມື່ອປິດເອກະສານ)", - "DE.Views.FileMenuPanels.Settings.strInputMode": "ເປີດກາຟີຣກ", - "DE.Views.FileMenuPanels.Settings.strLiveComment": "ເປີດການສະແດງ ຄຳ ເຫັນ", "DE.Views.FileMenuPanels.Settings.strMacrosSettings": "ການຕັ້ງຄ່າ Macros", - "DE.Views.FileMenuPanels.Settings.strPaste": "ຕັດ, ສຳເນົາ ແລະ ວາງ", "DE.Views.FileMenuPanels.Settings.strPasteButton": "ສະແດງປຸ່ມເລືອກວາງ ເມື່ອເນື້ອຫາໄດ້ຖືກຄັດຕິດ", - "DE.Views.FileMenuPanels.Settings.strResolvedComment": "ເປີດການສະແດງ ຄຳ ເຫັນທີ່ຖືກແກ້ໄຂ", - "DE.Views.FileMenuPanels.Settings.strReviewHover": "ຕິດຕາມການປ່ຽນແປງການສະແດງ", "DE.Views.FileMenuPanels.Settings.strShowChanges": "ການແກ້່ໄຂຮ່ວມກັນແບບ ReaL time", "DE.Views.FileMenuPanels.Settings.strSpellCheckMode": "ເປີດຕົວເລືອກການກວດສອບການສະກົດຄໍາ", "DE.Views.FileMenuPanels.Settings.strStrict": "ເຂັ້ມງວດ, ໂຕເຂັ້ມ", diff --git a/apps/documenteditor/main/locale/lv.json b/apps/documenteditor/main/locale/lv.json index 736e66846..35882dd72 100644 --- a/apps/documenteditor/main/locale/lv.json +++ b/apps/documenteditor/main/locale/lv.json @@ -1079,17 +1079,10 @@ "DE.Views.FileMenuPanels.ProtectDoc.txtView": "Apskatīt parakstus", "DE.Views.FileMenuPanels.Settings.okButtonText": "Piemērot", "DE.Views.FileMenuPanels.Settings.strAlignGuides": "Turn on alignment guides", - "DE.Views.FileMenuPanels.Settings.strAutoRecover": "Ieslēgt automātisko atjaunošanu", - "DE.Views.FileMenuPanels.Settings.strAutosave": "Turn on autosave", "DE.Views.FileMenuPanels.Settings.strCoAuthMode": "Co-editing mode", - "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Other users will see your changes at once", - "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "You will need to accept changes before you can see them", "DE.Views.FileMenuPanels.Settings.strFast": "Fast", "DE.Views.FileMenuPanels.Settings.strFontRender": "Font Hinting", "DE.Views.FileMenuPanels.Settings.strForcesave": "Vienmēr noglabāt serverī (pretējā gadījumā noglabāt serverī dokumenta aizvēršanas laikā)", - "DE.Views.FileMenuPanels.Settings.strInputMode": "Ieslēgt hieroglifu", - "DE.Views.FileMenuPanels.Settings.strLiveComment": "Ieslēgtu dzīvo komentēšanas opciju", - "DE.Views.FileMenuPanels.Settings.strResolvedComment": "Iespējot atrisināto komentāru rādīšanu", "DE.Views.FileMenuPanels.Settings.strShowChanges": "Reāllaika Sadarbības Izmaiņas", "DE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Turn on spell checking option", "DE.Views.FileMenuPanels.Settings.strStrict": "Strict", diff --git a/apps/documenteditor/main/locale/nb.json b/apps/documenteditor/main/locale/nb.json index 47f25a79a..d5a291b3c 100644 --- a/apps/documenteditor/main/locale/nb.json +++ b/apps/documenteditor/main/locale/nb.json @@ -405,7 +405,6 @@ "DE.Views.FileMenuPanels.Settings.okButtonText": "Bruk", "DE.Views.FileMenuPanels.Settings.strFast": "Hurtig", "DE.Views.FileMenuPanels.Settings.strForcesave": "Lagre alltid til tjeneren (eller lagre til tjeneren når dokumentet lukkes)", - "DE.Views.FileMenuPanels.Settings.strPaste": "Klipp ut, kopier og lim inn", "DE.Views.FileMenuPanels.Settings.strZoom": "Standard zoom-verdi", "DE.Views.FileMenuPanels.Settings.text10Minutes": "Hvert 10. minutt", "DE.Views.FileMenuPanels.Settings.text30Minutes": "Hvert 30. minutt", diff --git a/apps/documenteditor/main/locale/nl.json b/apps/documenteditor/main/locale/nl.json index d4d84b978..03a35781d 100644 --- a/apps/documenteditor/main/locale/nl.json +++ b/apps/documenteditor/main/locale/nl.json @@ -1715,21 +1715,12 @@ "DE.Views.FileMenuPanels.ProtectDoc.txtView": "Toon handtekeningen", "DE.Views.FileMenuPanels.Settings.okButtonText": "Toepassen", "DE.Views.FileMenuPanels.Settings.strAlignGuides": "Uitlijningshulplijnen inschakelen", - "DE.Views.FileMenuPanels.Settings.strAutoRecover": "AutoHerstel inschakelen", - "DE.Views.FileMenuPanels.Settings.strAutosave": "Automatisch opslaan inschakelen", "DE.Views.FileMenuPanels.Settings.strCoAuthMode": "Modus Gezamenlijk bewerken", - "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Andere gebruikers zien uw wijzigingen onmiddellijk", - "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "U moet de wijzigingen accepteren om die te kunnen zien", "DE.Views.FileMenuPanels.Settings.strFast": "Snel", "DE.Views.FileMenuPanels.Settings.strFontRender": "Hints voor lettertype", "DE.Views.FileMenuPanels.Settings.strForcesave": "Altijd op server opslaan (anders op server opslaan bij sluiten document)", - "DE.Views.FileMenuPanels.Settings.strInputMode": "Hiërogliefen inschakelen", - "DE.Views.FileMenuPanels.Settings.strLiveComment": "Weergave van opmerkingen inschakelen", "DE.Views.FileMenuPanels.Settings.strMacrosSettings": "Macro instellingen", - "DE.Views.FileMenuPanels.Settings.strPaste": "Knippen, kopiëren en plakken", "DE.Views.FileMenuPanels.Settings.strPasteButton": "Toon de knop Plakopties wanneer de inhoud is geplakt", - "DE.Views.FileMenuPanels.Settings.strResolvedComment": "Weergave van opgeloste opmerkingen inschakelen", - "DE.Views.FileMenuPanels.Settings.strReviewHover": "Bijgehouden wijzigingen weergeven", "DE.Views.FileMenuPanels.Settings.strShowChanges": "Wijzigingen in realtime samenwerking", "DE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Optie voor spellingcontrole inschakelen", "DE.Views.FileMenuPanels.Settings.strStrict": "Strikt", diff --git a/apps/documenteditor/main/locale/pl.json b/apps/documenteditor/main/locale/pl.json index 4a6a17c38..a560b9b14 100644 --- a/apps/documenteditor/main/locale/pl.json +++ b/apps/documenteditor/main/locale/pl.json @@ -1704,21 +1704,12 @@ "DE.Views.FileMenuPanels.ProtectDoc.txtView": "Zobacz sygnatury", "DE.Views.FileMenuPanels.Settings.okButtonText": "Zatwierdź", "DE.Views.FileMenuPanels.Settings.strAlignGuides": "Włącz prowadnice wyrównania", - "DE.Views.FileMenuPanels.Settings.strAutoRecover": "Włącz auto odzyskiwanie", - "DE.Views.FileMenuPanels.Settings.strAutosave": "Włącz automatyczny zapis", "DE.Views.FileMenuPanels.Settings.strCoAuthMode": "Tryb współtworzenia", - "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Zobaczysz zmiany innych użytkowników od razu", - "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "Zanim będziesz mógł zobaczyć zmiany wprowadzone przez innych użytkowników, musisz je najpierw zaakceptować.", "DE.Views.FileMenuPanels.Settings.strFast": "Szybki", "DE.Views.FileMenuPanels.Settings.strFontRender": "Podpowiedź czcionki", "DE.Views.FileMenuPanels.Settings.strForcesave": "Dodaj wersję do pamięci po kliknięciu przycisku Zapisz lub Ctrl+S", - "DE.Views.FileMenuPanels.Settings.strInputMode": "Włącz hieroglify", - "DE.Views.FileMenuPanels.Settings.strLiveComment": "Włącz wyświetlanie komentarzy", "DE.Views.FileMenuPanels.Settings.strMacrosSettings": "Ustawienia Makr", - "DE.Views.FileMenuPanels.Settings.strPaste": "Wycinanie, kopiowanie i wklejanie", "DE.Views.FileMenuPanels.Settings.strPasteButton": "Pokaż przycisk opcji wklejania po wklejeniu zawartości", - "DE.Views.FileMenuPanels.Settings.strResolvedComment": "Włącz wyświetlanie rozwiązanych komentarzy", - "DE.Views.FileMenuPanels.Settings.strReviewHover": "Wyświetlanie zmian podczas przeglądania", "DE.Views.FileMenuPanels.Settings.strShowChanges": "Zmiany w czasie rzeczywistym podczas współtworzenia", "DE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Włącz sprawdzanie pisowni", "DE.Views.FileMenuPanels.Settings.strStrict": "Ścisły", diff --git a/apps/documenteditor/main/locale/pt-PT.json b/apps/documenteditor/main/locale/pt-PT.json index 2ab1ad0a0..03c641d13 100644 --- a/apps/documenteditor/main/locale/pt-PT.json +++ b/apps/documenteditor/main/locale/pt-PT.json @@ -1284,10 +1284,6 @@ "DE.Views.CellsAddDialog.textRow": "Linhas", "DE.Views.CellsAddDialog.textTitle": "Insira vários", "DE.Views.CellsAddDialog.textUp": "Acima do cursor", - "DE.Views.CellsRemoveDialog.textCol": "Eliminar toda a coluna", - "DE.Views.CellsRemoveDialog.textLeft": "Deslocar células para a esquerda", - "DE.Views.CellsRemoveDialog.textRow": "Eliminar a linha inteira", - "DE.Views.CellsRemoveDialog.textTitle": "Eliminar células", "DE.Views.ChartSettings.textAdvanced": "Mostrar definições avançadas", "DE.Views.ChartSettings.textChartType": "Alterar tipo de gráfico", "DE.Views.ChartSettings.textEditData": "Editar dados", @@ -1306,10 +1302,6 @@ "DE.Views.ChartSettings.txtTight": "Justo", "DE.Views.ChartSettings.txtTitle": "Gráfico", "DE.Views.ChartSettings.txtTopAndBottom": "Parte superior e inferior", - "DE.Views.CompareSettingsDialog.textChar": "Nível de carácter", - "DE.Views.CompareSettingsDialog.textShow": "Mostrar alterações em", - "DE.Views.CompareSettingsDialog.textTitle": "Definições de comparação", - "DE.Views.CompareSettingsDialog.textWord": "Nível de palavra", "DE.Views.ControlSettingsDialog.strGeneral": "Geral", "DE.Views.ControlSettingsDialog.textAdd": "Adicionar", "DE.Views.ControlSettingsDialog.textAppearance": "Aparência", @@ -1731,21 +1723,12 @@ "DE.Views.FileMenuPanels.ProtectDoc.txtView": "Ver assinaturas", "DE.Views.FileMenuPanels.Settings.okButtonText": "Aplicar", "DE.Views.FileMenuPanels.Settings.strAlignGuides": "Ativar guias de alinhamento", - "DE.Views.FileMenuPanels.Settings.strAutoRecover": "Ativar recuperação automática", - "DE.Views.FileMenuPanels.Settings.strAutosave": "Ativar salvamento automático", "DE.Views.FileMenuPanels.Settings.strCoAuthMode": "Modo de co-edição", - "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Outros utilizadores verão as suas alterações de uma vez", - "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "You will need to accept changes before you can see them", "DE.Views.FileMenuPanels.Settings.strFast": "Rápido", "DE.Views.FileMenuPanels.Settings.strFontRender": "Dicas de fonte", "DE.Views.FileMenuPanels.Settings.strForcesave": "Guardar sempre no servidor (caso contrário, guardar no servidor ao fechar o documento)", - "DE.Views.FileMenuPanels.Settings.strInputMode": "Ativar hieróglifos", - "DE.Views.FileMenuPanels.Settings.strLiveComment": "Ligar a exibição dos comentários", "DE.Views.FileMenuPanels.Settings.strMacrosSettings": "Definições de macros", - "DE.Views.FileMenuPanels.Settings.strPaste": "Cortar, copiar e colar", "DE.Views.FileMenuPanels.Settings.strPasteButton": "Mostrar botão Opções de colagem ao colar conteúdo", - "DE.Views.FileMenuPanels.Settings.strResolvedComment": "Aceder à visualização dos comentários resolvidos", - "DE.Views.FileMenuPanels.Settings.strReviewHover": "Visualização de Registar Alterações", "DE.Views.FileMenuPanels.Settings.strShowChanges": "Alterações de colaboração em tempo real", "DE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Ativar a opção de verificação ortográfica", "DE.Views.FileMenuPanels.Settings.strStrict": "Estrito", @@ -2340,13 +2323,13 @@ "DE.Views.ShapeSettings.txtBrownPaper": "Papel pardo", "DE.Views.ShapeSettings.txtCanvas": "Canvas", "DE.Views.ShapeSettings.txtCarton": "Cartão", - "DE.Views.ShapeSettings.txtDarkFabric": "Tecido escuro", + "DE.Views.ShapeSettings.txtDarkFabric": "Tela escura", "DE.Views.ShapeSettings.txtGrain": "Granulação", "DE.Views.ShapeSettings.txtGranite": "Granito", "DE.Views.ShapeSettings.txtGreyPaper": "Papel cinza", "DE.Views.ShapeSettings.txtInFront": "Em frente", "DE.Views.ShapeSettings.txtInline": "Em Linha com o Texto", - "DE.Views.ShapeSettings.txtKnit": "Encontro", + "DE.Views.ShapeSettings.txtKnit": "Unir", "DE.Views.ShapeSettings.txtLeather": "Couro", "DE.Views.ShapeSettings.txtNoBorders": "Sem linha", "DE.Views.ShapeSettings.txtPapyrus": "Papiro", @@ -2764,9 +2747,12 @@ "DE.Views.Toolbar.tipLineSpace": "Espaçamento entre linhas do parágrafo", "DE.Views.Toolbar.tipMailRecepients": "Select Recepients", "DE.Views.Toolbar.tipMarkers": "Marcadores", - "DE.Views.Toolbar.tipMarkersArrow": "Marcadores de setas", + "DE.Views.Toolbar.tipMarkersArrow": "Marcas em Seta", "DE.Views.Toolbar.tipMarkersCheckmark": "Marcas de verificação", "DE.Views.Toolbar.tipMarkersDash": "Marcadores de traços", + "DE.Views.Toolbar.tipMarkersFRhombus": "Listas Rômbicas Preenchidas", + "DE.Views.Toolbar.tipMarkersFRound": "Listas Redondas Preenchidas", + "DE.Views.Toolbar.tipMarkersFSquare": "Listas Quadradas Preenchidas", "DE.Views.Toolbar.tipMarkersHRound": "Marcas de lista redondas vazias", "DE.Views.Toolbar.tipMarkersStar": "Marcas em estrela", "DE.Views.Toolbar.tipMultiLevelNumbered": "Listas Multiníveis Numeradas ", diff --git a/apps/documenteditor/main/locale/pt.json b/apps/documenteditor/main/locale/pt.json index 8d492aa75..29a174105 100644 --- a/apps/documenteditor/main/locale/pt.json +++ b/apps/documenteditor/main/locale/pt.json @@ -1719,21 +1719,12 @@ "DE.Views.FileMenuPanels.ProtectDoc.txtView": "Visualizar assinaturas", "DE.Views.FileMenuPanels.Settings.okButtonText": "Aplicar", "DE.Views.FileMenuPanels.Settings.strAlignGuides": "Ativar guias de alinhamento", - "DE.Views.FileMenuPanels.Settings.strAutoRecover": "Ativar recuperação automática", - "DE.Views.FileMenuPanels.Settings.strAutosave": "Ativar salvamento automático", "DE.Views.FileMenuPanels.Settings.strCoAuthMode": "Modo de Coedição", - "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Outros usuários verão todas as suas alterações.", - "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "You will need to accept changes before you can see them", "DE.Views.FileMenuPanels.Settings.strFast": "Rápido", "DE.Views.FileMenuPanels.Settings.strFontRender": "Dicas de fonte", "DE.Views.FileMenuPanels.Settings.strForcesave": "Sempre salvar para o servidor (caso contrário, salvar para servidor no documento fechado)", - "DE.Views.FileMenuPanels.Settings.strInputMode": "Ativar hieróglifos", - "DE.Views.FileMenuPanels.Settings.strLiveComment": "Ativar opção comentário ao vivo", "DE.Views.FileMenuPanels.Settings.strMacrosSettings": "Configurações de macros", - "DE.Views.FileMenuPanels.Settings.strPaste": "Cortar, copiar e colar", "DE.Views.FileMenuPanels.Settings.strPasteButton": "Mostrar o botão Opções de colagem quando o conteúdo for colado", - "DE.Views.FileMenuPanels.Settings.strResolvedComment": "Ativar exibição dos comentários resolvidos", - "DE.Views.FileMenuPanels.Settings.strReviewHover": "Visualização de mudanças de trilha", "DE.Views.FileMenuPanels.Settings.strShowChanges": "Alterações de colaboração em tempo real", "DE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Ativar a opção de verificação ortográfica", "DE.Views.FileMenuPanels.Settings.strStrict": "Estrito", diff --git a/apps/documenteditor/main/locale/ro.json b/apps/documenteditor/main/locale/ro.json index 02acbff66..dd34bdfff 100644 --- a/apps/documenteditor/main/locale/ro.json +++ b/apps/documenteditor/main/locale/ro.json @@ -1727,21 +1727,12 @@ "DE.Views.FileMenuPanels.ProtectDoc.txtView": "Vizualizare semnături", "DE.Views.FileMenuPanels.Settings.okButtonText": "Aplicare", "DE.Views.FileMenuPanels.Settings.strAlignGuides": "Activare ghiduri de aliniere", - "DE.Views.FileMenuPanels.Settings.strAutoRecover": "Activare recuperare automată", - "DE.Views.FileMenuPanels.Settings.strAutosave": "Activare salvare automată", "DE.Views.FileMenuPanels.Settings.strCoAuthMode": "Modul de editare colaborativă", - "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Ceilalți utilizatori vor putea vedea modificările dvs imediat", - "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "Pentru a vizualiza modificările, trebuie mai întâi să le acceptați", "DE.Views.FileMenuPanels.Settings.strFast": "Rapid", "DE.Views.FileMenuPanels.Settings.strFontRender": "Sugestie font", "DE.Views.FileMenuPanels.Settings.strForcesave": "Versiunea se adaugă la stocarea după ce faceți clic pe Salvare sau Ctrl+S", - "DE.Views.FileMenuPanels.Settings.strInputMode": "Activare hieroglife", - "DE.Views.FileMenuPanels.Settings.strLiveComment": "Activarea afișare comentarii", "DE.Views.FileMenuPanels.Settings.strMacrosSettings": "Setări macrocomandă", - "DE.Views.FileMenuPanels.Settings.strPaste": "Decupare, copiere și lipire", "DE.Views.FileMenuPanels.Settings.strPasteButton": "Afișarea butonului Opțiuni lipire de fiecare dată când lipiți conținut", - "DE.Views.FileMenuPanels.Settings.strResolvedComment": "Activarea afișare comentarii rezolvate", - "DE.Views.FileMenuPanels.Settings.strReviewHover": "Afișarea modificărilor urmărite", "DE.Views.FileMenuPanels.Settings.strShowChanges": "Modificările aduse documentului la colaborarea în timp real", "DE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Activarea verificare ortografică", "DE.Views.FileMenuPanels.Settings.strStrict": "Strict", diff --git a/apps/documenteditor/main/locale/ru.json b/apps/documenteditor/main/locale/ru.json index a905ad454..065187092 100644 --- a/apps/documenteditor/main/locale/ru.json +++ b/apps/documenteditor/main/locale/ru.json @@ -1728,21 +1728,12 @@ "DE.Views.FileMenuPanels.ProtectDoc.txtView": "Просмотр подписей", "DE.Views.FileMenuPanels.Settings.okButtonText": "Применить", "DE.Views.FileMenuPanels.Settings.strAlignGuides": "Включить направляющие выравнивания", - "DE.Views.FileMenuPanels.Settings.strAutoRecover": "Включить автовосстановление", - "DE.Views.FileMenuPanels.Settings.strAutosave": "Включить автосохранение", "DE.Views.FileMenuPanels.Settings.strCoAuthMode": "Режим совместного редактирования", - "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Другие пользователи будут сразу же видеть ваши изменения", - "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "Прежде чем вы сможете увидеть изменения, их надо будет принять", "DE.Views.FileMenuPanels.Settings.strFast": "Быстрый", "DE.Views.FileMenuPanels.Settings.strFontRender": "Хинтинг шрифтов", "DE.Views.FileMenuPanels.Settings.strForcesave": "Добавлять версию в хранилище после нажатия кнопки Сохранить или Ctrl+S", - "DE.Views.FileMenuPanels.Settings.strInputMode": "Включить иероглифы", - "DE.Views.FileMenuPanels.Settings.strLiveComment": "Включить отображение комментариев в тексте", "DE.Views.FileMenuPanels.Settings.strMacrosSettings": "Настройки макросов", - "DE.Views.FileMenuPanels.Settings.strPaste": "Вырезание, копирование и вставка", "DE.Views.FileMenuPanels.Settings.strPasteButton": "Показывать кнопку Параметры вставки при вставке содержимого", - "DE.Views.FileMenuPanels.Settings.strResolvedComment": "Включить отображение решенных комментариев", - "DE.Views.FileMenuPanels.Settings.strReviewHover": "Отображение изменений при рецензировании", "DE.Views.FileMenuPanels.Settings.strShowChanges": "Отображать изменения при совместной работе", "DE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Включить проверку орфографии", "DE.Views.FileMenuPanels.Settings.strStrict": "Строгий", diff --git a/apps/documenteditor/main/locale/sk.json b/apps/documenteditor/main/locale/sk.json index b29cfbdc5..be69cf270 100644 --- a/apps/documenteditor/main/locale/sk.json +++ b/apps/documenteditor/main/locale/sk.json @@ -1719,21 +1719,12 @@ "DE.Views.FileMenuPanels.ProtectDoc.txtView": "Zobraziť podpisy", "DE.Views.FileMenuPanels.Settings.okButtonText": "Použiť", "DE.Views.FileMenuPanels.Settings.strAlignGuides": "Zapnúť tipy zarovnávania", - "DE.Views.FileMenuPanels.Settings.strAutoRecover": "Zapnúť automatickú obnovu", - "DE.Views.FileMenuPanels.Settings.strAutosave": "Zapnúť automatické ukladanie", "DE.Views.FileMenuPanels.Settings.strCoAuthMode": "Režim spoločnej úpravy", - "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Ostatní používatelia uvidia Vaše zmeny naraz", - "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "Musíte akceptovať zmeny pretým ako ich uvidíte ", "DE.Views.FileMenuPanels.Settings.strFast": "Rýchly", "DE.Views.FileMenuPanels.Settings.strFontRender": "Náznak typu písma", "DE.Views.FileMenuPanels.Settings.strForcesave": "Pridaj verziu na úložisko kliknutím na Uložiť alebo Ctrl+S", - "DE.Views.FileMenuPanels.Settings.strInputMode": "Zapnúť hieroglyfy", - "DE.Views.FileMenuPanels.Settings.strLiveComment": "Zapnúť zobrazovanie komentárov", "DE.Views.FileMenuPanels.Settings.strMacrosSettings": "Nastavenia makier", - "DE.Views.FileMenuPanels.Settings.strPaste": "Vystrihni, skopíruj a vlep", "DE.Views.FileMenuPanels.Settings.strPasteButton": "Po vložení obsahu ukázať tlačítko Možnosti vloženia", - "DE.Views.FileMenuPanels.Settings.strResolvedComment": "Zapnúť zobrazenie vyriešených komentárov", - "DE.Views.FileMenuPanels.Settings.strReviewHover": "Zobraziť sledovanie zmien", "DE.Views.FileMenuPanels.Settings.strShowChanges": "Zmeny spolupráce v reálnom čase", "DE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Zapnúť kontrolu pravopisu", "DE.Views.FileMenuPanels.Settings.strStrict": "Prísny", diff --git a/apps/documenteditor/main/locale/sl.json b/apps/documenteditor/main/locale/sl.json index 44d7b8e9c..a6caaaa87 100644 --- a/apps/documenteditor/main/locale/sl.json +++ b/apps/documenteditor/main/locale/sl.json @@ -1202,16 +1202,10 @@ "DE.Views.FileMenuPanels.ProtectDoc.txtEdit": "Uredi dokument", "DE.Views.FileMenuPanels.Settings.okButtonText": "Uporabi", "DE.Views.FileMenuPanels.Settings.strAlignGuides": "Vključi vodnike poravnave", - "DE.Views.FileMenuPanels.Settings.strAutosave": "Vključi samodejno shranjevanje", "DE.Views.FileMenuPanels.Settings.strCoAuthMode": "Co-editing mode", - "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Other users will see your changes at once", - "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "You will need to accept changes before you can see them", "DE.Views.FileMenuPanels.Settings.strFast": "Fast", "DE.Views.FileMenuPanels.Settings.strFontRender": "Namigovanje pisave", "DE.Views.FileMenuPanels.Settings.strForcesave": "Vedno shrani na strežnik (sicer shrani na strežnik ob zapiranju dokumenta)", - "DE.Views.FileMenuPanels.Settings.strInputMode": "Vključi hieroglife", - "DE.Views.FileMenuPanels.Settings.strLiveComment": "Vključi možnost živega komentiranja", - "DE.Views.FileMenuPanels.Settings.strPaste": "Izreži, kopiraj in prilepi", "DE.Views.FileMenuPanels.Settings.strShowChanges": "Sprotne spremembe sodelovanja", "DE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Vključi možnost preverjanja črkovanja", "DE.Views.FileMenuPanels.Settings.strStrict": "Strict", diff --git a/apps/documenteditor/main/locale/sv.json b/apps/documenteditor/main/locale/sv.json index c7f97a05a..90c03b301 100644 --- a/apps/documenteditor/main/locale/sv.json +++ b/apps/documenteditor/main/locale/sv.json @@ -1719,21 +1719,12 @@ "DE.Views.FileMenuPanels.ProtectDoc.txtView": "Visa signaturer", "DE.Views.FileMenuPanels.Settings.okButtonText": "Tillämpa", "DE.Views.FileMenuPanels.Settings.strAlignGuides": "Aktivera justeringsguider", - "DE.Views.FileMenuPanels.Settings.strAutoRecover": "Aktivera automatisk återställning", - "DE.Views.FileMenuPanels.Settings.strAutosave": "Aktivera spara automatiskt", "DE.Views.FileMenuPanels.Settings.strCoAuthMode": "Redigera samtidigt", - "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Andra användare vill se dina ändringar direkt", - "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "Du måste acceptera ändringar innan du kan se dom", "DE.Views.FileMenuPanels.Settings.strFast": "Snabb", "DE.Views.FileMenuPanels.Settings.strFontRender": "Fontförslag", "DE.Views.FileMenuPanels.Settings.strForcesave": "Lägg till version till lagringen efter att ha klickat på Spara eller CTRL+S", - "DE.Views.FileMenuPanels.Settings.strInputMode": "Aktivera hieroglyfer", - "DE.Views.FileMenuPanels.Settings.strLiveComment": "Aktivera visning av kommentarer", "DE.Views.FileMenuPanels.Settings.strMacrosSettings": "Makroinställningar", - "DE.Views.FileMenuPanels.Settings.strPaste": "Klipp ut, kopiera och klistra in", "DE.Views.FileMenuPanels.Settings.strPasteButton": "Visa knappen Klistra in alternativ när innehållet klistras in", - "DE.Views.FileMenuPanels.Settings.strResolvedComment": "Aktivera visning av lösta kommentarer", - "DE.Views.FileMenuPanels.Settings.strReviewHover": "Visa spåra ändringar", "DE.Views.FileMenuPanels.Settings.strShowChanges": "Samarbeta i realtid", "DE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Aktivera stavningskontroll", "DE.Views.FileMenuPanels.Settings.strStrict": "Strikt", diff --git a/apps/documenteditor/main/locale/tr.json b/apps/documenteditor/main/locale/tr.json index d62bc1a6d..c1a89d1e3 100644 --- a/apps/documenteditor/main/locale/tr.json +++ b/apps/documenteditor/main/locale/tr.json @@ -1714,21 +1714,12 @@ "DE.Views.FileMenuPanels.ProtectDoc.txtView": "İmzaları görüntüle", "DE.Views.FileMenuPanels.Settings.okButtonText": "Uygula", "DE.Views.FileMenuPanels.Settings.strAlignGuides": "Hizalama kılavuzlarını aç", - "DE.Views.FileMenuPanels.Settings.strAutoRecover": "Otomatik kaydetmeyi aç", - "DE.Views.FileMenuPanels.Settings.strAutosave": "Otomatik kaydetmeyi aç", "DE.Views.FileMenuPanels.Settings.strCoAuthMode": "Ortak Düzenleme Modu", - "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Other users will see your changes at once", - "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "You will need to accept changes before you can see them", "DE.Views.FileMenuPanels.Settings.strFast": "Fast", "DE.Views.FileMenuPanels.Settings.strFontRender": "Yazı Tipi İpucu", "DE.Views.FileMenuPanels.Settings.strForcesave": "Kaydet veya Ctrl+S'ye tıkladıktan sonra sürümü depolamaya ekleyin", - "DE.Views.FileMenuPanels.Settings.strInputMode": "Hiyeroglifleri aç", - "DE.Views.FileMenuPanels.Settings.strLiveComment": "Canlı yorum yapma seçeneğini aç", "DE.Views.FileMenuPanels.Settings.strMacrosSettings": "Makro Ayarları", - "DE.Views.FileMenuPanels.Settings.strPaste": "Kes, kopyala ve yapıştır", "DE.Views.FileMenuPanels.Settings.strPasteButton": "İçerik yapıştırıldığında Yapıştırma Seçenekleri düğmesini göster", - "DE.Views.FileMenuPanels.Settings.strResolvedComment": "Çözülmüş yorumların görünümünü aç", - "DE.Views.FileMenuPanels.Settings.strReviewHover": "Değişiklikleri İzle Ekranı", "DE.Views.FileMenuPanels.Settings.strShowChanges": "Gerçek Zamanlı Ortak Düzenleme Değişiklikleri", "DE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Yazım denetimi seçeneğini aç", "DE.Views.FileMenuPanels.Settings.strStrict": "Strict", diff --git a/apps/documenteditor/main/locale/uk.json b/apps/documenteditor/main/locale/uk.json index 274183bf0..8fafe542d 100644 --- a/apps/documenteditor/main/locale/uk.json +++ b/apps/documenteditor/main/locale/uk.json @@ -1715,21 +1715,12 @@ "DE.Views.FileMenuPanels.ProtectDoc.txtView": "Переглянути підписи", "DE.Views.FileMenuPanels.Settings.okButtonText": "Застосувати", "DE.Views.FileMenuPanels.Settings.strAlignGuides": "Увімкніть посібники для вирівнювання", - "DE.Views.FileMenuPanels.Settings.strAutoRecover": "Увімкніть автозапуск", - "DE.Views.FileMenuPanels.Settings.strAutosave": "Увімкніть автоматичне збереження", "DE.Views.FileMenuPanels.Settings.strCoAuthMode": "Спільне редагування", - "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Інші користувачі побачать ваші зміни одразу", - "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "Вам потрібно буде прийняти зміни, перш ніж побачити їх", "DE.Views.FileMenuPanels.Settings.strFast": "Швидко", "DE.Views.FileMenuPanels.Settings.strFontRender": "Підказки шрифта", "DE.Views.FileMenuPanels.Settings.strForcesave": "Додавати версію до сховища після натискання кнопки Зберегти або Ctrl+S", - "DE.Views.FileMenuPanels.Settings.strInputMode": "Увімкніть ієрогліфи", - "DE.Views.FileMenuPanels.Settings.strLiveComment": "Показувати коментарі", "DE.Views.FileMenuPanels.Settings.strMacrosSettings": "Налаштування макросів", - "DE.Views.FileMenuPanels.Settings.strPaste": "Вирізання, копіювання та вставка", "DE.Views.FileMenuPanels.Settings.strPasteButton": "Показувати кнопку Налаштування ставки при вставці вмісту", - "DE.Views.FileMenuPanels.Settings.strResolvedComment": "Показувати вирішені зауваження", - "DE.Views.FileMenuPanels.Settings.strReviewHover": "Показ змін під час рецензування", "DE.Views.FileMenuPanels.Settings.strShowChanges": "Зміни у співпраці в реальному часі", "DE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Увімкніть параметр перевірки орфографії", "DE.Views.FileMenuPanels.Settings.strStrict": "Суворий", diff --git a/apps/documenteditor/main/locale/vi.json b/apps/documenteditor/main/locale/vi.json index e6118b8c3..c16aaaf88 100644 --- a/apps/documenteditor/main/locale/vi.json +++ b/apps/documenteditor/main/locale/vi.json @@ -954,17 +954,10 @@ "DE.Views.FileMenuPanels.DocumentRights.txtRights": "Những cá nhân có quyền", "DE.Views.FileMenuPanels.Settings.okButtonText": "Áp dụng", "DE.Views.FileMenuPanels.Settings.strAlignGuides": "Bật hướng dẫn căn chỉnh", - "DE.Views.FileMenuPanels.Settings.strAutoRecover": "Bật tự động khôi phục", - "DE.Views.FileMenuPanels.Settings.strAutosave": "Bật tự động lưu", "DE.Views.FileMenuPanels.Settings.strCoAuthMode": "Chế độ đồng chỉnh sửa", - "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Những người dùng khác sẽ cùng lúc thấy các thay đổi của bạn", - "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "Bạn sẽ cần chấp nhận thay đổi trước khi có thể xem chúng", "DE.Views.FileMenuPanels.Settings.strFast": "Nhanh", "DE.Views.FileMenuPanels.Settings.strFontRender": "Phông chữ gợi ý", "DE.Views.FileMenuPanels.Settings.strForcesave": "Luôn lưu vào server (hoặc lưu vào server khi đóng tài liệu)", - "DE.Views.FileMenuPanels.Settings.strInputMode": "Bật chữ tượng hình", - "DE.Views.FileMenuPanels.Settings.strLiveComment": "Bật hiển thị bình luận", - "DE.Views.FileMenuPanels.Settings.strResolvedComment": "Bật hiển thị các bình luận đã giải quyết", "DE.Views.FileMenuPanels.Settings.strShowChanges": "Thay đổi Cộng tác Thời gian thực", "DE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Bật tùy chọn kiểm tra chính tả", "DE.Views.FileMenuPanels.Settings.strStrict": "Nghiêm ngặt", diff --git a/apps/documenteditor/main/locale/zh-TW.json b/apps/documenteditor/main/locale/zh-TW.json index b6d09a934..23436fc38 100644 --- a/apps/documenteditor/main/locale/zh-TW.json +++ b/apps/documenteditor/main/locale/zh-TW.json @@ -1283,10 +1283,6 @@ "DE.Views.CellsAddDialog.textRow": "行列", "DE.Views.CellsAddDialog.textTitle": "插入多個", "DE.Views.CellsAddDialog.textUp": "游標上方", - "DE.Views.CellsRemoveDialog.textCol": "刪除整列", - "DE.Views.CellsRemoveDialog.textLeft": "儲存格並向左移", - "DE.Views.CellsRemoveDialog.textRow": "刪除整行", - "DE.Views.CellsRemoveDialog.textTitle": "刪除儲存格", "DE.Views.ChartSettings.textAdvanced": "顯示進階設定", "DE.Views.ChartSettings.textChartType": "變更圖表類型", "DE.Views.ChartSettings.textEditData": "編輯資料", @@ -1305,10 +1301,6 @@ "DE.Views.ChartSettings.txtTight": "緊", "DE.Views.ChartSettings.txtTitle": "圖表", "DE.Views.ChartSettings.txtTopAndBottom": "頂部和底部", - "DE.Views.CompareSettingsDialog.textChar": "文字水平", - "DE.Views.CompareSettingsDialog.textShow": "顯示更改", - "DE.Views.CompareSettingsDialog.textTitle": "比較設定", - "DE.Views.CompareSettingsDialog.textWord": "字級", "DE.Views.ControlSettingsDialog.strGeneral": "一般", "DE.Views.ControlSettingsDialog.textAdd": "新增", "DE.Views.ControlSettingsDialog.textAppearance": "外貌", @@ -1730,21 +1722,12 @@ "DE.Views.FileMenuPanels.ProtectDoc.txtView": "查看簽名", "DE.Views.FileMenuPanels.Settings.okButtonText": "套用", "DE.Views.FileMenuPanels.Settings.strAlignGuides": "打開對齊嚮導", - "DE.Views.FileMenuPanels.Settings.strAutoRecover": "開啟自動恢復", - "DE.Views.FileMenuPanels.Settings.strAutosave": "打開自動存檔", "DE.Views.FileMenuPanels.Settings.strCoAuthMode": "共同編輯模式", - "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "其他帳戶將立即看到您的更改", - "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "您需要先接受更改,然後才能看到它們", "DE.Views.FileMenuPanels.Settings.strFast": "快", "DE.Views.FileMenuPanels.Settings.strFontRender": "字體提示", "DE.Views.FileMenuPanels.Settings.strForcesave": "儲存時同時上傳到伺服器(否則在文檔關閉時才上傳)", - "DE.Views.FileMenuPanels.Settings.strInputMode": "打開象形文字", - "DE.Views.FileMenuPanels.Settings.strLiveComment": "開啟註解顯示", "DE.Views.FileMenuPanels.Settings.strMacrosSettings": "巨集設定", - "DE.Views.FileMenuPanels.Settings.strPaste": "剪貼,複製和貼上", "DE.Views.FileMenuPanels.Settings.strPasteButton": "粘貼內容時顯示“粘貼選項”按鈕", - "DE.Views.FileMenuPanels.Settings.strResolvedComment": "打開顯示已解決的註解", - "DE.Views.FileMenuPanels.Settings.strReviewHover": "顯示跟踪變化", "DE.Views.FileMenuPanels.Settings.strShowChanges": "即時共同編輯設定更新", "DE.Views.FileMenuPanels.Settings.strSpellCheckMode": "啟用拼寫檢查選項", "DE.Views.FileMenuPanels.Settings.strStrict": "嚴格", diff --git a/apps/documenteditor/main/locale/zh.json b/apps/documenteditor/main/locale/zh.json index 4d3c8dae7..1e34e9171 100644 --- a/apps/documenteditor/main/locale/zh.json +++ b/apps/documenteditor/main/locale/zh.json @@ -1719,21 +1719,12 @@ "DE.Views.FileMenuPanels.ProtectDoc.txtView": "查看签名", "DE.Views.FileMenuPanels.Settings.okButtonText": "应用", "DE.Views.FileMenuPanels.Settings.strAlignGuides": "显示对齐辅助线", - "DE.Views.FileMenuPanels.Settings.strAutoRecover": "启用自动恢复", - "DE.Views.FileMenuPanels.Settings.strAutosave": "启用自动保存", "DE.Views.FileMenuPanels.Settings.strCoAuthMode": "共同编辑模式", - "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "其他用户将一次看到您的更改", - "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "您将需要接受更改才能看到它们", "DE.Views.FileMenuPanels.Settings.strFast": "快速", "DE.Views.FileMenuPanels.Settings.strFontRender": "字体微调方式", "DE.Views.FileMenuPanels.Settings.strForcesave": "单击“保存”或Ctrl+S之后版本添加到存储", - "DE.Views.FileMenuPanels.Settings.strInputMode": "显示象形文字", - "DE.Views.FileMenuPanels.Settings.strLiveComment": "显示批注", "DE.Views.FileMenuPanels.Settings.strMacrosSettings": "宏设置", - "DE.Views.FileMenuPanels.Settings.strPaste": "剪切、复制、黏贴", "DE.Views.FileMenuPanels.Settings.strPasteButton": "在执行粘贴操作后显示“粘贴选项”按钮", - "DE.Views.FileMenuPanels.Settings.strResolvedComment": "显示已解决批注", - "DE.Views.FileMenuPanels.Settings.strReviewHover": "跟踪修改显示", "DE.Views.FileMenuPanels.Settings.strShowChanges": "实时协作变更", "DE.Views.FileMenuPanels.Settings.strSpellCheckMode": "显示拼写检查选项", "DE.Views.FileMenuPanels.Settings.strStrict": "严格", diff --git a/apps/documenteditor/main/resources/less/navigation.less b/apps/documenteditor/main/resources/less/navigation.less index 475a4e7ea..e537517ce 100644 --- a/apps/documenteditor/main/resources/less/navigation.less +++ b/apps/documenteditor/main/resources/less/navigation.less @@ -38,7 +38,7 @@ .name { white-space: pre-wrap; - word-break: break-all; + word-break: break-word; max-height: 350px; } } diff --git a/apps/documenteditor/mobile/locale/az.json b/apps/documenteditor/mobile/locale/az.json index af692d382..65ac70397 100644 --- a/apps/documenteditor/mobile/locale/az.json +++ b/apps/documenteditor/mobile/locale/az.json @@ -645,17 +645,17 @@ "txtScheme7": "Bərabər", "txtScheme8": "Axın", "txtScheme9": "Emalatxana", - "textFeedback": "Feedback & Support", - "textNavigation": "Navigation", - "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", - "textBeginningDocument": "Beginning of document", - "textEmptyHeading": "Empty Heading", "textFastWV": "Fast Web View", + "textFeedback": "Feedback & Support", "textNo": "No", "textPageSize": "Page Size", "textPdfTagged": "Tagged PDF", "textPdfVer": "PDF Version", - "textYes": "Yes" + "textYes": "Yes", + "textNavigation": "Navigation", + "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", + "textBeginningDocument": "Beginning of document", + "textEmptyHeading": "Empty Heading" }, "Toolbar": { "dlgLeaveMsgText": "Saxlanmamış dəyişiklikləriniz var. Avtomatik saxlanmanı gözləmək üçün \"Bu Səhifədə Qalın\" üzərinə klikləyin. Bütün saxlanmamış dəyişiklikləri ləğv etmək üçün \"Bu səhifədən Çıxın\" hissəsinin üzərinə klikləyin.", diff --git a/apps/documenteditor/mobile/locale/be.json b/apps/documenteditor/mobile/locale/be.json index 0f7c745f2..1c64fa788 100644 --- a/apps/documenteditor/mobile/locale/be.json +++ b/apps/documenteditor/mobile/locale/be.json @@ -394,12 +394,12 @@ "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.", "errorUserDrop": "The file can't be accessed right now.", "errorViewerDisconnect": "Connection is lost. You can still view the document,
but you won't be able to download or print it until the connection is restored and the page is reloaded.", + "errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.", + "errorNoTOC": "There's no table of contents to update. You can insert one from the References tab.", "openErrorText": "An error has occurred while opening the file", "saveErrorText": "An error has occurred while saving the file", "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.", - "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.", - "errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.", - "errorNoTOC": "There's no table of contents to update. You can insert one from the References tab." + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." }, "LongActions": { "applyChangesTextText": "Загрузка даных…", @@ -643,10 +643,6 @@ "textFastWV": "Fast Web View", "textFindAndReplaceAll": "Find and Replace All", "textFeedback": "Feedback & Support", - "textNavigation": "Navigation", - "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", - "textBeginningDocument": "Beginning of document", - "textEmptyHeading": "Empty Heading", "textNo": "No", "textPageSize": "Page Size", "textPdfTagged": "Tagged PDF", @@ -655,7 +651,11 @@ "txtDownloadTxt": "Download TXT", "txtIncorrectPwd": "Password is incorrect", "txtProtected": "Once you enter the password and open the file, the current password will be reset", - "txtScheme22": "New Office" + "txtScheme22": "New Office", + "textNavigation": "Navigation", + "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", + "textBeginningDocument": "Beginning of document", + "textEmptyHeading": "Empty Heading" }, "Toolbar": { "dlgLeaveTitleText": "Вы выходзіце з праграмы", diff --git a/apps/documenteditor/mobile/locale/ca.json b/apps/documenteditor/mobile/locale/ca.json index 89ca7da32..0e7d8ec90 100644 --- a/apps/documenteditor/mobile/locale/ca.json +++ b/apps/documenteditor/mobile/locale/ca.json @@ -334,8 +334,8 @@ "textTotalRow": "Fila de total", "textTu": "dt.", "textType": "Tipus", + "textWe": "dc.", "textWrap": "Ajustament", - "textWe": "We", "textTableOfCont": "TOC", "textPageNumbers": "Page Numbers", "textSimple": "Simple", @@ -650,12 +650,12 @@ "txtScheme6": "Esplanada", "txtScheme7": "Equitat", "txtScheme8": "Flux", + "txtScheme9": "Foneria", "textFeedback": "Feedback & Support", "textNavigation": "Navigation", "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", "textBeginningDocument": "Beginning of document", - "textEmptyHeading": "Empty Heading", - "txtScheme9": "Foneria" + "textEmptyHeading": "Empty Heading" }, "Toolbar": { "dlgLeaveMsgText": "Tens canvis sense desar. Fes clic a \"Mantingueu-vos en aquesta pàgina\" per esperar al desament automàtic. Fes clic a \"Deixar aquesta pàgina\" per descartar tots els canvis no desats.", diff --git a/apps/documenteditor/mobile/locale/cs.json b/apps/documenteditor/mobile/locale/cs.json index 3162561ff..61e71709d 100644 --- a/apps/documenteditor/mobile/locale/cs.json +++ b/apps/documenteditor/mobile/locale/cs.json @@ -650,12 +650,12 @@ "txtScheme6": "Hala", "txtScheme7": "Rovnost", "txtScheme8": "Tok", + "txtScheme9": "Slévárna", "textFeedback": "Feedback & Support", "textNavigation": "Navigation", "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", "textBeginningDocument": "Beginning of document", - "textEmptyHeading": "Empty Heading", - "txtScheme9": "Slévárna" + "textEmptyHeading": "Empty Heading" }, "Toolbar": { "dlgLeaveMsgText": "V tomto dokumentu máte neuložené změny. Klikněte na 'Zůstat na této stránce'. Klikněte na 'Opustit tuto stránku' pro zahození neuložených změn.", diff --git a/apps/documenteditor/mobile/locale/de.json b/apps/documenteditor/mobile/locale/de.json index 14036dd2d..5428ce63a 100644 --- a/apps/documenteditor/mobile/locale/de.json +++ b/apps/documenteditor/mobile/locale/de.json @@ -645,17 +645,17 @@ "txtScheme7": "Kapital", "txtScheme8": "Fluss", "txtScheme9": "Gießerei", - "textFeedback": "Feedback & Support", - "textNavigation": "Navigation", - "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", - "textBeginningDocument": "Beginning of document", - "textEmptyHeading": "Empty Heading", "textFastWV": "Fast Web View", + "textFeedback": "Feedback & Support", "textNo": "No", "textPageSize": "Page Size", "textPdfTagged": "Tagged PDF", "textPdfVer": "PDF Version", - "textYes": "Yes" + "textYes": "Yes", + "textNavigation": "Navigation", + "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", + "textBeginningDocument": "Beginning of document", + "textEmptyHeading": "Empty Heading" }, "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 afcb3ab49..4ed3c7ffe 100644 --- a/apps/documenteditor/mobile/locale/el.json +++ b/apps/documenteditor/mobile/locale/el.json @@ -645,17 +645,17 @@ "txtScheme7": "Μετοχή", "txtScheme8": "Ροή", "txtScheme9": "Χυτήριο", - "textFeedback": "Feedback & Support", - "textNavigation": "Navigation", - "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", - "textBeginningDocument": "Beginning of document", - "textEmptyHeading": "Empty Heading", "textFastWV": "Fast Web View", + "textFeedback": "Feedback & Support", "textNo": "No", "textPageSize": "Page Size", "textPdfTagged": "Tagged PDF", "textPdfVer": "PDF Version", - "textYes": "Yes" + "textYes": "Yes", + "textNavigation": "Navigation", + "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", + "textBeginningDocument": "Beginning of document", + "textEmptyHeading": "Empty Heading" }, "Toolbar": { "dlgLeaveMsgText": "Έχετε μη αποθηκευμένες αλλαγές. Πατήστε 'Παραμονή στη Σελίδα' για να περιμένετε την αυτόματη αποθήκευση. Πατήστε 'Έξοδος από τη Σελίδα' για να απορρίψετε όλες τις μη αποθηκευμένες αλλαγές.", diff --git a/apps/documenteditor/mobile/locale/es.json b/apps/documenteditor/mobile/locale/es.json index 3293e1885..285376d0e 100644 --- a/apps/documenteditor/mobile/locale/es.json +++ b/apps/documenteditor/mobile/locale/es.json @@ -650,12 +650,12 @@ "txtScheme6": "Concurrencia", "txtScheme7": "Equidad ", "txtScheme8": "Flujo", + "txtScheme9": "Fundición", "textFeedback": "Feedback & Support", "textNavigation": "Navigation", "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", "textBeginningDocument": "Beginning of document", - "textEmptyHeading": "Empty Heading", - "txtScheme9": "Fundición" + "textEmptyHeading": "Empty Heading" }, "Toolbar": { "dlgLeaveMsgText": "Tiene cambios sin guardar. Haga clic en \"Permanecer en esta página\" para esperar a que se guarde automáticamente. Haga clic en \"Salir de esta página\" para descartar todos los cambios no guardados.", diff --git a/apps/documenteditor/mobile/locale/fr.json b/apps/documenteditor/mobile/locale/fr.json index 127f375e4..4bbb151eb 100644 --- a/apps/documenteditor/mobile/locale/fr.json +++ b/apps/documenteditor/mobile/locale/fr.json @@ -572,6 +572,7 @@ "textEnableAll": "Activer tout", "textEnableAllMacrosWithoutNotification": "Activer toutes les macros sans notification", "textEncoding": "Codage ", + "textFastWV": "Affichage rapide sur le Web", "textFind": "Rechercher", "textFindAndReplace": "Rechercher et remplacer", "textFindAndReplaceAll": "Rechercher et remplacer tout", @@ -590,6 +591,7 @@ "textMargins": "Marges", "textMarginsH": "Les marges supérieure et inférieure sont trop élevés pour une hauteur de page donnée", "textMarginsW": "Les marges gauche et droite sont trop larges pour une largeur de page donnée", + "textNo": "Non", "textNoCharacters": "Caractères non imprimables", "textNoTextFound": "Le texte est introuvable", "textOk": "OK", @@ -597,7 +599,10 @@ "textOrientation": "Orientation", "textOwner": "Propriétaire", "textPages": "Pages", + "textPageSize": "Taille de la page", "textParagraphs": "Paragraphes", + "textPdfTagged": "PDF marqué", + "textPdfVer": "Version PDF", "textPoint": "Point", "textPortrait": "Portrait", "textPrint": "Imprimer", @@ -650,12 +655,7 @@ "textNavigation": "Navigation", "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", "textBeginningDocument": "Beginning of document", - "textEmptyHeading": "Empty Heading", - "textFastWV": "Fast Web View", - "textNo": "No", - "textPageSize": "Page Size", - "textPdfTagged": "Tagged PDF", - "textPdfVer": "PDF Version" + "textEmptyHeading": "Empty Heading" }, "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/gl.json b/apps/documenteditor/mobile/locale/gl.json index 7a9d2167d..25ac5103a 100644 --- a/apps/documenteditor/mobile/locale/gl.json +++ b/apps/documenteditor/mobile/locale/gl.json @@ -645,17 +645,17 @@ "txtScheme7": "Equidade", "txtScheme8": "Fluxo", "txtScheme9": "Fundición", - "textFeedback": "Feedback & Support", - "textNavigation": "Navigation", - "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", - "textBeginningDocument": "Beginning of document", - "textEmptyHeading": "Empty Heading", "textFastWV": "Fast Web View", + "textFeedback": "Feedback & Support", "textNo": "No", "textPageSize": "Page Size", "textPdfTagged": "Tagged PDF", "textPdfVer": "PDF Version", - "textYes": "Yes" + "textYes": "Yes", + "textNavigation": "Navigation", + "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", + "textBeginningDocument": "Beginning of document", + "textEmptyHeading": "Empty Heading" }, "Toolbar": { "dlgLeaveMsgText": "Ten cambios sen gardar. Prema en \"Permanecer nesta páxina\" para esperar a que se garde automaticamente. Prema en \"Saír desta páxina\" para descartar todos os cambios non gardados.", diff --git a/apps/documenteditor/mobile/locale/hu.json b/apps/documenteditor/mobile/locale/hu.json index fd1878858..a15889df0 100644 --- a/apps/documenteditor/mobile/locale/hu.json +++ b/apps/documenteditor/mobile/locale/hu.json @@ -645,17 +645,17 @@ "txtScheme7": "Saját tőke", "txtScheme8": "Folyam", "txtScheme9": "Öntöde", - "textFeedback": "Feedback & Support", - "textNavigation": "Navigation", - "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", - "textBeginningDocument": "Beginning of document", - "textEmptyHeading": "Empty Heading", "textFastWV": "Fast Web View", + "textFeedback": "Feedback & Support", "textNo": "No", "textPageSize": "Page Size", "textPdfTagged": "Tagged PDF", "textPdfVer": "PDF Version", - "textYes": "Yes" + "textYes": "Yes", + "textNavigation": "Navigation", + "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", + "textBeginningDocument": "Beginning of document", + "textEmptyHeading": "Empty Heading" }, "Toolbar": { "dlgLeaveMsgText": "Nem mentett módosításai vannak. Kattintson a „Maradj ezen az oldalon” gombra az automatikus mentés megvárásához. Kattintson a \"Hagyja el ezt az oldalt\" gombra az összes nem mentett módosítás elvetéséhez.", diff --git a/apps/documenteditor/mobile/locale/it.json b/apps/documenteditor/mobile/locale/it.json index 03f891c3a..e2df4e1a8 100644 --- a/apps/documenteditor/mobile/locale/it.json +++ b/apps/documenteditor/mobile/locale/it.json @@ -645,17 +645,17 @@ "txtScheme7": "Equità", "txtScheme8": "Flusso", "txtScheme9": "Fonderia", - "textFeedback": "Feedback & Support", - "textNavigation": "Navigation", - "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", - "textBeginningDocument": "Beginning of document", - "textEmptyHeading": "Empty Heading", "textFastWV": "Fast Web View", + "textFeedback": "Feedback & Support", "textNo": "No", "textPageSize": "Page Size", "textPdfTagged": "Tagged PDF", "textPdfVer": "PDF Version", - "textYes": "Yes" + "textYes": "Yes", + "textNavigation": "Navigation", + "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", + "textBeginningDocument": "Beginning of document", + "textEmptyHeading": "Empty Heading" }, "Toolbar": { "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.", diff --git a/apps/documenteditor/mobile/locale/ja.json b/apps/documenteditor/mobile/locale/ja.json index bfdf02d3c..255170330 100644 --- a/apps/documenteditor/mobile/locale/ja.json +++ b/apps/documenteditor/mobile/locale/ja.json @@ -645,17 +645,17 @@ "txtScheme7": "株主資本", "txtScheme8": "フロー", "txtScheme9": "ファウンドリ", - "textFeedback": "Feedback & Support", - "textNavigation": "Navigation", - "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", - "textBeginningDocument": "Beginning of document", - "textEmptyHeading": "Empty Heading", "textFastWV": "Fast Web View", + "textFeedback": "Feedback & Support", "textNo": "No", "textPageSize": "Page Size", "textPdfTagged": "Tagged PDF", "textPdfVer": "PDF Version", - "textYes": "Yes" + "textYes": "Yes", + "textNavigation": "Navigation", + "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", + "textBeginningDocument": "Beginning of document", + "textEmptyHeading": "Empty Heading" }, "Toolbar": { "dlgLeaveMsgText": "保存されていない変更があります。自動保存を待つように「このページから移動しない」をクリックしてください。保存されていない変更を破棄ように「このページから移動する」をクリックしてください。", diff --git a/apps/documenteditor/mobile/locale/ko.json b/apps/documenteditor/mobile/locale/ko.json index f3d558695..603d7132a 100644 --- a/apps/documenteditor/mobile/locale/ko.json +++ b/apps/documenteditor/mobile/locale/ko.json @@ -41,6 +41,7 @@ "textLocation": "위치", "textNextPage": "다음 페이지", "textOddPage": "홀수 페이지", + "textOk": "확인", "textOther": "기타", "textPageBreak": "페이지 나누기", "textPageNumber": "페이지 번호", @@ -57,7 +58,6 @@ "textTable": "표", "textTableSize": "표 크기", "txtNotUrl": "이 필드는 \"http://www.example.com\"형식의 URL이어야합니다.", - "textOk": "Ok", "textTableContents": "Table of Contents", "textWithPageNumbers": "With Page Numbers", "textWithBlueLinks": "With Blue Links" @@ -161,13 +161,13 @@ "textUsers": "사용자", "textWidow": "개별 제어" }, + "HighlightColorPalette": { + "textNoFill": "채우기 없음" + }, "ThemeColorPalette": { "textCustomColors": "사용자 정의 색상", "textStandartColors": "표준 색상", "textThemeColors": "테마 색" - }, - "HighlightColorPalette": { - "textNoFill": "No Fill" } }, "ContextMenu": { @@ -213,6 +213,8 @@ "textAlign": "맞춤", "textAllCaps": "모든 대문자", "textAllowOverlap": "오버랩 허용", + "textApril": "4월", + "textAugust": "8월", "textAuto": "자동", "textAutomatic": "자동", "textBack": "뒤로", @@ -231,6 +233,8 @@ "textColor": "색상", "textContinueFromPreviousSection": "이전 섹션에서 계속하기", "textCustomColor": "사용자 정의 색상", + "textDecember": "12월", + "textDesign": "디자인", "textDifferentFirstPage": "첫 페이지를 다르게 지정", "textDifferentOddAndEvenPages": "홀수 및 짝수 페이지 다르게 지정", "textDisplay": "표시", @@ -239,6 +243,7 @@ "textEditLink": "링크 편집", "textEffects": "효과", "textEmptyImgUrl": "이미지 URL을 지정해야합니다.", + "textFebruary": "2월", "textFill": "채우기", "textFirstColumn": "첫째 열", "textFirstLine": "첫째 줄", @@ -247,6 +252,7 @@ "textFontColors": "글꼴 색", "textFonts": "글꼴", "textFooter": "꼬리말", + "textFr": "Fr", "textHeader": "머리글", "textHeaderRow": "머리글 행", "textHighlightColor": "텍스트 강조 색", @@ -255,6 +261,9 @@ "textImageURL": "이미지 URL", "textInFront": "텍스트 앞", "textInline": "인라인", + "textJanuary": "1월", + "textJuly": "7월", + "textJune": "6월", "textKeepLinesTogether": "현재 단락을 나누지 않음", "textKeepWithNext": "현재 단락과 다음 단락을 항상 같은 페이지에 배치", "textLastColumn": "마지막 열", @@ -263,13 +272,19 @@ "textLink": "링크", "textLinkSettings": "링크 설정", "textLinkToPrevious": "이전 링크", + "textMarch": "3월", + "textMay": "5월", + "textMo": "월", "textMoveBackward": "맨 뒤로 보내기", "textMoveForward": "맨 앞으로 가져오기", "textMoveWithText": "텍스트와 함께 이동", "textNone": "없음", "textNoStyles": "이 유형의 차트에 해당하는 스타일이 없습니다.", "textNotUrl": "이 필드는 \"http://www.example.com\"형식의 URL이어야합니다.", + "textNovember": "11월", "textNumbers": "숫자", + "textOctober": "10월", + "textOk": "확인", "textOpacity": "투명도", "textOptions": "옵션", "textOrphanControl": "단락의 첫 줄이나 마지막 줄 분리 방지", @@ -290,9 +305,11 @@ "textReplace": "바꾸기", "textReplaceImage": "이미지 바꾸기", "textResizeToFitContent": "내용에 맞게 크기 조정", + "textSa": "토", "textScreenTip": "화면 팁", "textSelectObjectToEdit": "편집하기 위해 개체를 선택하십시오", "textSendToBackground": "맨 뒤로 보내기", + "textSeptember": "9월", "textSettings": "설정", "textShape": "도형", "textSize": "크기", @@ -303,38 +320,21 @@ "textStrikethrough": "취소선", "textStyle": "스타일", "textStyleOptions": "스타일 옵션", + "textSu": "일", "textSubscript": "아래 첨자", "textSuperscript": "위 첨자", "textTable": "표", "textTableOptions": "표 옵션", "textText": "텍스트", + "textTh": "목", "textThrough": "통과", "textTight": "Tight", "textTopAndBottom": "상단 및 하단", "textTotalRow": "합계", + "textTu": "화", "textType": "유형", "textWrap": "줄 바꾸기", - "textApril": "April", - "textAugust": "August", - "textDecember": "December", - "textDesign": "Design", "textEmpty": "Empty", - "textFebruary": "February", - "textFr": "Fr", - "textJanuary": "January", - "textJuly": "July", - "textJune": "June", - "textMarch": "March", - "textMay": "May", - "textMo": "Mo", - "textNovember": "November", - "textOctober": "October", - "textOk": "Ok", - "textSa": "Sa", - "textSeptember": "September", - "textSu": "Su", - "textTh": "Th", - "textTu": "Tu", "textWe": "We", "textTableOfCont": "TOC", "textPageNumbers": "Page Numbers", @@ -516,8 +516,11 @@ "textHasMacros": "파일에 자동 매크로가 포함되어 있습니다.
매크로를 실행 하시겠습니까?", "textNo": "아니오", "textNoLicenseTitle": "라이센스 수를 제한했습니다.", + "textNoTextFound": "텍스트를 찾을 수 없습니다", "textPaidFeature": "유료 기능", "textRemember": "선택사항을 저장", + "textReplaceSkipped": "대체가 이루어졌습니다. {0} 건은 건너 뛰었습니다.", + "textReplaceSuccess": "검색이 완료되었습니다. 발생 횟수가 대체되었습니다 : {0}", "textYes": "확인", "titleLicenseExp": "라이센스 만료", "titleServerVersion": "편집기가 업데이트되었습니다.", @@ -529,10 +532,7 @@ "warnLicenseUsersExceeded": "편집자 사용자 한도인 %1명에 도달했습니다. 자세한 내용은 관리자에게 문의하십시오.", "warnNoLicense": "% 1 편집 연결 수 제한에 도달했습니다. 이 문서는 보기 모드로 열립니다. 개인적인 업그레이드 사항은 % 1 영업팀에 연락하십시오.", "warnNoLicenseUsers": "ONLYOFFICE 편집자의이 버전은 동시 사용자에게 일정한 제한이 있습니다.
더 필요한 것이 있으면 현재 라이센스를 업그레이드하거나 상용 라이센스를 구입하십시오.", - "warnProcessRightsChange": "파일을 편집 할 권한이 없습니다.", - "textNoTextFound": "Text not found", - "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}" + "warnProcessRightsChange": "파일을 편집 할 권한이 없습니다." }, "Settings": { "advDRMOptions": "보호 된 파일", @@ -590,6 +590,7 @@ "textMargins": "여백", "textMarginsH": "주어진 페이지 높이에 대해 위쪽 및 아래쪽 여백이 너무 높습니다.", "textMarginsW": "왼쪽 및 오른쪽 여백이 주어진 페이지 폭에 비해 너무 넓습니다.", + "textNo": "아니오", "textNoCharacters": "인쇄되지 않는 문자", "textNoTextFound": "텍스트를 찾을 수 없습니다", "textOk": "확인", @@ -597,6 +598,7 @@ "textOrientation": "방향", "textOwner": "소유자", "textPages": "페이지", + "textPageSize": "페이지 크기", "textParagraphs": "단락", "textPoint": "Point", "textPortrait": "세로", @@ -619,6 +621,7 @@ "textUnitOfMeasurement": "측정 단위", "textUploaded": "업로드 되었습니다", "textWords": "단어", + "textYes": "예", "txtDownloadTxt": "TXT 다운로드", "txtIncorrectPwd": "잘못된 비밀번호", "txtOk": "확인", @@ -645,17 +648,14 @@ "txtScheme7": "같음", "txtScheme8": "플로우", "txtScheme9": "발견", + "textFastWV": "Fast Web View", "textFeedback": "Feedback & Support", + "textPdfTagged": "Tagged PDF", + "textPdfVer": "PDF Version", "textNavigation": "Navigation", "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", "textBeginningDocument": "Beginning of document", - "textEmptyHeading": "Empty Heading", - "textFastWV": "Fast Web View", - "textNo": "No", - "textPageSize": "Page Size", - "textPdfTagged": "Tagged PDF", - "textPdfVer": "PDF Version", - "textYes": "Yes" + "textEmptyHeading": "Empty Heading" }, "Toolbar": { "dlgLeaveMsgText": "저장하지 않은 변경 사항이 있습니다. 자동 저장이 완료될 때까지 기다리려면 \"이 페이지에 머물기\"를 클릭하십시오. \"이 페이지에서 나가기\"를 클릭하면 저장되지 않은 모든 변경 사항이 삭제됩니다.", diff --git a/apps/documenteditor/mobile/locale/lo.json b/apps/documenteditor/mobile/locale/lo.json index 4da85a032..f495adc5d 100644 --- a/apps/documenteditor/mobile/locale/lo.json +++ b/apps/documenteditor/mobile/locale/lo.json @@ -57,10 +57,10 @@ "textStartAt": "ເລີ່ມຈາກ", "textTable": "ຕາຕະລາງ", "textTableSize": "ຂະໜາດຕາຕະລາງ", + "txtNotUrl": "ຊ່ອງຂໍ້ມູນນີ້ຄວນຈະເປັນ URL ໃນຮູບແບບ \"http://www.example.com\"", "textTableContents": "Table of Contents", "textWithPageNumbers": "With Page Numbers", - "textWithBlueLinks": "With Blue Links", - "txtNotUrl": "ຊ່ອງຂໍ້ມູນນີ້ຄວນຈະເປັນ URL ໃນຮູບແບບ \"http://www.example.com\"" + "textWithBlueLinks": "With Blue Links" }, "Common": { "Collaboration": { @@ -171,8 +171,6 @@ } }, "ContextMenu": { - "textRefreshEntireTable": "Refresh entire table", - "textRefreshPageNumbersOnly": "Refresh page numbers only", "errorCopyCutPaste": "ການກ໋ອບປີ້,ຕັດ ແລະ ວາງ ການດຳເນີນການໂດຍໃຊ້ເມນູ ຈະດຳເນີນການພາຍໃນຟາຍປັດຈຸບັນເທົ່ານັ້ນ", "menuAddComment": "ເພີ່ມຄຳເຫັນ", "menuAddLink": "ເພີ່ມລິ້ງ", @@ -198,7 +196,9 @@ "textDoNotShowAgain": "ບໍ່ສະແດງອີກ", "textNumberingValue": "ມູນຄ່າ ໝາຍ ເລກ", "textOk": "ຕົກລົງ", - "textRows": "ແຖວ" + "textRows": "ແຖວ", + "textRefreshEntireTable": "Refresh entire table", + "textRefreshPageNumbersOnly": "Refresh page numbers only" }, "Edit": { "notcriticalErrorTitle": "ເຕືອນ", @@ -335,6 +335,7 @@ "textWe": "ພວກເຮົາ", "textWrap": "ຫໍ່", "textInFront": "In Front of Text", + "textInline": "In Line with Text", "textTableOfCont": "TOC", "textPageNumbers": "Page Numbers", "textSimple": "Simple", @@ -356,8 +357,7 @@ "textRefreshEntireTable": "Refresh entire table", "textRefreshPageNumbersOnly": "Refresh page numbers only", "textStyles": "Styles", - "textAmountOfLevels": "Amount of Levels", - "textInline": "In Line with Text" + "textAmountOfLevels": "Amount of Levels" }, "Error": { "convertationTimeoutText": "ໝົດເວລາການປ່ຽນແປງ.", @@ -397,9 +397,9 @@ "unknownErrorText": "ມີຂໍ້ຜິດພາດທີ່ບໍ່ຮູ້ສາເຫດ", "uploadImageExtMessage": "ບໍ່ຮູ້ສາເຫດຂໍ້ຜິດຜາດຮູບແບບຂອງຮູບ", "uploadImageFileCountMessage": "ບໍ່ມີຮູບພາບອັບໂຫລດ", + "uploadImageSizeMessage": "ຮູບພາບໃຫຍ່ເກີນໄປ. ຂະຫນາດສູງສຸດແມ່ນ 25 MB.", "errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.", - "errorNoTOC": "There's no table of contents to update. You can insert one from the References tab.", - "uploadImageSizeMessage": "ຮູບພາບໃຫຍ່ເກີນໄປ. ຂະຫນາດສູງສຸດແມ່ນ 25 MB." + "errorNoTOC": "There's no table of contents to update. You can insert one from the References tab." }, "LongActions": { "applyChangesTextText": "ກຳລັງດາວໂຫຼດຂໍ້ມູນ...", @@ -648,14 +648,14 @@ "txtScheme7": "ຄວາມເທົ່າທຽມກັນ", "txtScheme8": "ຂະບວນການ", "txtScheme9": "ໂຮງຫລໍ່", + "textFastWV": "Fast Web View", "textFeedback": "Feedback & Support", + "textPdfTagged": "Tagged PDF", + "textPdfVer": "PDF Version", "textNavigation": "Navigation", "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", "textBeginningDocument": "Beginning of document", - "textEmptyHeading": "Empty Heading", - "textFastWV": "Fast Web View", - "textPdfTagged": "Tagged PDF", - "textPdfVer": "PDF Version" + "textEmptyHeading": "Empty Heading" }, "Toolbar": { "dlgLeaveMsgText": "ທ່ານມີການປ່ຽນແປງທີ່ຍັງບໍ່ໄດ້ບັນທຶກໄວ້. ຄລິກທີ່ 'ຢູ່ໃນໜ້ານີ້' ເພື່ອລໍຖ້າການບັນທຶກອັດຕະໂນມັດ. ຄລິກ 'ອອກຈາກໜ້ານີ້' ເພື່ອຍົກເລີກການປ່ຽນແປງທີ່ບໍ່ໄດ້ບັນທຶກໄວ້ທັງໝົດ.", diff --git a/apps/documenteditor/mobile/locale/nl.json b/apps/documenteditor/mobile/locale/nl.json index 81dc7e133..20b7f9a82 100644 --- a/apps/documenteditor/mobile/locale/nl.json +++ b/apps/documenteditor/mobile/locale/nl.json @@ -645,17 +645,17 @@ "txtScheme7": "Vermogen", "txtScheme8": "Stroom", "txtScheme9": "Gieterij", - "textFeedback": "Feedback & Support", - "textNavigation": "Navigation", - "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", - "textBeginningDocument": "Beginning of document", - "textEmptyHeading": "Empty Heading", "textFastWV": "Fast Web View", + "textFeedback": "Feedback & Support", "textNo": "No", "textPageSize": "Page Size", "textPdfTagged": "Tagged PDF", "textPdfVer": "PDF Version", - "textYes": "Yes" + "textYes": "Yes", + "textNavigation": "Navigation", + "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", + "textBeginningDocument": "Beginning of document", + "textEmptyHeading": "Empty Heading" }, "Toolbar": { "dlgLeaveMsgText": "U heeft nog niet opgeslagen wijzigingen. Klik op 'Blijf op deze pagina' om te wachten op automatisch opslaan. Klik op 'Verlaat deze pagina' om alle niet-opgeslagen wijzigingen te verwijderen.", diff --git a/apps/documenteditor/mobile/locale/pt.json b/apps/documenteditor/mobile/locale/pt.json index 511f18d93..6020b0a39 100644 --- a/apps/documenteditor/mobile/locale/pt.json +++ b/apps/documenteditor/mobile/locale/pt.json @@ -645,17 +645,17 @@ "txtScheme7": "Patrimônio Líquido", "txtScheme8": "Fluxo", "txtScheme9": "Fundição", - "textFeedback": "Feedback & Support", - "textNavigation": "Navigation", - "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", - "textBeginningDocument": "Beginning of document", - "textEmptyHeading": "Empty Heading", "textFastWV": "Fast Web View", + "textFeedback": "Feedback & Support", "textNo": "No", "textPageSize": "Page Size", "textPdfTagged": "Tagged PDF", "textPdfVer": "PDF Version", - "textYes": "Yes" + "textYes": "Yes", + "textNavigation": "Navigation", + "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", + "textBeginningDocument": "Beginning of document", + "textEmptyHeading": "Empty Heading" }, "Toolbar": { "dlgLeaveMsgText": "Você tem mudanças não salvas. Clique em 'Ficar nesta página' para esperar pela auto-salvar. Clique em 'Sair desta página' para descartar todas as mudanças não salvas.", diff --git a/apps/documenteditor/mobile/locale/ro.json b/apps/documenteditor/mobile/locale/ro.json index 60ed41041..54b830f03 100644 --- a/apps/documenteditor/mobile/locale/ro.json +++ b/apps/documenteditor/mobile/locale/ro.json @@ -650,12 +650,12 @@ "txtScheme6": "Concurență", "txtScheme7": "Echilibru", "txtScheme8": "Flux", + "txtScheme9": "Forjă", "textFeedback": "Feedback & Support", "textNavigation": "Navigation", "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", "textBeginningDocument": "Beginning of document", - "textEmptyHeading": "Empty Heading", - "txtScheme9": "Forjă" + "textEmptyHeading": "Empty Heading" }, "Toolbar": { "dlgLeaveMsgText": "Nu ați salvat modificările din documentul. Faceți clic pe Rămâi în pagină și așteptați la salvare automată. Faceți clic pe Părăsește aceasta pagina ca să renunțați la toate modificările nesalvate.", diff --git a/apps/documenteditor/mobile/locale/ru.json b/apps/documenteditor/mobile/locale/ru.json index d9a9bc42f..e3f06219a 100644 --- a/apps/documenteditor/mobile/locale/ru.json +++ b/apps/documenteditor/mobile/locale/ru.json @@ -650,12 +650,12 @@ "txtScheme6": "Открытая", "txtScheme7": "Справедливость", "txtScheme8": "Поток", + "txtScheme9": "Литейная", "textFeedback": "Feedback & Support", "textNavigation": "Navigation", "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", "textBeginningDocument": "Beginning of document", - "textEmptyHeading": "Empty Heading", - "txtScheme9": "Литейная" + "textEmptyHeading": "Empty Heading" }, "Toolbar": { "dlgLeaveMsgText": "В документе есть несохраненные изменения. Нажмите 'Остаться на странице', чтобы дождаться автосохранения. Нажмите 'Уйти со страницы', чтобы сбросить все несохраненные изменения.", diff --git a/apps/documenteditor/mobile/locale/sk.json b/apps/documenteditor/mobile/locale/sk.json index bddffdb4e..a7d607ae7 100644 --- a/apps/documenteditor/mobile/locale/sk.json +++ b/apps/documenteditor/mobile/locale/sk.json @@ -9,9 +9,6 @@ "textVersion": "Verzia" }, "Add": { - "textTableContents": "Table of Contents", - "textWithPageNumbers": "With Page Numbers", - "textWithBlueLinks": "With Blue Links", "notcriticalErrorTitle": "Upozornenie", "textAddLink": "Pridať odkaz", "textAddress": "Adresa", @@ -60,7 +57,10 @@ "textStartAt": "Začať na", "textTable": "Tabuľka", "textTableSize": "Veľkosť tabuľky", - "txtNotUrl": "Toto pole by malo byť vo formáte \"http://www.example.com\"" + "txtNotUrl": "Toto pole by malo byť vo formáte \"http://www.example.com\"", + "textTableContents": "Table of Contents", + "textWithPageNumbers": "With Page Numbers", + "textWithBlueLinks": "With Blue Links" }, "Common": { "Collaboration": { @@ -196,9 +196,9 @@ "textDoNotShowAgain": "Nezobrazovať znova", "textNumberingValue": "Hodnota číslovania", "textOk": "OK", + "textRows": "Riadky", "textRefreshEntireTable": "Refresh entire table", - "textRefreshPageNumbersOnly": "Refresh page numbers only", - "textRows": "Riadky" + "textRefreshPageNumbersOnly": "Refresh page numbers only" }, "Edit": { "notcriticalErrorTitle": "Upozornenie", @@ -327,6 +327,15 @@ "textTable": "Tabuľka", "textTableOptions": "Možnosti tabuľky", "textText": "Text", + "textTh": "št", + "textThrough": "Cez", + "textTight": "Tesný", + "textTopAndBottom": "Hore a dole", + "textTotalRow": "Celkový riadok", + "textTu": "ut", + "textType": "Typ", + "textWe": "st", + "textWrap": "Zabaliť", "textTableOfCont": "TOC", "textPageNumbers": "Page Numbers", "textSimple": "Simple", @@ -348,16 +357,7 @@ "textRefreshEntireTable": "Refresh entire table", "textRefreshPageNumbersOnly": "Refresh page numbers only", "textStyles": "Styles", - "textAmountOfLevels": "Amount of Levels", - "textTh": "št", - "textThrough": "Cez", - "textTight": "Tesný", - "textTopAndBottom": "Hore a dole", - "textTotalRow": "Celkový riadok", - "textTu": "ut", - "textType": "Typ", - "textWe": "st", - "textWrap": "Zabaliť" + "textAmountOfLevels": "Amount of Levels" }, "Error": { "convertationTimeoutText": "Prekročený čas konverzie.", @@ -383,8 +383,6 @@ "errorSessionIdle": "Dokument nebol dlhší čas upravovaný. Prosím, načítajte stránku znova.", "errorSessionToken": "Spojenie so serverom bolo prerušené. Prosím, načítajte stránku znova.", "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.", - "errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.", - "errorNoTOC": "There's no table of contents to update. You can insert one from the References tab.", "errorUpdateVersionOnDisconnect": "Internetové pripojenie 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.", "errorUserDrop": "K súboru momentálne nie je možné získať prístup.", "errorUsersExceed": "Počet používateľov povolených cenovým plánom bol prekročený", @@ -399,7 +397,9 @@ "unknownErrorText": "Neznáma chyba.", "uploadImageExtMessage": "Neznámy formát obrázka.", "uploadImageFileCountMessage": "Neboli načítané žiadne obrázky.", - "uploadImageSizeMessage": "Obrázok je príliš veľký. Maximálna veľkosť je 25 MB." + "uploadImageSizeMessage": "Obrázok je príliš veľký. Maximálna veľkosť je 25 MB.", + "errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.", + "errorNoTOC": "There's no table of contents to update. You can insert one from the References tab." }, "LongActions": { "applyChangesTextText": "Načítavanie dát...", @@ -626,11 +626,6 @@ "txtScheme1": "Kancelária", "txtScheme10": "Medián", "txtScheme11": "Metro", - "textFeedback": "Feedback & Support", - "textNavigation": "Navigation", - "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", - "textBeginningDocument": "Beginning of document", - "textEmptyHeading": "Empty Heading", "txtScheme12": "Modul", "txtScheme13": "Opulentný", "txtScheme14": "Výklenok", @@ -651,11 +646,16 @@ "txtScheme8": "Tok", "txtScheme9": "Zlieváreň", "textFastWV": "Fast Web View", + "textFeedback": "Feedback & Support", "textNo": "No", "textPageSize": "Page Size", "textPdfTagged": "Tagged PDF", "textPdfVer": "PDF Version", - "textYes": "Yes" + "textYes": "Yes", + "textNavigation": "Navigation", + "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", + "textBeginningDocument": "Beginning of document", + "textEmptyHeading": "Empty Heading" }, "Toolbar": { "dlgLeaveMsgText": "Máte neuložené zmeny. Kliknite na „Zostať na tejto stránke“ a počkajte na automatické uloženie. Kliknutím na „Opustiť túto stránku“ zahodíte všetky neuložené zmeny.", diff --git a/apps/documenteditor/mobile/locale/tr.json b/apps/documenteditor/mobile/locale/tr.json index 08f7d8a49..d147a198e 100644 --- a/apps/documenteditor/mobile/locale/tr.json +++ b/apps/documenteditor/mobile/locale/tr.json @@ -643,19 +643,19 @@ "txtScheme7": "Net Değer", "txtScheme8": "Yayılma", "txtScheme9": "Döküm", - "textFeedback": "Feedback & Support", - "textNavigation": "Navigation", - "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", - "textBeginningDocument": "Beginning of document", - "textEmptyHeading": "Empty Heading", "textFastWV": "Fast Web View", + "textFeedback": "Feedback & Support", "textNo": "No", "textPageSize": "Page Size", "textPdfTagged": "Tagged PDF", "textPdfVer": "PDF Version", "textYes": "Yes", "txtScheme14": "Oriel", - "txtScheme19": "Trek" + "txtScheme19": "Trek", + "textNavigation": "Navigation", + "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", + "textBeginningDocument": "Beginning of document", + "textEmptyHeading": "Empty Heading" }, "Toolbar": { "dlgLeaveMsgText": "Kaydedilmemiş değişiklikleriniz mevcut. Otomatik kaydetmeyi beklemek için 'Bu Sayfada Kal' seçeneğini tıklayın. Kaydedilmemiş tüm değişiklikleri atmak için 'Bu Sayfadan Ayrıl'ı tıklayın.", diff --git a/apps/documenteditor/mobile/locale/uk.json b/apps/documenteditor/mobile/locale/uk.json index 16fe3a446..11705e78d 100644 --- a/apps/documenteditor/mobile/locale/uk.json +++ b/apps/documenteditor/mobile/locale/uk.json @@ -645,17 +645,17 @@ "txtScheme7": "Власний", "txtScheme8": "Потік", "txtScheme9": "Ливарна", - "textFeedback": "Feedback & Support", - "textNavigation": "Navigation", - "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", - "textBeginningDocument": "Beginning of document", - "textEmptyHeading": "Empty Heading", "textFastWV": "Fast Web View", + "textFeedback": "Feedback & Support", "textNo": "No", "textPageSize": "Page Size", "textPdfTagged": "Tagged PDF", "textPdfVer": "PDF Version", - "textYes": "Yes" + "textYes": "Yes", + "textNavigation": "Navigation", + "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", + "textBeginningDocument": "Beginning of document", + "textEmptyHeading": "Empty Heading" }, "Toolbar": { "dlgLeaveMsgText": "У документі є незбережені зміни. Натисніть 'Залишитись на сторінці', щоб дочекатися автозбереження. Натисніть 'Піти зі сторінки', щоб скинути всі незбережені зміни.", diff --git a/apps/documenteditor/mobile/locale/zh.json b/apps/documenteditor/mobile/locale/zh.json index 8249bfabd..0d956cde4 100644 --- a/apps/documenteditor/mobile/locale/zh.json +++ b/apps/documenteditor/mobile/locale/zh.json @@ -645,17 +645,17 @@ "txtScheme7": "公平", "txtScheme8": "流动", "txtScheme9": "发现", - "textFeedback": "Feedback & Support", - "textNavigation": "Navigation", - "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", - "textBeginningDocument": "Beginning of document", - "textEmptyHeading": "Empty Heading", "textFastWV": "Fast Web View", + "textFeedback": "Feedback & Support", "textNo": "No", "textPageSize": "Page Size", "textPdfTagged": "Tagged PDF", "textPdfVer": "PDF Version", - "textYes": "Yes" + "textYes": "Yes", + "textNavigation": "Navigation", + "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", + "textBeginningDocument": "Beginning of document", + "textEmptyHeading": "Empty Heading" }, "Toolbar": { "dlgLeaveMsgText": "你有未保存的修改。点击“留在该页”可等待自动保存完成。点击“离开该页”将丢弃全部未经保存的修改。", diff --git a/apps/documenteditor/mobile/src/controller/Main.jsx b/apps/documenteditor/mobile/src/controller/Main.jsx index 8675fc898..12babf8d8 100644 --- a/apps/documenteditor/mobile/src/controller/Main.jsx +++ b/apps/documenteditor/mobile/src/controller/Main.jsx @@ -133,8 +133,11 @@ class MainController extends Component { docInfo.put_Lang(this.editorConfig.lang); docInfo.put_Mode(this.editorConfig.mode); - if (typeof this.editorConfig.coEditing == 'object' && this.editorConfig.coEditing.mode!==undefined) - docInfo.put_CoEditingMode(this.editorConfig.coEditing.mode); + // var coEditMode = !(this.editorConfig.coEditing && typeof this.editorConfig.coEditing == 'object') ? 'fast' : // fast by default + // this.editorConfig.mode === 'view' && this.editorConfig.coEditing.change!==false ? 'fast' : // if can change mode in viewer - set fast for using live viewer + // this.editorConfig.coEditing.mode || 'fast'; + // docInfo.put_CoEditingMode(coEditMode); + docInfo.put_CoEditingMode('strict'); // need to change!!! let enable = !this.editorConfig.customization || (this.editorConfig.customization.macros !== false); docInfo.asc_putIsEnabledMacroses(!!enable); @@ -620,6 +623,7 @@ class MainController extends Component { default: storeTextSettings.resetBullets(-1); storeTextSettings.resetNumbers(-1); + storeTextSettings.resetMultiLevel(-1); } }); this.api.asc_registerCallback('asc_onPrAlign', (align) => { diff --git a/apps/documenteditor/mobile/src/view/edit/EditText.jsx b/apps/documenteditor/mobile/src/view/edit/EditText.jsx index a1bc114e2..7a0fe89eb 100644 --- a/apps/documenteditor/mobile/src/view/edit/EditText.jsx +++ b/apps/documenteditor/mobile/src/view/edit/EditText.jsx @@ -286,11 +286,11 @@ const PageMultiLevel = observer( props => { {arrayMultiLevel.map((item) => ( - { - item.type === -1 ? storeTextSettings.resetMultiLevel(-1) : storeTextSettings.resetMultiLevel(null); - props.onMultiLevelList(item.type); - }}> + props.onMultiLevelList(item.type)}> {item.thumb.length < 1 ? diff --git a/apps/presentationeditor/main/app/controller/LeftMenu.js b/apps/presentationeditor/main/app/controller/LeftMenu.js index cf536f9a6..50807ed54 100644 --- a/apps/presentationeditor/main/app/controller/LeftMenu.js +++ b/apps/presentationeditor/main/app/controller/LeftMenu.js @@ -349,7 +349,7 @@ define([ Common.Utils.InternalSettings.set("pe-settings-coauthmode", fast_coauth); this.api.asc_SetFastCollaborative(fast_coauth); } - } else if (!this.mode.isEdit && !this.mode.isRestrictedEdit && !this.mode.isOffline && this.mode.canChangeCoAuthoring) { // viewer + } else if (this.mode.canLiveView && !this.mode.isOffline && this.mode.canChangeCoAuthoring) { // viewer fast_coauth = Common.localStorage.getBool("pe-settings-view-coauthmode", false); Common.Utils.InternalSettings.set("pe-settings-coauthmode", fast_coauth); this.api.asc_SetFastCollaborative(fast_coauth); diff --git a/apps/presentationeditor/main/app/controller/Main.js b/apps/presentationeditor/main/app/controller/Main.js index 69237409d..9f12663c8 100644 --- a/apps/presentationeditor/main/app/controller/Main.js +++ b/apps/presentationeditor/main/app/controller/Main.js @@ -430,8 +430,10 @@ define([ docInfo.put_Lang(this.editorConfig.lang); docInfo.put_Mode(this.editorConfig.mode); - if (typeof this.editorConfig.coEditing == 'object' && this.editorConfig.coEditing.mode!==undefined) - docInfo.put_CoEditingMode(this.editorConfig.coEditing.mode); + var coEditMode = !(this.editorConfig.coEditing && typeof this.editorConfig.coEditing == 'object') ? 'fast' : // fast by default + this.editorConfig.mode === 'view' && this.editorConfig.coEditing.change!==false ? 'fast' : // if can change mode in viewer - set fast for using live viewer + this.editorConfig.coEditing.mode || 'fast'; + docInfo.put_CoEditingMode(coEditMode); var enable = !this.editorConfig.customization || (this.editorConfig.customization.macros!==false); docInfo.asc_putIsEnabledMacroses(!!enable); @@ -931,8 +933,7 @@ define([ } else { documentHolderController.getView('DocumentHolder').createDelayedElementsViewer(); Common.NotificationCenter.trigger('document:ready', 'main'); - if (me.editorConfig.mode !== 'view') // if want to open editor, but viewer is loaded - me.applyLicense(); + me.applyLicense(); } // TODO bug 43960 @@ -967,12 +968,20 @@ define([ || licType===Asc.c_oLicenseResult.SuccessLimit && (this.appOptions.trialMode & Asc.c_oLicenseMode.Limited) !== 0)) this._state.licenseType = licType; + if (licType !== undefined && this.appOptions.canLiveView && (licType===Asc.c_oLicenseResult.ConnectionsLive || licType===Asc.c_oLicenseResult.ConnectionsLiveOS)) + this._state.licenseType = licType; + if (this._isDocReady) this.applyLicense(); }, applyLicense: function() { - if (this._state.licenseType) { + if (this.editorConfig.mode === 'view') { + if (this.appOptions.canLiveView && (this._state.licenseType===Asc.c_oLicenseResult.ConnectionsLive || this._state.licenseType===Asc.c_oLicenseResult.ConnectionsLiveOS)) { + // show warning or write to log if Common.Utils.InternalSettings.get("pe-settings-coauthmode") was true ??? + this.disableLiveViewing(true); + } + } else if (this._state.licenseType) { var license = this._state.licenseType, buttons = ['ok'], primary = 'ok'; @@ -1094,6 +1103,12 @@ define([ } }, + disableLiveViewing: function(disable) { + this.appOptions.canLiveView = !disable; + this.api.asc_SetFastCollaborative(!disable); + Common.Utils.InternalSettings.set("pe-settings-coauthmode", !disable); + }, + onOpenDocument: function(progress) { var elem = document.getElementById('loadmask-text'); var proc = (progress.asc_getCurrentFont() + progress.asc_getCurrentImage())/(progress.asc_getFontsCount() + progress.asc_getImagesCount()); @@ -1194,9 +1209,10 @@ define([ this.appOptions.canBrandingExt && this.editorConfig.customization && Common.UI.LayoutManager.init(this.editorConfig.customization.layout); this.editorConfig.customization && Common.UI.FeaturesManager.init(this.editorConfig.customization.features, this.appOptions.canBrandingExt); - // change = true by default in editor, change = false by default in viewer - this.appOptions.canChangeCoAuthoring = this.appOptions.isEdit && this.appOptions.canCoAuthoring && !(typeof this.editorConfig.coEditing == 'object' && this.editorConfig.coEditing.change===false) || - !this.appOptions.isEdit && !this.appOptions.isRestrictedEdit && (typeof this.editorConfig.coEditing == 'object' && this.editorConfig.coEditing.change===true) ; + // change = true by default in editor + this.appOptions.canLiveView = !!params.asc_getLiveViewerSupport() && (this.editorConfig.mode === 'view'); // viewer: change=false when no flag canLiveViewer (i.g. old license), change=true by default when canLiveViewer==true + this.appOptions.canChangeCoAuthoring = this.appOptions.isEdit && this.appOptions.canCoAuthoring && !(this.editorConfig.coEditing && typeof this.editorConfig.coEditing == 'object' && this.editorConfig.coEditing.change===false) || + this.appOptions.canLiveView && !(this.editorConfig.coEditing && typeof this.editorConfig.coEditing == 'object' && this.editorConfig.coEditing.change===false); this.loadCoAuthSettings(); this.applyModeCommonElements(); @@ -1238,14 +1254,10 @@ define([ fastCoauth = (value===null || parseInt(value) == 1); } else if (!this.appOptions.isEdit && this.appOptions.isRestrictedEdit) { fastCoauth = true; - } else if (!this.appOptions.isEdit && !this.appOptions.isRestrictedEdit && !this.appOptions.isOffline) { // viewer - if (!this.appOptions.canChangeCoAuthoring) { //can't change co-auth. mode. Use coEditing.mode or 'strict' by default - value = this.editorConfig.coEditing && this.editorConfig.coEditing.mode==='fast' ? 1 : 0; - } else { - value = Common.localStorage.getItem("pe-settings-view-coauthmode"); - if (value===null) { - value = this.editorConfig.coEditing && this.editorConfig.coEditing.mode==='fast' ? 1 : 0; - } + } else if (this.appOptions.canLiveView && !this.appOptions.isOffline) { // viewer + value = Common.localStorage.getItem("pe-settings-view-coauthmode"); + if (!this.appOptions.canChangeCoAuthoring || value===null) { // Use coEditing.mode or 'fast' by default + value = this.editorConfig.coEditing && this.editorConfig.coEditing.mode==='strict' ? 0 : 1; } fastCoauth = (parseInt(value) == 1); } else { diff --git a/apps/presentationeditor/main/app/view/FileMenuPanels.js b/apps/presentationeditor/main/app/view/FileMenuPanels.js index a61f0e954..a620192a0 100644 --- a/apps/presentationeditor/main/app/view/FileMenuPanels.js +++ b/apps/presentationeditor/main/app/view/FileMenuPanels.js @@ -593,7 +593,7 @@ define([ /** coauthoring begin **/ $('tr.coauth.changes', this.el)[mode.isEdit && !mode.isOffline && mode.canCoAuthoring && mode.canChangeCoAuthoring ? 'show' : 'hide'](); /** coauthoring end **/ - $('tr.live-viewer', this.el)[!mode.isEdit && !mode.isRestrictedEdit && !mode.isOffline && mode.canChangeCoAuthoring ? 'show' : 'hide'](); + $('tr.live-viewer', this.el)[mode.canLiveView && !mode.isOffline && mode.canChangeCoAuthoring ? 'show' : 'hide'](); $('tr.macros', this.el)[(mode.customization && mode.customization.macros===false) ? 'hide' : 'show'](); $('tr.spellcheck', this.el)[mode.isEdit && Common.UI.FeaturesManager.canChange('spellcheck') ? 'show' : 'hide'](); @@ -683,7 +683,7 @@ define([ /** coauthoring begin **/ if (this.mode.isEdit && !this.mode.isOffline && this.mode.canCoAuthoring && this.mode.canChangeCoAuthoring) { Common.localStorage.setItem("pe-settings-coauthmode", this.rbCoAuthModeFast.getValue()); - } else if (!this.mode.isEdit && !this.mode.isRestrictedEdit && !this.mode.isOffline && this.mode.canChangeCoAuthoring) { // viewer + } else if (this.mode.canLiveView && !this.mode.isOffline && this.mode.canChangeCoAuthoring) { // viewer Common.localStorage.setItem("pe-settings-view-coauthmode", this.chLiveViewer.isChecked() ? 1 : 0); } /** coauthoring end **/ diff --git a/apps/presentationeditor/main/locale/az.json b/apps/presentationeditor/main/locale/az.json index 5e1e7d00f..f21aeaf3d 100644 --- a/apps/presentationeditor/main/locale/az.json +++ b/apps/presentationeditor/main/locale/az.json @@ -1349,21 +1349,13 @@ "PE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "Elektron imzalar etibarsızdır və ya yoxlanıla bilməz. Sənəd dəyişikliklərdən qorunur.", "PE.Views.FileMenuPanels.ProtectDoc.txtView": "İmzalara baxın", "PE.Views.FileMenuPanels.Settings.okButtonText": "Tətbiq et", - "PE.Views.FileMenuPanels.Settings.strAlignGuides": "Düzülüş bələdçilərini aktivləşdirin", - "PE.Views.FileMenuPanels.Settings.strAutoRecover": "Avtomatik bərpanı aktivləşdirin", - "PE.Views.FileMenuPanels.Settings.strAutosave": "Avtomatik Saxla funksiyasını aktivləşdirin", "PE.Views.FileMenuPanels.Settings.strCoAuthMode": "Birgə redaktə Rejimi", - "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Digər istifadəçilər dəyişikliklərinizi dərhal görəcəklər", - "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "Dəyişiklikləri görməzdən əvvəl onları qəbul etməlisiniz", "PE.Views.FileMenuPanels.Settings.strFast": "Sürətli", "PE.Views.FileMenuPanels.Settings.strFontRender": "Şrift Hamarlaşdırma", "PE.Views.FileMenuPanels.Settings.strForcesave": "Yadda saxla və ya Ctrl+S düyməsinə kliklədikdən sonra versiyanı yaddaşa əlavə edin", - "PE.Views.FileMenuPanels.Settings.strInputMode": "Heroqlifi aktivləşdirin", "PE.Views.FileMenuPanels.Settings.strMacrosSettings": "Makro Parametrləri", "PE.Views.FileMenuPanels.Settings.strPaste": "Kes, kopyala ve yapıştır", "PE.Views.FileMenuPanels.Settings.strPasteButton": "Məzmun yapışdırıldıqda Yapışdırma Seçimləri düyməsini göstərin", - "PE.Views.FileMenuPanels.Settings.strShowChanges": "Birgə Redaktədə Dəyişikliklər", - "PE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Orfoqrafiya yoxlamasını aktivləşdirin", "PE.Views.FileMenuPanels.Settings.strStrict": "Məhdudlaşdır", "PE.Views.FileMenuPanels.Settings.strTheme": "İnterfeys mövzusu", "PE.Views.FileMenuPanels.Settings.strUnit": "Ölçü Vahidi", diff --git a/apps/presentationeditor/main/locale/be.json b/apps/presentationeditor/main/locale/be.json index f984a8f50..097de55d8 100644 --- a/apps/presentationeditor/main/locale/be.json +++ b/apps/presentationeditor/main/locale/be.json @@ -1318,21 +1318,13 @@ "PE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "Некаторыя з лічбавых подпісаў у прэзентацыі хібныя альбо іх немагчыма праверыць. Прэзентацыя абароненая ад рэдагавання.", "PE.Views.FileMenuPanels.ProtectDoc.txtView": "Прагляд подпісаў", "PE.Views.FileMenuPanels.Settings.okButtonText": "Ужыць", - "PE.Views.FileMenuPanels.Settings.strAlignGuides": "Уключыць кірункі выраўноўвання", - "PE.Views.FileMenuPanels.Settings.strAutoRecover": "Уключыць аўтааднаўленне", - "PE.Views.FileMenuPanels.Settings.strAutosave": "Уключыць аўтазахаванне", "PE.Views.FileMenuPanels.Settings.strCoAuthMode": "Рэжым сумеснага рэдагавання", - "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Іншыя карыстальнікі адразу будуць бачыць вашыя змены.", - "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "Перш чым убачыць змены іх патрэбна ухваліць", "PE.Views.FileMenuPanels.Settings.strFast": "Хуткі", "PE.Views.FileMenuPanels.Settings.strFontRender": "Хінтынг шрыфтоў", "PE.Views.FileMenuPanels.Settings.strForcesave": "Заўсёды захоўваць на серверы (інакш захоўваць на серверы падчас закрыцця дакумента)", - "PE.Views.FileMenuPanels.Settings.strInputMode": "Уключыць іерогліфы", "PE.Views.FileMenuPanels.Settings.strMacrosSettings": "Налады макрасаў", "PE.Views.FileMenuPanels.Settings.strPaste": "Выразаць, капіяваць і ўставіць", "PE.Views.FileMenuPanels.Settings.strPasteButton": "Паказваць кнопку параметраў устаўкі падчас устаўкі", - "PE.Views.FileMenuPanels.Settings.strShowChanges": "Адлюстроўваць змены падчас сумеснай працы", - "PE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Уключыць праверку правапісу", "PE.Views.FileMenuPanels.Settings.strStrict": "Строгі", "PE.Views.FileMenuPanels.Settings.strUnit": "Адзінкі вымярэння", "PE.Views.FileMenuPanels.Settings.strZoom": "Прадвызначанае значэнне маштабу", diff --git a/apps/presentationeditor/main/locale/bg.json b/apps/presentationeditor/main/locale/bg.json index 2f76b9578..c228f1005 100644 --- a/apps/presentationeditor/main/locale/bg.json +++ b/apps/presentationeditor/main/locale/bg.json @@ -1148,18 +1148,10 @@ "PE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "Някои от цифровите подписи в презентацията са невалидни или не могат да бъдат проверени. Презентацията е защитена от редактиране.", "PE.Views.FileMenuPanels.ProtectDoc.txtView": "Преглед на подписи", "PE.Views.FileMenuPanels.Settings.okButtonText": "Приложи", - "PE.Views.FileMenuPanels.Settings.strAlignGuides": "Включете водачите за подравняване", - "PE.Views.FileMenuPanels.Settings.strAutoRecover": "Включете функцията за автоматично откриване", - "PE.Views.FileMenuPanels.Settings.strAutosave": "Включете автоматичното запазване", "PE.Views.FileMenuPanels.Settings.strCoAuthMode": "Режим на съвместно редактиране", - "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Други потребители ще видят промените Ви наведнъж", - "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "Трябва да приемете промените, преди да можете да ги видите", "PE.Views.FileMenuPanels.Settings.strFast": "Бърз", "PE.Views.FileMenuPanels.Settings.strFontRender": "Подсказване на шрифт", "PE.Views.FileMenuPanels.Settings.strForcesave": "Винаги да се съхранява в сървъра (в противен случай да се запази на сървър на документ затворен)", - "PE.Views.FileMenuPanels.Settings.strInputMode": "Включете йероглифите", - "PE.Views.FileMenuPanels.Settings.strShowChanges": "Промени в системата в реално време", - "PE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Включване на опцията за проверка на правописа", "PE.Views.FileMenuPanels.Settings.strStrict": "Стриктен", "PE.Views.FileMenuPanels.Settings.strUnit": "Единица за измерване", "PE.Views.FileMenuPanels.Settings.strZoom": "Стойност на мащаба по подразбиране", diff --git a/apps/presentationeditor/main/locale/ca.json b/apps/presentationeditor/main/locale/ca.json index e03792935..358759a01 100644 --- a/apps/presentationeditor/main/locale/ca.json +++ b/apps/presentationeditor/main/locale/ca.json @@ -1587,21 +1587,13 @@ "PE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "Algunes de les signatures digitals presentades no són vàlides o no s'han pogut verificar. La presentació està protegida i no es pot editar.", "PE.Views.FileMenuPanels.ProtectDoc.txtView": "Mostra les signatures", "PE.Views.FileMenuPanels.Settings.okButtonText": "Aplica", - "PE.Views.FileMenuPanels.Settings.strAlignGuides": "Activa les guies d'alineació", - "PE.Views.FileMenuPanels.Settings.strAutoRecover": "Activa la recuperació automàtica", - "PE.Views.FileMenuPanels.Settings.strAutosave": "Activa el desament automàtic", "PE.Views.FileMenuPanels.Settings.strCoAuthMode": "Mode de coedició", - "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Els altres usuaris veuran els vostres canvis immediatament", - "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "Cal acceptar els canvis abans de poder-los veure", "PE.Views.FileMenuPanels.Settings.strFast": "Ràpid", "PE.Views.FileMenuPanels.Settings.strFontRender": "Tipus de lletra suggerides", "PE.Views.FileMenuPanels.Settings.strForcesave": "Afegeix la versió a l'emmagatzematge després de clicar a Desa o Ctrl + S", - "PE.Views.FileMenuPanels.Settings.strInputMode": "Activa els jeroglífics", "PE.Views.FileMenuPanels.Settings.strMacrosSettings": "Configuració de les macros", "PE.Views.FileMenuPanels.Settings.strPaste": "Tallar copia i enganxa", "PE.Views.FileMenuPanels.Settings.strPasteButton": "Mostra el botó d'opcions d’enganxar quan s’enganxa contingut", - "PE.Views.FileMenuPanels.Settings.strShowChanges": "Canvis de col·laboració en temps real", - "PE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Activa l’opció de correcció ortogràfica", "PE.Views.FileMenuPanels.Settings.strStrict": "Estricte", "PE.Views.FileMenuPanels.Settings.strTheme": "Tema de la interfície", "PE.Views.FileMenuPanels.Settings.strUnit": "Unitat de mesura", diff --git a/apps/presentationeditor/main/locale/cs.json b/apps/presentationeditor/main/locale/cs.json index bc783a263..69aa2349f 100644 --- a/apps/presentationeditor/main/locale/cs.json +++ b/apps/presentationeditor/main/locale/cs.json @@ -349,6 +349,7 @@ "Common.Views.Comments.textResolved": "Vyřešeno", "Common.Views.Comments.textSort": "Řadit komentáře", "Common.Views.Comments.textViewResolved": "Nemáte oprávnění pro opětovné otevírání komentářů", + "Common.Views.Comments.txtEmpty": "Dokument neobsahuje komentáře.", "Common.Views.CopyWarningDialog.textDontShow": "Tuto zprávu už nezobrazovat", "Common.Views.CopyWarningDialog.textMsg": "Akce kopírovat, vyjmout a vložit použitím lišty nástrojů editoru a kontextové nabídky budou prováděny pouze v tomto okně editoru.

Pro kopírování do nebo vkládání z aplikací mimo okno editoru použijte následující klávesové zkratky:", "Common.Views.CopyWarningDialog.textTitle": "Akce kopírovat, vyjmout a vložit", @@ -1586,21 +1587,13 @@ "PE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "Některé z digitálních podpisů v prezentaci nejsou platné nebo se je nedaří ověřit. Prezentace je zabezpečena proti úpravám.", "PE.Views.FileMenuPanels.ProtectDoc.txtView": "Zobrazit podpisy", "PE.Views.FileMenuPanels.Settings.okButtonText": "Použít", - "PE.Views.FileMenuPanels.Settings.strAlignGuides": "Zapnout vodítka pro zarovnávání", - "PE.Views.FileMenuPanels.Settings.strAutoRecover": "Zapnout automatickou obnovu", - "PE.Views.FileMenuPanels.Settings.strAutosave": "Zapnout automatické ukládání", "PE.Views.FileMenuPanels.Settings.strCoAuthMode": "Režim spolupráce na úpravách", - "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Ostatní uživatelé okamžitě uvidí vámi prováděné změny", - "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "Abyste změny uviděli, je třeba je nejprve přijmout", "PE.Views.FileMenuPanels.Settings.strFast": "Automatický", "PE.Views.FileMenuPanels.Settings.strFontRender": "Vyhlazování hran znaků", "PE.Views.FileMenuPanels.Settings.strForcesave": "Přidejte verzi do úložiště kliknutím na Uložit nebo Ctrl+S", - "PE.Views.FileMenuPanels.Settings.strInputMode": "Zapnout podporu pro obrázková písma", "PE.Views.FileMenuPanels.Settings.strMacrosSettings": "Nastavení maker", "PE.Views.FileMenuPanels.Settings.strPaste": "Vyjmout, kopírovat, vložit", "PE.Views.FileMenuPanels.Settings.strPasteButton": "Zobrazit možnosti vložení, při vkládání obsahu", - "PE.Views.FileMenuPanels.Settings.strShowChanges": "Změny při spolupráci v reálném čase", - "PE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Kontrolovat pravopis", "PE.Views.FileMenuPanels.Settings.strStrict": "Striktní", "PE.Views.FileMenuPanels.Settings.strTheme": "Vzhled prostředí", "PE.Views.FileMenuPanels.Settings.strUnit": "Měřit v jednotkách", diff --git a/apps/presentationeditor/main/locale/da.json b/apps/presentationeditor/main/locale/da.json index 83cb632c9..0b6c12005 100644 --- a/apps/presentationeditor/main/locale/da.json +++ b/apps/presentationeditor/main/locale/da.json @@ -1347,21 +1347,13 @@ "PE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "Nogle af de digitale signaturer i præsentationen er ugyldige eller kunne ikke verificeres. Præsentationen er beskyttet mod redigering", "PE.Views.FileMenuPanels.ProtectDoc.txtView": "Se underskrifter", "PE.Views.FileMenuPanels.Settings.okButtonText": "Anvend", - "PE.Views.FileMenuPanels.Settings.strAlignGuides": "Slå justeringsguide til", - "PE.Views.FileMenuPanels.Settings.strAutoRecover": "Slå automatisk genoprettelse til", - "PE.Views.FileMenuPanels.Settings.strAutosave": "Slå gem automatisk til", "PE.Views.FileMenuPanels.Settings.strCoAuthMode": "Fællesredigeringstilstand", - "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Andre brugere vil se dine ændringer på en gang", - "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "Du skal acceptere ændringer før du kan se dem", "PE.Views.FileMenuPanels.Settings.strFast": "Hurtig", "PE.Views.FileMenuPanels.Settings.strFontRender": "Skrifttype hentydning", "PE.Views.FileMenuPanels.Settings.strForcesave": "Tilføj version til lageret efter at have klikket på Gem eller Ctrl+S", - "PE.Views.FileMenuPanels.Settings.strInputMode": "Slå hieroglyfher til ", "PE.Views.FileMenuPanels.Settings.strMacrosSettings": "Makroindstillinger", "PE.Views.FileMenuPanels.Settings.strPaste": "Klip, kopier og indsæt", "PE.Views.FileMenuPanels.Settings.strPasteButton": "Vis knappen for Indsæt-optioner når indhold indsættes", - "PE.Views.FileMenuPanels.Settings.strShowChanges": "Real tids samarbejdsændringer", - "PE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Slå stavekontrolstilstand til ", "PE.Views.FileMenuPanels.Settings.strStrict": "Striks", "PE.Views.FileMenuPanels.Settings.strTheme": "Interface tema", "PE.Views.FileMenuPanels.Settings.strUnit": "Måleenhed", diff --git a/apps/presentationeditor/main/locale/de.json b/apps/presentationeditor/main/locale/de.json index 7439f0324..7ec1d6b25 100644 --- a/apps/presentationeditor/main/locale/de.json +++ b/apps/presentationeditor/main/locale/de.json @@ -1569,21 +1569,13 @@ "PE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "Einige der digitalen Signaturen in der Präsentation sind ungültig oder konnten nicht verifiziert werden. Die Präsentation ist vor der Bearbeitung geschützt.", "PE.Views.FileMenuPanels.ProtectDoc.txtView": "Signaturen anzeigen", "PE.Views.FileMenuPanels.Settings.okButtonText": "Anwenden", - "PE.Views.FileMenuPanels.Settings.strAlignGuides": "Ausrichtungslinien einschalten", - "PE.Views.FileMenuPanels.Settings.strAutoRecover": "AutoWiederherstellen einschalten ", - "PE.Views.FileMenuPanels.Settings.strAutosave": "AutoSpeichern einschalten", "PE.Views.FileMenuPanels.Settings.strCoAuthMode": "Modus \"Gemeinsame Bearbeitung\"", - "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Andere Benutzer werden Ihre Änderungen gleichzeitig sehen", - "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "Sie müssen die Änderungen annehmen, bevor Sie diese sehen können", "PE.Views.FileMenuPanels.Settings.strFast": "Schnell", "PE.Views.FileMenuPanels.Settings.strFontRender": "Schriftglättung", "PE.Views.FileMenuPanels.Settings.strForcesave": "Immer auf dem Server speichern (ansonsten auf dem Server beim Schließen des Dokuments speichern)", - "PE.Views.FileMenuPanels.Settings.strInputMode": "Hieroglyphen einschalten", "PE.Views.FileMenuPanels.Settings.strMacrosSettings": "Einstellungen von Makros", "PE.Views.FileMenuPanels.Settings.strPaste": "Ausschneiden, Kopieren und Einfügen", "PE.Views.FileMenuPanels.Settings.strPasteButton": "Die Schaltfläche Einfügeoptionen beim Einfügen von Inhalten anzeigen", - "PE.Views.FileMenuPanels.Settings.strShowChanges": "Änderungen bei der Echtzeit-Zusammenarbeit zeigen", - "PE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Rechtschreibprüfung einschalten", "PE.Views.FileMenuPanels.Settings.strStrict": "Formal", "PE.Views.FileMenuPanels.Settings.strTheme": "Thema der Benutzeroberfläche", "PE.Views.FileMenuPanels.Settings.strUnit": "Maßeinheit", diff --git a/apps/presentationeditor/main/locale/el.json b/apps/presentationeditor/main/locale/el.json index 559cf3289..c53dc9711 100644 --- a/apps/presentationeditor/main/locale/el.json +++ b/apps/presentationeditor/main/locale/el.json @@ -1569,21 +1569,13 @@ "PE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "Κάποιες από τις ψηφιακές υπογραφές στην παρουσίαση είναι άκυρες ή δεν επαληθεύτηκαν. Η παρουσίαση έχει προστασία τροποποίησης.", "PE.Views.FileMenuPanels.ProtectDoc.txtView": "Προβολή υπογραφών", "PE.Views.FileMenuPanels.Settings.okButtonText": "Εφαρμογή", - "PE.Views.FileMenuPanels.Settings.strAlignGuides": "Ενεργοποίηση οδηγών στοίχισης", - "PE.Views.FileMenuPanels.Settings.strAutoRecover": "Ενεργοποίηση αυτόματης αποκατάστασης", - "PE.Views.FileMenuPanels.Settings.strAutosave": "Ενεργοποίηση αυτόματης αποθήκευσης", "PE.Views.FileMenuPanels.Settings.strCoAuthMode": "Κατάσταση Συν-επεξεργασίας", - "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Οι άλλοι χρήστες θα δουν τις αλλαγές σας ταυτόχρονα", - "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "Θα χρειαστεί να αποδεχτείτε αλλαγές πριν να τις δείτε", "PE.Views.FileMenuPanels.Settings.strFast": "Γρήγορη", "PE.Views.FileMenuPanels.Settings.strFontRender": "Βελτιστοποίηση Γραμματοσειράς", "PE.Views.FileMenuPanels.Settings.strForcesave": "Προσθήκη έκδοσης στο χώρο αποθήκευσης μετά την Αποθήκευση ή Ctrl+S", - "PE.Views.FileMenuPanels.Settings.strInputMode": "Ενεργοποίηση ιερογλυφικών", "PE.Views.FileMenuPanels.Settings.strMacrosSettings": "Ρυθμίσεις Mακροεντολών", "PE.Views.FileMenuPanels.Settings.strPaste": "Αποκοπή, αντιγραφή και επικόλληση", "PE.Views.FileMenuPanels.Settings.strPasteButton": "Εμφάνιση κουμπιού Επιλογών Επικόλλησης κατά την επικόλληση περιεχομένου", - "PE.Views.FileMenuPanels.Settings.strShowChanges": "Αλλαγές Συνεργασίας Πραγματικού Χρόνου", - "PE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Ενεργοποίηση επιλογής ορθογραφικού ελέγχου", "PE.Views.FileMenuPanels.Settings.strStrict": "Αυστηρή", "PE.Views.FileMenuPanels.Settings.strTheme": "Θέμα", "PE.Views.FileMenuPanels.Settings.strUnit": "Μονάδα Μέτρησης", diff --git a/apps/presentationeditor/main/locale/en.json b/apps/presentationeditor/main/locale/en.json index 44305f7e9..b979b7167 100644 --- a/apps/presentationeditor/main/locale/en.json +++ b/apps/presentationeditor/main/locale/en.json @@ -275,6 +275,7 @@ "Common.UI.Themes.txtThemeClassicLight": "Classic Light", "Common.UI.Themes.txtThemeDark": "Dark", "Common.UI.Themes.txtThemeLight": "Light", + "Common.UI.Themes.txtThemeSystem": "Same as system", "Common.UI.Window.cancelButtonText": "Cancel", "Common.UI.Window.closeButtonText": "Close", "Common.UI.Window.noButtonText": "No", @@ -375,6 +376,7 @@ "Common.Views.Header.textSaveChanged": "Modified", "Common.Views.Header.textSaveEnd": "All changes saved", "Common.Views.Header.textSaveExpander": "All changes saved", + "Common.Views.Header.textShare": "Share", "Common.Views.Header.textZoom": "Zoom", "Common.Views.Header.tipAccessRights": "Manage document access rights", "Common.Views.Header.tipDownload": "Download file", @@ -384,12 +386,11 @@ "Common.Views.Header.tipSave": "Save", "Common.Views.Header.tipUndo": "Undo", "Common.Views.Header.tipUndock": "Undock into separate window", + "Common.Views.Header.tipUsers": "View users", "Common.Views.Header.tipViewSettings": "View settings", "Common.Views.Header.tipViewUsers": "View users and manage document access rights", - "Common.Views.Header.tipUsers": "View users", "Common.Views.Header.txtAccessRights": "Change access rights", "Common.Views.Header.txtRename": "Rename", - "Common.Views.Header.textShare": "Share", "Common.Views.History.textCloseHistory": "Close History", "Common.Views.History.textHide": "Collapse", "Common.Views.History.textHideAll": "Hide detailed changes", @@ -578,6 +579,7 @@ "Common.Views.UserNameDialog.textDontShow": "Don't ask me again", "Common.Views.UserNameDialog.textLabel": "Label:", "Common.Views.UserNameDialog.textLabelError": "Label must not be empty.", + "del_PE.Views.FileMenuPanels.Settings.strAutoRecover": "Turn on autorecover", "PE.Controllers.LeftMenu.leavePageText": "All unsaved changes in this document will be lost.
Click \"Cancel\" then \"Save\" to save them. Click \"OK\" to discard all the unsaved changes.", "PE.Controllers.LeftMenu.newDocumentTitle": "Unnamed presentation", "PE.Controllers.LeftMenu.notcriticalErrorTitle": "Warning", @@ -1338,18 +1340,18 @@ "PE.Views.ChartSettingsAdvanced.textAltDescription": "Description", "PE.Views.ChartSettingsAdvanced.textAltTip": "The alternative text-based representation of the visual object information, which will be read to the people with vision or cognitive impairments to help them better understand what information there is in the image, autoshape, chart, or table.", "PE.Views.ChartSettingsAdvanced.textAltTitle": "Title", - "PE.Views.ChartSettingsAdvanced.textTitle": "Chart - Advanced Settings", - "PE.Views.ChartSettingsAdvanced.textPlacement": "Placement", - "PE.Views.ChartSettingsAdvanced.textSize": "Size", - "PE.Views.ChartSettingsAdvanced.textWidth": "Width", - "PE.Views.ChartSettingsAdvanced.textHeight": "Height", - "PE.Views.ChartSettingsAdvanced.textPosition": "Position", - "PE.Views.ChartSettingsAdvanced.textHorizontal": "Horizontal", - "PE.Views.ChartSettingsAdvanced.textVertical": "Vertical", - "PE.Views.ChartSettingsAdvanced.textFrom": "From", - "PE.Views.ChartSettingsAdvanced.textTopLeftCorner": "Top Left Corner", "PE.Views.ChartSettingsAdvanced.textCenter": "Center", + "PE.Views.ChartSettingsAdvanced.textFrom": "From", + "PE.Views.ChartSettingsAdvanced.textHeight": "Height", + "PE.Views.ChartSettingsAdvanced.textHorizontal": "Horizontal", "PE.Views.ChartSettingsAdvanced.textKeepRatio": "Constant Proportions", + "PE.Views.ChartSettingsAdvanced.textPlacement": "Placement", + "PE.Views.ChartSettingsAdvanced.textPosition": "Position", + "PE.Views.ChartSettingsAdvanced.textSize": "Size", + "PE.Views.ChartSettingsAdvanced.textTitle": "Chart - Advanced Settings", + "PE.Views.ChartSettingsAdvanced.textTopLeftCorner": "Top Left Corner", + "PE.Views.ChartSettingsAdvanced.textVertical": "Vertical", + "PE.Views.ChartSettingsAdvanced.textWidth": "Width", "PE.Views.DateTimeDialog.confirmDefault": "Set default format for {0}: \"{1}\"", "PE.Views.DateTimeDialog.textDefault": "Set as default", "PE.Views.DateTimeDialog.textFormat": "Formats", @@ -1602,7 +1604,6 @@ "PE.Views.FileMenuPanels.ProtectDoc.txtView": "View signatures", "PE.Views.FileMenuPanels.Settings.okButtonText": "Apply", "del_PE.Views.FileMenuPanels.Settings.strAlignGuides": "Turn on alignment guides", - "dwl_PE.Views.FileMenuPanels.Settings.strAutoRecover": "Turn on autorecover", "del_PE.Views.FileMenuPanels.Settings.strAutosave": "Turn on autosave", "PE.Views.FileMenuPanels.Settings.strCoAuthMode": "Co-editing Mode", "del_PE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Other users will see your changes at once", @@ -1611,6 +1612,8 @@ "PE.Views.FileMenuPanels.Settings.strFontRender": "Font Hinting", "PE.Views.FileMenuPanels.Settings.strForcesave": "Add version to storage after clicking Save or Ctrl+S", "del_PE.Views.FileMenuPanels.Settings.strInputMode": "Turn on hieroglyphs", + "PE.Views.FileMenuPanels.Settings.strIgnoreWordsInUPPERCASE": "Ignore words in UPPERCASE", + "PE.Views.FileMenuPanels.Settings.strIgnoreWordsWithNumbers": "Ignore words with numbers", "PE.Views.FileMenuPanels.Settings.strMacrosSettings": "Macros Settings", "PE.Views.FileMenuPanels.Settings.strPaste": "Cut, copy and paste", "PE.Views.FileMenuPanels.Settings.strPasteButton": "Show the Paste Options button when the content is pasted", @@ -1657,8 +1660,6 @@ "PE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Disable all macros with a notification", "PE.Views.FileMenuPanels.Settings.txtWin": "as Windows", "PE.Views.FileMenuPanels.Settings.txtWorkspace": "Workspace", - "PE.Views.FileMenuPanels.Settings.strIgnoreWordsInUPPERCASE": "Ignore words in UPPERCASE", - "PE.Views.FileMenuPanels.Settings.strIgnoreWordsWithNumbers": "Ignore words with numbers", "PE.Views.HeaderFooterDialog.applyAllText": "Apply to all", "PE.Views.HeaderFooterDialog.applyText": "Apply", "PE.Views.HeaderFooterDialog.diffLanguage": "You can’t use a date format in a different language than the slide master.
To change the master, click 'Apply to all' instead of 'Apply'", @@ -1721,8 +1722,11 @@ "PE.Views.ImageSettingsAdvanced.textAltTip": "The alternative text-based representation of the visual object information, which will be read to the people with vision or cognitive impairments to help them better understand what information there is in the image, autoshape, chart, or table.", "PE.Views.ImageSettingsAdvanced.textAltTitle": "Title", "PE.Views.ImageSettingsAdvanced.textAngle": "Angle", + "PE.Views.ImageSettingsAdvanced.textCenter": "Center", "PE.Views.ImageSettingsAdvanced.textFlipped": "Flipped", + "PE.Views.ImageSettingsAdvanced.textFrom": "From", "PE.Views.ImageSettingsAdvanced.textHeight": "Height", + "PE.Views.ImageSettingsAdvanced.textHorizontal": "Horizontal", "PE.Views.ImageSettingsAdvanced.textHorizontally": "Horizontally", "PE.Views.ImageSettingsAdvanced.textKeepRatio": "Constant proportions", "PE.Views.ImageSettingsAdvanced.textOriginalSize": "Actual Size", @@ -1731,13 +1735,10 @@ "PE.Views.ImageSettingsAdvanced.textRotation": "Rotation", "PE.Views.ImageSettingsAdvanced.textSize": "Size", "PE.Views.ImageSettingsAdvanced.textTitle": "Image - Advanced Settings", + "PE.Views.ImageSettingsAdvanced.textTopLeftCorner": "Top Left Corner", + "PE.Views.ImageSettingsAdvanced.textVertical": "Vertical", "PE.Views.ImageSettingsAdvanced.textVertically": "Vertically", "PE.Views.ImageSettingsAdvanced.textWidth": "Width", - "PE.Views.ImageSettingsAdvanced.textHorizontal": "Horizontal", - "PE.Views.ImageSettingsAdvanced.textVertical": "Vertical", - "PE.Views.ImageSettingsAdvanced.textFrom": "From", - "PE.Views.ImageSettingsAdvanced.textTopLeftCorner": "Top Left Corner", - "PE.Views.ImageSettingsAdvanced.textCenter": "Center", "PE.Views.LeftMenu.tipAbout": "About", "PE.Views.LeftMenu.tipChat": "Chat", "PE.Views.LeftMenu.tipComments": "Comments", @@ -1875,12 +1876,15 @@ "PE.Views.ShapeSettingsAdvanced.textBevel": "Bevel", "PE.Views.ShapeSettingsAdvanced.textBottom": "Bottom", "PE.Views.ShapeSettingsAdvanced.textCapType": "Cap Type", + "PE.Views.ShapeSettingsAdvanced.textCenter": "Center", "PE.Views.ShapeSettingsAdvanced.textColNumber": "Number of columns", "PE.Views.ShapeSettingsAdvanced.textEndSize": "End Size", "PE.Views.ShapeSettingsAdvanced.textEndStyle": "End Style", "PE.Views.ShapeSettingsAdvanced.textFlat": "Flat", "PE.Views.ShapeSettingsAdvanced.textFlipped": "Flipped", + "PE.Views.ShapeSettingsAdvanced.textFrom": "From", "PE.Views.ShapeSettingsAdvanced.textHeight": "Height", + "PE.Views.ShapeSettingsAdvanced.textHorizontal": "Horizontal", "PE.Views.ShapeSettingsAdvanced.textHorizontally": "Horizontally", "PE.Views.ShapeSettingsAdvanced.textJoinType": "Join Type", "PE.Views.ShapeSettingsAdvanced.textKeepRatio": "Constant proportions", @@ -1888,6 +1892,8 @@ "PE.Views.ShapeSettingsAdvanced.textLineStyle": "Line Style", "PE.Views.ShapeSettingsAdvanced.textMiter": "Miter", "PE.Views.ShapeSettingsAdvanced.textNofit": "Do not Autofit", + "PE.Views.ShapeSettingsAdvanced.textPlacement": "Placement", + "PE.Views.ShapeSettingsAdvanced.textPosition": "Position", "PE.Views.ShapeSettingsAdvanced.textResizeFit": "Resize shape to fit text", "PE.Views.ShapeSettingsAdvanced.textRight": "Right", "PE.Views.ShapeSettingsAdvanced.textRotation": "Rotation", @@ -1899,17 +1905,12 @@ "PE.Views.ShapeSettingsAdvanced.textTextBox": "Text Box", "PE.Views.ShapeSettingsAdvanced.textTitle": "Shape - Advanced Settings", "PE.Views.ShapeSettingsAdvanced.textTop": "Top", + "PE.Views.ShapeSettingsAdvanced.textTopLeftCorner": "Top Left Corner", + "PE.Views.ShapeSettingsAdvanced.textVertical": "Vertical", "PE.Views.ShapeSettingsAdvanced.textVertically": "Vertically", "PE.Views.ShapeSettingsAdvanced.textWeightArrows": "Weights & Arrows", "PE.Views.ShapeSettingsAdvanced.textWidth": "Width", "PE.Views.ShapeSettingsAdvanced.txtNone": "None", - "PE.Views.ShapeSettingsAdvanced.textPlacement": "Placement", - "PE.Views.ShapeSettingsAdvanced.textPosition": "Position", - "PE.Views.ShapeSettingsAdvanced.textHorizontal": "Horizontal", - "PE.Views.ShapeSettingsAdvanced.textFrom": "From", - "PE.Views.ShapeSettingsAdvanced.textVertical": "Vertical", - "PE.Views.ShapeSettingsAdvanced.textTopLeftCorner": "Top Left Corner", - "PE.Views.ShapeSettingsAdvanced.textCenter": "Center", "PE.Views.SignatureSettings.notcriticalErrorTitle": "Warning", "PE.Views.SignatureSettings.strDelete": "Remove Signature", "PE.Views.SignatureSettings.strDetails": "Signature Details", @@ -2059,25 +2060,25 @@ "PE.Views.TableSettingsAdvanced.textAltTip": "The alternative text-based representation of the visual object information, which will be read to the people with vision or cognitive impairments to help them better understand what information there is in the image, autoshape, chart, or table.", "PE.Views.TableSettingsAdvanced.textAltTitle": "Title", "PE.Views.TableSettingsAdvanced.textBottom": "Bottom", + "PE.Views.TableSettingsAdvanced.textCenter": "Center", "PE.Views.TableSettingsAdvanced.textCheckMargins": "Use default margins", "PE.Views.TableSettingsAdvanced.textDefaultMargins": "Default Margins", + "PE.Views.TableSettingsAdvanced.textFrom": "From", + "PE.Views.TableSettingsAdvanced.textHeight": "Height", + "PE.Views.TableSettingsAdvanced.textHorizontal": "Horizontal", + "PE.Views.TableSettingsAdvanced.textKeepRatio": "Constant Proportions", "PE.Views.TableSettingsAdvanced.textLeft": "Left", "PE.Views.TableSettingsAdvanced.textMargins": "Cell Margins", + "PE.Views.TableSettingsAdvanced.textPlacement": "Placement", + "PE.Views.TableSettingsAdvanced.textPosition": "Position", "PE.Views.TableSettingsAdvanced.textRight": "Right", + "PE.Views.TableSettingsAdvanced.textSize": "Size", "PE.Views.TableSettingsAdvanced.textTitle": "Table - Advanced Settings", "PE.Views.TableSettingsAdvanced.textTop": "Top", - "PE.Views.TableSettingsAdvanced.textWidthSpaces": "Margins", - "PE.Views.TableSettingsAdvanced.textPlacement": "Placement", - "PE.Views.TableSettingsAdvanced.textSize": "Size", - "PE.Views.TableSettingsAdvanced.textWidth": "Width", - "PE.Views.TableSettingsAdvanced.textHeight": "Height", - "PE.Views.TableSettingsAdvanced.textPosition": "Position", - "PE.Views.TableSettingsAdvanced.textHorizontal": "Horizontal", - "PE.Views.TableSettingsAdvanced.textVertical": "Vertical", - "PE.Views.TableSettingsAdvanced.textFrom": "From", "PE.Views.TableSettingsAdvanced.textTopLeftCorner": "Top Left Corner", - "PE.Views.TableSettingsAdvanced.textCenter": "Center", - "PE.Views.TableSettingsAdvanced.textKeepRatio": "Constant Proportions", + "PE.Views.TableSettingsAdvanced.textVertical": "Vertical", + "PE.Views.TableSettingsAdvanced.textWidth": "Width", + "PE.Views.TableSettingsAdvanced.textWidthSpaces": "Margins", "PE.Views.TextArtSettings.strBackground": "Background color", "PE.Views.TextArtSettings.strColor": "Color", "PE.Views.TextArtSettings.strFill": "Fill", diff --git a/apps/presentationeditor/main/locale/es.json b/apps/presentationeditor/main/locale/es.json index 1c3ea864b..ef376c92f 100644 --- a/apps/presentationeditor/main/locale/es.json +++ b/apps/presentationeditor/main/locale/es.json @@ -1587,21 +1587,13 @@ "PE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "Algunas de las firmas digitales en la presentación son inválidas o no se pudieron verificar. La presentación está protegida y no se puede editar.", "PE.Views.FileMenuPanels.ProtectDoc.txtView": "Ver firmas", "PE.Views.FileMenuPanels.Settings.okButtonText": "Aplicar", - "PE.Views.FileMenuPanels.Settings.strAlignGuides": "Activar guías de alineación", - "PE.Views.FileMenuPanels.Settings.strAutoRecover": "Activar autorecuperación", - "PE.Views.FileMenuPanels.Settings.strAutosave": "Activar autoguardado", "PE.Views.FileMenuPanels.Settings.strCoAuthMode": "El modo Co-edición", - "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Otros usuarios verán los cambios a la vez", - "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "Usted tendrá que aceptar los cambios antes de poder verlos", "PE.Views.FileMenuPanels.Settings.strFast": "rápido", "PE.Views.FileMenuPanels.Settings.strFontRender": "Hinting", "PE.Views.FileMenuPanels.Settings.strForcesave": "Agregar la versión al almacenamiento después de hacer clic en Guardar o Ctrl+S", - "PE.Views.FileMenuPanels.Settings.strInputMode": "Activar jeroglíficos", "PE.Views.FileMenuPanels.Settings.strMacrosSettings": "Ajustes de macros", "PE.Views.FileMenuPanels.Settings.strPaste": "Cortar, copiar y pegar", "PE.Views.FileMenuPanels.Settings.strPasteButton": "Mostrar el botón Opciones de pegado cuando se pegue contenido", - "PE.Views.FileMenuPanels.Settings.strShowChanges": "Cambios de colaboración en tiempo real", - "PE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Activar corrección ortográfica", "PE.Views.FileMenuPanels.Settings.strStrict": "Estricto", "PE.Views.FileMenuPanels.Settings.strTheme": "Tema de interfaz", "PE.Views.FileMenuPanels.Settings.strUnit": "Unidad de medida", diff --git a/apps/presentationeditor/main/locale/fi.json b/apps/presentationeditor/main/locale/fi.json index 12ecd8723..877281a4c 100644 --- a/apps/presentationeditor/main/locale/fi.json +++ b/apps/presentationeditor/main/locale/fi.json @@ -892,17 +892,9 @@ "PE.Views.FileMenuPanels.ProtectDoc.strProtect": "Suojaa esitys", "PE.Views.FileMenuPanels.ProtectDoc.txtEdit": "Muokkaa esitystä", "PE.Views.FileMenuPanels.Settings.okButtonText": "Käytä", - "PE.Views.FileMenuPanels.Settings.strAlignGuides": "Aseta päälle tasauksen oppaat", - "PE.Views.FileMenuPanels.Settings.strAutoRecover": "Aseta päälle automaattinen palautus", - "PE.Views.FileMenuPanels.Settings.strAutosave": "Aseta päälle automaattinen talletus", "PE.Views.FileMenuPanels.Settings.strCoAuthMode": "Yhteismuokkauksen tila", - "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Muut käyttäjät näkevät muutoksesi välittömästi", - "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "Sinun tulee hyväksyä muutokset ennenkuin näet ne", "PE.Views.FileMenuPanels.Settings.strFast": "Pika", "PE.Views.FileMenuPanels.Settings.strFontRender": "Fontin ehdotukset", - "PE.Views.FileMenuPanels.Settings.strInputMode": "Aseta päälle hieroglyfit", - "PE.Views.FileMenuPanels.Settings.strShowChanges": "Reaaliaikaiset yhteistyöhön perustuvat muutokset ", - "PE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Aseta päälle oikeintarkistuksen tarkistu", "PE.Views.FileMenuPanels.Settings.strStrict": "Ehdoton", "PE.Views.FileMenuPanels.Settings.strUnit": "Mittausyksikkö", "PE.Views.FileMenuPanels.Settings.strZoom": "Suurennoksen oletusarvo", diff --git a/apps/presentationeditor/main/locale/fr.json b/apps/presentationeditor/main/locale/fr.json index 898b5ae40..8aaedf8cb 100644 --- a/apps/presentationeditor/main/locale/fr.json +++ b/apps/presentationeditor/main/locale/fr.json @@ -349,6 +349,7 @@ "Common.Views.Comments.textResolved": "Résolu", "Common.Views.Comments.textSort": "Trier les commentaires", "Common.Views.Comments.textViewResolved": "Vous n'avez pas la permission de rouvrir le commentaire", + "Common.Views.Comments.txtEmpty": "Il n'y a pas de commentaires dans le document.", "Common.Views.CopyWarningDialog.textDontShow": "Ne plus afficher ce message", "Common.Views.CopyWarningDialog.textMsg": "Vous pouvez réaliser les actions de copier, couper et coller en utilisant les boutons de la barre d'outils et à l'aide du menu contextuel à partir de cet onglet uniquement.

Pour copier ou coller de / vers les applications en dehors de l'onglet de l'éditeur, utilisez les combinaisons de touches suivantes :", "Common.Views.CopyWarningDialog.textTitle": "Fonctions de Copier, Couper et Coller", @@ -1586,21 +1587,13 @@ "PE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "Des signatures électroniques sont non valides ou n'ont pas pu être vérifiées. Le document est protégé contre la modification.", "PE.Views.FileMenuPanels.ProtectDoc.txtView": "Voir les signatures", "PE.Views.FileMenuPanels.Settings.okButtonText": "Appliquer", - "PE.Views.FileMenuPanels.Settings.strAlignGuides": "Activer les repères d'alignement", - "PE.Views.FileMenuPanels.Settings.strAutoRecover": "Activer la récupération automatique", - "PE.Views.FileMenuPanels.Settings.strAutosave": "Activer l'enregistrement automatique", "PE.Views.FileMenuPanels.Settings.strCoAuthMode": "Mode de co-édition ", - "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Les autres utilisateurs pourront voir immédiatement vos modifications ", - "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "Avant de pouvoir afficher les modifications, vous avez besoin de les accépter ", "PE.Views.FileMenuPanels.Settings.strFast": "Rapide", "PE.Views.FileMenuPanels.Settings.strFontRender": "Hinting de la police", "PE.Views.FileMenuPanels.Settings.strForcesave": "Ajouter une version dans l'espace de stockage en cliquant Enregistrer ou Ctrl+S", - "PE.Views.FileMenuPanels.Settings.strInputMode": "Activer les hiéroglyphes", "PE.Views.FileMenuPanels.Settings.strMacrosSettings": "Réglages macros", "PE.Views.FileMenuPanels.Settings.strPaste": "Couper, copier et coller", "PE.Views.FileMenuPanels.Settings.strPasteButton": "Afficher le bouton \"Options de collage\" lorsque le contenu est collé ", - "PE.Views.FileMenuPanels.Settings.strShowChanges": "Visibilité des modifications en co-édition", - "PE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Activer l'option de vérification de l’orthographe", "PE.Views.FileMenuPanels.Settings.strStrict": "Strict", "PE.Views.FileMenuPanels.Settings.strTheme": "Thème d’interface", "PE.Views.FileMenuPanels.Settings.strUnit": "Unité de mesure", diff --git a/apps/presentationeditor/main/locale/gl.json b/apps/presentationeditor/main/locale/gl.json index 65926f00a..332848093 100644 --- a/apps/presentationeditor/main/locale/gl.json +++ b/apps/presentationeditor/main/locale/gl.json @@ -1569,21 +1569,13 @@ "PE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "Algunhas das sinaturas dixitais na presentación son inválidas ou non se puideron verificar. A presentación está protexida e non se pode editar.", "PE.Views.FileMenuPanels.ProtectDoc.txtView": "Ver sinaturas", "PE.Views.FileMenuPanels.Settings.okButtonText": "Aplicar", - "PE.Views.FileMenuPanels.Settings.strAlignGuides": "Activar guías de aliñación", - "PE.Views.FileMenuPanels.Settings.strAutoRecover": "Activar autorecuperación", - "PE.Views.FileMenuPanels.Settings.strAutosave": "Activar autogardado", "PE.Views.FileMenuPanels.Settings.strCoAuthMode": "O modo Co-edición", - "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Outras persoas usuarias verán os cambios á vez", - "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "Terá que aceptar os cambios antes de poder velos", "PE.Views.FileMenuPanels.Settings.strFast": "Rápido", "PE.Views.FileMenuPanels.Settings.strFontRender": "Busca das fontes", "PE.Views.FileMenuPanels.Settings.strForcesave": "Engadir a versión ao almacenamento despois de premer en Gardar ou Ctrl+S", - "PE.Views.FileMenuPanels.Settings.strInputMode": "Activar xeroglíficos", "PE.Views.FileMenuPanels.Settings.strMacrosSettings": "Configuración das macros", "PE.Views.FileMenuPanels.Settings.strPaste": "Cortar, copiar e pegar", "PE.Views.FileMenuPanels.Settings.strPasteButton": "Amosar o botón Opcións de pegado cando se pegue contido", - "PE.Views.FileMenuPanels.Settings.strShowChanges": "Cambios de colaboración en tempo real", - "PE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Activar corrección ortográfica", "PE.Views.FileMenuPanels.Settings.strStrict": "Estrito", "PE.Views.FileMenuPanels.Settings.strTheme": "Tema da interface", "PE.Views.FileMenuPanels.Settings.strUnit": "Unidade de medida", diff --git a/apps/presentationeditor/main/locale/hu.json b/apps/presentationeditor/main/locale/hu.json index fb405eb6f..d4dcdd515 100644 --- a/apps/presentationeditor/main/locale/hu.json +++ b/apps/presentationeditor/main/locale/hu.json @@ -1352,21 +1352,13 @@ "PE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "A prezentációban szereplő digitális aláírások némelyike érvénytelen vagy nem ellenőrizhető. A prezentáció védve van a szerkesztéstől.", "PE.Views.FileMenuPanels.ProtectDoc.txtView": "Aláírások megtekintése", "PE.Views.FileMenuPanels.Settings.okButtonText": "Alkalmaz", - "PE.Views.FileMenuPanels.Settings.strAlignGuides": "Elrendezési segéd bekapcsolása", - "PE.Views.FileMenuPanels.Settings.strAutoRecover": "Automatikus visszaállítás bekapcsolása", - "PE.Views.FileMenuPanels.Settings.strAutosave": "Automatikus mentés bekapcsolása", "PE.Views.FileMenuPanels.Settings.strCoAuthMode": "Együttes szerkesztési mód", - "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Más felhasználók azonnal látják a módosításokat", - "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "El kell fogadnia a módosításokat mielőtt meg tudná nézni", "PE.Views.FileMenuPanels.Settings.strFast": "Gyors", "PE.Views.FileMenuPanels.Settings.strFontRender": "Betűtípus ajánlás", "PE.Views.FileMenuPanels.Settings.strForcesave": "A Mentés vagy a Ctrl+S gomb megnyomása után adja hozzá a verziót a tárhelyhez", - "PE.Views.FileMenuPanels.Settings.strInputMode": "Hieroglifák bekapcsolása", "PE.Views.FileMenuPanels.Settings.strMacrosSettings": "Makró beállítások", "PE.Views.FileMenuPanels.Settings.strPaste": "Kivágás, másolás és beillesztés", "PE.Views.FileMenuPanels.Settings.strPasteButton": "A tartalom beillesztésekor jelenítse meg a beillesztési beállítások gombot", - "PE.Views.FileMenuPanels.Settings.strShowChanges": "Valós idejű együttműködés módosításai", - "PE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Helyesírás-ellenőrzés bekapcsolása", "PE.Views.FileMenuPanels.Settings.strStrict": "Biztonságos", "PE.Views.FileMenuPanels.Settings.strTheme": "Felhasználói felület témája", "PE.Views.FileMenuPanels.Settings.strUnit": "Mérési egység", diff --git a/apps/presentationeditor/main/locale/it.json b/apps/presentationeditor/main/locale/it.json index a47492e46..774fbcc08 100644 --- a/apps/presentationeditor/main/locale/it.json +++ b/apps/presentationeditor/main/locale/it.json @@ -1572,21 +1572,13 @@ "PE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "Alcune delle firme digitali nella presentazione non sono valide o non possono essere verificate. La presentazione è protetta dalla modifica.", "PE.Views.FileMenuPanels.ProtectDoc.txtView": "Mostra firme", "PE.Views.FileMenuPanels.Settings.okButtonText": "Applica", - "PE.Views.FileMenuPanels.Settings.strAlignGuides": "Attiva guide di allineamento", - "PE.Views.FileMenuPanels.Settings.strAutoRecover": "Attiva il ripristino automatico", - "PE.Views.FileMenuPanels.Settings.strAutosave": "Attiva salvataggio automatico", "PE.Views.FileMenuPanels.Settings.strCoAuthMode": "Modalità di co-editing", - "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Gli altri utenti vedranno le tue modifiche contemporaneamente", - "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "Dovrai accettare i cambiamenti prima di poterli visualizzare.", "PE.Views.FileMenuPanels.Settings.strFast": "Rapido", "PE.Views.FileMenuPanels.Settings.strFontRender": "Suggerimento per i caratteri", "PE.Views.FileMenuPanels.Settings.strForcesave": "‎Aggiungere versione al salvataggio dopo aver fatto clic su Salva o CTRL+S‎", - "PE.Views.FileMenuPanels.Settings.strInputMode": "Attiva geroglifici", "PE.Views.FileMenuPanels.Settings.strMacrosSettings": "Impostazioni macro", "PE.Views.FileMenuPanels.Settings.strPaste": "Taglia, copia e incolla", "PE.Views.FileMenuPanels.Settings.strPasteButton": "Mostra il pulsante opzioni Incolla quando il contenuto viene incollato", - "PE.Views.FileMenuPanels.Settings.strShowChanges": "Evidenzia modifiche di collaborazione", - "PE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Attiva controllo ortografia", "PE.Views.FileMenuPanels.Settings.strStrict": "Rigorosa", "PE.Views.FileMenuPanels.Settings.strTheme": "Tema dell'interfaccia", "PE.Views.FileMenuPanels.Settings.strUnit": "Unità di misura", diff --git a/apps/presentationeditor/main/locale/ja.json b/apps/presentationeditor/main/locale/ja.json index a8d46afd4..9cf630203 100644 --- a/apps/presentationeditor/main/locale/ja.json +++ b/apps/presentationeditor/main/locale/ja.json @@ -1385,21 +1385,13 @@ "PE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "プレゼンテーションのデジタル署名の一部が無効であるか、検証できませんでした。 プレゼンテーションは編集から保護されています。", "PE.Views.FileMenuPanels.ProtectDoc.txtView": "署名の表示", "PE.Views.FileMenuPanels.Settings.okButtonText": "適用", - "PE.Views.FileMenuPanels.Settings.strAlignGuides": "配置ガイドを有効にする", - "PE.Views.FileMenuPanels.Settings.strAutoRecover": "自動バックアップをオンにします。", - "PE.Views.FileMenuPanels.Settings.strAutosave": "自動保存をオンにします。", "PE.Views.FileMenuPanels.Settings.strCoAuthMode": "共同編集のモード", - "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "他のユーザーにすぐに変更が表示されます", - "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "変更内容を確認するには、変更を承諾する必要があります。", "PE.Views.FileMenuPanels.Settings.strFast": "速い", "PE.Views.FileMenuPanels.Settings.strFontRender": "フォント・ヒンティング", "PE.Views.FileMenuPanels.Settings.strForcesave": "保存またはCtrl + Sを押した後、バージョンをストレージに保存する。", - "PE.Views.FileMenuPanels.Settings.strInputMode": "漢字をオンにします。", "PE.Views.FileMenuPanels.Settings.strMacrosSettings": "マクロの設定", "PE.Views.FileMenuPanels.Settings.strPaste": "切り取り、コピー、貼り付け", "PE.Views.FileMenuPanels.Settings.strPasteButton": "貼り付けるときに[貼り付けオプション]ボタンを表示する", - "PE.Views.FileMenuPanels.Settings.strShowChanges": "リアルタイム共同編集の変更を表示します。", - "PE.Views.FileMenuPanels.Settings.strSpellCheckMode": "スペル・チェックの機能を有効にする", "PE.Views.FileMenuPanels.Settings.strStrict": "高レベル", "PE.Views.FileMenuPanels.Settings.strTheme": "インターフェイスのテーマ", "PE.Views.FileMenuPanels.Settings.strUnit": "測定単位", diff --git a/apps/presentationeditor/main/locale/ko.json b/apps/presentationeditor/main/locale/ko.json index 7e7cf7a9d..f45da0b49 100644 --- a/apps/presentationeditor/main/locale/ko.json +++ b/apps/presentationeditor/main/locale/ko.json @@ -47,6 +47,49 @@ "Common.define.chartData.textScatterSmoothMarker": "곡선 및 표식이 있는 분산형", "Common.define.chartData.textStock": "주식형", "Common.define.chartData.textSurface": "표면", + "Common.define.effectData.textBasic": "심플 테마", + "Common.define.effectData.textCollapse": "축소", + "Common.define.effectData.textDiamond": "다이아몬드", + "Common.define.effectData.textDown": "아래로", + "Common.define.effectData.textExpand": "확장", + "Common.define.effectData.textFade": "페이드", + "Common.define.effectData.textFillColor": "채우기 색", + "Common.define.effectData.textFlip": "대칭", + "Common.define.effectData.textFontColor": "글꼴 색", + "Common.define.effectData.textFromBottom": "아래로 부터", + "Common.define.effectData.textFromTop": "위에서 부터", + "Common.define.effectData.textHeart": "하트모양", + "Common.define.effectData.textHexagon": "육각형", + "Common.define.effectData.textHorizontal": "수평", + "Common.define.effectData.textHorizontalIn": "수평 입력", + "Common.define.effectData.textHorizontalOut": "수평 출력", + "Common.define.effectData.textIn": "에", + "Common.define.effectData.textLeft": "왼쪽", + "Common.define.effectData.textLines": "선", + "Common.define.effectData.textModerate": "보통", + "Common.define.effectData.textOctagon": "팔각형", + "Common.define.effectData.textOut": "바깥쪽", + "Common.define.effectData.textParallelogram": "평행 사변형", + "Common.define.effectData.textPentagon": "오각형", + "Common.define.effectData.textPlus": "덧셈", + "Common.define.effectData.textRight": "오른쪽", + "Common.define.effectData.textRightTriangle": "직각 삼각형", + "Common.define.effectData.textShape": "쉐이프", + "Common.define.effectData.textShapes": "도형", + "Common.define.effectData.textSpecial": "특별한", + "Common.define.effectData.textSplit": "분할", + "Common.define.effectData.textSquare": "사각형", + "Common.define.effectData.textStretch": "늘이기", + "Common.define.effectData.textTeardrop": "눈물 방울", + "Common.define.effectData.textTrapezoid": "사다리꼴", + "Common.define.effectData.textUnderline": "밑줄", + "Common.define.effectData.textUp": "최대", + "Common.define.effectData.textVertical": "세로", + "Common.define.effectData.textVerticalOut": "수직 출력", + "Common.define.effectData.textWave": "물결", + "Common.define.effectData.textWedge": "쇄기꼴", + "Common.define.effectData.textWipe": "지우기", + "Common.define.effectData.textZoom": "확대 / 축소", "Common.Translation.warnFileLocked": "파일이 다른 응용 프로그램에서 편집 중입니다. 편집을 계속하고 사본으로 저장할 수 있습니다.", "Common.Translation.warnFileLockedBtnEdit": "복사본 만들기", "Common.Translation.warnFileLockedBtnView": "미리보기", @@ -135,6 +178,7 @@ "Common.Views.Comments.textAddComment": "덧글 추가", "Common.Views.Comments.textAddCommentToDoc": "문서에 설명 추가", "Common.Views.Comments.textAddReply": "답장 추가", + "Common.Views.Comments.textAll": "모두", "Common.Views.Comments.textAnonym": "손님", "Common.Views.Comments.textCancel": "취소", "Common.Views.Comments.textClose": "닫기", @@ -1086,6 +1130,14 @@ "PE.Controllers.Toolbar.txtSymbol_zeta": "Zeta", "PE.Controllers.Viewport.textFitPage": "슬라이드에 맞추기", "PE.Controllers.Viewport.textFitWidth": "너비에 맞춤", + "PE.Views.Animation.strDelay": "지연", + "PE.Views.Animation.strDuration": "재생 시간", + "PE.Views.Animation.strStart": "시작", + "PE.Views.Animation.textMultiple": "배수", + "PE.Views.Animation.textNone": "없음", + "PE.Views.Animation.textNoRepeat": "(없음)", + "PE.Views.Animation.txtPreview": "미리보기", + "PE.Views.Animation.txtSec": "s", "PE.Views.ChartSettings.textAdvanced": "고급 설정 표시", "PE.Views.ChartSettings.textChartType": "차트 유형 변경", "PE.Views.ChartSettings.textEditData": "데이터 편집", @@ -1300,7 +1352,7 @@ "PE.Views.FileMenu.btnCloseMenuCaption": "메뉴 닫기", "PE.Views.FileMenu.btnCreateNewCaption": "새로 만들기", "PE.Views.FileMenu.btnDownloadCaption": "다운로드 방법 ...", - "PE.Views.FileMenu.btnExitCaption": "나가기", + "PE.Views.FileMenu.btnExitCaption": "완료", "PE.Views.FileMenu.btnFileOpenCaption": "열기", "PE.Views.FileMenu.btnHelpCaption": "Help ...", "PE.Views.FileMenu.btnHistoryCaption": "버전 기록", @@ -1347,21 +1399,13 @@ "PE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "프리젠테이션내 몇가지 디지털 서명이 유효하지 않거나 확인되지 않음. 이 프리젠테이션은 편집할 수 없도록 보호됨.", "PE.Views.FileMenuPanels.ProtectDoc.txtView": "서명 보기", "PE.Views.FileMenuPanels.Settings.okButtonText": "적용", - "PE.Views.FileMenuPanels.Settings.strAlignGuides": "정렬 안내선 켜기", - "PE.Views.FileMenuPanels.Settings.strAutoRecover": "자동 검색 켜기", - "PE.Views.FileMenuPanels.Settings.strAutosave": "자동 저장 기능 켜기", "PE.Views.FileMenuPanels.Settings.strCoAuthMode": "공동 편집 모드", - "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "다른 사용자가 변경 사항을 한 번에 보게됩니다", - "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "변경 사항을 적용하기 전에 변경 사항을 수락해야합니다", "PE.Views.FileMenuPanels.Settings.strFast": "Fast", "PE.Views.FileMenuPanels.Settings.strFontRender": "글꼴 힌트", "PE.Views.FileMenuPanels.Settings.strForcesave": "저장과 동시에 서버에 업로드 (아니면 문서가 닫힐 때 업로드)", - "PE.Views.FileMenuPanels.Settings.strInputMode": "상형 문자 켜기", "PE.Views.FileMenuPanels.Settings.strMacrosSettings": "매크로 설정", "PE.Views.FileMenuPanels.Settings.strPaste": "잘라내기, 복사 및 붙여넣기", "PE.Views.FileMenuPanels.Settings.strPasteButton": "내용을 붙여넣을 때 \"붙여넣기 옵션\" 표시", - "PE.Views.FileMenuPanels.Settings.strShowChanges": "실시간 협업 변경 사항", - "PE.Views.FileMenuPanels.Settings.strSpellCheckMode": "맞춤법 검사 옵션 켜기", "PE.Views.FileMenuPanels.Settings.strStrict": "Strict", "PE.Views.FileMenuPanels.Settings.strTheme": "인터페이스 테마", "PE.Views.FileMenuPanels.Settings.strUnit": "측정 단위", @@ -1448,6 +1492,7 @@ "PE.Views.ImageSettings.textHintFlipV": "상하대칭", "PE.Views.ImageSettings.textInsert": "이미지 바꾸기", "PE.Views.ImageSettings.textOriginalSize": "실제 크기", + "PE.Views.ImageSettings.textRecentlyUsed": "최근 사용된", "PE.Views.ImageSettings.textRotate90": "90도 회전", "PE.Views.ImageSettings.textRotation": "회전", "PE.Views.ImageSettings.textSize": "크기", @@ -1489,7 +1534,7 @@ "PE.Views.ParagraphSettings.textAt": "At", "PE.Views.ParagraphSettings.textAtLeast": "적어도", "PE.Views.ParagraphSettings.textAuto": "배수", - "PE.Views.ParagraphSettings.textExact": "정확히", + "PE.Views.ParagraphSettings.textExact": "고정", "PE.Views.ParagraphSettings.txtAutoText": "자동", "PE.Views.ParagraphSettingsAdvanced.noTabs": "지정된 탭이이 필드에 나타납니다", "PE.Views.ParagraphSettingsAdvanced.strAllCaps": "모든 대문자", @@ -1569,6 +1614,7 @@ "PE.Views.ShapeSettings.textPatternFill": "패턴", "PE.Views.ShapeSettings.textPosition": "위치", "PE.Views.ShapeSettings.textRadial": "방사형", + "PE.Views.ShapeSettings.textRecentlyUsed": "최근 사용된", "PE.Views.ShapeSettings.textRotate90": "90도 회전", "PE.Views.ShapeSettings.textRotation": "회전", "PE.Views.ShapeSettings.textSelectImage": "그림선택", @@ -1885,6 +1931,7 @@ "PE.Views.Toolbar.textColumnsTwo": "2열", "PE.Views.Toolbar.textItalic": "Italic", "PE.Views.Toolbar.textListSettings": "목록설정", + "PE.Views.Toolbar.textRecentlyUsed": "최근 사용된", "PE.Views.Toolbar.textShapeAlignBottom": "아래쪽 정렬", "PE.Views.Toolbar.textShapeAlignCenter": "정렬 중심", "PE.Views.Toolbar.textShapeAlignLeft": "왼쪽 정렬", @@ -1904,6 +1951,7 @@ "PE.Views.Toolbar.textTabInsert": "삽입", "PE.Views.Toolbar.textTabProtect": "보호", "PE.Views.Toolbar.textTabTransitions": "전환", + "PE.Views.Toolbar.textTabView": "뷰", "PE.Views.Toolbar.textTitleError": "오류", "PE.Views.Toolbar.textUnderline": "밑줄", "PE.Views.Toolbar.tipAddSlide": "슬라이드 추가", @@ -1940,6 +1988,7 @@ "PE.Views.Toolbar.tipInsertVideo": "동영상 삽입", "PE.Views.Toolbar.tipLineSpace": "줄 간격", "PE.Views.Toolbar.tipMarkers": "글 머리 기호", + "PE.Views.Toolbar.tipNone": "없음", "PE.Views.Toolbar.tipNumbers": "번호 매기기", "PE.Views.Toolbar.tipPaste": "붙여 넣기", "PE.Views.Toolbar.tipPreview": "슬라이드 쇼 시작", @@ -1957,6 +2006,7 @@ "PE.Views.Toolbar.tipViewSettings": "설정보기", "PE.Views.Toolbar.txtDistribHor": "가로로 배포", "PE.Views.Toolbar.txtDistribVert": "수직 분배", + "PE.Views.Toolbar.txtDuplicateSlide": "중복 슬라이드", "PE.Views.Toolbar.txtGroup": "그룹", "PE.Views.Toolbar.txtObjectsAlign": "선택한 개체 정렬", "PE.Views.Toolbar.txtScheme1": "사무실 테마", @@ -2018,5 +2068,9 @@ "PE.Views.Transitions.txtApplyToAll": "모든 슬라이드에 적용", "PE.Views.Transitions.txtParameters": "매개 변수", "PE.Views.Transitions.txtPreview": "미리보기", - "PE.Views.Transitions.txtSec": "s" + "PE.Views.Transitions.txtSec": "s", + "PE.Views.ViewTab.textFitToSlide": "슬라이드에 맞추기", + "PE.Views.ViewTab.textFitToWidth": "너비에 맞춤", + "PE.Views.ViewTab.textInterfaceTheme": "인터페이스 테마", + "PE.Views.ViewTab.textZoom": "확대 / 축소" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/lo.json b/apps/presentationeditor/main/locale/lo.json index 626da56c7..0cd8fb039 100644 --- a/apps/presentationeditor/main/locale/lo.json +++ b/apps/presentationeditor/main/locale/lo.json @@ -1552,21 +1552,13 @@ "PE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "ບາງລາຍເຊັນດິຈິຕອນໃນການນຳສະເໜີ ແມ່ນບໍ່ຖືກຕ້ອງ ຫຼື ບໍ່ສາມາດຢືນຢັນໄດ້. ການ ນຳ ສະ ເໜີ ແມ່ນປ້ອງກັນຈາກການດັດແກ້.", "PE.Views.FileMenuPanels.ProtectDoc.txtView": "ເບິ່ງລາຍເຊັນ", "PE.Views.FileMenuPanels.Settings.okButtonText": "ໃຊ້", - "PE.Views.FileMenuPanels.Settings.strAlignGuides": "ເປີດຄູ່ມືການຈັດຕໍາແໜ່ງ", - "PE.Views.FileMenuPanels.Settings.strAutoRecover": "ເປີດໃຊ້ງານອັດຕະໂນມັດ", - "PE.Views.FileMenuPanels.Settings.strAutosave": "ເປີດໃຊ້ງານອັດຕະໂນມັດ", "PE.Views.FileMenuPanels.Settings.strCoAuthMode": "ໂຫມດແກ້ໄຂຮ່ວມກັນ", - "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "ຜູ້ໃຊ້ຊື່ອຶ່ນຈະເຫັນການປ່ຽນແປງຂອງເຈົ້າ", - "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "ທ່ານຈະຕ້ອງຍອມຮັບການປ່ຽນແປງກ່ອນທີ່ທ່ານຈະເຫັນການປ່ຽນແປງ", "PE.Views.FileMenuPanels.Settings.strFast": "ໄວ", "PE.Views.FileMenuPanels.Settings.strFontRender": "ຕົວອັກສອນມົວ ບໍ່ເເຈ້ງ", "PE.Views.FileMenuPanels.Settings.strForcesave": "ເກັບຮັກສາໄວ້ໃນເຊີບເວີຢູ່ສະ ເໝີ (ຖ້າບໍ່ດັ່ງນັ້ນບັນທຶກໄວ້ໃນ ເຊີບເວີ ຢູ່ບ່ອນປິດເອກະສານ)", - "PE.Views.FileMenuPanels.Settings.strInputMode": "ເປີດກາຟີຣກ", "PE.Views.FileMenuPanels.Settings.strMacrosSettings": "ການຕັ້ງຄ່າ Macros", "PE.Views.FileMenuPanels.Settings.strPaste": "ຕັດ, ສຳເນົາ ແລະ ວາງ", "PE.Views.FileMenuPanels.Settings.strPasteButton": "ສະແດງປຸ່ມເລືອກວາງ ເມື່ອເນື້ອຫາໄດ້ຖືກຄັດຕິດ", - "PE.Views.FileMenuPanels.Settings.strShowChanges": "ການແກ້່ໄຂຮ່ວມກັນແບບ ReaL time", - "PE.Views.FileMenuPanels.Settings.strSpellCheckMode": "ເປີດຕົວເລືອກການກວດສອບການສະກົດຄໍາ", "PE.Views.FileMenuPanels.Settings.strStrict": "ເຂັ້ມງວດ, ໂຕເຂັ້ມ", "PE.Views.FileMenuPanels.Settings.strTheme": "ຫນ້າຕາຂອງ theme", "PE.Views.FileMenuPanels.Settings.strUnit": "ຫົວຫນ່ວຍວັດແທກ (ນີ້ວ)", diff --git a/apps/presentationeditor/main/locale/lv.json b/apps/presentationeditor/main/locale/lv.json index da230bebd..9b6c7286d 100644 --- a/apps/presentationeditor/main/locale/lv.json +++ b/apps/presentationeditor/main/locale/lv.json @@ -918,17 +918,9 @@ "PE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "Daži no prezentācijas digitālajiem parakstiem ir nederīgi vai tos nevar pārbaudīt. Prezentāciju nevar rediģēt.", "PE.Views.FileMenuPanels.ProtectDoc.txtView": "Apskatīt parakstus", "PE.Views.FileMenuPanels.Settings.okButtonText": "Apply", - "PE.Views.FileMenuPanels.Settings.strAlignGuides": "Turn on alignment guides", - "PE.Views.FileMenuPanels.Settings.strAutoRecover": "Ieslēgt automātisko atjaunošanu", - "PE.Views.FileMenuPanels.Settings.strAutosave": "Turn on autosave", "PE.Views.FileMenuPanels.Settings.strCoAuthMode": "Co-editing mode", - "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Other users will see your changes at once", - "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "You will need to accept changes before you can see them", "PE.Views.FileMenuPanels.Settings.strFast": "Fast", "PE.Views.FileMenuPanels.Settings.strForcesave": "Vienmēr noglabāt serverī (pretējā gadījumā noglabāt serverī dokumenta aizvēršanas laikā)", - "PE.Views.FileMenuPanels.Settings.strInputMode": "Turn on hieroglyphs", - "PE.Views.FileMenuPanels.Settings.strShowChanges": "Realtime Collaboration Changes", - "PE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Ieslēgt pareizrakstības pārbaudi", "PE.Views.FileMenuPanels.Settings.strStrict": "Strict", "PE.Views.FileMenuPanels.Settings.strUnit": "Unit of Measurement", "PE.Views.FileMenuPanels.Settings.strZoom": "Default Zoom Value", diff --git a/apps/presentationeditor/main/locale/nl.json b/apps/presentationeditor/main/locale/nl.json index aa19abd86..0a2082cd7 100644 --- a/apps/presentationeditor/main/locale/nl.json +++ b/apps/presentationeditor/main/locale/nl.json @@ -1360,21 +1360,13 @@ "PE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "Een of meer digitale handtekeningen in deze presentatie zijn ongeldig of konden niet geverifieerd worden. Deze presentatie is beveiligd tegen aanpassingen.", "PE.Views.FileMenuPanels.ProtectDoc.txtView": "Toon handtekeningen", "PE.Views.FileMenuPanels.Settings.okButtonText": "Toepassen", - "PE.Views.FileMenuPanels.Settings.strAlignGuides": "Uitlijningshulplijnen inschakelen", - "PE.Views.FileMenuPanels.Settings.strAutoRecover": "AutoHerstel inschakelen", - "PE.Views.FileMenuPanels.Settings.strAutosave": "Automatisch opslaan inschakelen", "PE.Views.FileMenuPanels.Settings.strCoAuthMode": "Modus Gezamenlijk bewerken", - "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Andere gebruikers zien uw wijzigingen onmiddellijk", - "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "U moet de wijzigingen accepteren om die te kunnen zien", "PE.Views.FileMenuPanels.Settings.strFast": "Snel", "PE.Views.FileMenuPanels.Settings.strFontRender": "Hints voor lettertype", "PE.Views.FileMenuPanels.Settings.strForcesave": "Altijd op server opslaan (anders op server opslaan bij sluiten document)", - "PE.Views.FileMenuPanels.Settings.strInputMode": "Hiërogliefen inschakelen", "PE.Views.FileMenuPanels.Settings.strMacrosSettings": "Macro instellingen", "PE.Views.FileMenuPanels.Settings.strPaste": "Knippen, kopiëren en plakken", "PE.Views.FileMenuPanels.Settings.strPasteButton": "Toon de knop Plakopties wanneer de inhoud is geplakt", - "PE.Views.FileMenuPanels.Settings.strShowChanges": "Wijzigingen in real-time samenwerking", - "PE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Optie voor spellingcontrole inschakelen", "PE.Views.FileMenuPanels.Settings.strStrict": "Strikt", "PE.Views.FileMenuPanels.Settings.strTheme": "Thema", "PE.Views.FileMenuPanels.Settings.strUnit": "Maateenheid", diff --git a/apps/presentationeditor/main/locale/pl.json b/apps/presentationeditor/main/locale/pl.json index 8c7b2789b..738f53146 100644 --- a/apps/presentationeditor/main/locale/pl.json +++ b/apps/presentationeditor/main/locale/pl.json @@ -968,17 +968,9 @@ "PE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Zmień prawa dostępu", "PE.Views.FileMenuPanels.DocumentRights.txtRights": "Osoby, które mają prawa", "PE.Views.FileMenuPanels.Settings.okButtonText": "Zastosować", - "PE.Views.FileMenuPanels.Settings.strAlignGuides": "Włącz prowadnice wyrównania", - "PE.Views.FileMenuPanels.Settings.strAutoRecover": "Włącz auto odzyskiwanie", - "PE.Views.FileMenuPanels.Settings.strAutosave": "Włącz automatyczny zapis", "PE.Views.FileMenuPanels.Settings.strCoAuthMode": "Tryb współtworzenia", - "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Zobaczysz zmiany innych użytkowników od razu", - "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "Zanim będziesz mógł zobaczyć zmiany wprowadzone przez innych użytkowników, musisz je najpierw zaakceptować.", "PE.Views.FileMenuPanels.Settings.strFast": "Szybki", "PE.Views.FileMenuPanels.Settings.strForcesave": "Zawsze zapisuj na serwer (w przeciwnym razie zapisz na serwer dopiero przy zamykaniu dokumentu)", - "PE.Views.FileMenuPanels.Settings.strInputMode": "Włącz hieroglify", - "PE.Views.FileMenuPanels.Settings.strShowChanges": "Zmiany w czasie rzeczywistym podczas współtworzenia", - "PE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Włącz sprawdzanie pisowni", "PE.Views.FileMenuPanels.Settings.strStrict": "Ścisły", "PE.Views.FileMenuPanels.Settings.strUnit": "Jednostka miary", "PE.Views.FileMenuPanels.Settings.strZoom": "Domyślna wartość powiększenia", diff --git a/apps/presentationeditor/main/locale/pt-PT.json b/apps/presentationeditor/main/locale/pt-PT.json index 130a08f0e..7022c6351 100644 --- a/apps/presentationeditor/main/locale/pt-PT.json +++ b/apps/presentationeditor/main/locale/pt-PT.json @@ -47,6 +47,7 @@ "Common.define.chartData.textScatterSmoothMarker": "Dispersão com Linhas Suaves e Marcadores", "Common.define.chartData.textStock": "Gráfico de ações", "Common.define.chartData.textSurface": "Superfície", + "Common.define.effectData.textAcross": "Horizontalmente", "Common.define.effectData.textAppear": "Mostrar", "Common.define.effectData.textArcDown": "Arco para Baixo", "Common.define.effectData.textArcLeft": "Arco para a Esquerda", @@ -56,6 +57,7 @@ "Common.define.effectData.textBasic": "Básico", "Common.define.effectData.textBasicSwivel": "Swivel Básico", "Common.define.effectData.textBasicZoom": "Zoom Básico", + "Common.define.effectData.textBean": "Feijão", "Common.define.effectData.textBlinds": "Persianas", "Common.define.effectData.textBlink": "Piscar", "Common.define.effectData.textBoldFlash": "Piscar em Negrito ", @@ -66,6 +68,8 @@ "Common.define.effectData.textBounceRight": "Pular para a Direita", "Common.define.effectData.textBox": "Caixa", "Common.define.effectData.textBrushColor": "Cor do Pincel", + "Common.define.effectData.textCenterRevolve": "Girar em Torno do Centro", + "Common.define.effectData.textCheckerboard": "Quadro bicolor", "Common.define.effectData.textCircle": "Círculo", "Common.define.effectData.textCollapse": "Recolher", "Common.define.effectData.textColorPulse": "Cor Intermitente", @@ -137,7 +141,6 @@ "Common.define.effectData.textInFromScreenCenter": "Ampliar a Partir do Centro do Ecrã", "Common.define.effectData.textInSlightly": "Ampliar Ligeiramente", "Common.define.effectData.textInToScreenBottom": "Ampliar para o Fundo do Ecrã", - "Common.define.effectData.textInToScreenCenter": "Ampliar para o Centro do Ecrã", "Common.define.effectData.textInvertedSquare": "Quadrado Invertido", "Common.define.effectData.textInvertedTriangle": "Triângulo Invertido", "Common.define.effectData.textLeft": "Esquerda", @@ -147,7 +150,7 @@ "Common.define.effectData.textLineColor": "Cor da linha", "Common.define.effectData.textLines": "Linhas", "Common.define.effectData.textLinesCurves": "Linhas e Curvas", - "Common.define.effectData.textLoopDeLoop": "Nó", + "Common.define.effectData.textLoopDeLoop": "Laço", "Common.define.effectData.textLoops": "Ciclos", "Common.define.effectData.textModerate": "Moderado", "Common.define.effectData.textNeutron": "Neutrão", @@ -195,6 +198,11 @@ "Common.define.effectData.textSpiralOut": "Saída em Espiral", "Common.define.effectData.textSpiralRight": "Espiral para a Direita", "Common.define.effectData.textSplit": "Dividir", + "Common.define.effectData.textSpoke1": "1 Raio", + "Common.define.effectData.textSpoke2": "2 Raios", + "Common.define.effectData.textSpoke3": "3 Raios", + "Common.define.effectData.textSpoke4": "4 Raios", + "Common.define.effectData.textSpoke8": "8 Raios", "Common.define.effectData.textSpring": "Primavera", "Common.define.effectData.textSquare": "Quadrado", "Common.define.effectData.textStairsDown": "Escadas abaixo", @@ -208,7 +216,6 @@ "Common.define.effectData.textToBottom": "Para Baixo", "Common.define.effectData.textToBottomLeft": "Para Baixo-Esquerda", "Common.define.effectData.textToBottomRight": "Para Baixo-Direita", - "Common.define.effectData.textToFromScreenBottom": "De Fora Para a Parte Inferior do Ecrã", "Common.define.effectData.textToLeft": "Para a esquerda", "Common.define.effectData.textToRight": "Para a Direita", "Common.define.effectData.textToTop": "Para Cima", @@ -374,6 +381,7 @@ "Common.Views.Header.tipRedo": "Refazer", "Common.Views.Header.tipSave": "Guardar", "Common.Views.Header.tipUndo": "Desfazer", + "Common.Views.Header.tipUndock": "Desacoplar em janela separada", "Common.Views.Header.tipViewSettings": "Definições de visualização", "Common.Views.Header.tipViewUsers": "Ver utilizadores e gerir direitos de acesso", "Common.Views.Header.txtAccessRights": "Alterar direitos de acesso", @@ -1302,6 +1310,7 @@ "PE.Views.Animation.textNoRepeat": "(nenhum)", "PE.Views.Animation.textOnClickOf": "Ao clicar em", "PE.Views.Animation.textOnClickSequence": "Sequência ao Clicar", + "PE.Views.Animation.textStartAfterPrevious": "Depois da Anterior", "PE.Views.Animation.textStartOnClick": "Ao clicar", "PE.Views.Animation.textStartWithPrevious": "Com o anterior", "PE.Views.Animation.textUntilEndOfSlide": "Até ao Fim do Diapositivo", @@ -1577,21 +1586,13 @@ "PE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "Algumas das assinaturas digitais são inválidas ou não puderam ser verificadas. Esta apresentação não pode ser editada.", "PE.Views.FileMenuPanels.ProtectDoc.txtView": "Ver assinaturas", "PE.Views.FileMenuPanels.Settings.okButtonText": "Aplicar", - "PE.Views.FileMenuPanels.Settings.strAlignGuides": "Ativar guias de alinhamento", - "PE.Views.FileMenuPanels.Settings.strAutoRecover": "Ativar recuperação automática", - "PE.Views.FileMenuPanels.Settings.strAutosave": "Ativar salvamento automático", "PE.Views.FileMenuPanels.Settings.strCoAuthMode": "Modo de co-edição", - "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Outros utilizadores verão as suas alterações de uma vez", - "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "You will need to accept changes before you can see them", "PE.Views.FileMenuPanels.Settings.strFast": "Rápido", "PE.Views.FileMenuPanels.Settings.strFontRender": "Dicas de tipo de letra", "PE.Views.FileMenuPanels.Settings.strForcesave": "Guardar sempre no servidor (caso contrário, guardar no servidor ao fechar o documento)", - "PE.Views.FileMenuPanels.Settings.strInputMode": "Ativar hieróglifos", "PE.Views.FileMenuPanels.Settings.strMacrosSettings": "Definições de macros", "PE.Views.FileMenuPanels.Settings.strPaste": "Cortar, copiar e colar", "PE.Views.FileMenuPanels.Settings.strPasteButton": "Mostrar botão Opções de colagem ao colar conteúdo", - "PE.Views.FileMenuPanels.Settings.strShowChanges": "Alterações de colaboração em tempo real", - "PE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Ativar a opção de verificação ortográfica", "PE.Views.FileMenuPanels.Settings.strStrict": "Strict", "PE.Views.FileMenuPanels.Settings.strTheme": "Tema de interface", "PE.Views.FileMenuPanels.Settings.strUnit": "Unidade de medida", @@ -1815,11 +1816,11 @@ "PE.Views.ShapeSettings.txtBrownPaper": "Papel pardo", "PE.Views.ShapeSettings.txtCanvas": "Canvas", "PE.Views.ShapeSettings.txtCarton": "Papelão", - "PE.Views.ShapeSettings.txtDarkFabric": "Tecido escuro", + "PE.Views.ShapeSettings.txtDarkFabric": "Tela escura", "PE.Views.ShapeSettings.txtGrain": "Granulação", "PE.Views.ShapeSettings.txtGranite": "Granito", "PE.Views.ShapeSettings.txtGreyPaper": "Papel cinza", - "PE.Views.ShapeSettings.txtKnit": "Encontro", + "PE.Views.ShapeSettings.txtKnit": "Unir", "PE.Views.ShapeSettings.txtLeather": "Couro", "PE.Views.ShapeSettings.txtNoBorders": "Sem linha", "PE.Views.ShapeSettings.txtPapyrus": "Papiro", @@ -1914,11 +1915,11 @@ "PE.Views.SlideSettings.txtBrownPaper": "Papel pardo", "PE.Views.SlideSettings.txtCanvas": "Canvas", "PE.Views.SlideSettings.txtCarton": "Papelão", - "PE.Views.SlideSettings.txtDarkFabric": "Tecido escuro", + "PE.Views.SlideSettings.txtDarkFabric": "Tela escura", "PE.Views.SlideSettings.txtGrain": "Granulação", "PE.Views.SlideSettings.txtGranite": "Granito", "PE.Views.SlideSettings.txtGreyPaper": "Papel cinza", - "PE.Views.SlideSettings.txtKnit": "Encontro", + "PE.Views.SlideSettings.txtKnit": "Unir", "PE.Views.SlideSettings.txtLeather": "Couro", "PE.Views.SlideSettings.txtPapyrus": "Papiro", "PE.Views.SlideSettings.txtWood": "Madeira", @@ -2059,11 +2060,11 @@ "PE.Views.TextArtSettings.txtBrownPaper": "Brown Paper", "PE.Views.TextArtSettings.txtCanvas": "Canvas", "PE.Views.TextArtSettings.txtCarton": "Carton", - "PE.Views.TextArtSettings.txtDarkFabric": "Dark Fabric", + "PE.Views.TextArtSettings.txtDarkFabric": "Tela escura", "PE.Views.TextArtSettings.txtGrain": "Grain", "PE.Views.TextArtSettings.txtGranite": "Granite", "PE.Views.TextArtSettings.txtGreyPaper": "Gray Paper", - "PE.Views.TextArtSettings.txtKnit": "Knit", + "PE.Views.TextArtSettings.txtKnit": "Unir", "PE.Views.TextArtSettings.txtLeather": "Leather", "PE.Views.TextArtSettings.txtNoBorders": "No Line", "PE.Views.TextArtSettings.txtPapyrus": "Papyrus", @@ -2176,9 +2177,12 @@ "PE.Views.Toolbar.tipInsertVideo": "Inserir vídeo", "PE.Views.Toolbar.tipLineSpace": "Espaçamento de linha", "PE.Views.Toolbar.tipMarkers": "Marcadores", - "PE.Views.Toolbar.tipMarkersArrow": "Marcadores de setas", + "PE.Views.Toolbar.tipMarkersArrow": "Marcas em Seta", "PE.Views.Toolbar.tipMarkersCheckmark": "Marcas de verificação", "PE.Views.Toolbar.tipMarkersDash": "Marcadores de traços", + "PE.Views.Toolbar.tipMarkersFRhombus": "Listas Rômbicas Preenchidas", + "PE.Views.Toolbar.tipMarkersFRound": "Listas Redondas Preenchidas", + "PE.Views.Toolbar.tipMarkersFSquare": "Listas Quadradas Preenchidas", "PE.Views.Toolbar.tipMarkersHRound": "Marcas de lista redondas vazias", "PE.Views.Toolbar.tipMarkersStar": "Marcas em estrela", "PE.Views.Toolbar.tipNone": "Nenhum", diff --git a/apps/presentationeditor/main/locale/pt.json b/apps/presentationeditor/main/locale/pt.json index 95284f482..724b08897 100644 --- a/apps/presentationeditor/main/locale/pt.json +++ b/apps/presentationeditor/main/locale/pt.json @@ -1572,21 +1572,13 @@ "PE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "Algumas das assinaturas digitais na apresentação são inválidas ou não puderam ser verificadas. A apresentação está protegida para edição.", "PE.Views.FileMenuPanels.ProtectDoc.txtView": "Exibir assinaturas", "PE.Views.FileMenuPanels.Settings.okButtonText": "Aplicar", - "PE.Views.FileMenuPanels.Settings.strAlignGuides": "Ativar guias de alinhamento", - "PE.Views.FileMenuPanels.Settings.strAutoRecover": "Ativar recuperação automática", - "PE.Views.FileMenuPanels.Settings.strAutosave": "Ativar salvamento automático", "PE.Views.FileMenuPanels.Settings.strCoAuthMode": "Co-editing mode", - "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Other users will see your changes at once", - "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "You will need to accept changes before you can see them", "PE.Views.FileMenuPanels.Settings.strFast": "Fast", "PE.Views.FileMenuPanels.Settings.strFontRender": "Dicas de fonte", "PE.Views.FileMenuPanels.Settings.strForcesave": "Sempre salvar para o servidor (caso contrário, salvar para servidor no documento fechado)", - "PE.Views.FileMenuPanels.Settings.strInputMode": "Ativar hieróglifos", "PE.Views.FileMenuPanels.Settings.strMacrosSettings": "Configurações de macros", "PE.Views.FileMenuPanels.Settings.strPaste": "Cortar, copiar e colar", "PE.Views.FileMenuPanels.Settings.strPasteButton": "Mostrar o botão Opções de colagem quando o conteúdo for colado", - "PE.Views.FileMenuPanels.Settings.strShowChanges": "Alterações de colaboração em tempo real", - "PE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Ativar a opção de verificação ortográfica", "PE.Views.FileMenuPanels.Settings.strStrict": "Estrito", "PE.Views.FileMenuPanels.Settings.strTheme": "Tema de interface", "PE.Views.FileMenuPanels.Settings.strUnit": "Unidade de medida", diff --git a/apps/presentationeditor/main/locale/ro.json b/apps/presentationeditor/main/locale/ro.json index a55089959..812cc89cf 100644 --- a/apps/presentationeditor/main/locale/ro.json +++ b/apps/presentationeditor/main/locale/ro.json @@ -1587,21 +1587,13 @@ "PE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "O parte din semnături electronice din prezentarea nu sunt valide sau nu pot fi verificate. Prezentarea este protejată împotriva editării.", "PE.Views.FileMenuPanels.ProtectDoc.txtView": "Vizualizare semnături", "PE.Views.FileMenuPanels.Settings.okButtonText": "Aplicare", - "PE.Views.FileMenuPanels.Settings.strAlignGuides": "Activare ghiduri de aliniere", - "PE.Views.FileMenuPanels.Settings.strAutoRecover": "Activare recuperare automată", - "PE.Views.FileMenuPanels.Settings.strAutosave": "Activare salvare automată", "PE.Views.FileMenuPanels.Settings.strCoAuthMode": "Modul de editare colaborativă", - "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Ceilalți utilizatori vor putea vedea modificările dvs imediat", - "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "Pentru a vizualiza modificările, trebuie mai întâi să le acceptați", "PE.Views.FileMenuPanels.Settings.strFast": "Rapid", "PE.Views.FileMenuPanels.Settings.strFontRender": "Sugestie font", "PE.Views.FileMenuPanels.Settings.strForcesave": "Versiunea se adaugă la stocarea după ce faceți clic pe Salvare sau Ctrl+S", - "PE.Views.FileMenuPanels.Settings.strInputMode": "Activare hieroglife", "PE.Views.FileMenuPanels.Settings.strMacrosSettings": "Setări macrocomandă", "PE.Views.FileMenuPanels.Settings.strPaste": "Decupare, copiere și lipire", "PE.Views.FileMenuPanels.Settings.strPasteButton": "Afișarea butonului Opțiuni lipire de fiecare dată când lipiți conținut", - "PE.Views.FileMenuPanels.Settings.strShowChanges": "Modificările aduse documentului la colaborarea în timp real", - "PE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Activarea verificare ortografică", "PE.Views.FileMenuPanels.Settings.strStrict": "Strict", "PE.Views.FileMenuPanels.Settings.strTheme": "Tema interfeței", "PE.Views.FileMenuPanels.Settings.strUnit": "Unitate de măsură ", diff --git a/apps/presentationeditor/main/locale/ru.json b/apps/presentationeditor/main/locale/ru.json index 42f5e198d..2755ba2e8 100644 --- a/apps/presentationeditor/main/locale/ru.json +++ b/apps/presentationeditor/main/locale/ru.json @@ -1587,21 +1587,13 @@ "PE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "Некоторые из цифровых подписей в презентации недействительны или их нельзя проверить. Презентация защищена от редактирования.", "PE.Views.FileMenuPanels.ProtectDoc.txtView": "Просмотр подписей", "PE.Views.FileMenuPanels.Settings.okButtonText": "Применить", - "PE.Views.FileMenuPanels.Settings.strAlignGuides": "Включить направляющие выравнивания", - "PE.Views.FileMenuPanels.Settings.strAutoRecover": "Включить автовосстановление", - "PE.Views.FileMenuPanels.Settings.strAutosave": "Включить автосохранение", "PE.Views.FileMenuPanels.Settings.strCoAuthMode": "Режим совместного редактирования", - "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Другие пользователи будут сразу же видеть ваши изменения", - "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "Прежде чем вы сможете увидеть изменения, их надо будет принять", "PE.Views.FileMenuPanels.Settings.strFast": "Быстрый", "PE.Views.FileMenuPanels.Settings.strFontRender": "Хинтинг шрифтов", "PE.Views.FileMenuPanels.Settings.strForcesave": "Добавлять версию в хранилище после нажатия кнопки Сохранить или Ctrl+S", - "PE.Views.FileMenuPanels.Settings.strInputMode": "Включить иероглифы", "PE.Views.FileMenuPanels.Settings.strMacrosSettings": "Настройки макросов", "PE.Views.FileMenuPanels.Settings.strPaste": "Вырезание, копирование и вставка", "PE.Views.FileMenuPanels.Settings.strPasteButton": "Показывать кнопку Параметры вставки при вставке содержимого", - "PE.Views.FileMenuPanels.Settings.strShowChanges": "Отображать изменения при совместной работе", - "PE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Включить проверку орфографии", "PE.Views.FileMenuPanels.Settings.strStrict": "Строгий", "PE.Views.FileMenuPanels.Settings.strTheme": "Тема интерфейса", "PE.Views.FileMenuPanels.Settings.strUnit": "Единица измерения", diff --git a/apps/presentationeditor/main/locale/sk.json b/apps/presentationeditor/main/locale/sk.json index f18fa07d8..fd2eb0f2c 100644 --- a/apps/presentationeditor/main/locale/sk.json +++ b/apps/presentationeditor/main/locale/sk.json @@ -1572,21 +1572,13 @@ "PE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "Niektoré z digitálnych podpisov v prezentácií sú neplatné, alebo sa ich nepodarilo overiť. Prezentácia je zabezpečená proti úpravám.", "PE.Views.FileMenuPanels.ProtectDoc.txtView": "Zobraziť podpisy", "PE.Views.FileMenuPanels.Settings.okButtonText": "Použiť", - "PE.Views.FileMenuPanels.Settings.strAlignGuides": "Zapnúť tipy zarovnávania", - "PE.Views.FileMenuPanels.Settings.strAutoRecover": "Zapnúť automatickú obnovu", - "PE.Views.FileMenuPanels.Settings.strAutosave": "Zapnúť automatické ukladanie", "PE.Views.FileMenuPanels.Settings.strCoAuthMode": "Režim spoločnej úpravy", - "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Ostatní používatelia uvidia Vaše zmeny naraz", - "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "Musíte akceptovať zmeny pretým ako ich uvidíte ", "PE.Views.FileMenuPanels.Settings.strFast": "Rýchly", "PE.Views.FileMenuPanels.Settings.strFontRender": "Vyhladzovanie hrán písma", "PE.Views.FileMenuPanels.Settings.strForcesave": "Pridaj verziu na úložisko kliknutím na Uložiť alebo Ctrl+S", - "PE.Views.FileMenuPanels.Settings.strInputMode": "Zapnúť hieroglyfy", "PE.Views.FileMenuPanels.Settings.strMacrosSettings": "Nastavenia makier", "PE.Views.FileMenuPanels.Settings.strPaste": "Vystrihni, skopíruj a vlep", "PE.Views.FileMenuPanels.Settings.strPasteButton": "Po vložení obsahu ukázať tlačítko Možnosti vloženia", - "PE.Views.FileMenuPanels.Settings.strShowChanges": "Zmeny spolupráce v reálnom čase", - "PE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Zapnúť kontrolu pravopisu", "PE.Views.FileMenuPanels.Settings.strStrict": "Prísny", "PE.Views.FileMenuPanels.Settings.strTheme": "Vzhľad prostredia", "PE.Views.FileMenuPanels.Settings.strUnit": "Jednotka merania", diff --git a/apps/presentationeditor/main/locale/sl.json b/apps/presentationeditor/main/locale/sl.json index adb5c8ed2..799af2d3f 100644 --- a/apps/presentationeditor/main/locale/sl.json +++ b/apps/presentationeditor/main/locale/sl.json @@ -707,16 +707,10 @@ "PE.Views.FileMenuPanels.DocumentRights.txtRights": "Osebe, ki imajo pravice", "PE.Views.FileMenuPanels.ProtectDoc.txtEdit": "Uredi predstavitev", "PE.Views.FileMenuPanels.Settings.okButtonText": "Uporabi", - "PE.Views.FileMenuPanels.Settings.strAlignGuides": "Vključi vodnike poravnave", - "PE.Views.FileMenuPanels.Settings.strAutosave": "Vključi samodejno shranjevanje", "PE.Views.FileMenuPanels.Settings.strCoAuthMode": "Co-editing mode", - "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Other users will see your changes at once", - "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "You will need to accept changes before you can see them", "PE.Views.FileMenuPanels.Settings.strFast": "Fast", "PE.Views.FileMenuPanels.Settings.strFontRender": "Namigovanje pisave", - "PE.Views.FileMenuPanels.Settings.strInputMode": "Vključi hieroglife", "PE.Views.FileMenuPanels.Settings.strMacrosSettings": "Nastavitve makrojev", - "PE.Views.FileMenuPanels.Settings.strShowChanges": "Sprotne spremembe sodelovanja", "PE.Views.FileMenuPanels.Settings.strStrict": "Strict", "PE.Views.FileMenuPanels.Settings.strUnit": "Merilna enota", "PE.Views.FileMenuPanels.Settings.strZoom": "Privzeta vrednost zooma", diff --git a/apps/presentationeditor/main/locale/sv.json b/apps/presentationeditor/main/locale/sv.json index 4402dba57..6d75f6e1e 100644 --- a/apps/presentationeditor/main/locale/sv.json +++ b/apps/presentationeditor/main/locale/sv.json @@ -1570,21 +1570,13 @@ "PE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "Vissa av de digitala signaturerna i presentationen är ogiltiga eller kunde inte verifieras. Presentationen är skyddad från redigering.", "PE.Views.FileMenuPanels.ProtectDoc.txtView": "Visa signaturer", "PE.Views.FileMenuPanels.Settings.okButtonText": "Tillämpa", - "PE.Views.FileMenuPanels.Settings.strAlignGuides": "Aktivera justeringsguider", - "PE.Views.FileMenuPanels.Settings.strAutoRecover": "Aktivera automatisk återställning", - "PE.Views.FileMenuPanels.Settings.strAutosave": "Aktivera spara automatiskt", "PE.Views.FileMenuPanels.Settings.strCoAuthMode": "Redigera samtidigt", - "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Andra användare kommer att se dina ändringar på en gång", - "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "Du måste acceptera ändringar innan du kan se dom", "PE.Views.FileMenuPanels.Settings.strFast": "Snabb", "PE.Views.FileMenuPanels.Settings.strFontRender": "Fontförslag", "PE.Views.FileMenuPanels.Settings.strForcesave": "Lägg till version till lagringen efter att ha klickat på Spara eller CTRL+S", - "PE.Views.FileMenuPanels.Settings.strInputMode": "Aktivera hieroglyfer", "PE.Views.FileMenuPanels.Settings.strMacrosSettings": "Makroinställningar", "PE.Views.FileMenuPanels.Settings.strPaste": "Klipp ut, kopiera och klistra in", "PE.Views.FileMenuPanels.Settings.strPasteButton": "Visa knappen Klistra in alternativ när innehållet klistras in", - "PE.Views.FileMenuPanels.Settings.strShowChanges": "Samarbeta i realtid", - "PE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Aktivera stavningskontroll", "PE.Views.FileMenuPanels.Settings.strStrict": "Strikt", "PE.Views.FileMenuPanels.Settings.strTheme": "Gränssnittstema", "PE.Views.FileMenuPanels.Settings.strUnit": "Måttenhet", diff --git a/apps/presentationeditor/main/locale/tr.json b/apps/presentationeditor/main/locale/tr.json index 617cf052f..0dff83719 100644 --- a/apps/presentationeditor/main/locale/tr.json +++ b/apps/presentationeditor/main/locale/tr.json @@ -1465,21 +1465,13 @@ "PE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "Sunumdaki bazı dijital imzalar geçersiz veya doğrulanamadı. Sunu, düzenlemeye karşı korumalıdır.", "PE.Views.FileMenuPanels.ProtectDoc.txtView": "İmzaları görüntüle", "PE.Views.FileMenuPanels.Settings.okButtonText": "Uygula", - "PE.Views.FileMenuPanels.Settings.strAlignGuides": "Turn on alignment guides", - "PE.Views.FileMenuPanels.Settings.strAutoRecover": "Otomatik kaydetmeyi aç", - "PE.Views.FileMenuPanels.Settings.strAutosave": "Otomatik kaydetmeyi aç", "PE.Views.FileMenuPanels.Settings.strCoAuthMode": "Ortak Düzenleme Modu", - "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Diğer kullanıcılar değişikliklerinizi hemen görecek", - "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "Değişiklikleri görebilmeniz için önce kabul etmeniz gerekecek", "PE.Views.FileMenuPanels.Settings.strFast": "Hızlı", "PE.Views.FileMenuPanels.Settings.strFontRender": "Yazı Tipi İpucu", "PE.Views.FileMenuPanels.Settings.strForcesave": "Kaydet veya Ctrl+S'ye tıkladıktan sonra sürümü depolamaya ekleyin", - "PE.Views.FileMenuPanels.Settings.strInputMode": "Hiyeroglifleri aç", "PE.Views.FileMenuPanels.Settings.strMacrosSettings": "Makro Ayarları", "PE.Views.FileMenuPanels.Settings.strPaste": "Kes, kopyala ve yapıştır", "PE.Views.FileMenuPanels.Settings.strPasteButton": "İçerik yapıştırıldığında Yapıştırma Seçenekleri düğmesini göster", - "PE.Views.FileMenuPanels.Settings.strShowChanges": "Gerçek Zamanlı Ortak Düzenleme Değişiklikleri", - "PE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Yazım denetimi seçeneğini aç", "PE.Views.FileMenuPanels.Settings.strStrict": "Strict", "PE.Views.FileMenuPanels.Settings.strTheme": "Arayüz teması", "PE.Views.FileMenuPanels.Settings.strUnit": "Ölçüm birimi", diff --git a/apps/presentationeditor/main/locale/uk.json b/apps/presentationeditor/main/locale/uk.json index 71bdf15b6..4fa798ed3 100644 --- a/apps/presentationeditor/main/locale/uk.json +++ b/apps/presentationeditor/main/locale/uk.json @@ -1570,21 +1570,13 @@ "PE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "Деякі з цифрових підписів у презентації недійсні або їх не можна перевірити. Презентація захищена від редагування.", "PE.Views.FileMenuPanels.ProtectDoc.txtView": "Перегляд підписів", "PE.Views.FileMenuPanels.Settings.okButtonText": "Застосувати", - "PE.Views.FileMenuPanels.Settings.strAlignGuides": "Увімкніть посібники для вирівнювання", - "PE.Views.FileMenuPanels.Settings.strAutoRecover": "Увімкніть автозапуск", - "PE.Views.FileMenuPanels.Settings.strAutosave": "Увімкніть автоматичне збереження", "PE.Views.FileMenuPanels.Settings.strCoAuthMode": "Режим спільного редагування", - "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Інші користувачі побачать ваші зміни одразу", - "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "Вам потрібно буде прийняти зміни, перш ніж побачити їх", "PE.Views.FileMenuPanels.Settings.strFast": "Швидко", "PE.Views.FileMenuPanels.Settings.strFontRender": "Хінтинг шрифтів", "PE.Views.FileMenuPanels.Settings.strForcesave": "Додавати версію до сховища після натискання кнопки Зберегти або Ctrl+S", - "PE.Views.FileMenuPanels.Settings.strInputMode": "Увімкніть ієрогліфи", "PE.Views.FileMenuPanels.Settings.strMacrosSettings": "Налаштування макросів", "PE.Views.FileMenuPanels.Settings.strPaste": "Вирізання, копіювання та вставка", "PE.Views.FileMenuPanels.Settings.strPasteButton": "Показувати кнопку Налаштування вставки при вставці вмісту", - "PE.Views.FileMenuPanels.Settings.strShowChanges": "Зміни у співпраці в реальному часі", - "PE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Увімкніть параметр перевірки орфографії", "PE.Views.FileMenuPanels.Settings.strStrict": "Суворий", "PE.Views.FileMenuPanels.Settings.strTheme": "Тема інтерфейсу", "PE.Views.FileMenuPanels.Settings.strUnit": "Одиниця виміру", diff --git a/apps/presentationeditor/main/locale/vi.json b/apps/presentationeditor/main/locale/vi.json index 0f5d13d80..63c3a62a1 100644 --- a/apps/presentationeditor/main/locale/vi.json +++ b/apps/presentationeditor/main/locale/vi.json @@ -810,17 +810,9 @@ "PE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Thay đổi quyền truy cập", "PE.Views.FileMenuPanels.DocumentRights.txtRights": "Những cá nhân có quyền", "PE.Views.FileMenuPanels.Settings.okButtonText": "Áp dụng", - "PE.Views.FileMenuPanels.Settings.strAlignGuides": "Bật hướng dẫn căn chỉnh", - "PE.Views.FileMenuPanels.Settings.strAutoRecover": "Bật tự động khôi phục", - "PE.Views.FileMenuPanels.Settings.strAutosave": "Bật tự động lưu", "PE.Views.FileMenuPanels.Settings.strCoAuthMode": "Chế độ đồng chỉnh sửa", - "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Những người dùng khác sẽ cùng lúc thấy các thay đổi của bạn", - "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "Bạn sẽ cần chấp nhận thay đổi trước khi có thể xem chúng", "PE.Views.FileMenuPanels.Settings.strFast": "Nhanh", "PE.Views.FileMenuPanels.Settings.strForcesave": "Luôn lưu vào server (hoặc lưu vào server khi đóng tài liệu)", - "PE.Views.FileMenuPanels.Settings.strInputMode": "Bật chữ tượng hình", - "PE.Views.FileMenuPanels.Settings.strShowChanges": "Thay đổi Cộng tác Thời gian thực", - "PE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Bật tùy chọn kiểm tra chính tả", "PE.Views.FileMenuPanels.Settings.strStrict": "Nghiêm ngặt", "PE.Views.FileMenuPanels.Settings.strUnit": "Đơn vị đo lường", "PE.Views.FileMenuPanels.Settings.strZoom": "Giá trị Phóng to Mặc định", diff --git a/apps/presentationeditor/main/locale/zh-TW.json b/apps/presentationeditor/main/locale/zh-TW.json index 9289317a3..32a6e8651 100644 --- a/apps/presentationeditor/main/locale/zh-TW.json +++ b/apps/presentationeditor/main/locale/zh-TW.json @@ -139,7 +139,6 @@ "Common.define.effectData.textIn": "在", "Common.define.effectData.textInFromScreenCenter": "從螢幕中心展開", "Common.define.effectData.textInSlightly": "微量放大", - "Common.define.effectData.textInToScreenCenter": "從外縮到螢幕中心", "Common.define.effectData.textInvertedSquare": "反向正方形", "Common.define.effectData.textInvertedTriangle": "反向三角形", "Common.define.effectData.textLeft": "左", @@ -213,7 +212,6 @@ "Common.define.effectData.textToBottom": "自下", "Common.define.effectData.textToBottomLeft": "自左下", "Common.define.effectData.textToBottomRight": "自右下", - "Common.define.effectData.textToFromScreenBottom": "縮小到螢幕下方", "Common.define.effectData.textToLeft": "自左", "Common.define.effectData.textToRight": "自右", "Common.define.effectData.textToTop": "自上", @@ -1575,21 +1573,13 @@ "PE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "演示文稿中的某些數字簽名無效或無法驗證。演示文稿受到保護,無法編輯。", "PE.Views.FileMenuPanels.ProtectDoc.txtView": "查看簽名", "PE.Views.FileMenuPanels.Settings.okButtonText": "套用", - "PE.Views.FileMenuPanels.Settings.strAlignGuides": "打開對齊嚮導", - "PE.Views.FileMenuPanels.Settings.strAutoRecover": "開啟自動恢復", - "PE.Views.FileMenuPanels.Settings.strAutosave": "打開自動保存", "PE.Views.FileMenuPanels.Settings.strCoAuthMode": "共同編輯模式", - "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "其他用戶將立即看到您的更改", - "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "您需要先接受更改,然後才能看到它們", "PE.Views.FileMenuPanels.Settings.strFast": "快", "PE.Views.FileMenuPanels.Settings.strFontRender": "字體提示", "PE.Views.FileMenuPanels.Settings.strForcesave": "始終保存到服務器(否則在文檔關閉時保存到服務器)", - "PE.Views.FileMenuPanels.Settings.strInputMode": "打開象形文字", "PE.Views.FileMenuPanels.Settings.strMacrosSettings": "巨集設定", "PE.Views.FileMenuPanels.Settings.strPaste": "剪切,複製和粘貼", "PE.Views.FileMenuPanels.Settings.strPasteButton": "粘貼內容時顯示“粘貼選項”按鈕", - "PE.Views.FileMenuPanels.Settings.strShowChanges": "即時共同編輯設定更新", - "PE.Views.FileMenuPanels.Settings.strSpellCheckMode": "啟用拼寫檢查選項", "PE.Views.FileMenuPanels.Settings.strStrict": "嚴格", "PE.Views.FileMenuPanels.Settings.strTheme": "介面主題", "PE.Views.FileMenuPanels.Settings.strUnit": "測量單位", diff --git a/apps/presentationeditor/main/locale/zh.json b/apps/presentationeditor/main/locale/zh.json index d2dc3e016..10bcc2c9f 100644 --- a/apps/presentationeditor/main/locale/zh.json +++ b/apps/presentationeditor/main/locale/zh.json @@ -1570,21 +1570,13 @@ "PE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "演示文稿中的某些数字签名无效或无法验证。该演示文稿已限制编辑。", "PE.Views.FileMenuPanels.ProtectDoc.txtView": "查看签名", "PE.Views.FileMenuPanels.Settings.okButtonText": "应用", - "PE.Views.FileMenuPanels.Settings.strAlignGuides": "显示对齐辅助线", - "PE.Views.FileMenuPanels.Settings.strAutoRecover": "启用自动恢复", - "PE.Views.FileMenuPanels.Settings.strAutosave": "打开自动保存", "PE.Views.FileMenuPanels.Settings.strCoAuthMode": "共同编辑模式", - "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "其他用户将一次看到您的更改", - "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "您将需要接受更改才能看到它们", "PE.Views.FileMenuPanels.Settings.strFast": "快速", "PE.Views.FileMenuPanels.Settings.strFontRender": "字体微调方式", "PE.Views.FileMenuPanels.Settings.strForcesave": "单击“保存”或Ctrl+S之后版本添加到存储", - "PE.Views.FileMenuPanels.Settings.strInputMode": "显示象形文字", "PE.Views.FileMenuPanels.Settings.strMacrosSettings": "宏设置", "PE.Views.FileMenuPanels.Settings.strPaste": "剪切、复制、黏贴", "PE.Views.FileMenuPanels.Settings.strPasteButton": "在执行粘贴操作后显示“粘贴选项”按钮", - "PE.Views.FileMenuPanels.Settings.strShowChanges": "实时协作变更", - "PE.Views.FileMenuPanels.Settings.strSpellCheckMode": "显示拼写检查选项", "PE.Views.FileMenuPanels.Settings.strStrict": "严格", "PE.Views.FileMenuPanels.Settings.strTheme": "界面主題", "PE.Views.FileMenuPanels.Settings.strUnit": "测量单位", diff --git a/apps/presentationeditor/mobile/locale/be.json b/apps/presentationeditor/mobile/locale/be.json index 378538b82..f0a657856 100644 --- a/apps/presentationeditor/mobile/locale/be.json +++ b/apps/presentationeditor/mobile/locale/be.json @@ -471,9 +471,9 @@ "textDisableAllMacrosWithoutNotification": "Disable all macros without notification", "textEnableAllMacrosWithoutNotification": "Enable all macros without notification", "textFindAndReplaceAll": "Find and Replace All", + "textFeedback": "Feedback & Support", "textTel": "tel:", - "txtScheme22": "New Office", - "textFeedback": "Feedback & Support" + "txtScheme22": "New Office" } } } \ No newline at end of file diff --git a/apps/presentationeditor/mobile/locale/ca.json b/apps/presentationeditor/mobile/locale/ca.json index 476fe9652..e77b65f6f 100644 --- a/apps/presentationeditor/mobile/locale/ca.json +++ b/apps/presentationeditor/mobile/locale/ca.json @@ -11,10 +11,10 @@ "Common": { "Collaboration": { "notcriticalErrorTitle": "Advertiment", - "textAddComment": "Afegir comentari", - "textAddReply": "Afegir Resposta", + "textAddComment": "Afegeix un comentari", + "textAddReply": "Afegeix una resposta", "textBack": "Enrere", - "textCancel": "Cancel·lar", + "textCancel": "Cancel·la", "textCollaboration": "Col·laboració", "textComments": "Comentaris", "textDeleteComment": "Suprimeix el comentari", @@ -44,9 +44,9 @@ }, "ContextMenu": { "errorCopyCutPaste": "Les accions de copiar, tallar i enganxar mitjançant el menú contextual només es realitzaran en el fitxer actual.", - "menuAddComment": "Afegir comentari", - "menuAddLink": "Afegir Enllaç", - "menuCancel": "Cancel·lar", + "menuAddComment": "Afegeix un comentari", + "menuAddLink": "Afegeix un enllaç", + "menuCancel": "Cancel·la", "menuDelete": "Suprimeix", "menuDeleteTable": "Suprimeix la taula", "menuEdit": "Edita", @@ -80,7 +80,7 @@ "ClipArt": "Galeria d'imatges", "Date and time": "Data i hora", "Diagram": "Diagrama", - "Diagram Title": "Títol del Gràfic", + "Diagram Title": "Títol del gràfic", "Footer": "Peu de pàgina", "Header": "Capçalera", "Image": "Imatge", @@ -141,7 +141,7 @@ "errorDataEncrypted": "S'han rebut canvis xifrats, que no es poden desxifrar.", "errorDataRange": "L'interval de dades no és correcte.", "errorDefaultMessage": "Codi d'error:%1", - "errorEditingDownloadas": "S'ha produït un error mentre es treballava amb el document.
Utilitzeu l'opció \"Descarregar\" per desar la còpia de seguretat del fitxer localment.", + "errorEditingDownloadas": "S'ha produït un error mentre es treballava amb el document.
Utilitzeu l'opció \"Descarregar\" per desar la còpia de seguretat del fitxer localment.", "errorFilePassProtect": "El fitxer està protegit amb contrasenya i no s'ha pogut obrir.", "errorFileSizeExceed": "La mida del fitxer supera el límit del vostre servidor.
Contacteu amb l'administrador.", "errorKeyEncrypt": "Descriptor de claus desconegut", @@ -207,10 +207,10 @@ "View": { "Add": { "notcriticalErrorTitle": "Advertiment", - "textAddLink": "Afegir Enllaç", + "textAddLink": "Afegeix un enllaç", "textAddress": "Adreça", "textBack": "Enrere", - "textCancel": "Cancel·lar", + "textCancel": "Cancel·la", "textColumns": "Columnes", "textComment": "Comentari", "textDefault": "Text seleccionat", @@ -246,9 +246,9 @@ "Edit": { "notcriticalErrorTitle": "Advertiment", "textActualSize": "Mida real", - "textAddCustomColor": "Afegir Color Personalitzat", + "textAddCustomColor": "Afegeix un color personalitzat", "textAdditional": "Addicional", - "textAdditionalFormatting": "Format Addicional", + "textAdditionalFormatting": "Format addicional", "textAddress": "Adreça", "textAfter": "Després", "textAlign": "Alineació", @@ -258,24 +258,24 @@ "textAlignMiddle": "Alineació al mig", "textAlignRight": "Alineació dreta", "textAlignTop": "Alineació Superior", - "textAllCaps": "Tot Majúscules", - "textApplyAll": "Aplicar a totes les diapositives", + "textAllCaps": "Tot en majúscules", + "textApplyAll": "Aplica-ho a totes les diapositives", "textAuto": "Automàtic", "textAutomatic": "Automàtic", "textBack": "Enrere", - "textBandedColumn": "Columna en Bandes", - "textBandedRow": "Fila en Bandes", + "textBandedColumn": "Columna en bandes", + "textBandedRow": "Fila en bandes", "textBefore": "Abans", "textBlack": "En negre", "textBorder": "Vora", - "textBottom": "Part Inferior", - "textBottomLeft": "Part Inferior-Esquerra", - "textBottomRight": "Part Inferior-Dreta", - "textBringToForeground": "Portar al Davant", + "textBottom": "Part inferior", + "textBottomLeft": "Part inferior-esquerra", + "textBottomRight": "Part inferior-dreta", + "textBringToForeground": "Porta al primer pla", "textBullets": "Pics", "textBulletsAndNumbers": "Pics i números", - "textCaseSensitive": "Sensible a Majúscules i Minúscules", - "textCellMargins": "Marges de Cel·la", + "textCaseSensitive": "Sensible a majúscules i minúscules", + "textCellMargins": "Marges de la cel·la", "textChart": "Gràfic", "textClock": "Rellotge", "textClockwise": "En sentit horari", @@ -400,10 +400,10 @@ "textAbout": "Quant a", "textAddress": "adreça:", "textApplication": "Aplicació", - "textApplicationSettings": "Configurar Aplicació", + "textApplicationSettings": "Configuració de l'aplicació", "textAuthor": "Autor", "textBack": "Enrere", - "textCaseSensitive": "Sensible a Majúscules i Minúscules", + "textCaseSensitive": "Sensible a majúscules i minúscules", "textCentimeter": "Centímetre", "textCollaboration": "Col·laboració", "textColorSchemes": "Combinacions de colors", @@ -466,7 +466,7 @@ "txtScheme20": "Urbà", "txtScheme21": "Inspiració", "txtScheme22": "Crea Office", - "txtScheme3": "Àpex", + "txtScheme3": "Vèrtex", "txtScheme4": "Aspecte", "txtScheme5": "Cívic", "txtScheme6": "Esplanada", diff --git a/apps/presentationeditor/mobile/locale/ko.json b/apps/presentationeditor/mobile/locale/ko.json index a21c5be9b..af819c541 100644 --- a/apps/presentationeditor/mobile/locale/ko.json +++ b/apps/presentationeditor/mobile/locale/ko.json @@ -33,13 +33,13 @@ "textTryUndoRedo": "빠른 공동 편집 모드에서 실행 취소 / 다시 실행 기능을 사용할 수 없습니다.", "textUsers": "사용자" }, + "HighlightColorPalette": { + "textNoFill": "채우기 없음" + }, "ThemeColorPalette": { "textCustomColors": "사용자 정의 색상", "textStandartColors": "표준 색상", "textThemeColors": "테마 색" - }, - "HighlightColorPalette": { - "textNoFill": "No Fill" } }, "ContextMenu": { @@ -107,9 +107,12 @@ "textHasMacros": "파일에 자동 매크로가 포함되어 있습니다.
매크로를 실행 하시겠습니까?", "textNo": "아니오", "textNoLicenseTitle": "라이센스 수를 제한했습니다.", + "textNoTextFound": "텍스트를 찾을 수 없습니다", "textOpenFile": "파일을 열려면 암호를 입력하십시오.", "textPaidFeature": "유료기능", "textRemember": "선택사항을 저장", + "textReplaceSkipped": "대체가 이루어졌습니다. {0} 건은 건너 뛰었습니다.", + "textReplaceSuccess": "검색이 완료되었습니다. 발생 횟수가 대체되었습니다 : {0}", "textYes": "확인", "titleLicenseExp": "라이센스 만료", "titleServerVersion": "편집기가 업데이트되었습니다.", @@ -123,10 +126,7 @@ "warnLicenseUsersExceeded": "편집자 사용자 한도인 %1명에 도달했습니다. 자세한 내용은 관리자에게 문의하십시오.", "warnNoLicense": "% 1 편집 연결 수 제한에 도달했습니다. 이 문서는 보기 모드로 열립니다. 개인적인 업그레이드 사항은 % 1 영업팀에 연락하십시오.", "warnNoLicenseUsers": "ONLYOFFICE 편집자의이 버전은 동시 사용자에게 일정한 제한이 있습니다.
더 필요한 것이 있으면 현재 라이센스를 업그레이드하거나 상용 라이센스를 구입하십시오.", - "warnProcessRightsChange": "파일을 수정할 수 있는 권한이 없습니다.", - "textNoTextFound": "Text not found", - "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}" + "warnProcessRightsChange": "파일을 수정할 수 있는 권한이 없습니다." } }, "Error": { @@ -228,6 +228,7 @@ "textLinkTo": "링크 대상", "textLinkType": "링크 유형", "textNextSlide": "다음 슬라이드", + "textOk": "확인", "textOther": "기타", "textPictureFromLibrary": "그림 라이브러리에서", "textPictureFromURL": "URL에서 그림", @@ -240,8 +241,7 @@ "textSlideNumber": "슬라이드 번호", "textTable": "표", "textTableSize": "표 크기", - "txtNotUrl": "이 필드는 \"http://www.example.com\"형식의 URL이어야합니다.", - "textOk": "Ok" + "txtNotUrl": "이 필드는 \"http://www.example.com\"형식의 URL이어야합니다." }, "Edit": { "notcriticalErrorTitle": "경고", @@ -261,6 +261,7 @@ "textAllCaps": "모든 대문자", "textApplyAll": "모든 슬라이드에 적용", "textAuto": "자동", + "textAutomatic": "자동", "textBack": "뒤로", "textBandedColumn": "줄무늬 열", "textBandedRow": "줄무늬 행", @@ -285,6 +286,7 @@ "textDefault": "선택한 텍스트", "textDelay": "지연", "textDeleteSlide": "슬라이드 삭제", + "textDesign": "디자인", "textDisplay": "표시", "textDistanceFromText": "텍스트 간격", "textDistributeHorizontally": "수평 분포", @@ -336,6 +338,7 @@ "textNoTextFound": "텍스트를 찾을 수 없습니다", "textNotUrl": "이 필드는 \"http://www.example.com\"형식의 URL이어야합니다.", "textNumbers": "숫자", + "textOk": "확인", "textOpacity": "투명도", "textOptions": "옵션", "textPictureFromLibrary": "그림 라이브러리에서", @@ -389,10 +392,7 @@ "textZoom": "확대/축소", "textZoomIn": "확대", "textZoomOut": "축소", - "textZoomRotate": "확대 / 축소 및 회전", - "textAutomatic": "Automatic", - "textDesign": "Design", - "textOk": "Ok" + "textZoomRotate": "확대 / 축소 및 회전" }, "Settings": { "mniSlideStandard": "표준 (4 : 3)", diff --git a/apps/presentationeditor/mobile/locale/lo.json b/apps/presentationeditor/mobile/locale/lo.json index bb27f26f9..dcaecb5fe 100644 --- a/apps/presentationeditor/mobile/locale/lo.json +++ b/apps/presentationeditor/mobile/locale/lo.json @@ -472,8 +472,8 @@ "txtScheme6": "ສຳມະໂນ", "txtScheme7": "ຄວາມເທົ່າທຽມກັນ", "txtScheme8": "ຂະບວນການ", - "textFeedback": "Feedback & Support", - "txtScheme9": "ໂຮງຫລໍ່" + "txtScheme9": "ໂຮງຫລໍ່", + "textFeedback": "Feedback & Support" } } } \ No newline at end of file diff --git a/apps/presentationeditor/mobile/locale/sk.json b/apps/presentationeditor/mobile/locale/sk.json index 321e45f60..b6a1304d2 100644 --- a/apps/presentationeditor/mobile/locale/sk.json +++ b/apps/presentationeditor/mobile/locale/sk.json @@ -108,50 +108,6 @@ "textNo": "Nie", "textNoLicenseTitle": "Bol dosiahnutý limit licencie", "textNoTextFound": "Text nebol nájdený", - "textOwner": "Owner", - "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", - "textDarkTheme": "Dark Theme", - "textFeedback": "Feedback & Support", "textOpenFile": "Zadajte heslo na otvorenie súboru", "textPaidFeature": "Platená funkcia", "textRemember": "Zapamätaj si moju voľbu", diff --git a/apps/presentationeditor/mobile/locale/sl.json b/apps/presentationeditor/mobile/locale/sl.json index 9c9be4ed1..f1677d1ab 100644 --- a/apps/presentationeditor/mobile/locale/sl.json +++ b/apps/presentationeditor/mobile/locale/sl.json @@ -279,6 +279,7 @@ "textFindAndReplace": "Find and Replace", "textFindAndReplaceAll": "Find and Replace All", "textHelp": "Help", + "textFeedback": "Feedback & Support", "textHighlight": "Highlight Results", "textInch": "Inch", "textLastModified": "Last Modified", @@ -328,8 +329,7 @@ "txtScheme6": "Concourse", "txtScheme7": "Equity", "txtScheme8": "Flow", - "txtScheme9": "Foundry", - "textFeedback": "Feedback & Support" + "txtScheme9": "Foundry" } }, "Controller": { diff --git a/apps/presentationeditor/mobile/locale/tr.json b/apps/presentationeditor/mobile/locale/tr.json index 40e35bdb4..569865e35 100644 --- a/apps/presentationeditor/mobile/locale/tr.json +++ b/apps/presentationeditor/mobile/locale/tr.json @@ -470,10 +470,10 @@ "txtScheme8": "Yayılma", "txtScheme9": "Döküm", "textDarkTheme": "Dark Theme", + "textFeedback": "Feedback & Support", "txtScheme14": "Oriel", "txtScheme17": "Solstice", - "txtScheme19": "Trek", - "textFeedback": "Feedback & Support" + "txtScheme19": "Trek" } } } \ No newline at end of file diff --git a/apps/presentationeditor/mobile/locale/uk.json b/apps/presentationeditor/mobile/locale/uk.json index a29a300e7..098e48b70 100644 --- a/apps/presentationeditor/mobile/locale/uk.json +++ b/apps/presentationeditor/mobile/locale/uk.json @@ -389,6 +389,7 @@ "textFindAndReplace": "Find and Replace", "textFindAndReplaceAll": "Find and Replace All", "textHelp": "Help", + "textFeedback": "Feedback & Support", "textHighlight": "Highlight Results", "textInch": "Inch", "textLastModified": "Last Modified", @@ -435,8 +436,7 @@ "txtScheme6": "Concourse", "txtScheme7": "Equity", "txtScheme8": "Flow", - "txtScheme9": "Foundry", - "textFeedback": "Feedback & Support" + "txtScheme9": "Foundry" } }, "LongActions": { diff --git a/apps/presentationeditor/mobile/src/controller/Main.jsx b/apps/presentationeditor/mobile/src/controller/Main.jsx index a28803971..50f654eeb 100644 --- a/apps/presentationeditor/mobile/src/controller/Main.jsx +++ b/apps/presentationeditor/mobile/src/controller/Main.jsx @@ -124,8 +124,11 @@ class MainController extends Component { docInfo.put_Lang(this.editorConfig.lang); docInfo.put_Mode(this.editorConfig.mode); - if (typeof this.editorConfig.coEditing == 'object' && this.editorConfig.coEditing.mode!==undefined) - docInfo.put_CoEditingMode(this.editorConfig.coEditing.mode); + // var coEditMode = !(this.editorConfig.coEditing && typeof this.editorConfig.coEditing == 'object') ? 'fast' : // fast by default + // this.editorConfig.mode === 'view' && this.editorConfig.coEditing.change!==false ? 'fast' : // if can change mode in viewer - set fast for using live viewer + // this.editorConfig.coEditing.mode || 'fast'; + // docInfo.put_CoEditingMode(coEditMode); + docInfo.put_CoEditingMode('strict'); // need to change!!! let enable = !this.editorConfig.customization || (this.editorConfig.customization.macros !== false); docInfo.asc_putIsEnabledMacroses(!!enable); diff --git a/apps/spreadsheeteditor/main/app/controller/LeftMenu.js b/apps/spreadsheeteditor/main/app/controller/LeftMenu.js index f4a12ab42..8b7100bdd 100644 --- a/apps/spreadsheeteditor/main/app/controller/LeftMenu.js +++ b/apps/spreadsheeteditor/main/app/controller/LeftMenu.js @@ -449,7 +449,7 @@ define([ Common.Utils.InternalSettings.set("sse-settings-coauthmode", fast_coauth); this.api.asc_SetFastCollaborative(fast_coauth); } - } else if (!this.mode.isEdit && !this.mode.isRestrictedEdit && !this.mode.isOffline && this.mode.canChangeCoAuthoring) { // viewer + } else if (this.mode.canLiveView && !this.mode.isOffline && this.mode.canChangeCoAuthoring) { // viewer fast_coauth = Common.localStorage.getBool("sse-settings-view-coauthmode", false); Common.Utils.InternalSettings.set("sse-settings-coauthmode", fast_coauth); this.api.asc_SetFastCollaborative(fast_coauth); diff --git a/apps/spreadsheeteditor/main/app/controller/Main.js b/apps/spreadsheeteditor/main/app/controller/Main.js index e38e48a33..3cbd72ca0 100644 --- a/apps/spreadsheeteditor/main/app/controller/Main.js +++ b/apps/spreadsheeteditor/main/app/controller/Main.js @@ -504,8 +504,10 @@ define([ docInfo.put_Lang(this.editorConfig.lang); docInfo.put_Mode(this.editorConfig.mode); - if (typeof this.editorConfig.coEditing == 'object' && this.editorConfig.coEditing.mode!==undefined) - docInfo.put_CoEditingMode(this.editorConfig.coEditing.mode); + var coEditMode = !(this.editorConfig.coEditing && typeof this.editorConfig.coEditing == 'object') ? 'fast' : // fast by default + this.editorConfig.mode === 'view' && this.editorConfig.coEditing.change!==false ? 'fast' : // if can change mode in viewer - set fast for using live viewer + this.editorConfig.coEditing.mode || 'fast'; + docInfo.put_CoEditingMode(coEditMode); var enable = !this.editorConfig.customization || (this.editorConfig.customization.macros!==false); docInfo.asc_putIsEnabledMacroses(!!enable); @@ -1000,8 +1002,7 @@ define([ } else { documentHolderView.createDelayedElementsViewer(); Common.NotificationCenter.trigger('document:ready', 'main'); - if (me.editorConfig.mode !== 'view') // if want to open editor, but viewer is loaded - me.applyLicense(); + me.applyLicense(); } // TODO bug 43960 if (!me.appOptions.isEditMailMerge && !me.appOptions.isEditDiagram && !me.appOptions.isEditOle) { @@ -1054,12 +1055,20 @@ define([ || licType===Asc.c_oLicenseResult.SuccessLimit && (this.appOptions.trialMode & Asc.c_oLicenseMode.Limited) !== 0)) this._state.licenseType = licType; + if (licType !== undefined && this.appOptions.canLiveView && (licType===Asc.c_oLicenseResult.ConnectionsLive || licType===Asc.c_oLicenseResult.ConnectionsLiveOS)) + this._state.licenseType = licType; + if (this._isDocReady) this.applyLicense(); }, applyLicense: function() { - if (this._state.licenseType) { + if (this.editorConfig.mode === 'view') { + if (this.appOptions.canLiveView && (this._state.licenseType===Asc.c_oLicenseResult.ConnectionsLive || this._state.licenseType===Asc.c_oLicenseResult.ConnectionsLiveOS)) { + // show warning or write to log if Common.Utils.InternalSettings.get("sse-settings-coauthmode") was true ??? + this.disableLiveViewing(true); + } + } else if (this._state.licenseType) { var license = this._state.licenseType, buttons = ['ok'], primary = 'ok'; @@ -1186,6 +1195,12 @@ define([ } }, + disableLiveViewing: function(disable) { + this.appOptions.canLiveView = !disable; + this.api.asc_SetFastCollaborative(!disable); + Common.Utils.InternalSettings.set("sse-settings-coauthmode", !disable); + }, + onOpenDocument: function(progress) { var elem = document.getElementById('loadmask-text'); var proc = (progress.asc_getCurrentFont() + progress.asc_getCurrentImage())/(progress.asc_getFontsCount() + progress.asc_getImagesCount()); @@ -1282,10 +1297,11 @@ define([ this.appOptions.canHelp = !((typeof (this.editorConfig.customization) == 'object') && this.editorConfig.customization.help===false); this.appOptions.isRestrictedEdit = !this.appOptions.isEdit && this.appOptions.canComments; - // change = true by default in editor, change = false by default in viewer + // change = true by default in editor + this.appOptions.canLiveView = !!params.asc_getLiveViewerSupport() && (this.editorConfig.mode === 'view'); // viewer: change=false when no flag canLiveViewer (i.g. old license), change=true by default when canLiveViewer==true this.appOptions.canChangeCoAuthoring = this.appOptions.isEdit && !(this.appOptions.isEditDiagram || this.appOptions.isEditMailMerge || this.appOptions.isEditOle) && this.appOptions.canCoAuthoring && - !(typeof this.editorConfig.coEditing == 'object' && this.editorConfig.coEditing.change===false) || - !this.appOptions.isEdit && !this.appOptions.isRestrictedEdit && (typeof this.editorConfig.coEditing == 'object' && this.editorConfig.coEditing.change===true) ; + !(this.editorConfig.coEditing && typeof this.editorConfig.coEditing == 'object' && this.editorConfig.coEditing.change===false) || + this.appOptions.canLiveView && !(this.editorConfig.coEditing && typeof this.editorConfig.coEditing == 'object' && this.editorConfig.coEditing.change===false); if (!this.appOptions.isEditDiagram && !this.appOptions.isEditMailMerge && !this.appOptions.isEditOle) { this.appOptions.canBrandingExt = params.asc_getCanBranding() && (typeof this.editorConfig.customization == 'object' || this.editorConfig.plugins); @@ -1342,14 +1358,10 @@ define([ fastCoauth = (value===null || parseInt(value) == 1); } else if (!this.appOptions.isEdit && this.appOptions.isRestrictedEdit) { fastCoauth = true; - } else if (!this.appOptions.isEdit && !this.appOptions.isRestrictedEdit && !this.appOptions.isOffline) { // viewer - if (!this.appOptions.canChangeCoAuthoring) { //can't change co-auth. mode. Use coEditing.mode or 'strict' by default - value = this.editorConfig.coEditing && this.editorConfig.coEditing.mode==='fast' ? 1 : 0; - } else { - value = Common.localStorage.getItem("sse-settings-view-coauthmode"); - if (value===null) { - value = this.editorConfig.coEditing && this.editorConfig.coEditing.mode==='fast' ? 1 : 0; - } + } else if (this.appOptions.canLiveView && !this.appOptions.isOffline) { // viewer + value = Common.localStorage.getItem("sse-settings-view-coauthmode"); + if (!this.appOptions.canChangeCoAuthoring || value===null) { // Use coEditing.mode or 'fast' by default + value = this.editorConfig.coEditing && this.editorConfig.coEditing.mode==='strict' ? 0 : 1; } fastCoauth = (parseInt(value) == 1); } else { diff --git a/apps/spreadsheeteditor/main/app/controller/Print.js b/apps/spreadsheeteditor/main/app/controller/Print.js index 3a6f827e5..6a5071ecb 100644 --- a/apps/spreadsheeteditor/main/app/controller/Print.js +++ b/apps/spreadsheeteditor/main/app/controller/Print.js @@ -65,7 +65,8 @@ define([ 'PrintWithPreview': { 'show': _.bind(this.onShowMainSettingsPrint, this), 'render:after': _.bind(this.onAfterRender, this), - 'changerange': _.bind(this.onChangeRange, this, false) + 'changerange': _.bind(this.onChangeRange, this, false), + 'openheader': _.bind(this.onOpenHeaderSettings, this), }, 'PrintSettings': { 'changerange': _.bind(this.onChangeRange, this, true) @@ -82,7 +83,13 @@ define([ onAfterRender: function(view) { var me = this; this.printSettings.menu.on('menu:hide', _.bind(this.onHidePrintMenu, this)); - this.printSettings.cmbSheet.on('selected', _.bind(this.comboSheetsChange, this, this.printSettings)); + this.printSettings.cmbSheet.on('selected', _.bind(function (combo, record) { + this.comboSheetsChange(this.printSettings, combo, record); + if (this._isPreviewVisible) { + this.notUpdateSheetSettings = true; + this.api.asc_drawPrintPreview(undefined, record.value); + } + }, this)); this.printSettings.btnsSave.forEach(function (btn) { btn.on('click', _.bind(me.querySavePrintSettings, me, false)); }); @@ -96,13 +103,14 @@ define([ 'keyup:after': _.bind(this.onKeyupPageNumber, this) }); this.printSettings.txtNumberPage.cmpEl.find('input').on('blur', _.bind(this.onBlurPageNumber, this)); - this.printSettings.chIgnorePrintArea.on('change', _.bind(this.updatePreview, this)); + this.printSettings.chIgnorePrintArea.on('change', _.bind(this.updatePreview, this, true)); this.fillComponents(this.printSettings); this.registerControlEvents(this.printSettings); Common.NotificationCenter.on('window:resize', _.bind(function () { if (this._isPreviewVisible) { + this.notUpdateSheetSettings = true; this.api.asc_drawPrintPreview(this._navigationPreview.currentPage); } }, this)); @@ -115,7 +123,7 @@ define([ this.api = o; this.api.asc_registerCallback('asc_onSheetsChanged', _.bind(this.updateSheetsInfo, this)); this.api.asc_registerCallback('asc_onPrintPreviewSheetChanged', _.bind(this.onApiChangePreviewSheet, this)); - this.api.asc_registerCallback('asc_onUpdateDocumentProps', _.bind(this.updateDocumentProps, this)); + this.api.asc_registerCallback('asc_onPrintPreviewPageChanged', _.bind(this.onApiChangePreviewPage, this)); }, updateSheetsInfo: function() { @@ -148,7 +156,11 @@ define([ }, comboSheetsChange: function(panel, combo, record) { - this.fillPageOptions(panel, this._changedProps[record.value] ? this._changedProps[record.value] : this.api.asc_getPageOptions(record.value, true), record.value); + var currentSheet = record.value; + this.fillPageOptions(panel, this._changedProps[currentSheet] ? this._changedProps[currentSheet] : this.api.asc_getPageOptions(currentSheet, true), currentSheet); + if (!this._changedProps[currentSheet]) { + this._changedProps[currentSheet] = this.getPageOptions(this.printSettings, currentSheet); + } }, fillPageOptions: function(panel, props, sheet) { @@ -244,16 +256,16 @@ define([ menu.chIgnorePrintArea.setDisabled(printtype == Asc.c_oAscPrintType.Selection); if (!isDlg) { - this.updatePreview(); + this.updatePreview(true); } }, - getPageOptions: function(panel) { - var props = new Asc.asc_CPageOptions(); + getPageOptions: function(panel, sheet) { + var props = this._changedProps[sheet] ? this._changedProps[sheet] : new Asc.asc_CPageOptions(); props.asc_setGridLines(panel.chPrintGrid.getValue()==='checked'); props.asc_setHeadings(panel.chPrintRows.getValue()==='checked'); - var opt = new Asc.asc_CPageSetup(); + var opt = this._changedProps[sheet] ? this._changedProps[sheet].asc_getPageSetup() : new Asc.asc_CPageSetup(); opt.asc_setOrientation(panel.cmbPaperOrientation.getValue() == '-' ? undefined : panel.cmbPaperOrientation.getValue()); var pagew = /^\d{3}\.?\d*/.exec(panel.cmbPaperSize.getValue()); @@ -275,15 +287,19 @@ define([ opt.asc_setFitToHeight(this.fitHeight); opt.asc_setScale(this.fitScale); } - props.asc_setPageSetup(opt); + if (!this._changedProps[sheet]) { + props.asc_setPageSetup(opt); + } - opt = new Asc.asc_CPageMargins(); + opt = this._changedProps[sheet] ? this._changedProps[sheet].asc_getPageMargins() : new Asc.asc_CPageMargins(); opt.asc_setLeft(panel.spnMarginLeft.getValue() == '-' ? undefined : Common.Utils.Metric.fnRecalcToMM(panel.spnMarginLeft.getNumberValue())); // because 1.91*10=19.0999999... opt.asc_setTop(panel.spnMarginTop.getValue() == '-' ? undefined : Common.Utils.Metric.fnRecalcToMM(panel.spnMarginTop.getNumberValue())); opt.asc_setRight(panel.spnMarginRight.getValue() == '-' ? undefined : Common.Utils.Metric.fnRecalcToMM(panel.spnMarginRight.getNumberValue())); opt.asc_setBottom(panel.spnMarginBottom.getValue() == '-' ? undefined : Common.Utils.Metric.fnRecalcToMM(panel.spnMarginBottom.getNumberValue())); - props.asc_setPageMargins(opt); + if (!this._changedProps[sheet]) { + props.asc_setPageMargins(opt); + } var check = this.api.asc_checkDataRange(Asc.c_oAscSelectionDialogType.PrintTitles, panel.txtRangeTop.getValue(), false) !== Asc.c_oAscError.ID.DataRangeError; props.asc_setPrintTitlesHeight(check ? panel.txtRangeTop.getValue() : panel.dataRangeTop); @@ -321,6 +337,7 @@ define([ this.printSettings.txtNumberPage.checkValidate(); } this._isPreviewVisible = true; + !!pageCount && this.updatePreview(); }, openPrintSettings: function(type, cmp, format, asUrl) { @@ -480,7 +497,8 @@ define([ me.fitScale = result.scale; me.setScaling(panel, me.fitWidth, me.fitHeight, me.fitScale); if (me._changedProps) { - me._changedProps[panel.cmbSheet.getValue()] = me.getPageOptions(panel); + var currentSheet = panel.cmbSheet.getValue(); + me._changedProps[currentSheet] = me.getPageOptions(panel, currentSheet); me.updatePreview(); } } @@ -498,7 +516,8 @@ define([ Common.NotificationCenter.trigger('edit:complete', this.toolbar); } else { if (this._changedProps) { - this._changedProps[panel.cmbSheet.getValue()] = this.getPageOptions(panel); + var currentSheet = panel.cmbSheet.getValue(); + this._changedProps[currentSheet] = this.getPageOptions(panel, currentSheet); this.updatePreview(); } } @@ -690,7 +709,7 @@ define([ } }, - updatePreview: function () { + updatePreview: function (needUpdate) { if (this._isPreviewVisible) { var adjPrintParams = new Asc.asc_CAdjustPrint(), printType = this.printSettings.getRange(); @@ -713,6 +732,7 @@ define([ newPage = this._navigationPreview.currentPage; } + this.notUpdateSheetSettings = !needUpdate; this.api.asc_drawPrintPreview(newPage); this.updateNavigationButtons(newPage, pageCount); @@ -720,6 +740,10 @@ define([ }, onApiChangePreviewSheet: function (index) { + if (this.notUpdateSheetSettings) { + this.notUpdateSheetSettings = false; + return + } var item = this.printSettings.cmbSheet.store.findWhere({value: index}); if (item) { this.printSettings.cmbSheet.setValue(item.get('value')); @@ -749,10 +773,16 @@ define([ this.printSettings.btnNextPage.setDisabled(curPage > pageCount - 2); }, - updateDocumentProps: function (index) { - if (this._isPreviewVisible) { - this._changedProps[index] = this.api.asc_getPageOptions(index); - this.updatePreview(); + onOpenHeaderSettings: function () { + var pageSetup = this._changedProps[this.printSettings.cmbSheet.getValue()].asc_getPageSetup(); + SSE.getController('Toolbar').onEditHeaderClick(pageSetup); + }, + + onApiChangePreviewPage: function (page) { + if (this._navigationPreview.currentPage !== page) { + this._navigationPreview.currentPage = page; + this.updateNavigationButtons(page, this._navigationPreview.pageCount); + this.disableNavButtons(); } }, diff --git a/apps/spreadsheeteditor/main/app/controller/Toolbar.js b/apps/spreadsheeteditor/main/app/controller/Toolbar.js index e060c6f5f..585894f26 100644 --- a/apps/spreadsheeteditor/main/app/controller/Toolbar.js +++ b/apps/spreadsheeteditor/main/app/controller/Toolbar.js @@ -419,7 +419,7 @@ define([ toolbar.btnImgForward.on('click', this.onImgArrangeSelect.bind(this, 'forward')); toolbar.btnImgBackward.on('click', this.onImgArrangeSelect.bind(this, 'backward')); toolbar.btnsEditHeader.forEach(function(button) { - button.on('click', _.bind(me.onEditHeaderClick, me)); + button.on('click', _.bind(me.onEditHeaderClick, me, undefined)); }); toolbar.btnPrintTitles.on('click', _.bind(this.onPrintTitlesClick, this)); toolbar.chPrintGridlines.on('change', _.bind(this.onPrintGridlinesChange, this)); @@ -4076,7 +4076,7 @@ define([ this.toolbar.btnPrintArea.menu.items[2].setVisible(this.api.asc_CanAddPrintArea()); }, - onEditHeaderClick: function(btn) { + onEditHeaderClick: function(pageSetup, btn) { var me = this; if (_.isUndefined(me.fontStore)) { me.fontStore = new Common.Collections.Fonts(); @@ -4093,6 +4093,7 @@ define([ var win = new SSE.Views.HeaderFooterDialog({ api: me.api, fontStore: me.fontStore, + pageSetup: pageSetup, handler: function(dlg, result) { if (result === 'ok') { me.getApplication().getController('Print').updatePreview(); diff --git a/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js b/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js index 84b936ad0..12be34634 100644 --- a/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js +++ b/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js @@ -756,7 +756,7 @@ define([ $('tr.forcesave', this.el)[mode.canForcesave ? 'show' : 'hide'](); $('tr.comments', this.el)[mode.canCoAuthoring ? 'show' : 'hide'](); $('tr.coauth.changes', this.el)[mode.isEdit && !mode.isOffline && mode.canCoAuthoring && mode.canChangeCoAuthoring ? 'show' : 'hide'](); - $('tr.live-viewer', this.el)[!mode.isEdit && !mode.isRestrictedEdit && !mode.isOffline && mode.canChangeCoAuthoring ? 'show' : 'hide'](); + $('tr.live-viewer', this.el)[mode.canLiveView && !mode.isOffline && mode.canChangeCoAuthoring ? 'show' : 'hide'](); $('tr.macros', this.el)[(mode.customization && mode.customization.macros===false) ? 'hide' : 'show'](); if ( !Common.UI.Themes.available() ) { @@ -911,7 +911,7 @@ define([ Common.localStorage.setItem("sse-settings-resolvedcomment", this.chResolvedComment.isChecked() ? 1 : 0); if (this.mode.isEdit && !this.mode.isOffline && this.mode.canCoAuthoring && this.mode.canChangeCoAuthoring) Common.localStorage.setItem("sse-settings-coauthmode", this.rbCoAuthModeFast.getValue()? 1 : 0); - else if (!this.mode.isEdit && !this.mode.isRestrictedEdit && !this.mode.isOffline && this.mode.canChangeCoAuthoring) { // viewer + else if (this.mode.canLiveView && !this.mode.isOffline && this.mode.canChangeCoAuthoring) { // viewer Common.localStorage.setItem("sse-settings-view-coauthmode", this.chLiveViewer.isChecked() ? 1 : 0); } /** coauthoring end **/ @@ -2681,7 +2681,7 @@ SSE.Views.FileMenuPanels.RecentFiles = Common.UI.BaseView.extend({ }, openHeaderSettings: function() { - SSE.getController('Toolbar').onEditHeaderClick(); + this.fireEvent('openheader', this); }, updateCountOfPages: function (count) { diff --git a/apps/spreadsheeteditor/main/app/view/HeaderFooterDialog.js b/apps/spreadsheeteditor/main/app/view/HeaderFooterDialog.js index 8fd8290e4..711839b95 100644 --- a/apps/spreadsheeteditor/main/app/view/HeaderFooterDialog.js +++ b/apps/spreadsheeteditor/main/app/view/HeaderFooterDialog.js @@ -63,6 +63,7 @@ define([ this.api = this.options.api; this.props = this.options.props; this.fontStore = this.options.fontStore; + this.pageSetup = this.options.pageSetup; this.isFooter = false; this.currentCanvas = null; this.headerControls = []; @@ -619,7 +620,7 @@ define([ Common.UI.Window.prototype.close.apply(this, arguments); if (this.HFObject) - this.HFObject.destroy(); + this.HFObject.destroy(false, this.pageSetup); }, afterRender: function () { @@ -631,7 +632,7 @@ define([ this.cmbFonts[1].fillFonts(this.fontStore); this.updateThemeColors(); - this.HFObject = new Asc.asc_CHeaderFooterEditor(['header-left-img', 'header-center-img', 'header-right-img', 'footer-left-img', 'footer-center-img', 'footer-right-img'], 205); + this.HFObject = new Asc.asc_CHeaderFooterEditor(['header-left-img', 'header-center-img', 'header-right-img', 'footer-left-img', 'footer-center-img', 'footer-right-img'], 205, undefined, this.pageSetup); this._setDefaults(this.props); this.editorCanvas = this.$window.find('#ce-canvas-menu'); var me = this; @@ -697,7 +698,7 @@ define([ _handleInput: function(state) { if (this.HFObject) { - var id = this.HFObject.destroy(state=='ok'); + var id = this.HFObject.destroy(state=='ok', this.pageSetup); if (id) { var me = this; this.showError(function() { diff --git a/apps/spreadsheeteditor/main/locale/az.json b/apps/spreadsheeteditor/main/locale/az.json index 77e4894d7..192a2c7f1 100644 --- a/apps/spreadsheeteditor/main/locale/az.json +++ b/apps/spreadsheeteditor/main/locale/az.json @@ -2032,26 +2032,18 @@ "SSE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Giriş hüquqlarını dəyiş", "SSE.Views.FileMenuPanels.DocumentRights.txtRights": "Hüquqları olan şəxslər", "SSE.Views.FileMenuPanels.MainSettingsGeneral.okButtonText": "Tətbiq edin", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strAutoRecover": "Avtomatik bərpanı aktivləşdirin", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strAutosave": "Avtomatik Saxla funksiyasını aktivləşdirin", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthMode": "Birgə redaktə Rejimi", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescFast": "Digər istifadəçilər dəyişikliklərinizi dərhal görəcəklər", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescStrict": "Dəyişiklikləri görməzdən əvvəl onları qəbul etməlisiniz", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strDecimalSeparator": "Onluq ayırıcısı", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFast": "Sürətli", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFontRender": "Şrift Hamarlaşdırma", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strForcesave": "Yadda saxla və ya Ctrl+S düyməsinə kliklədikdən sonra versiyanı yaddaşa əlavə edin", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocale": "Düstur Dili", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocaleEx": "Nümunə: SUM; MIN; MAX; COUNT", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strLiveComment": "Şərhlərin ekranını yandırın", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strMacrosSettings": "Makros Parametrləri", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPaste": "Kəs, kopyala və yapışdır", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPasteButton": "Məzmun yapışdırıldıqda Yapışdırma Seçimləri düyməsini göstərin", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strR1C1": "R1C1 üslubunu aktivləşdirin", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettings": "Regional Parametrlər", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettingsEx": "Nümunə:", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strResolvedComment": "Həll edilmiş şərhlərin ekranını yandırın", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strSeparator": "Ayırıcı", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strStrict": "Məhdudlaşdır", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strTheme": "İnterfeys mövzusu", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strThousandsSeparator": "Minlərlə ayırıcı", @@ -2087,7 +2079,6 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtIt": "İtalyan", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtJa": "Yapon", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtKo": "Koreya", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLiveComment": "Şərh Ekranı", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLo": "Laos", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLv": "Latviya", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtMac": "OS X kimi", @@ -2114,12 +2105,6 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacrosDesc": "Bütün makroları bildirişlə deaktiv edin", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin": "Windows kimi", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtZh": "Çinli", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.okButtonText": "Tətbiq edin", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strDictionaryLanguage": "Lüğət dili", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strIgnoreWordsInUPPERCASE": "BÖYÜK HƏRFLƏRLƏ olan sözlərə əhəmiyyət vermə", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strIgnoreWordsWithNumbers": "Rəqəmlərlə olan sözlərə əhəmiyyət vermə", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.txtAutoCorrect": "AvtoDüzəliş seçimləri...", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.txtProofing": "Yoxlama", "SSE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Xəbərdarlıq", "SSE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "Parol ilə", "SSE.Views.FileMenuPanels.ProtectDoc.strProtect": "Elektron cədvəli Qoruyun", @@ -2131,9 +2116,6 @@ "SSE.Views.FileMenuPanels.ProtectDoc.txtSigned": "Etibarlı imzalar elektron cədvələ əlavə edildi. Elektron cədvəl redaktədən qorunur.", "SSE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "Cədvəldəki bəzi rəqəmsal imzalar etibarsızdır və ya təsdiq edilə bilməz. Cədvəl redaktədən qorunur.", "SSE.Views.FileMenuPanels.ProtectDoc.txtView": "İmzalara baxın", - "SSE.Views.FileMenuPanels.Settings.txtGeneral": "Ümumi", - "SSE.Views.FileMenuPanels.Settings.txtPageSettings": "Səhifə Parametrləri", - "SSE.Views.FileMenuPanels.Settings.txtSpellChecking": "Orfoqrafiyanın Yoxlanması", "SSE.Views.FormatRulesEditDlg.fillColor": "Rəngi doldurun", "SSE.Views.FormatRulesEditDlg.notcriticalErrorTitle": "Xəbərdarlıq", "SSE.Views.FormatRulesEditDlg.text2Scales": "2-Rəngli Şkala", diff --git a/apps/spreadsheeteditor/main/locale/be.json b/apps/spreadsheeteditor/main/locale/be.json index 7740a772d..2bd88dc8d 100644 --- a/apps/spreadsheeteditor/main/locale/be.json +++ b/apps/spreadsheeteditor/main/locale/be.json @@ -1795,26 +1795,18 @@ "SSE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Змяніць правы на доступ", "SSE.Views.FileMenuPanels.DocumentRights.txtRights": "Асобы, што маюць правы", "SSE.Views.FileMenuPanels.MainSettingsGeneral.okButtonText": "Ужыць", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strAutoRecover": "Уключыць аўтааднаўленне", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strAutosave": "Уключыць аўтазахаванне", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthMode": "Рэжым сумеснага рэдагавання", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescFast": "Іншыя карыстальнікі адразу будуць бачыць вашыя змены.", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescStrict": "Перш чым убачыць змены іх патрэбна ухваліць", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strDecimalSeparator": "Дзесятковы падзяляльнік", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFast": "Хуткі", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFontRender": "Хінтынг шрыфтоў", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strForcesave": " Дадаваць версію ў сховішча пасля націскання кнопкі \"Захаваць\" або \"Ctrl+S\"", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocale": "Мова формул", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocaleEx": "Прыклад: СУМ; МІН; МАКС; ПАДЛІК", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strLiveComment": "Уключыць адлюстраванне каментароў у тэксце", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strMacrosSettings": "Налады макрасаў", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPaste": "Выразаць, капіяваць і ўставіць", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPasteButton": "Паказваць кнопку параметраў устаўкі падчас устаўкі", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strR1C1": "Уключыць стыль R1C1", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettings": "Рэгіянальныя налады", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettingsEx": "Прыклад:", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strResolvedComment": "Уключыць адлюстраванне вырашаных каментароў", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strSeparator": "Падзяляльнік", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strStrict": "Строгі", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strThousandsSeparator": "Падзяляльнік разрадаў тысяч", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strUnit": "Адзінкі вымярэння", @@ -1838,7 +1830,6 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtFr": "Французская", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtInch": "Цаля", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtIt": "Італьянская", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLiveComment": "Адлюстраванне каментароў", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtMac": "як OS X", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNative": "Уласны", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPl": "Польская", @@ -1851,12 +1842,6 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacros": "Паказваць апавяшчэнне", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacrosDesc": "Адключыць усе макрасы з апавяшчэннем", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin": "як Windows", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.okButtonText": "Ужыць", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strDictionaryLanguage": "Мова слоўніка", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strIgnoreWordsInUPPERCASE": "Мінаць словы ВЯЛІКІМІ ЛІТАРАМІ", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strIgnoreWordsWithNumbers": "Мінаць словы з лічбамі", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.txtAutoCorrect": "Параметры аўтазамены…", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.txtProofing": "Правапіс", "SSE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Увага", "SSE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "Пры дапамозе пароля", "SSE.Views.FileMenuPanels.ProtectDoc.strProtect": "Абараніць табліцу", @@ -1868,9 +1853,6 @@ "SSE.Views.FileMenuPanels.ProtectDoc.txtSigned": "У табліцу былі дададзеныя дзейныя подпісы. Табліца абароненая ад рэдагавання.", "SSE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "Некаторыя з лічбавых подпісаў электроннай табліцы хібныя альбо іх немагчыма праверыць. Табліца абароненая ад рэдагавання.", "SSE.Views.FileMenuPanels.ProtectDoc.txtView": "Прагляд подпісаў", - "SSE.Views.FileMenuPanels.Settings.txtGeneral": "Агульныя", - "SSE.Views.FileMenuPanels.Settings.txtPageSettings": "Налады старонкі", - "SSE.Views.FileMenuPanels.Settings.txtSpellChecking": "Праверка правапісу", "SSE.Views.FormatRulesEditDlg.fillColor": "Колер запаўнення", "SSE.Views.FormatRulesEditDlg.textAllBorders": "Усе межы", "SSE.Views.FormatRulesEditDlg.textAutomatic": "Аўтаматычна", diff --git a/apps/spreadsheeteditor/main/locale/bg.json b/apps/spreadsheeteditor/main/locale/bg.json index 25dbe96b9..00863dcb4 100644 --- a/apps/spreadsheeteditor/main/locale/bg.json +++ b/apps/spreadsheeteditor/main/locale/bg.json @@ -1460,21 +1460,14 @@ "SSE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Промяна на правата за достъп", "SSE.Views.FileMenuPanels.DocumentRights.txtRights": "Лица, които имат права", "SSE.Views.FileMenuPanels.MainSettingsGeneral.okButtonText": "Приложи", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strAutoRecover": "Включете функцията за автоматично откриване", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strAutosave": "Включете автоматичното запазване", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthMode": "Режим на съвместно редактиране", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescFast": "Други потребители ще виждат промените Ви наведнъж", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescStrict": "Трябва да приемете промените, преди да можете да ги видите", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFast": "Бърз", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFontRender": "Подказване на шрифт", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strForcesave": "Винаги да се съхранява в сървъра (в противен случай да се запази на сървър на документ затворен)", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocale": "Език на формулата", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocaleEx": "Пример: SUM; MIN; MAX; БРОЯ", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strLiveComment": "Включете показването на коментарите", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strR1C1": "Включете R1C1 стила", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettings": "Регионални настройки", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettingsEx": "Пример: ", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strResolvedComment": "Включете показването на разрешените коментари", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strStrict": "Стриктен", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strUnit": "Единица за измерване", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strZoom": "Стойност на мащаба по подразбиране", @@ -1495,14 +1488,12 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtFr": "Френски", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtInch": "Инч", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtIt": "Италиански", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLiveComment": "Коментиране на дисплея", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtMac": "като OS X", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNative": "Местен", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPl": "Полски", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPt": "Точка", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRu": "Руски", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin": "като Windows", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.okButtonText": "Приложи", "SSE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Внимание", "SSE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "С парола", "SSE.Views.FileMenuPanels.ProtectDoc.strProtect": "Защитете електронната таблица", @@ -1514,8 +1505,6 @@ "SSE.Views.FileMenuPanels.ProtectDoc.txtSigned": "В електронната таблица са добавени валидни подписи. Електронната таблица е защитена от редактиране.", "SSE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "Някои от цифровите подписи в електронната таблица са невалидни или не можаха да бъдат потвърдени. Електронната таблица е защитена от редактиране.", "SSE.Views.FileMenuPanels.ProtectDoc.txtView": "Преглед на подписи", - "SSE.Views.FileMenuPanels.Settings.txtGeneral": "Общ", - "SSE.Views.FileMenuPanels.Settings.txtPageSettings": "Настройки на страницата", "SSE.Views.FormatRulesEditDlg.textAllBorders": "Всички граници", "SSE.Views.FormatRulesEditDlg.textAutomatic": "Автоматичен", "SSE.Views.FormatRulesEditDlg.textFormat": "Формат", diff --git a/apps/spreadsheeteditor/main/locale/ca.json b/apps/spreadsheeteditor/main/locale/ca.json index df82f8c16..dde55e54d 100644 --- a/apps/spreadsheeteditor/main/locale/ca.json +++ b/apps/spreadsheeteditor/main/locale/ca.json @@ -2064,26 +2064,18 @@ "SSE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Canvia els drets d’accés", "SSE.Views.FileMenuPanels.DocumentRights.txtRights": "Persones que tenen drets", "SSE.Views.FileMenuPanels.MainSettingsGeneral.okButtonText": "Aplica", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strAutoRecover": "Activa la recuperació automàtica", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strAutosave": "Activa el desament automàtic", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthMode": "Mode de coedició", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescFast": "Els altres usuaris veuran els teus canvis immediatament", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescStrict": "Cal acceptar els canvis abans de poder-los veure", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strDecimalSeparator": "Separador de decimals", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFast": "Ràpid", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFontRender": "Tipus de lletra suggerides", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strForcesave": "Afegeix la versió a l'emmagatzematge després de fer clic a Desa o Ctrl + S", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocale": "Llenguatge de la fórmula", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocaleEx": "Exemple: SUM; MIN; MAX; COUNT", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strLiveComment": "Activa la visualització dels comentaris", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strMacrosSettings": "Configuració de les macros", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPaste": "Talla, copia i enganxa", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPasteButton": "Mostra el botó d'opcions d’enganxar quan s’enganxa contingut", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strR1C1": "Activa l'estil R1C1", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettings": "Configuració regional", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettingsEx": "Exemple:", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strResolvedComment": "Activa la visualització dels comentaris resolts", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strSeparator": "Separador", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strStrict": "Estricte", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strTheme": "Tema de la interfície", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strThousandsSeparator": "Separador de milers", @@ -2119,7 +2111,6 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtIt": "Italià", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtJa": "Japonès", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtKo": "Coreà", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLiveComment": "Visualització dels comentaris", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLo": "Laosià", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLv": "Letó", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtMac": "com a OS X", @@ -2146,12 +2137,6 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacrosDesc": "Inhabilita totes les macros amb una notificació", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin": "com a Windows", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtZh": "Xinès", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.okButtonText": "Aplica", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strDictionaryLanguage": "Idioma del diccionari", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strIgnoreWordsInUPPERCASE": "Ignora les paraules en MAJÚSCULA", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strIgnoreWordsWithNumbers": "Ignora les paraules amb números", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.txtAutoCorrect": "Opcions de correcció automàtica ...", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.txtProofing": "Correcció", "SSE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Advertiment", "SSE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "Amb contrasenya", "SSE.Views.FileMenuPanels.ProtectDoc.strProtect": "Protegeix el full de càlcul", @@ -2163,9 +2148,6 @@ "SSE.Views.FileMenuPanels.ProtectDoc.txtSigned": "S'han afegit signatures vàlides al full de càlcul. El full de càlcul està protegit contra l’edició.", "SSE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "Algunes de les signatures digitals del full de càlcul no són vàlides o no es van poder verificar. El full de càlcul està protegit contra l’edició.", "SSE.Views.FileMenuPanels.ProtectDoc.txtView": "Mostra les signatures", - "SSE.Views.FileMenuPanels.Settings.txtGeneral": "General", - "SSE.Views.FileMenuPanels.Settings.txtPageSettings": "Configuració de la pàgina", - "SSE.Views.FileMenuPanels.Settings.txtSpellChecking": "Revisió ortogràfica", "SSE.Views.FormatRulesEditDlg.fillColor": "Color d'emplenament", "SSE.Views.FormatRulesEditDlg.notcriticalErrorTitle": "Advertiment", "SSE.Views.FormatRulesEditDlg.text2Scales": "Escala de 2 colors", diff --git a/apps/spreadsheeteditor/main/locale/cs.json b/apps/spreadsheeteditor/main/locale/cs.json index 0c261a3c2..70246ac5a 100644 --- a/apps/spreadsheeteditor/main/locale/cs.json +++ b/apps/spreadsheeteditor/main/locale/cs.json @@ -202,6 +202,7 @@ "Common.Views.Comments.textResolved": "Vyřešeno", "Common.Views.Comments.textSort": "Řadit komentáře", "Common.Views.Comments.textViewResolved": "Nemáte oprávnění pro opětovné otevírání komentářů", + "Common.Views.Comments.txtEmpty": "Tento list neobsahuje komentáře.", "Common.Views.CopyWarningDialog.textDontShow": "Tuto zprávu už nezobrazovat", "Common.Views.CopyWarningDialog.textMsg": "Akce kopírovat, vyjmout a vložit použitím lišty nástrojů editoru a kontextové nabídky budou prováděny pouze v tomto okně editoru.

Pro kopírování do nebo vkládání z aplikací mimo okno editoru použijte následující klávesové zkratky:", "Common.Views.CopyWarningDialog.textTitle": "Akce kopírovat, vyjmout a vložit", @@ -2063,26 +2064,18 @@ "SSE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Změnit přístupová práva", "SSE.Views.FileMenuPanels.DocumentRights.txtRights": "Osoby, které mají oprávnění", "SSE.Views.FileMenuPanels.MainSettingsGeneral.okButtonText": "Použít", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strAutoRecover": "Zapnout automatickou obnovu", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strAutosave": "Zapnout automatické ukládání", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthMode": "Režim spolupráce na úpravách", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescFast": "Ostatní uživatelé okamžitě uvidí vámi prováděné změny", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescStrict": "Abyste změny uviděli, je třeba je nejprve přijmout", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strDecimalSeparator": "Oddělovač desetinných míst", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFast": "Automatický", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFontRender": "Vyhlazování hran znaků", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strForcesave": "Přidejte verzi do úložiště kliknutím na Uložit nebo Ctrl+S", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocale": "Jazyk vzorce", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocaleEx": "Příklad: SUMA; MIN; MAX; POČET", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strLiveComment": "Zobrazovat komentáře", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strMacrosSettings": "Nastavení maker", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPaste": "Vyjmout, kopírovat, vložit", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPasteButton": "Při vkládání obsahu zobrazit tlačítko možností vložení", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strR1C1": "Zapnout R1C1 styl", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettings": "Místní nastavení", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettingsEx": "Příklad:", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strResolvedComment": "Zobrazovat i už vyřešené komentáře", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strSeparator": "Oddělovač", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strStrict": "Statický", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strTheme": "Vzhled uživatelského rozhraní", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strThousandsSeparator": "Oddělovač tisíců", @@ -2118,7 +2111,6 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtIt": "italština", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtJa": "japonština", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtKo": "korejština", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLiveComment": "Zobrazování komentářů", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLo": "laoština", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLv": "lotyština", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtMac": "jako macOS", @@ -2145,12 +2137,6 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacrosDesc": "Vypnout všechna makra s oznámením", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin": "jako Windows", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtZh": "čínština", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.okButtonText": "Použít", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strDictionaryLanguage": "Jazyk slovníku", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strIgnoreWordsInUPPERCASE": "Ignorovat slova psaná pouze VELKÝMI PÍSMENY", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strIgnoreWordsWithNumbers": "Ignorovat slova obsahující čísla", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.txtAutoCorrect": "Autokorekce možnosti...", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.txtProofing": "Kontrola pravopisu", "SSE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Varování", "SSE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "Heslem", "SSE.Views.FileMenuPanels.ProtectDoc.strProtect": "Zabezpečit sešit", @@ -2162,9 +2148,6 @@ "SSE.Views.FileMenuPanels.ProtectDoc.txtSigned": "Do sešitu byly přidány platné podpisy. List je zabezpečen před úpravami.", "SSE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "Některé z digitálních podpisů v listu nejsou platné nebo je není možné ověřit. List je zabezpečen před úpravami.", "SSE.Views.FileMenuPanels.ProtectDoc.txtView": "Zobrazit podpisy", - "SSE.Views.FileMenuPanels.Settings.txtGeneral": "Obecný", - "SSE.Views.FileMenuPanels.Settings.txtPageSettings": "Nastavení stránky", - "SSE.Views.FileMenuPanels.Settings.txtSpellChecking": "Kontrola pravopisu", "SSE.Views.FormatRulesEditDlg.fillColor": "Barva výplně", "SSE.Views.FormatRulesEditDlg.notcriticalErrorTitle": "Varování", "SSE.Views.FormatRulesEditDlg.text2Scales": "2 Barevná škála", diff --git a/apps/spreadsheeteditor/main/locale/da.json b/apps/spreadsheeteditor/main/locale/da.json index 59870677c..21750337d 100644 --- a/apps/spreadsheeteditor/main/locale/da.json +++ b/apps/spreadsheeteditor/main/locale/da.json @@ -2037,26 +2037,18 @@ "SSE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Skift adgangsrettigheder", "SSE.Views.FileMenuPanels.DocumentRights.txtRights": "Personer der har rettigheder", "SSE.Views.FileMenuPanels.MainSettingsGeneral.okButtonText": "Anvend", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strAutoRecover": "Slå automatisk genoprettelse til", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strAutosave": "Slå gem automatisk til", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthMode": "Fællesredigeringstilstand", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescFast": "Andre brugere vil se dine ændringer på en gang", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescStrict": "Du skal acceptere ændringer før du kan se dem", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strDecimalSeparator": "Decimal-adskiller", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFast": "Hurtig", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFontRender": "Skrifttype hentydning", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strForcesave": "Gem altid til serveren (ellers gem til serveren når dokumentet lukkes)", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocale": "Formelsprog", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocaleEx": "Eksempel: SUM; MIN; MAX; COUNT", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strLiveComment": "Slå visning af kommentarer til ", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strMacrosSettings": "Makroindstillinger", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPaste": "Klip, kopier og indsæt", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPasteButton": "Vis knappen for Indsæt-optioner når indhold indsættes", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strR1C1": "Slå R1C1 stil til", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettings": "Regionale indstillinger", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettingsEx": "Eksempel:", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strResolvedComment": "Slå visning af de løste kommentarer til", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strSeparator": "Opdeler", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strStrict": "Striks", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strTheme": "Interface tema", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strThousandsSeparator": "Tusinder separator", @@ -2092,7 +2084,6 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtIt": "Italiensk", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtJa": "japansk", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtKo": "koreansk", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLiveComment": "Kommenteringsvisning", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLo": "Lao", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLv": "lettisk", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtMac": "som OS X", @@ -2119,12 +2110,6 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacrosDesc": "Deaktivér alle makroer med", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin": "som Windows", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtZh": "kinesisk", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.okButtonText": "Anvend", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strDictionaryLanguage": "Sprogvalg for ordbog", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strIgnoreWordsInUPPERCASE": "Ignorer ord med STORE BOGSTAVER", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strIgnoreWordsWithNumbers": "Ignorer ord med tal", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.txtAutoCorrect": "Autokorrektur optioner", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.txtProofing": "Korrektur", "SSE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Advarsel", "SSE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "Med adgangskode", "SSE.Views.FileMenuPanels.ProtectDoc.strProtect": "Beskyt regneark", @@ -2136,9 +2121,6 @@ "SSE.Views.FileMenuPanels.ProtectDoc.txtSigned": "Gyldige underskrifter er blevet tilføjet til arket. Arket er beskytter for redigering.", "SSE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "Nogle af de digitale underskrifter i regnearket er ugyldige eller kunne ikke verificeres. Regnearket er beskyttet for redigering.", "SSE.Views.FileMenuPanels.ProtectDoc.txtView": "Se underskrifter", - "SSE.Views.FileMenuPanels.Settings.txtGeneral": "General ", - "SSE.Views.FileMenuPanels.Settings.txtPageSettings": "Sideindstillinger", - "SSE.Views.FileMenuPanels.Settings.txtSpellChecking": "Stavekontrol", "SSE.Views.FormatRulesEditDlg.fillColor": "Udfyldningsfarve", "SSE.Views.FormatRulesEditDlg.notcriticalErrorTitle": "Advarsel", "SSE.Views.FormatRulesEditDlg.text2Scales": "2 Farveskala", diff --git a/apps/spreadsheeteditor/main/locale/de.json b/apps/spreadsheeteditor/main/locale/de.json index 803a4a6e2..19c45ea82 100644 --- a/apps/spreadsheeteditor/main/locale/de.json +++ b/apps/spreadsheeteditor/main/locale/de.json @@ -2063,26 +2063,18 @@ "SSE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Zugriffsrechte ändern", "SSE.Views.FileMenuPanels.DocumentRights.txtRights": "Personen mit Berechtigungen", "SSE.Views.FileMenuPanels.MainSettingsGeneral.okButtonText": "Anwenden", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strAutoRecover": "AutoWiederherstellen einschalten ", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strAutosave": "AutoSpeichern einschalten", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthMode": "Modus \"Gemeinsame Bearbeitung\"", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescFast": "Andere Benutzer werden sofort Ihre Änderungen sehen", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescStrict": "Sie müssen die Änderungen annehmen, bevor Sie diese sehen können", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strDecimalSeparator": "Dezimaltrennzeichen", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFast": "Schnell", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFontRender": "Schriftglättung", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strForcesave": "Immer auf dem Server speichern (ansonsten auf dem Server beim Schließen des Dokuments speichern)", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocale": "Formelsprache ", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocaleEx": "Beispiel: SUM; MIN; MAX; COUNT", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strLiveComment": "Live-Kommentare einschalten", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strMacrosSettings": "Makro-Einstellungen", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPaste": "Ausschneiden, Kopieren und Einfügen", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPasteButton": "Die Schaltfläche Einfügeoptionen beim Einfügen von Inhalten anzeigen", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strR1C1": "Aktivieren Sie den R1C1-Stil", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettings": "Regionale Einstellungen", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettingsEx": "Beispiel:", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strResolvedComment": "Die Anzeige der aufgelösten Kommentare einschalten", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strSeparator": "Trennzeichen", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strStrict": "Formal", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strTheme": "Thema der Benutzeroberfläche", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strThousandsSeparator": "Tausendertrennzeichen", @@ -2118,7 +2110,6 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtIt": "Italienisch", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtJa": "Japanisch", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtKo": "Koreanisch", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLiveComment": "Live-Kommentare", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLo": "Laotisch", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLv": "Lettisch", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtMac": "wie OS X", @@ -2145,12 +2136,6 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacrosDesc": "Alle Makros mit einer Benachrichtigung deaktivieren", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin": "wie Windows", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtZh": "Chinesisch ", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.okButtonText": "Anwenden", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strDictionaryLanguage": "Sprache des Wörterbuchs", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strIgnoreWordsInUPPERCASE": "Wörter in GROSSBUCHSTABEN ignorieren", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strIgnoreWordsWithNumbers": "Wörter mit Zahlen ignorieren", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.txtAutoCorrect": "Optionen von Autokorrektur", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.txtProofing": "Produkt", "SSE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Warnung", "SSE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "Mit Kennwort", "SSE.Views.FileMenuPanels.ProtectDoc.strProtect": "Präsentation schützen", @@ -2162,9 +2147,6 @@ "SSE.Views.FileMenuPanels.ProtectDoc.txtSigned": "Gültige Signaturen wurden der Tabelle hinzugefügt. Die Tabelle ist vor der Bearbeitung geschützt.", "SSE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "Einige der digitalen Signaturen in der Tabelle sind ungültig oder konnten nicht verifiziert werden. Die Tabelle ist vor der Bearbeitung geschützt.", "SSE.Views.FileMenuPanels.ProtectDoc.txtView": "Signaturen anzeigen", - "SSE.Views.FileMenuPanels.Settings.txtGeneral": "Allgemein", - "SSE.Views.FileMenuPanels.Settings.txtPageSettings": "Seiten-Einstellungen", - "SSE.Views.FileMenuPanels.Settings.txtSpellChecking": "Rechtschreibprüfung", "SSE.Views.FormatRulesEditDlg.fillColor": "Füllfarbe", "SSE.Views.FormatRulesEditDlg.notcriticalErrorTitle": "Warnung", "SSE.Views.FormatRulesEditDlg.text2Scales": "2-Farben-Skala", diff --git a/apps/spreadsheeteditor/main/locale/el.json b/apps/spreadsheeteditor/main/locale/el.json index 13ffa5aee..6b9181758 100644 --- a/apps/spreadsheeteditor/main/locale/el.json +++ b/apps/spreadsheeteditor/main/locale/el.json @@ -2063,26 +2063,18 @@ "SSE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Αλλαγή δικαιωμάτων πρόσβασης", "SSE.Views.FileMenuPanels.DocumentRights.txtRights": "Άτομα που έχουν δικαιώματα", "SSE.Views.FileMenuPanels.MainSettingsGeneral.okButtonText": "Εφαρμογή", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strAutoRecover": "Ενεργοποίηση αυτόματης αποκατάστασης", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strAutosave": "Ενεργοποίηση αυτόματης αποθήκευσης", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthMode": "Κατάσταση Συν-επεξεργασίας", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescFast": "Οι άλλοι χρήστες θα δουν αμέσως τις αλλαγές σας", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescStrict": "Θα χρειαστεί να αποδεχτείτε αλλαγές πριν να τις δείτε", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strDecimalSeparator": "Διαχωριστικό δεκαδικού", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFast": "Γρήγορη", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFontRender": "Βελτιστοποίηση Γραμματοσειράς", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strForcesave": "Προσθήκη έκδοσης στο χώρο αποθήκευσης μετά την Αποθήκευση ή Ctrl+S", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocale": "Γλώσσα Τύπων", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocaleEx": "Παράδειγμα: SUM; MIN; MAX; COUNT", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strLiveComment": "Ενεργοποίηση προβολής σχολίων", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strMacrosSettings": "Ρυθμίσεις Mακροεντολών", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPaste": "Αποκοπή, αντιγραφή και επικόλληση", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPasteButton": "Εμφάνιση κουμπιού Επιλογών Επικόλλησης κατά την επικόλληση περιεχομένου", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strR1C1": "Ενεργοποίηση τεχνοτροπίας R1C1", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettings": "Τοπικές Ρυθμίσεις", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettingsEx": "Παράδειγμα:", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strResolvedComment": "Ενεργοποίηση εμφάνισης επιλυμένων σχολίων", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strSeparator": "Διαχωριστής", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strStrict": "Αυστηρή", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strTheme": "Θέμα", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strThousandsSeparator": "Διαχωριστικό χιλιάδων", @@ -2118,7 +2110,6 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtIt": "Ιταλικά", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtJa": "Ιαπωνικά", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtKo": "Κορεάτικα", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLiveComment": "Εμφάνιση Σχολίων", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLo": "Λαοϊκά", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLv": "Λετονικά", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtMac": "ως OS X", @@ -2145,12 +2136,6 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacrosDesc": "Απενεργοποίηση όλων των μακροεντολών με μια ειδοποίηση", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin": "ως Windows", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtZh": "Κινέζικα", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.okButtonText": "Εφαρμογή", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strDictionaryLanguage": "Γλώσσα λεξικού", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strIgnoreWordsInUPPERCASE": "Αγνόηση λέξεων με ΚΕΦΑΛΑΙΑ", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strIgnoreWordsWithNumbers": "Αγνόηση λέξεων με αριθμούς", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.txtAutoCorrect": "Επιλογής αυτόματης διόρθωσης...", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.txtProofing": "Διόρθωση Κειμένου", "SSE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Προειδοποίηση", "SSE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "Με συνθηματικό", "SSE.Views.FileMenuPanels.ProtectDoc.strProtect": "Προστασία Υπολογιστικού Φύλλου", @@ -2162,9 +2147,6 @@ "SSE.Views.FileMenuPanels.ProtectDoc.txtSigned": "Προστέθηκαν έγκυρες υπογραφές στο λογιστικό φύλλο. Το φύλλο προστατεύεται από επεξεργασία.", "SSE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "Κάποιες από τις ψηφιακές υπογραφές στο υπολογιστικό φύλλο δεν είναι έγκυρες ή δεν ήταν δυνατό να επιβεβαιωθούν. Το υπολογιστικό φύλλο προστατεύεται από επεξεργασία.", "SSE.Views.FileMenuPanels.ProtectDoc.txtView": "Προβολή υπογραφών", - "SSE.Views.FileMenuPanels.Settings.txtGeneral": "Γενικά", - "SSE.Views.FileMenuPanels.Settings.txtPageSettings": "Ρυθμίσεις Σελίδας", - "SSE.Views.FileMenuPanels.Settings.txtSpellChecking": "Έλεγχος ορθογραφίας", "SSE.Views.FormatRulesEditDlg.fillColor": "Χρώμα γεμίσματος", "SSE.Views.FormatRulesEditDlg.notcriticalErrorTitle": "Προειδοποίηση", "SSE.Views.FormatRulesEditDlg.text2Scales": "Δίχρωμη κλίμακα", diff --git a/apps/spreadsheeteditor/main/locale/en.json b/apps/spreadsheeteditor/main/locale/en.json index 999f838a2..3920e2876 100644 --- a/apps/spreadsheeteditor/main/locale/en.json +++ b/apps/spreadsheeteditor/main/locale/en.json @@ -133,6 +133,7 @@ "Common.UI.Themes.txtThemeClassicLight": "Classic Light", "Common.UI.Themes.txtThemeDark": "Dark", "Common.UI.Themes.txtThemeLight": "Light", + "Common.UI.Themes.txtThemeSystem": "Same as system", "Common.UI.Window.cancelButtonText": "Cancel", "Common.UI.Window.closeButtonText": "Close", "Common.UI.Window.noButtonText": "No", @@ -225,6 +226,7 @@ "Common.Views.Header.textSaveChanged": "Modified", "Common.Views.Header.textSaveEnd": "All changes saved", "Common.Views.Header.textSaveExpander": "All changes saved", + "Common.Views.Header.textShare": "Share", "Common.Views.Header.textZoom": "Zoom", "Common.Views.Header.tipAccessRights": "Manage document access rights", "Common.Views.Header.tipDownload": "Download file", @@ -234,12 +236,11 @@ "Common.Views.Header.tipSave": "Save", "Common.Views.Header.tipUndo": "Undo", "Common.Views.Header.tipUndock": "Undock into separate window", + "Common.Views.Header.tipUsers": "View users", "Common.Views.Header.tipViewSettings": "View settings", "Common.Views.Header.tipViewUsers": "View users and manage document access rights", - "Common.Views.Header.tipUsers": "View users", "Common.Views.Header.txtAccessRights": "Change access rights", "Common.Views.Header.txtRename": "Rename", - "Common.Views.Header.textShare": "Share", "Common.Views.History.textCloseHistory": "Close History", "Common.Views.History.textHide": "Collapse", "Common.Views.History.textHideAll": "Hide detailed changes", @@ -1579,6 +1580,7 @@ "SSE.Views.ChartDataRangeDialog.txtValues": "Values", "SSE.Views.ChartDataRangeDialog.txtXValues": "X Values", "SSE.Views.ChartDataRangeDialog.txtYValues": "Y Values", + "SSE.Views.ChartSettings.errorMaxRows": "The maximum number of data series per chart is 255.", "SSE.Views.ChartSettings.strLineWeight": "Line Weight", "SSE.Views.ChartSettings.strSparkColor": "Color", "SSE.Views.ChartSettings.strTemplate": "Template", @@ -1600,10 +1602,9 @@ "SSE.Views.ChartSettings.textShow": "Show", "SSE.Views.ChartSettings.textSize": "Size", "SSE.Views.ChartSettings.textStyle": "Style", + "SSE.Views.ChartSettings.textSwitch": "Switch Row/Column", "SSE.Views.ChartSettings.textType": "Type", "SSE.Views.ChartSettings.textWidth": "Width", - "SSE.Views.ChartSettings.textSwitch": "Switch Row/Column", - "SSE.Views.ChartSettings.errorMaxRows": "The maximum number of data series per chart is 255.", "SSE.Views.ChartSettingsDlg.errorMaxPoints": "ERROR! The maximum number of points in series per chart is 4096.", "SSE.Views.ChartSettingsDlg.errorMaxRows": "ERROR! The maximum number of data series per chart is 255", "SSE.Views.ChartSettingsDlg.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.", @@ -1619,6 +1620,7 @@ "SSE.Views.ChartSettingsDlg.textAxisPos": "Axis Position", "SSE.Views.ChartSettingsDlg.textAxisSettings": "Axis Settings", "SSE.Views.ChartSettingsDlg.textAxisTitle": "Title", + "SSE.Views.ChartSettingsDlg.textBase": "Base", "SSE.Views.ChartSettingsDlg.textBetweenTickMarks": "Between Tick Marks", "SSE.Views.ChartSettingsDlg.textBillions": "Billions", "SSE.Views.ChartSettingsDlg.textBottom": "Bottom", @@ -1667,6 +1669,7 @@ "SSE.Views.ChartSettingsDlg.textLegendTop": "Top", "SSE.Views.ChartSettingsDlg.textLines": "Lines ", "SSE.Views.ChartSettingsDlg.textLocationRange": "Location Range", + "SSE.Views.ChartSettingsDlg.textLogScale": "Logarithmic Scale", "SSE.Views.ChartSettingsDlg.textLow": "Low", "SSE.Views.ChartSettingsDlg.textMajor": "Major", "SSE.Views.ChartSettingsDlg.textMajorMinor": "Major and Minor", @@ -1727,8 +1730,6 @@ "SSE.Views.ChartSettingsDlg.textYAxisTitle": "Y Axis Title", "SSE.Views.ChartSettingsDlg.textZero": "Zero", "SSE.Views.ChartSettingsDlg.txtEmpty": "This field is required", - "SSE.Views.ChartSettingsDlg.textBase": "Base", - "SSE.Views.ChartSettingsDlg.textLogScale": "Logarithmic Scale", "SSE.Views.ChartTypeDialog.errorComboSeries": "To create a combination chart, select at least two series of data.", "SSE.Views.ChartTypeDialog.errorSecondaryAxis": "The selected chart type requires the secondary axis that an existing chart is using. Select another chart type.", "SSE.Views.ChartTypeDialog.textSecondary": "Secondary Axis", @@ -1860,7 +1861,9 @@ "SSE.Views.DocumentHolder.bottomCellText": "Align Bottom", "SSE.Views.DocumentHolder.bulletsText": "Bullets and Numbering", "SSE.Views.DocumentHolder.centerCellText": "Align Middle", + "SSE.Views.DocumentHolder.chartDataText": "Select Chart Data", "SSE.Views.DocumentHolder.chartText": "Chart Advanced Settings", + "SSE.Views.DocumentHolder.chartTypeText": "Change Chart Type", "SSE.Views.DocumentHolder.deleteColumnText": "Column", "SSE.Views.DocumentHolder.deleteRowText": "Row", "SSE.Views.DocumentHolder.deleteTableText": "Table", @@ -2002,8 +2005,6 @@ "SSE.Views.DocumentHolder.txtUngroup": "Ungroup", "SSE.Views.DocumentHolder.txtWidth": "Width", "SSE.Views.DocumentHolder.vertAlignText": "Vertical Alignment", - "SSE.Views.DocumentHolder.chartDataText": "Select Chart Data", - "SSE.Views.DocumentHolder.chartTypeText": "Change Chart Type", "SSE.Views.FieldSettingsDialog.strLayout": "Layout", "SSE.Views.FieldSettingsDialog.strSubtotals": "Subtotals", "SSE.Views.FieldSettingsDialog.textReport": "Report Form", @@ -2123,8 +2124,8 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCollaboration": "Collaboration", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCs": "Czech", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtDa": "Danish", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEditingSaving": "Editing and saving", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtDe": "German", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEditingSaving": "Editing and saving", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEl": "Greek", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEn": "English", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEs": "Spanish", diff --git a/apps/spreadsheeteditor/main/locale/es.json b/apps/spreadsheeteditor/main/locale/es.json index 710abb3aa..94221324a 100644 --- a/apps/spreadsheeteditor/main/locale/es.json +++ b/apps/spreadsheeteditor/main/locale/es.json @@ -2064,26 +2064,18 @@ "SSE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Cambiar derechos de acceso", "SSE.Views.FileMenuPanels.DocumentRights.txtRights": "Personas que tienen derechos", "SSE.Views.FileMenuPanels.MainSettingsGeneral.okButtonText": "Aplicar", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strAutoRecover": "Activar autorecuperación", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strAutosave": "Activar autoguardado", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthMode": "Modo de co-edición", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescFast": "Otros usuarios verán los cambios a la vez", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescStrict": "Usted tendrá que aceptar los cambios antes de poder verlos", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strDecimalSeparator": "Separador decimal", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFast": "rápido", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFontRender": "Hinting", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strForcesave": "Agregar la versión al almacenamiento después de hacer clic en Guardar o Ctrl+S", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocale": "Idioma de fórmulas", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocaleEx": "Ejemplo: SUMA; MIN; MAX; CONTAR", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strLiveComment": "Activar la visualización de comentarios", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strMacrosSettings": "Ajustes de macros", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPaste": "Cortar, copiar y pegar", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPasteButton": "Mostrar el botón Opciones de pegado cuando se pegue contenido", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strR1C1": "Activar estilo R1C1", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettings": "Ajustes regionales", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettingsEx": "Ejemplo:", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strResolvedComment": "Activar la visualización de los comentarios resueltos", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strSeparator": "Separador", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strStrict": "Estricto", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strTheme": "Tema de interfaz", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strThousandsSeparator": "Separador de miles", @@ -2119,7 +2111,6 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtIt": "Italiano", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtJa": "Japonés", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtKo": "Coreano", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLiveComment": "Visualización de los comentarios", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLo": "Lao", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLv": "Letón", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtMac": "como OS X", @@ -2146,12 +2137,6 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacrosDesc": "Deshabilitar todas las macros con notificación", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin": "como Windows", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtZh": "Chino", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.okButtonText": "Aplicar", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strDictionaryLanguage": "Idioma del diccionario", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strIgnoreWordsInUPPERCASE": "Omitir palabras en MAYÚSCULAS", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strIgnoreWordsWithNumbers": "Omitir palabras con números", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.txtAutoCorrect": "Opciones de autocorrección", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.txtProofing": "Revisión", "SSE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Aviso", "SSE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "Con contraseña", "SSE.Views.FileMenuPanels.ProtectDoc.strProtect": "Proteger hoja de cálculo", @@ -2163,9 +2148,6 @@ "SSE.Views.FileMenuPanels.ProtectDoc.txtSigned": "Se han agregado firmas válidas a la hoja de cálculo. La hoja de cálculo está protegida contra la edición.", "SSE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "Algunas de las firmas digitales en la hoja de cálculo son inválidas o no se pudieron verificar. La hoja de cálculo está protegida y no se puede editar.", "SSE.Views.FileMenuPanels.ProtectDoc.txtView": "Ver firmas", - "SSE.Views.FileMenuPanels.Settings.txtGeneral": "General", - "SSE.Views.FileMenuPanels.Settings.txtPageSettings": "Ajustes de la Página", - "SSE.Views.FileMenuPanels.Settings.txtSpellChecking": "Сorrección ortográfica", "SSE.Views.FormatRulesEditDlg.fillColor": "Color de relleno", "SSE.Views.FormatRulesEditDlg.notcriticalErrorTitle": "Advertencia", "SSE.Views.FormatRulesEditDlg.text2Scales": "Escala de 2 colores", diff --git a/apps/spreadsheeteditor/main/locale/fi.json b/apps/spreadsheeteditor/main/locale/fi.json index a3e3987b3..4c7c9015e 100644 --- a/apps/spreadsheeteditor/main/locale/fi.json +++ b/apps/spreadsheeteditor/main/locale/fi.json @@ -976,16 +976,11 @@ "SSE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Muuta käyttöoikeuksia", "SSE.Views.FileMenuPanels.DocumentRights.txtRights": "Henkilöt, joilla ovat oikeudet", "SSE.Views.FileMenuPanels.MainSettingsGeneral.okButtonText": "Käytä", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strAutoRecover": "Aseta päälle automaattinen palautus", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strAutosave": "Aseta päälle automaattinen talletus", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthMode": "Yhteismuokkauksen tila", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescFast": "Muut käyttäjät näkevät muutoksesi välittömästi", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescStrict": "Sinun tulee hyväksyä muutokset ennenkuin näet ne", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFast": "Pika", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFontRender": "Fontin ehdotukset", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocale": "Kaavan kieli", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocaleEx": "Esimerkki: SUM; MIN; MAX; COUNT", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strLiveComment": "Ota käyttöön kommenttien näkymä", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettings": "Alueelliset asetukset", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettingsEx": "Esimerkki:", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strStrict": "Ehdoton", @@ -1003,14 +998,11 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtDe": "Saksa", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEn": "Englannikielinen", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtInch": "Tuumaa", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLiveComment": "Kommentoinnin näkymä", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtMac": "kuten OS X", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNative": "Syntyperäinen", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPt": "Piste", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRu": "Venäjän kieli", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin": "kuten Windows", - "SSE.Views.FileMenuPanels.Settings.txtGeneral": "Yleistä", - "SSE.Views.FileMenuPanels.Settings.txtPageSettings": "Sivun asetukset", "SSE.Views.FormatRulesEditDlg.textNewColor": "Lisää uusi mukautettu väri", "SSE.Views.FormatSettingsDialog.txtAccounting": "Kirjanpito", "SSE.Views.FormulaDialog.sDescription": "Kuvaus", diff --git a/apps/spreadsheeteditor/main/locale/fr.json b/apps/spreadsheeteditor/main/locale/fr.json index c239eb6e1..e16e84b6f 100644 --- a/apps/spreadsheeteditor/main/locale/fr.json +++ b/apps/spreadsheeteditor/main/locale/fr.json @@ -2063,26 +2063,18 @@ "SSE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Changer les droits d'accès", "SSE.Views.FileMenuPanels.DocumentRights.txtRights": "Personnes qui ont des droits", "SSE.Views.FileMenuPanels.MainSettingsGeneral.okButtonText": "Appliquer", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strAutoRecover": "Activer la récupération automatique", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strAutosave": "Activer l'enregistrement automatique", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthMode": "Mode de co-édition ", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescFast": "Les autres utilisateurs pourront voir immédiatement vos modifications ", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescStrict": "Avant de pouvoir afficher les modifications, vous avez besoin de les accépter ", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strDecimalSeparator": "Séparateur décimal", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFast": "Rapide", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFontRender": "Hinting de la police", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strForcesave": "Ajouter une version dans l'espace de stockage en cliquant Enregistrer ou Ctrl+S", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocale": "Langage de formule", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocaleEx": "Example: SUM; MIN; MAX; COUNT", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strLiveComment": "Activer l'affichage des commentaires", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strMacrosSettings": "Réglages macros", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPaste": "Couper, copier et coller", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPasteButton": "Afficher le bouton \"Options de collage\" lorsque le contenu est collé ", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strR1C1": "Activer R1C1 style", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettings": "Paramètres régionaux", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettingsEx": "Exemple: ", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strResolvedComment": "Activer l'affichage des commentaires résolus", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strSeparator": "Séparateur", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strStrict": "Strict", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strTheme": "Thème d’interface", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strThousandsSeparator": "Séparateur de milliers", @@ -2118,7 +2110,6 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtIt": "Italien", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtJa": "Japonais", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtKo": "Coréen", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLiveComment": "Affichage des commentaires ", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLo": "Laotien", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLv": "Letton", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtMac": "comme OS X", @@ -2145,12 +2136,6 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacrosDesc": "Désactiver tous les macros avec notification", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin": "comme Windows", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtZh": "Chinois", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.okButtonText": "Appliquer", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strDictionaryLanguage": "Langue du dictionnaire", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strIgnoreWordsInUPPERCASE": "Ignorer les mots en MAJUSCULES", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strIgnoreWordsWithNumbers": "Ignorer les mots contenant des chiffres", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.txtAutoCorrect": "Options de correction automatique", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.txtProofing": "Vérification", "SSE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Attention", "SSE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "Avec mot de passe", "SSE.Views.FileMenuPanels.ProtectDoc.strProtect": "Protéger le classeur", @@ -2162,9 +2147,6 @@ "SSE.Views.FileMenuPanels.ProtectDoc.txtSigned": "Des signatures valides ont été ajoutées au classeur. Le classeur est protégé des modifications.", "SSE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "Certaines signatures électriques sont invalides ou n'ont pu être vérifiées. Le classeur est protégé contre la modification. ", "SSE.Views.FileMenuPanels.ProtectDoc.txtView": "Voir les signatures", - "SSE.Views.FileMenuPanels.Settings.txtGeneral": "Général", - "SSE.Views.FileMenuPanels.Settings.txtPageSettings": "Paramètres de la page", - "SSE.Views.FileMenuPanels.Settings.txtSpellChecking": "Vérification de l'orthographe", "SSE.Views.FormatRulesEditDlg.fillColor": "Couleur de remplissage", "SSE.Views.FormatRulesEditDlg.notcriticalErrorTitle": "Avertissement", "SSE.Views.FormatRulesEditDlg.text2Scales": "Échelle à deux couleurs", diff --git a/apps/spreadsheeteditor/main/locale/gl.json b/apps/spreadsheeteditor/main/locale/gl.json index 3895c0ba4..3a532f35d 100644 --- a/apps/spreadsheeteditor/main/locale/gl.json +++ b/apps/spreadsheeteditor/main/locale/gl.json @@ -2063,26 +2063,18 @@ "SSE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Cambiar dereitos de acceso", "SSE.Views.FileMenuPanels.DocumentRights.txtRights": "Persoas que teñen dereitos", "SSE.Views.FileMenuPanels.MainSettingsGeneral.okButtonText": "Aplicar", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strAutoRecover": "Activar autorecuperación", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strAutosave": "Activar autogardado", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthMode": "O modo Co-edición", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescFast": "Outras persoas usuarias verán os cambios á vez", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescStrict": "Terá que aceptar os cambios antes de poder velos", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strDecimalSeparator": "Separador decimal", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFast": "Rápido", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFontRender": "Busca das fontes", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strForcesave": "Engadir a versión ao almacenamento despois de premer en Gardar ou Ctrl+S", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocale": "Idioma da fórmula", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocaleEx": "Exemplo: SUMA; MÍNIMO; MÁXIMO; CONTAR", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strLiveComment": "Activar opción de demostración de comentarios", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strMacrosSettings": "Configuración das macros", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPaste": "Cortar, copiar e pegar", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPasteButton": "Amosar o botón Opcións de pegado cando se pegue contido", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strR1C1": "Activar estilo R1C1", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettings": "Configuración rexional", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettingsEx": "Exemplo: ", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strResolvedComment": "Activar a visualización dos comentarios resoltos", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strSeparator": "Separador", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strStrict": "Estrito", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strTheme": "Tema da interface", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strThousandsSeparator": "Separador de miles", @@ -2118,7 +2110,6 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtIt": "Italiano", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtJa": "Xaponés", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtKo": "Coreano", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLiveComment": "Demostración de comentarios", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLo": "Lao", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLv": "Letón", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtMac": "coma OS X", @@ -2145,12 +2136,6 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacrosDesc": "Desactivar todas as macros con notificación", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin": "coma Windows", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtZh": "Chinés", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.okButtonText": "Aplicar", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strDictionaryLanguage": "Idioma do dicionario", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strIgnoreWordsInUPPERCASE": "Omitir palabras en MAIÚSCULAS", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strIgnoreWordsWithNumbers": "Omitir palabras con números", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.txtAutoCorrect": "Opcións de autocorrección", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.txtProofing": "Corrección", "SSE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Aviso", "SSE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "Con contrasinal", "SSE.Views.FileMenuPanels.ProtectDoc.strProtect": "Protexer folla de cálculo", @@ -2162,9 +2147,6 @@ "SSE.Views.FileMenuPanels.ProtectDoc.txtSigned": "Engadíronse sinaturas válidas á folla de cálculo. A folla de cálculo está protexida contra a edición.", "SSE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "Algunhas das sinaturas dixitais da folla de cálculo non son válidas ou non se puideron verificar. A folla de cálculo está protexida contra a edición.", "SSE.Views.FileMenuPanels.ProtectDoc.txtView": "Ver sinaturas", - "SSE.Views.FileMenuPanels.Settings.txtGeneral": "Xeral", - "SSE.Views.FileMenuPanels.Settings.txtPageSettings": "Configuración da páxina", - "SSE.Views.FileMenuPanels.Settings.txtSpellChecking": "Сorrección ortográfica", "SSE.Views.FormatRulesEditDlg.fillColor": "Cor para encher", "SSE.Views.FormatRulesEditDlg.notcriticalErrorTitle": "Aviso", "SSE.Views.FormatRulesEditDlg.text2Scales": "Escala de 2 cores", diff --git a/apps/spreadsheeteditor/main/locale/hu.json b/apps/spreadsheeteditor/main/locale/hu.json index 8ab824464..9f1793fb2 100644 --- a/apps/spreadsheeteditor/main/locale/hu.json +++ b/apps/spreadsheeteditor/main/locale/hu.json @@ -2063,26 +2063,18 @@ "SSE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Hozzáférési jogok módosítása", "SSE.Views.FileMenuPanels.DocumentRights.txtRights": "Jogosult személyek", "SSE.Views.FileMenuPanels.MainSettingsGeneral.okButtonText": "Alkalmaz", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strAutoRecover": "Automatikus visszaállítás bekapcsolása", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strAutosave": "Automatikus mentés bekapcsolása", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthMode": "Együttes szerkesztési mód", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescFast": "Más felhasználók azonnal látják a módosításokat", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescStrict": "El kell fogadnia a módosításokat mielőtt meg tudná nézni", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strDecimalSeparator": "Decimális szeparátor", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFast": "Gyors", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFontRender": "Betűtípus ajánlás", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strForcesave": "A Mentés vagy a Ctrl+S gomb megnyomása után adja hozzá a verziót a tárhelyhez", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocale": "Függvény nyelve", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocaleEx": "Példa: SUM; MIN; MAX; COUNT", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strLiveComment": "Kapcsolja be a megjegyzések megjelenítését", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strMacrosSettings": "Makró beállítások", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPaste": "Kivágás, másolás és beillesztés", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPasteButton": "A tartalom beillesztésekor jelenítse meg a beillesztési beállítások gombot", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strR1C1": "Kapcsolja be az R1C1 stílust", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettings": "Területi beállítások", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettingsEx": "Példa:", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strResolvedComment": "Kapcsolja be a megoldott megjegyzések megjelenítését", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strSeparator": "Elválasztó", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strStrict": "Biztonságos", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strTheme": "Felhasználói felület témája", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strThousandsSeparator": "Ezres elválasztó", @@ -2118,7 +2110,6 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtIt": "Olasz", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtJa": "Japán", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtKo": "Koreai", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLiveComment": "Megjegyzések megjelenítése", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLo": "Laoszi", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLv": "Lett", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtMac": "OS X-ként", @@ -2145,12 +2136,6 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacrosDesc": "Minden értesítéssel rendelkező makró letiltása", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin": "Windows-ként", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtZh": "Kínai", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.okButtonText": "Alkalmaz", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strDictionaryLanguage": "Szótár nyelve", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strIgnoreWordsInUPPERCASE": "NAGYBETŰS szavak mellőzése", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strIgnoreWordsWithNumbers": "Szavak mellőzése számokkal", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.txtAutoCorrect": "Automatikus javítás beállításai...", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.txtProofing": "Korrigálás", "SSE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Figyelmeztetés", "SSE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "jelszóval", "SSE.Views.FileMenuPanels.ProtectDoc.strProtect": "Munkafüzet védelme", @@ -2162,9 +2147,6 @@ "SSE.Views.FileMenuPanels.ProtectDoc.txtSigned": "Érvényes aláírásokat adtak hozzá a munkafüzethez. A táblázatkezelő védve van a szerkesztéstől.", "SSE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "A munkafüzetben található digitális aláírások némelyike érvénytelen vagy nem ellenőrizhető. A táblázatkezelő védve van a szerkesztéstől.", "SSE.Views.FileMenuPanels.ProtectDoc.txtView": "Aláírások megtekintése", - "SSE.Views.FileMenuPanels.Settings.txtGeneral": "Általános", - "SSE.Views.FileMenuPanels.Settings.txtPageSettings": "Oldal beállítások", - "SSE.Views.FileMenuPanels.Settings.txtSpellChecking": "Helyesírás-ellenőrzés", "SSE.Views.FormatRulesEditDlg.fillColor": "Kitöltőszín", "SSE.Views.FormatRulesEditDlg.notcriticalErrorTitle": "Figyelmeztetés", "SSE.Views.FormatRulesEditDlg.text2Scales": "2 Színskála", diff --git a/apps/spreadsheeteditor/main/locale/it.json b/apps/spreadsheeteditor/main/locale/it.json index a15493b40..7b9bc1370 100644 --- a/apps/spreadsheeteditor/main/locale/it.json +++ b/apps/spreadsheeteditor/main/locale/it.json @@ -2063,26 +2063,18 @@ "SSE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Modifica diritti di accesso", "SSE.Views.FileMenuPanels.DocumentRights.txtRights": "Persone che hanno diritti", "SSE.Views.FileMenuPanels.MainSettingsGeneral.okButtonText": "Applica", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strAutoRecover": "Attiva il ripristino automatico", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strAutosave": "Attiva salvataggio automatico", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthMode": "Modalità di co-editing", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescFast": "Gli altri utenti vedranno le tue modifiche contemporaneamente", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescStrict": "Dovrai accettare i cambiamenti prima di poterli visualizzare.", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strDecimalSeparator": "Separatore decimale", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFast": "Rapido", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFontRender": "Suggerimento per i caratteri", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strForcesave": "‎Aggiungere la versione all'archivio dopo aver fatto clic su Salva o CTRL+S‎", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocale": "Lingua della Formula", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocaleEx": "Esempio: SOMMA; MINIMO; MASSIMO; CONTEGGIO", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strLiveComment": "Attivare visualizzazione dei commenti", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strMacrosSettings": "Impostazioni macro", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPaste": "Taglia, copia e incolla", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPasteButton": "Mostra il pulsante opzioni Incolla quando il contenuto viene incollato", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strR1C1": "Abilita lo stile R1C1", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettings": "Impostazioni Regionali", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettingsEx": "Esempio: ", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strResolvedComment": "Attiva la visualizzazione dei commenti risolti", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strSeparator": "Separatore", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strStrict": "Rigorosa", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strTheme": "Tema dell'interfaccia", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strThousandsSeparator": "Separatore delle migliaia", @@ -2118,7 +2110,6 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtIt": "Italiano", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtJa": "‎Giapponese‎", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtKo": "‎Coreano‎", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLiveComment": "Visualizzazione dei Commenti", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLo": "Lao", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLv": "‎Lettone‎", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtMac": "come su OS X", @@ -2145,12 +2136,6 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacrosDesc": "Disabilita tutte le macro con notifica", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin": "come su Windows", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtZh": "Cinese", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.okButtonText": "Applica", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strDictionaryLanguage": "Lingua del dizionario", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strIgnoreWordsInUPPERCASE": "Ignora le parole in MAIUSCOLO", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strIgnoreWordsWithNumbers": "Ignora le parole con i numeri", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.txtAutoCorrect": "Opzioni di correzione automatica ...", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.txtProofing": "Correzione", "SSE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Avviso", "SSE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "con Password", "SSE.Views.FileMenuPanels.ProtectDoc.strProtect": "Proteggi foglio di calcolo", @@ -2162,9 +2147,6 @@ "SSE.Views.FileMenuPanels.ProtectDoc.txtSigned": "Le firme valide sono state aggiunte al foglio di calcolo. Il foglio di calcolo è protetto dalla modifica.", "SSE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "Alcune delle firme digitali presenti nel foglio di calcolo non sono valide o non possono essere verificate. Il foglio di calcolo è protetto dalla modifica.", "SSE.Views.FileMenuPanels.ProtectDoc.txtView": "Mostra firme", - "SSE.Views.FileMenuPanels.Settings.txtGeneral": "Generale", - "SSE.Views.FileMenuPanels.Settings.txtPageSettings": "Impostazioni pagina", - "SSE.Views.FileMenuPanels.Settings.txtSpellChecking": "Controllo ortografico", "SSE.Views.FormatRulesEditDlg.fillColor": "Colore di riempimento", "SSE.Views.FormatRulesEditDlg.notcriticalErrorTitle": "Avviso", "SSE.Views.FormatRulesEditDlg.text2Scales": "2 Scala cromatica", diff --git a/apps/spreadsheeteditor/main/locale/ja.json b/apps/spreadsheeteditor/main/locale/ja.json index f3e892598..483733092 100644 --- a/apps/spreadsheeteditor/main/locale/ja.json +++ b/apps/spreadsheeteditor/main/locale/ja.json @@ -2052,26 +2052,18 @@ "SSE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "アクセス許可の変更", "SSE.Views.FileMenuPanels.DocumentRights.txtRights": "権利を持っている者", "SSE.Views.FileMenuPanels.MainSettingsGeneral.okButtonText": "適用", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strAutoRecover": "自動バックアップをターンにします。", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strAutosave": "自動保存をオンにします。", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthMode": "共同編集モード", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescFast": "他のユーザーにすぐに変更が表示されます", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescStrict": "変更を見れる前に、変更を受け入れる必要があります。", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strDecimalSeparator": "小数点区切り", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFast": "速い", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFontRender": "フォント・ヒンティング", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strForcesave": "保存またはCtrl + Sを押した後、バージョンをサーバーに保存する。", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocale": "数式の言語", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocaleEx": "例えば:合計;最小;最大;カウント", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strLiveComment": "テキストコメントの表示をオンにします。", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strMacrosSettings": "マクロの設定", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPaste": "切り取り、コピー、貼り付け", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPasteButton": "貼り付けるときに[貼り付けオプション]ボタンを表示する", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strR1C1": "R1C1形式を有効にする", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettings": "地域の設定", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettingsEx": "例えば:", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strResolvedComment": "解決されたコメントの表示をオンにする", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strSeparator": "区切り", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strStrict": "高レベル", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strTheme": "インターフェイスのテーマ", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strThousandsSeparator": "桁区切り", @@ -2107,7 +2099,6 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtIt": "イタリア", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtJa": "日本語", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtKo": "韓国語", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLiveComment": "コメントの表示", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLo": "ラオス語", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLv": "ラトビア語", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtMac": "OS Xのような", @@ -2134,12 +2125,6 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacrosDesc": "マクロを無効にして、通知する", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin": "Windowsのような", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtZh": "中国語", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.okButtonText": "適用", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strDictionaryLanguage": "辞書言語", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strIgnoreWordsInUPPERCASE": "大文字がある言葉を無視する", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strIgnoreWordsWithNumbers": "数字のある単語は無視する", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.txtAutoCorrect": "オートコレクト設定", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.txtProofing": "文章校正", "SSE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "警告", "SSE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "パスワードを使って", "SSE.Views.FileMenuPanels.ProtectDoc.strProtect": "スプレッドシートを保護する", @@ -2151,9 +2136,6 @@ "SSE.Views.FileMenuPanels.ProtectDoc.txtSigned": "有効な署名がスプレッドシートに追加されました。 スプレッドシートは編集から保護されています。", "SSE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "スプレッドシートの一部のデジタル署名が無効であるか、検証できませんでした。 スプレッドシートは編集から保護されています。", "SSE.Views.FileMenuPanels.ProtectDoc.txtView": "署名の表示", - "SSE.Views.FileMenuPanels.Settings.txtGeneral": "全般", - "SSE.Views.FileMenuPanels.Settings.txtPageSettings": "ページの設定", - "SSE.Views.FileMenuPanels.Settings.txtSpellChecking": "スペルチェック", "SSE.Views.FormatRulesEditDlg.fillColor": "塗りつぶしの色", "SSE.Views.FormatRulesEditDlg.notcriticalErrorTitle": "警告", "SSE.Views.FormatRulesEditDlg.text2Scales": "2 色スケール", diff --git a/apps/spreadsheeteditor/main/locale/ko.json b/apps/spreadsheeteditor/main/locale/ko.json index de3d7e66b..261117bee 100644 --- a/apps/spreadsheeteditor/main/locale/ko.json +++ b/apps/spreadsheeteditor/main/locale/ko.json @@ -184,6 +184,7 @@ "Common.Views.Comments.textAddComment": "덧글 추가", "Common.Views.Comments.textAddCommentToDoc": "문서에 설명 추가", "Common.Views.Comments.textAddReply": "답장 추가", + "Common.Views.Comments.textAll": "모두", "Common.Views.Comments.textAnonym": "손님", "Common.Views.Comments.textCancel": "취소", "Common.Views.Comments.textClose": "닫기", @@ -1080,6 +1081,7 @@ "SSE.Controllers.Toolbar.textPivot": "피벗 테이블", "SSE.Controllers.Toolbar.textRadical": "Radicals", "SSE.Controllers.Toolbar.textRating": "평가", + "SSE.Controllers.Toolbar.textRecentlyUsed": "최근 사용된", "SSE.Controllers.Toolbar.textScript": "Scripts", "SSE.Controllers.Toolbar.textShapes": "도형", "SSE.Controllers.Toolbar.textSymbols": "Symbols", @@ -1422,6 +1424,7 @@ "SSE.Views.AdvancedSeparatorDialog.strThousandsSeparator": "천 단위 구분자", "SSE.Views.AdvancedSeparatorDialog.textLabel": "디지털 데이터 식별을 위한 설정", "SSE.Views.AdvancedSeparatorDialog.textTitle": "고급 설정", + "SSE.Views.AdvancedSeparatorDialog.txtNone": "(없음)", "SSE.Views.AutoFilterDialog.btnCustomFilter": "사용자 지정 자동 필터", "SSE.Views.AutoFilterDialog.textAddSelection": "현재 선택을 필터에 추가", "SSE.Views.AutoFilterDialog.textEmptyItem": "{공백}", @@ -1995,7 +1998,7 @@ "SSE.Views.FileMenu.btnCloseMenuCaption": "메뉴 닫기", "SSE.Views.FileMenu.btnCreateNewCaption": "새로 만들기", "SSE.Views.FileMenu.btnDownloadCaption": "다운로드 방법 ...", - "SSE.Views.FileMenu.btnExitCaption": "나가기", + "SSE.Views.FileMenu.btnExitCaption": "완료", "SSE.Views.FileMenu.btnFileOpenCaption": "열기", "SSE.Views.FileMenu.btnHelpCaption": "Help ...", "SSE.Views.FileMenu.btnHistoryCaption": "버전 기록", @@ -2032,26 +2035,18 @@ "SSE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "액세스 권한 변경", "SSE.Views.FileMenuPanels.DocumentRights.txtRights": "권한이있는 사람", "SSE.Views.FileMenuPanels.MainSettingsGeneral.okButtonText": "적용", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strAutoRecover": "자동 검색 켜기", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strAutosave": "자동 저장 기능 켜기", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthMode": "공동 편집 모드", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescFast": "다른 사용자가 변경 사항을 한 번에 보게됩니다", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescStrict": "변경 사항을 적용하기 전에 변경 내용을 적용해야합니다.", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strDecimalSeparator": "소수점 구분 기호", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFast": "Fast", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFontRender": "글꼴 힌트", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strForcesave": "저장과 동시에 서버에 업로드 (아니면 문서가 닫힐 때 업로드)", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocale": "수식 언어", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocaleEx": "예 : SUM; MIN; MAX; COUNT", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strLiveComment": "주석 표시 켜기", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strMacrosSettings": "매크로 설정", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPaste": "잘라내기, 복사 및 붙여넣기", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPasteButton": "내용을 붙여넣을 때 \"붙여넣기 옵션\" 표시", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strR1C1": "R1C1 형식을 사용", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettings": "국가 별 설정", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettingsEx": "예 :", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strResolvedComment": "해결 된 주석 표시 켜기", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strSeparator": "구분자", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strStrict": "Strict", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strTheme": "인터페이스 테마", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strThousandsSeparator": "천 단위 구분자", @@ -2087,7 +2082,6 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtIt": "이탈리아어", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtJa": "일본어", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtKo": "한국어", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLiveComment": "표시 설명", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLo": "라오스어", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLv": "라트비아어", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtMac": "as OS X", @@ -2114,12 +2108,6 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacrosDesc": "모든 매크로를 비활성화로 알림", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin": "Windows로", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtZh": "중국어", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.okButtonText": "적용", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strDictionaryLanguage": "사전 언어", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strIgnoreWordsInUPPERCASE": "대문자 무시", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strIgnoreWordsWithNumbers": "숫자가 있는 단어 무시", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.txtAutoCorrect": "자동 고침 옵션...", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.txtProofing": "보정", "SSE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "경고", "SSE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "비밀번호로", "SSE.Views.FileMenuPanels.ProtectDoc.strProtect": "스프레드시트 보호", @@ -2131,9 +2119,6 @@ "SSE.Views.FileMenuPanels.ProtectDoc.txtSigned": "유효한 서명이 당 스프레드시트에 추가되었슴. 이 스프레드시트는 편집할 수 없도록 보호됨.", "SSE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "스프레드시트에 몇 가지 디지털 서명이 유효하지 않거나 확인되지 않음. 스프레드시트는 편집할 수 없도록 보호됨.", "SSE.Views.FileMenuPanels.ProtectDoc.txtView": "서명 보기", - "SSE.Views.FileMenuPanels.Settings.txtGeneral": "일반", - "SSE.Views.FileMenuPanels.Settings.txtPageSettings": "페이지 설정", - "SSE.Views.FileMenuPanels.Settings.txtSpellChecking": "맞춤법 검사", "SSE.Views.FormatRulesEditDlg.fillColor": "채우기 색", "SSE.Views.FormatRulesEditDlg.notcriticalErrorTitle": "경고", "SSE.Views.FormatRulesEditDlg.text2Scales": "2색 눈금", @@ -2411,6 +2396,7 @@ "SSE.Views.ImageSettings.textInsert": "이미지 바꾸기", "SSE.Views.ImageSettings.textKeepRatio": "상수 비율", "SSE.Views.ImageSettings.textOriginalSize": "실제 크기", + "SSE.Views.ImageSettings.textRecentlyUsed": "최근 사용된", "SSE.Views.ImageSettings.textRotate90": "90도 회전", "SSE.Views.ImageSettings.textRotation": "회전", "SSE.Views.ImageSettings.textSize": "크기", @@ -2719,6 +2705,35 @@ "SSE.Views.PrintTitlesDialog.textSelectRange": "범위 선택", "SSE.Views.PrintTitlesDialog.textTitle": "제목 인쇄", "SSE.Views.PrintTitlesDialog.textTop": "위의 행을 반복", + "SSE.Views.PrintWithPreview.txtActualSize": "실제 크기", + "SSE.Views.PrintWithPreview.txtAllSheets": "모든 시트", + "SSE.Views.PrintWithPreview.txtBottom": "바닥", + "SSE.Views.PrintWithPreview.txtCurrentSheet": "현재 시트", + "SSE.Views.PrintWithPreview.txtCustom": "사용자 정의", + "SSE.Views.PrintWithPreview.txtCustomOptions": "사용자 정의 옵션", + "SSE.Views.PrintWithPreview.txtFitCols": "한 페이지에 모든 열 맞추기", + "SSE.Views.PrintWithPreview.txtFitPage": "한 페이지에 시트 맞추기", + "SSE.Views.PrintWithPreview.txtFitRows": "한 페이지에 모든 행 맞추기", + "SSE.Views.PrintWithPreview.txtHeaderFooterSettings": "머리글/바닥글 설정", + "SSE.Views.PrintWithPreview.txtIgnore": "인쇄 영역 무시", + "SSE.Views.PrintWithPreview.txtLeft": "왼쪽", + "SSE.Views.PrintWithPreview.txtMargins": "여백", + "SSE.Views.PrintWithPreview.txtPage": "페이지", + "SSE.Views.PrintWithPreview.txtPageNumInvalid": "페이지 번호가 잘못되었습니다.", + "SSE.Views.PrintWithPreview.txtPageOrientation": "페이지 방향", + "SSE.Views.PrintWithPreview.txtPageSize": "페이지 크기", + "SSE.Views.PrintWithPreview.txtPortrait": "세로", + "SSE.Views.PrintWithPreview.txtPrint": "인쇄", + "SSE.Views.PrintWithPreview.txtPrintGrid": "눈금 선 인쇄", + "SSE.Views.PrintWithPreview.txtPrintHeadings": "행 및 열 머리글 인쇄", + "SSE.Views.PrintWithPreview.txtPrintRange": "인쇄 범위", + "SSE.Views.PrintWithPreview.txtPrintTitles": "제목 인쇄", + "SSE.Views.PrintWithPreview.txtRepeat": "반복...", + "SSE.Views.PrintWithPreview.txtRepeatColumnsAtLeft": "왼쪽 열을 반복", + "SSE.Views.PrintWithPreview.txtRepeatRowsAtTop": "위의 행을 반복", + "SSE.Views.PrintWithPreview.txtRight": "오른쪽", + "SSE.Views.PrintWithPreview.txtSave": "저장", + "SSE.Views.PrintWithPreview.txtSelection": "선택", "SSE.Views.ProtectDialog.textExistName": "오류! 제목이 지정된 범위가 이미 있습니다.", "SSE.Views.ProtectDialog.textInvalidName": "범위 표준은 문자로 시작해야 하며 숫자, 문자 및 공백만 포함할 수 있습니다.", "SSE.Views.ProtectDialog.textInvalidRange": "오류! 셀 범위가 잘못되었습니다.", @@ -2832,6 +2847,7 @@ "SSE.Views.ShapeSettings.textPatternFill": "패턴", "SSE.Views.ShapeSettings.textPosition": "위치", "SSE.Views.ShapeSettings.textRadial": "방사형", + "SSE.Views.ShapeSettings.textRecentlyUsed": "최근 사용된", "SSE.Views.ShapeSettings.textRotate90": "90도 회전", "SSE.Views.ShapeSettings.textRotation": "회전", "SSE.Views.ShapeSettings.textSelectImage": "그림선택", @@ -3281,6 +3297,7 @@ "SSE.Views.Toolbar.textPageMarginsCustom": "사용자 정의 여백", "SSE.Views.Toolbar.textPortrait": "세로", "SSE.Views.Toolbar.textPrint": "인쇄", + "SSE.Views.Toolbar.textPrintGridlines": "눈금 선 인쇄", "SSE.Views.Toolbar.textPrintOptions": "인쇄 설정", "SSE.Views.Toolbar.textRight": "오른쪽 :", "SSE.Views.Toolbar.textRightBorders": "오른쪽 테두리", @@ -3360,6 +3377,7 @@ "SSE.Views.Toolbar.tipInsertText": "텍스트 상자 삽입", "SSE.Views.Toolbar.tipInsertTextart": "텍스트 아트 삽입", "SSE.Views.Toolbar.tipMerge": "병합하고 가운데 맞춤", + "SSE.Views.Toolbar.tipNone": "없음", "SSE.Views.Toolbar.tipNumFormat": "숫자 형식", "SSE.Views.Toolbar.tipPageMargins": "페이지 여백", "SSE.Views.Toolbar.tipPageOrient": "페이지 방향", @@ -3504,6 +3522,7 @@ "SSE.Views.ViewTab.capBtnFreeze": "창 고정", "SSE.Views.ViewTab.capBtnSheetView": "시트보기", "SSE.Views.ViewTab.textClose": "닫기", + "SSE.Views.ViewTab.textCombineSheetAndStatusBars": "상태 표시 줄 숨기기", "SSE.Views.ViewTab.textCreate": "새로만들기", "SSE.Views.ViewTab.textDefault": "기본", "SSE.Views.ViewTab.textFormula": "수식 입력줄", @@ -3511,7 +3530,9 @@ "SSE.Views.ViewTab.textFreezeRow": "첫 번째 행 고정", "SSE.Views.ViewTab.textGridlines": "눈금선", "SSE.Views.ViewTab.textHeadings": "제목", + "SSE.Views.ViewTab.textInterfaceTheme": "인터페이스 테마", "SSE.Views.ViewTab.textManager": "보기 관리자", + "SSE.Views.ViewTab.textShowFrozenPanesShadow": "틀 고정 음영 표시", "SSE.Views.ViewTab.textUnFreeze": "틀고정 취소", "SSE.Views.ViewTab.textZeros": "0표시", "SSE.Views.ViewTab.textZoom": "확대/축소", diff --git a/apps/spreadsheeteditor/main/locale/lo.json b/apps/spreadsheeteditor/main/locale/lo.json index 11b63a613..dfac0a983 100644 --- a/apps/spreadsheeteditor/main/locale/lo.json +++ b/apps/spreadsheeteditor/main/locale/lo.json @@ -2062,26 +2062,18 @@ "SSE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "ປ່ຽນສິດການເຂົ້າເຖິງ", "SSE.Views.FileMenuPanels.DocumentRights.txtRights": "ບຸກຄົນທີ່ມີສິດ", "SSE.Views.FileMenuPanels.MainSettingsGeneral.okButtonText": "ໃຊ້", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strAutoRecover": "ເປີດໃຊ້ງານການກູ້ຄືນອັດຕະໂນມັດ", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strAutosave": "ເປີດໃຊ້ງານບັນທຶກອັດຕະໂນມັດ", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthMode": "ໂຫມດແກ້ໄຂລວມ", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescFast": "ຜູ້ໃຊ້ຊື່ອຶ່ນຈະເຫັນການປ່ຽນແປງຂອງເຈົ້າ", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescStrict": "ທ່ານຈະຕ້ອງຍອມຮັບການປ່ຽນແປງກ່ອນທີ່ທ່ານຈະເຫັນການປ່ຽນແປງ", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strDecimalSeparator": "ຕົວຂັ້ນທົດນິຍົມ", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFast": "ໄວ", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFontRender": "ຕົວອັກສອນມົວ ບໍ່ເເຈ້ງ", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strForcesave": "ເກັບຮັກສາໄວ້ໃນເຊີບເວີຢູ່ສະ ເໝີ (ຖ້າບໍ່ດັ່ງນັ້ນບັນທຶກໄວ້ໃນ ເຊີບເວີ ຢູ່ບ່ອນປິດເອກະສານ)", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocale": "ຕຳລາພາສາ", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocaleEx": "ຕົວຢ່າງ:​ຜົນທັງໝົດ, ນ້ອບສຸດ, ສູງສຸດ, ນັບ", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strLiveComment": "ເປີດການສະແດງຄຳເຫັນ", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strMacrosSettings": "ການຕັ້ງຄ່າ Macros", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPaste": "ຕັດ, ສໍາເນົາ ແລະ ວາງ", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPasteButton": "ສະແດງປຸ່ມເລືອກວາງ ເມື່ອເນື້ອຫາໄດ້ຖືກຄັດຕິດ", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strR1C1": "ເປີດຮູບແບບ R1C1", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettings": "ການຕັ້ງຄ່າຂອບເຂດ", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettingsEx": "ຕົວຢ່າງ:", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strResolvedComment": "ເປີດການສະແດງຄຳເຫັນທີ່ຖືກແກ້ໄຂ", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strSeparator": "ຕົວແຍກ", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strStrict": "ເຂັ້ມງວດ, ໂຕເຂັ້ມ", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strTheme": "ຫນ້າຕາຂອງ theme", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strThousandsSeparator": "ໜື່ງພັນຕົວແຍກ", @@ -2117,7 +2109,6 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtIt": "ອິຕາລີ", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtJa": "ພາສາຍີ່ປຸ່ນ", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtKo": "ພາສາເກົາຫລີ", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLiveComment": "ການສະແດງຄວາມຄິດເຫັນ", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLo": "ພາສາລາວ", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLv": "ພາສາລັດເວຍ", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtMac": "ເປັນ OS X", @@ -2144,12 +2135,6 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacrosDesc": "ປິດທຸກ ມາກໂຄ ດ້ວຍ ການແຈ້ງເຕືອນ", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin": "ເປັນວິນໂດ້", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtZh": "ພາສາຈີນ", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.okButtonText": "ໃຊ້", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strDictionaryLanguage": "ພາສາພົດຈະນານຸກົມ", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strIgnoreWordsInUPPERCASE": "ບໍ່ສົນຕົວອັກສອນໃຫ່ຍ", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strIgnoreWordsWithNumbers": "ບໍ່ສົນຕົວໜັງສືກັບໂຕເລກ", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.txtAutoCorrect": "ຕົວເລືອກ ແກ້ໄຂອັດຕະໂນມັດ", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.txtProofing": "ການພິສູດອັກສອນ", "SSE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "ແຈ້ງເຕືອນ", "SSE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "ກັບລະຫັດຜ່ານ", "SSE.Views.FileMenuPanels.ProtectDoc.strProtect": "ປົກປ້ອງ Spreadsheet", @@ -2161,9 +2146,6 @@ "SSE.Views.FileMenuPanels.ProtectDoc.txtSigned": "ລາຍເຊັນທີ່ຖືກຕ້ອງໄດ້ຖືກເພີ່ມໃສ່spreadsheet.​ spreadsheet ໄດ້ຖືກປົກປ້ອງຈາກການດັດແກ້.", "SSE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "ລາຍເຊັນດີຈີຕອນບາງສ່ວນໃນ spreadsheet ບໍ່ຖືກຕ້ອງ ຫຼື ບໍ່ສາມາດຢືນຢັນໄດ້. spreadsheet ຖືກປົກປ້ອງຈາກການແກ້ໄຂ.", "SSE.Views.FileMenuPanels.ProtectDoc.txtView": "ເບິ່ງລາຍເຊັນ", - "SSE.Views.FileMenuPanels.Settings.txtGeneral": "ທົ່ວໄປ", - "SSE.Views.FileMenuPanels.Settings.txtPageSettings": "ຕັ້ງຄ່າໜ້າເຈ້ຍ", - "SSE.Views.FileMenuPanels.Settings.txtSpellChecking": "ກວດກາການສະກົດຄໍາ", "SSE.Views.FormatRulesEditDlg.fillColor": "ຕື່ມສີ", "SSE.Views.FormatRulesEditDlg.notcriticalErrorTitle": "ແຈ້ງເຕືອນ", "SSE.Views.FormatRulesEditDlg.text2Scales": "ສີ 2 ລະດັບ", diff --git a/apps/spreadsheeteditor/main/locale/lv.json b/apps/spreadsheeteditor/main/locale/lv.json index be1e8982e..5fb5f6680 100644 --- a/apps/spreadsheeteditor/main/locale/lv.json +++ b/apps/spreadsheeteditor/main/locale/lv.json @@ -1151,20 +1151,14 @@ "SSE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Change access rights", "SSE.Views.FileMenuPanels.DocumentRights.txtRights": "Personas kuriem ir tiesības", "SSE.Views.FileMenuPanels.MainSettingsGeneral.okButtonText": "Piemērot", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strAutoRecover": "Ieslēgt automātisko atjaunošanu", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strAutosave": "Turn on autosave", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthMode": "Co-editing mode", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescFast": "Other users will see your changes at once", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescStrict": "You will need to accept changes before you can see them", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFast": "Fast", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFontRender": "Font Hinting", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strForcesave": "Vienmēr noglabāt serverī (pretējā gadījumā noglabāt serverī dokumenta aizvēršanas laikā)", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocale": "Formula Language", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocaleEx": "Example: SUM; MIN; MAX; COUNT", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strLiveComment": "Turn on live commenting option", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettings": "Regional Settings", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettingsEx": "Example: ", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strResolvedComment": "Iespējot atrisināto komentāru rādīšanu", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strStrict": "Strict", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strUnit": "Unit of Measurement", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strZoom": "Noklusējuma tālummaiņas vērtība", @@ -1183,7 +1177,6 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEs": "Spāņu", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtFr": "Francijas", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtInch": "Colla", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLiveComment": "Live Commenting", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtMac": "as OS X", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNative": "Native", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPl": "Poļu", @@ -1201,8 +1194,6 @@ "SSE.Views.FileMenuPanels.ProtectDoc.txtSigned": "Rēķintabulai ir pievienoti derīgi paraksti. Rēķintabulu nevar rediģēt.", "SSE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "Daži rēķintabulas digitālie paraksti nav derīgi vai tos nevar pārbaudīt. Rēķintabulu nevar rediģēt.", "SSE.Views.FileMenuPanels.ProtectDoc.txtView": "Apskatīt parakstus", - "SSE.Views.FileMenuPanels.Settings.txtGeneral": "General", - "SSE.Views.FileMenuPanels.Settings.txtPageSettings": "Lapas iestatījumi", "SSE.Views.FormatRulesEditDlg.textNewColor": "Pievienot jauno krāsu", "SSE.Views.FormatSettingsDialog.textCategory": "Kategorija", "SSE.Views.FormatSettingsDialog.textDecimal": "Decimālis", diff --git a/apps/spreadsheeteditor/main/locale/nl.json b/apps/spreadsheeteditor/main/locale/nl.json index 1cbed9457..c2ee23a0f 100644 --- a/apps/spreadsheeteditor/main/locale/nl.json +++ b/apps/spreadsheeteditor/main/locale/nl.json @@ -2037,26 +2037,18 @@ "SSE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Toegangsrechten wijzigen", "SSE.Views.FileMenuPanels.DocumentRights.txtRights": "Personen met rechten", "SSE.Views.FileMenuPanels.MainSettingsGeneral.okButtonText": "Toepassen", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strAutoRecover": "AutoHerstel inschakelen", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strAutosave": "Automatisch opslaan inschakelen", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthMode": "Modus Gezamenlijk bewerken", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescFast": "Andere gebruikers zien uw wijzigingen onmiddellijk", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescStrict": "U moet de wijzigingen accepteren om die te kunnen zien", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strDecimalSeparator": "Decimaalscheidingsteken", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFast": "Snel", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFontRender": "Hints voor lettertype", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strForcesave": "Altijd op de server opslaan in plaats van bij het sluiten van het document", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocale": "Taal formule", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocaleEx": "Voorbeeld: SUM; MIN; MAX; COUNT", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strLiveComment": "Weergave van opmerkingen inschakelen", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strMacrosSettings": "Macro instellingen", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPaste": "Knippen, kopiëren en plakken", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPasteButton": "Toon de knop Plakopties wanneer de inhoud is geplakt", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strR1C1": "Schakel R1C1-stijl in", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettings": "Regionale instellingen", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettingsEx": "Voorbeeld:", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strResolvedComment": "Weergave van opgeloste opmerkingen inschakelen", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strSeparator": "Scheidingsteken", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strStrict": "Strikt", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strTheme": "Thema van de interface", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strThousandsSeparator": "Duizenden scheidingsteken", @@ -2092,7 +2084,6 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtIt": "Italiaans", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtJa": "Japans", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtKo": "Koreaans", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLiveComment": "Commentaarweergave", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLo": "Laotiaans", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLv": "Letlands", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtMac": "als OS X", @@ -2119,12 +2110,6 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacrosDesc": "Schakel alle macro's uit met een melding", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin": "als Windows", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtZh": "Chinees", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.okButtonText": "Toepassen", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strDictionaryLanguage": "Woordenboek taal", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strIgnoreWordsInUPPERCASE": "Negeer woorden in HOOFDLETTERS", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strIgnoreWordsWithNumbers": "Negeer woorden met cijfers", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.txtAutoCorrect": "Instellingen automatische spellingscontrole", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.txtProofing": "Controlleren", "SSE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Waarschuwing", "SSE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "Met wachtwoord", "SSE.Views.FileMenuPanels.ProtectDoc.strProtect": "Werkblad beveiligen", @@ -2136,9 +2121,6 @@ "SSE.Views.FileMenuPanels.ProtectDoc.txtSigned": "Geldige handtekeningen zijn toegevoegd aan het werkblad. Dit werkblad is beveiligd tegen aanpassingen.", "SSE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "Een of meer digitale handtekeningen in het werkblad zijn ongeldig of konden niet geverifieerd worden. Dit werkblad is beveiligd tegen aanpassingen.", "SSE.Views.FileMenuPanels.ProtectDoc.txtView": "Toon handtekeningen", - "SSE.Views.FileMenuPanels.Settings.txtGeneral": "Algemeen", - "SSE.Views.FileMenuPanels.Settings.txtPageSettings": "Pagina-instellingen", - "SSE.Views.FileMenuPanels.Settings.txtSpellChecking": "Spellingcontrole", "SSE.Views.FormatRulesEditDlg.fillColor": "Opvulkleur", "SSE.Views.FormatRulesEditDlg.notcriticalErrorTitle": "Waarschuwing", "SSE.Views.FormatRulesEditDlg.text2Scales": "2 Kleurenschaal", diff --git a/apps/spreadsheeteditor/main/locale/pl.json b/apps/spreadsheeteditor/main/locale/pl.json index 114cd6cc7..a84d48bb0 100644 --- a/apps/spreadsheeteditor/main/locale/pl.json +++ b/apps/spreadsheeteditor/main/locale/pl.json @@ -2041,26 +2041,18 @@ "SSE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Zmień prawa dostępu", "SSE.Views.FileMenuPanels.DocumentRights.txtRights": "Osoby, które mają prawa", "SSE.Views.FileMenuPanels.MainSettingsGeneral.okButtonText": "Zatwierdź", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strAutoRecover": "Włącz auto odzyskiwanie", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strAutosave": "Włącz automatyczny zapis", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthMode": "Tryb współtworzenia", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescFast": "Zobaczysz zmiany innych użytkowników od razu", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescStrict": "Zanim będziesz mógł zobaczyć zmiany wprowadzone przez innych użytkowników, musisz je najpierw zaakceptować.", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strDecimalSeparator": "Separator liczb dziesiętnych", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFast": "Szybki", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFontRender": "Podpowiedź czcionki", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strForcesave": "Dodaj wersję do pamięci po kliknięciu przycisku Zapisz lub Ctrl+S", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocale": "Język formuły", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocaleEx": "Przykład: SUMA; MIN; MAX; LICZYĆ", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strLiveComment": "Włącz wyświetlanie komentarzy", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strMacrosSettings": "Ustawienia Makr", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPaste": "Wycinanie, kopiowanie i wklejanie", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPasteButton": "Pokaż przycisk opcji wklejania po wklejeniu zawartości", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strR1C1": "Włącz styl R1C1", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettings": "Ustawienia regionaln", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettingsEx": "Przykład:", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strResolvedComment": "Włącz wyświetlanie rozwiązanych komentarzy", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strSeparator": "Separator", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strStrict": "Ścisły", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strTheme": "Motyw interfejsu", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strThousandsSeparator": "Separator tysięcy", @@ -2096,7 +2088,6 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtIt": "Włoski", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtJa": "Japoński", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtKo": "Koreański", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLiveComment": "Widok komentarzy", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLo": "Laotański", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLv": "Łotewski", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtMac": "jak OS X", @@ -2123,12 +2114,6 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacrosDesc": "Wyłącz wszystkie makra z powiadomieniem", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin": "jak Windows", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtZh": "Chiński", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.okButtonText": "Zatwierdź", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strDictionaryLanguage": "Język słownika", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strIgnoreWordsInUPPERCASE": "Ignoruj słowa pisane WIELKIMI LITERAMI", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strIgnoreWordsWithNumbers": "Ignoruj słowa z liczbami", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.txtAutoCorrect": "Opcje Autokorekty...", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.txtProofing": "Sprawdzanie", "SSE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Ostrzeżenie", "SSE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "z hasłem", "SSE.Views.FileMenuPanels.ProtectDoc.strProtect": "\nChroń arkusz kalkulacyjny", @@ -2140,9 +2125,6 @@ "SSE.Views.FileMenuPanels.ProtectDoc.txtSigned": "Prawidłowe podpisy zostały dodane do arkusza kalkulacyjnego. Arkusz kalkulacyjny jest chroniony przed edycją.", "SSE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "Niektóre podpisy cyfrowe w arkuszu kalkulacyjnym są nieprawidłowe lub nie można ich zweryfikować. Arkusz kalkulacyjny jest chroniony przed edycją", "SSE.Views.FileMenuPanels.ProtectDoc.txtView": "Zobacz sygnatury", - "SSE.Views.FileMenuPanels.Settings.txtGeneral": "Ogólne", - "SSE.Views.FileMenuPanels.Settings.txtPageSettings": "Ustawienia strony", - "SSE.Views.FileMenuPanels.Settings.txtSpellChecking": "Sprawdzanie pisowni", "SSE.Views.FormatRulesEditDlg.fillColor": "Kolor wypełnienia", "SSE.Views.FormatRulesEditDlg.notcriticalErrorTitle": "Ostrzeżenie", "SSE.Views.FormatRulesEditDlg.text2Scales": "2 skala kolorów", diff --git a/apps/spreadsheeteditor/main/locale/pt-PT.json b/apps/spreadsheeteditor/main/locale/pt-PT.json index 449b740ab..deeb0d4bc 100644 --- a/apps/spreadsheeteditor/main/locale/pt-PT.json +++ b/apps/spreadsheeteditor/main/locale/pt-PT.json @@ -158,7 +158,6 @@ "Common.Views.AutoCorrectDialog.textAutoFormat": "Formato automático ao escrever", "Common.Views.AutoCorrectDialog.textBy": "Por", "Common.Views.AutoCorrectDialog.textDelete": "Eliminar", - "Common.Views.AutoCorrectDialog.textFLSentence": "Capitalizar a primeira letra das frases", "Common.Views.AutoCorrectDialog.textHyperlink": "Internet e locais de rede com hiperligações", "Common.Views.AutoCorrectDialog.textMathCorrect": " Correção automática de matemática", "Common.Views.AutoCorrectDialog.textNewRowCol": "Incluir novas linhas e colunas na tabela", @@ -233,6 +232,7 @@ "Common.Views.Header.tipRedo": "Refazer", "Common.Views.Header.tipSave": "Salvar", "Common.Views.Header.tipUndo": "Desfazer", + "Common.Views.Header.tipUndock": "Desacoplar em janela separada", "Common.Views.Header.tipViewSettings": "Definições de visualização", "Common.Views.Header.tipViewUsers": "Ver utilizadores e gerir direitos de acesso", "Common.Views.Header.txtAccessRights": "Alterar direitos de acesso", @@ -1625,9 +1625,7 @@ "SSE.Views.ChartSettingsDlg.textCustom": "Personalizar", "SSE.Views.ChartSettingsDlg.textDataColumns": "em colunas", "SSE.Views.ChartSettingsDlg.textDataLabels": "Rótulos de dados", - "SSE.Views.ChartSettingsDlg.textDataRange": "Intervalo de dados", "SSE.Views.ChartSettingsDlg.textDataRows": "em linhas", - "SSE.Views.ChartSettingsDlg.textDataSeries": "Série de dados", "SSE.Views.ChartSettingsDlg.textDisplayLegend": "Exibir legenda", "SSE.Views.ChartSettingsDlg.textEmptyCells": "Células vazias e ocultas", "SSE.Views.ChartSettingsDlg.textEmptyLine": "Ligar pontos de dados com linha", @@ -1642,9 +1640,7 @@ "SSE.Views.ChartSettingsDlg.textHigh": "Alto", "SSE.Views.ChartSettingsDlg.textHorAxis": "Eixo horizontal", "SSE.Views.ChartSettingsDlg.textHorAxisSec": "Eixo Secundário Horizontal", - "SSE.Views.ChartSettingsDlg.textHorGrid": "Grades de linha horizontais", "SSE.Views.ChartSettingsDlg.textHorizontal": "Horizontal", - "SSE.Views.ChartSettingsDlg.textHorTitle": "Título do eixo horizontal", "SSE.Views.ChartSettingsDlg.textHundredMil": "100.000.000 ", "SSE.Views.ChartSettingsDlg.textHundreds": "Centenas", "SSE.Views.ChartSettingsDlg.textHundredThousands": "100.000 ", @@ -1696,11 +1692,9 @@ "SSE.Views.ChartSettingsDlg.textSeparator": "Separador de rótulos de dados", "SSE.Views.ChartSettingsDlg.textSeriesName": "Nome da série", "SSE.Views.ChartSettingsDlg.textShow": "Mostrar", - "SSE.Views.ChartSettingsDlg.textShowAxis": "Exibir eixo", "SSE.Views.ChartSettingsDlg.textShowBorders": "Exibir bordas do gráfico", "SSE.Views.ChartSettingsDlg.textShowData": "Mostrar dados nas linhas e colunas ocultas", "SSE.Views.ChartSettingsDlg.textShowEmptyCells": "Mostrar células vazias como", - "SSE.Views.ChartSettingsDlg.textShowGrid": "Linhas de grade", "SSE.Views.ChartSettingsDlg.textShowSparkAxis": "Mostrar Eixo", "SSE.Views.ChartSettingsDlg.textShowValues": "Exibir valores do gráfico", "SSE.Views.ChartSettingsDlg.textSingle": "Sparkline Única", @@ -1720,13 +1714,10 @@ "SSE.Views.ChartSettingsDlg.textTwoCell": "Mover e redimensionar com células", "SSE.Views.ChartSettingsDlg.textType": "Tipo", "SSE.Views.ChartSettingsDlg.textTypeData": "Tipo e Dados", - "SSE.Views.ChartSettingsDlg.textTypeStyle": "Tipo, Estilo e
Intervalo de dados do Gráfico", "SSE.Views.ChartSettingsDlg.textUnits": "Exibir unidades", "SSE.Views.ChartSettingsDlg.textValue": "Valor", "SSE.Views.ChartSettingsDlg.textVertAxis": "Eixo vertical", "SSE.Views.ChartSettingsDlg.textVertAxisSec": "Eixo Secundário Vertical", - "SSE.Views.ChartSettingsDlg.textVertGrid": "Linhas de grade verticais", - "SSE.Views.ChartSettingsDlg.textVertTitle": "Título do eixo vertical", "SSE.Views.ChartSettingsDlg.textXAxisTitle": "Título do eixo X", "SSE.Views.ChartSettingsDlg.textYAxisTitle": "Título do eixo Y", "SSE.Views.ChartSettingsDlg.textZero": "Zero", @@ -1929,9 +1920,12 @@ "SSE.Views.DocumentHolder.textUndo": "Desfazer", "SSE.Views.DocumentHolder.textUnFreezePanes": "Libertar painéis", "SSE.Views.DocumentHolder.textVar": "Var", - "SSE.Views.DocumentHolder.tipMarkersArrow": "Marcadores de setas", + "SSE.Views.DocumentHolder.tipMarkersArrow": "Marcas em Seta", "SSE.Views.DocumentHolder.tipMarkersCheckmark": "Marcas de verificação", "SSE.Views.DocumentHolder.tipMarkersDash": "Marcadores de traços", + "SSE.Views.DocumentHolder.tipMarkersFRhombus": "Listas Rômbicas Preenchidas", + "SSE.Views.DocumentHolder.tipMarkersFRound": "Listas Redondas Preenchidas", + "SSE.Views.DocumentHolder.tipMarkersFSquare": "Listas Quadradas Preenchidas", "SSE.Views.DocumentHolder.tipMarkersHRound": "Marcas de lista redondas vazias", "SSE.Views.DocumentHolder.tipMarkersStar": "Marcas em estrela", "SSE.Views.DocumentHolder.topCellText": "Alinhar à parte superior", @@ -2069,26 +2063,18 @@ "SSE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Alterar direitos de acesso", "SSE.Views.FileMenuPanels.DocumentRights.txtRights": "Pessoas que têm direitos", "SSE.Views.FileMenuPanels.MainSettingsGeneral.okButtonText": "Aplicar", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strAutoRecover": "Ativar recuperação automática", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strAutosave": "Ativar salvamento automático", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthMode": "Co-editing mode", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescFast": "Outros utilizadores verão as suas alterações de uma vez", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescStrict": "You will need to accept changes before you can see them", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strDecimalSeparator": "Separador decimal", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFast": "Rápido", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFontRender": "Dicas de fonte", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strForcesave": "Guardar sempre no servidor (caso contrário, guardar no servidor ao fechar o documento)", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocale": "Formula Language", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocaleEx": "Example: SUM; MIN; MAX; COUNT", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strLiveComment": "Ativar opção comentário ao vivo", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strMacrosSettings": "Definições de macros", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPaste": "Cortar, copiar e colar", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPasteButton": "Mostrar botão Opções de colagem ao colar conteúdo", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strR1C1": "Ligar o estilo R1C1", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettings": "Definições regionais", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettingsEx": "Example:", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strResolvedComment": "Aceder à visualização dos comentários resolvidos", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strSeparator": "Separador", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strStrict": "Strict", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strTheme": "Tema da interface", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strThousandsSeparator": "Separador de milhares", @@ -2124,7 +2110,6 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtIt": "Italiano", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtJa": "Japonês", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtKo": "Coreano", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLiveComment": "Comentário ao vivo", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLo": "Lao", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtMac": "como SO X", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNative": "Nativo", @@ -2150,12 +2135,6 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacrosDesc": "Desativar todas as macros com uma notificação", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin": "como Windows", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtZh": "Chinês", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.okButtonText": "Aplicar", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strDictionaryLanguage": "Idioma do Dicionário", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strIgnoreWordsInUPPERCASE": "Ignorar palavras em MAÍSCULAS", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strIgnoreWordsWithNumbers": "Ignorar palavras com números", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.txtAutoCorrect": "Opções de correção automática...", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.txtProofing": "Correção", "SSE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Aviso", "SSE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "Com palavra-passe", "SSE.Views.FileMenuPanels.ProtectDoc.strProtect": "Proteger Folha de Cálculo", @@ -2167,9 +2146,6 @@ "SSE.Views.FileMenuPanels.ProtectDoc.txtSigned": "Assinaturas adicionadas ao documento. Esta folha de cálculo não pode ser editada.", "SSE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "Algumas das assinaturas digitais são inválidas ou não puderam ser verificadas. Esta folha de cálculo documento não pode ser editada.", "SSE.Views.FileMenuPanels.ProtectDoc.txtView": "Ver assinaturas", - "SSE.Views.FileMenuPanels.Settings.txtGeneral": "Geral", - "SSE.Views.FileMenuPanels.Settings.txtPageSettings": "Definições de página", - "SSE.Views.FileMenuPanels.Settings.txtSpellChecking": "Verificação ortográfica", "SSE.Views.FormatRulesEditDlg.fillColor": "Cor de preenchimento", "SSE.Views.FormatRulesEditDlg.notcriticalErrorTitle": "Aviso", "SSE.Views.FormatRulesEditDlg.text2Scales": "2 Escala de cor", @@ -2925,11 +2901,11 @@ "SSE.Views.ShapeSettings.txtBrownPaper": "Papel pardo", "SSE.Views.ShapeSettings.txtCanvas": "Canvas", "SSE.Views.ShapeSettings.txtCarton": "Papelão", - "SSE.Views.ShapeSettings.txtDarkFabric": "Tecido escuro", + "SSE.Views.ShapeSettings.txtDarkFabric": "Tela escura", "SSE.Views.ShapeSettings.txtGrain": "Granulação", "SSE.Views.ShapeSettings.txtGranite": "Granito", "SSE.Views.ShapeSettings.txtGreyPaper": "Papel cinza", - "SSE.Views.ShapeSettings.txtKnit": "Encontro", + "SSE.Views.ShapeSettings.txtKnit": "Unir", "SSE.Views.ShapeSettings.txtLeather": "Couro", "SSE.Views.ShapeSettings.txtNoBorders": "Sem linha", "SSE.Views.ShapeSettings.txtPapyrus": "Papiro", @@ -3269,11 +3245,11 @@ "SSE.Views.TextArtSettings.txtBrownPaper": "Brown Paper", "SSE.Views.TextArtSettings.txtCanvas": "Canvas", "SSE.Views.TextArtSettings.txtCarton": "Carton", - "SSE.Views.TextArtSettings.txtDarkFabric": "Dark Fabric", + "SSE.Views.TextArtSettings.txtDarkFabric": "Tela escura", "SSE.Views.TextArtSettings.txtGrain": "Grain", "SSE.Views.TextArtSettings.txtGranite": "Granite", "SSE.Views.TextArtSettings.txtGreyPaper": "Gray Paper", - "SSE.Views.TextArtSettings.txtKnit": "Knit", + "SSE.Views.TextArtSettings.txtKnit": "Unir", "SSE.Views.TextArtSettings.txtLeather": "Leather", "SSE.Views.TextArtSettings.txtNoBorders": "No Line", "SSE.Views.TextArtSettings.txtPapyrus": "Papyrus", diff --git a/apps/spreadsheeteditor/main/locale/pt.json b/apps/spreadsheeteditor/main/locale/pt.json index 89b8fef89..7c416e564 100644 --- a/apps/spreadsheeteditor/main/locale/pt.json +++ b/apps/spreadsheeteditor/main/locale/pt.json @@ -2063,26 +2063,18 @@ "SSE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Alterar direitos de acesso", "SSE.Views.FileMenuPanels.DocumentRights.txtRights": "Pessoas que têm direitos", "SSE.Views.FileMenuPanels.MainSettingsGeneral.okButtonText": "Aplicar", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strAutoRecover": "Ativar recuperação automática", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strAutosave": "Ativar salvamento automático", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthMode": "Co-editing mode", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescFast": "Other users will see your changes at once", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescStrict": "Você precisará aceitar as alterações antes de poder vê-las", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strDecimalSeparator": "Separador decimal", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFast": "Fast", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFontRender": "Dicas de fonte", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strForcesave": "Sempre salvar para o servidor (caso contrário, salvar para servidor no documento fechado)", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocale": "Formula Language", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocaleEx": "Exemplo: SOMA; MÍNIMO; MÁXIMO; CONT.NÚM", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strLiveComment": "Ativar opção comentário ao vivo", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strMacrosSettings": "Configurações de macros", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPaste": "Cortar, copiar e colar", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPasteButton": "Mostrar o botão Opções de colagem quando o conteúdo for colado", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strR1C1": "Ligue o estilo R1C1", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettings": "Regional Settings", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettingsEx": "Example: ", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strResolvedComment": "Ativar exibição dos comentários resolvidos", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strSeparator": "Separador", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strStrict": "Strict", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strTheme": "Tema de interface", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strThousandsSeparator": "separador de milhares", @@ -2118,7 +2110,6 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtIt": "Italiano", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtJa": "Japonês", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtKo": "Coreano", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLiveComment": "Comentário ao vivo", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLo": "Laociano", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLv": "Letão", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtMac": "como SO X", @@ -2145,12 +2136,6 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacrosDesc": "Desativar todas as macros com uma notificação", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin": "como Windows", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtZh": "Chinês", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.okButtonText": "Aplicar", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strDictionaryLanguage": "Idioma do dicionário", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strIgnoreWordsInUPPERCASE": "Ignorar palavras MAIÚSCULAS", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strIgnoreWordsWithNumbers": "Ignorar palavras com números", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.txtAutoCorrect": "Opções de autocorreção...", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.txtProofing": "Correção", "SSE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Atenção", "SSE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "Com senha", "SSE.Views.FileMenuPanels.ProtectDoc.strProtect": "Proteger planilha", @@ -2162,9 +2147,6 @@ "SSE.Views.FileMenuPanels.ProtectDoc.txtSigned": "Assinaturas válidas foram adicionadas à planilha. A planilha está protegida contra edição.", "SSE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "Algumas assinaturas digitais da planilha são inválidas ou não puderam ser verificadas. A planilha está protegida contra edição.", "SSE.Views.FileMenuPanels.ProtectDoc.txtView": "Exibir assinaturas", - "SSE.Views.FileMenuPanels.Settings.txtGeneral": "Geral", - "SSE.Views.FileMenuPanels.Settings.txtPageSettings": "Configurações de página", - "SSE.Views.FileMenuPanels.Settings.txtSpellChecking": "Verificação ortográfica", "SSE.Views.FormatRulesEditDlg.fillColor": "Cor de preenchimento", "SSE.Views.FormatRulesEditDlg.notcriticalErrorTitle": "Aviso", "SSE.Views.FormatRulesEditDlg.text2Scales": "Escala Bicolor", diff --git a/apps/spreadsheeteditor/main/locale/ro.json b/apps/spreadsheeteditor/main/locale/ro.json index cdd1762f5..54a973b2c 100644 --- a/apps/spreadsheeteditor/main/locale/ro.json +++ b/apps/spreadsheeteditor/main/locale/ro.json @@ -2064,26 +2064,18 @@ "SSE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Modificare permisiuni", "SSE.Views.FileMenuPanels.DocumentRights.txtRights": "Persoane care au dreptul de acces", "SSE.Views.FileMenuPanels.MainSettingsGeneral.okButtonText": "Aplicare", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strAutoRecover": "Activare recuperare automată", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strAutosave": "Activare salvare automată", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthMode": "Modul de editare colaborativă", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescFast": "Ceilalți utilizatori vor putea vedea modificările dvs imediat", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescStrict": "Pentru a vizualiza modificările, trebuie mai întâi să le acceptați", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strDecimalSeparator": "Separator zecimal", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFast": "Rapid", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFontRender": "Sugestie font", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strForcesave": "Versiunea se adaugă la stocarea după ce faceți clic pe Salvare sau Ctrl+S", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocale": "Limba formulă", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocaleEx": "Exemplu: SUM; MIN; MAX; COUNT", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strLiveComment": "Activarea afișare comentarii", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strMacrosSettings": "Setări macrocomandă", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPaste": "Decupare, copiere și lipire", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPasteButton": "Afișarea butonului Opțiuni lipire de fiecare dată când lipiți conținut", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strR1C1": "Activare stil referință R1C1", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettings": "Setări regionale", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettingsEx": "Exemplu:", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strResolvedComment": "Activarea afișare comentarii rezolvate", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strSeparator": "Separator", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strStrict": "Strict", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strTheme": "Tema interfeței", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strThousandsSeparator": "Separator mii", @@ -2119,7 +2111,6 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtIt": "Italiană", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtJa": "Japoneză", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtKo": "Coreeană", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLiveComment": "Afișare comentarii", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLo": "Laoțiană", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLv": "Letonă", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtMac": "ca OS X", @@ -2146,12 +2137,6 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacrosDesc": "Se dezactivează toate macrocomenzile, cu notificare ", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin": "ca Windows", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtZh": "Chineză", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.okButtonText": "Aplicare", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strDictionaryLanguage": "Limbă de dicționar", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strIgnoreWordsInUPPERCASE": "Ignoră cuvintele cu MAJUSCULE", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strIgnoreWordsWithNumbers": "Ignoră cuvintele care conțin numere", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.txtAutoCorrect": "Opțiuni AutoCorecție...", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.txtProofing": "Verificare", "SSE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Avertisment", "SSE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "Prin parolă", "SSE.Views.FileMenuPanels.ProtectDoc.strProtect": "Protejarea foii de calcul", @@ -2163,9 +2148,6 @@ "SSE.Views.FileMenuPanels.ProtectDoc.txtSigned": "Semnături valide au fost adăugate în foaia de calcul. Foaia de calcul este protejată împotriva editării.", "SSE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "O parte din semnături electronice pe foaia de calcul nu sunt valide sau nu pot fi verificate. Foaia de calcul este protejată împotriva editării.", "SSE.Views.FileMenuPanels.ProtectDoc.txtView": "Vizualizare semnături", - "SSE.Views.FileMenuPanels.Settings.txtGeneral": "General", - "SSE.Views.FileMenuPanels.Settings.txtPageSettings": "Setare pagină", - "SSE.Views.FileMenuPanels.Settings.txtSpellChecking": "Verificarea ortografică", "SSE.Views.FormatRulesEditDlg.fillColor": "Culoare de umplere", "SSE.Views.FormatRulesEditDlg.notcriticalErrorTitle": "Avertisment", "SSE.Views.FormatRulesEditDlg.text2Scales": "Scară cu două culori", diff --git a/apps/spreadsheeteditor/main/locale/ru.json b/apps/spreadsheeteditor/main/locale/ru.json index 6927ec7e5..c57643ce2 100644 --- a/apps/spreadsheeteditor/main/locale/ru.json +++ b/apps/spreadsheeteditor/main/locale/ru.json @@ -2064,26 +2064,18 @@ "SSE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Изменить права доступа", "SSE.Views.FileMenuPanels.DocumentRights.txtRights": "Люди, имеющие права", "SSE.Views.FileMenuPanels.MainSettingsGeneral.okButtonText": "Применить", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strAutoRecover": "Включить автовосстановление", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strAutosave": "Включить автосохранение", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthMode": "Режим совместного редактирования", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescFast": "Другие пользователи будут сразу же видеть ваши изменения", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescStrict": "Прежде чем вы сможете увидеть изменения, их надо будет принять", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strDecimalSeparator": "Десятичный разделитель", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFast": "Быстрый", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFontRender": "Хинтинг шрифтов", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strForcesave": "Добавлять версию в хранилище после нажатия кнопки Сохранить или Ctrl+S", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocale": "Язык формул", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocaleEx": "Пример: СУММ; МИН; МАКС; СЧЁТ", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strLiveComment": "Включить отображение комментариев в тексте", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strMacrosSettings": "Настройки макросов", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPaste": "Вырезание, копирование и вставка", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPasteButton": "Показывать кнопку Параметры вставки при вставке содержимого", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strR1C1": "Включить стиль R1C1", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettings": "Региональные параметры", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettingsEx": "Пример:", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strResolvedComment": "Включить отображение решенных комментариев", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strSeparator": "Разделитель", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strStrict": "Строгий", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strTheme": "Тема интерфейса", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strThousandsSeparator": "Разделитель разрядов тысяч", @@ -2119,7 +2111,6 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtIt": "Итальянский", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtJa": "Японский", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtKo": "Корейский", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLiveComment": "Отображение комментариев", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLo": "Лаосский", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLv": "Латышский", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtMac": "как OS X", @@ -2146,12 +2137,6 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacrosDesc": "Отключить все макросы с уведомлением", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin": "как Windows", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtZh": "Китайский", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.okButtonText": "Применить", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strDictionaryLanguage": "Язык словаря", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strIgnoreWordsInUPPERCASE": "Пропускать слова из ПРОПИСНЫХ БУКВ", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strIgnoreWordsWithNumbers": "Пропускать слова с цифрами", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.txtAutoCorrect": "Параметры автозамены...", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.txtProofing": "Правописание", "SSE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Внимание", "SSE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "C помощью пароля", "SSE.Views.FileMenuPanels.ProtectDoc.strProtect": "Защитить электронную таблицу", @@ -2163,9 +2148,6 @@ "SSE.Views.FileMenuPanels.ProtectDoc.txtSigned": "В электронную таблицу добавлены действительные подписи. Таблица защищена от редактирования.", "SSE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "Некоторые из цифровых подписей в электронной таблице недействительны или их нельзя проверить. Таблица защищена от редактирования.", "SSE.Views.FileMenuPanels.ProtectDoc.txtView": "Просмотр подписей", - "SSE.Views.FileMenuPanels.Settings.txtGeneral": "Общие", - "SSE.Views.FileMenuPanels.Settings.txtPageSettings": "Параметры страницы", - "SSE.Views.FileMenuPanels.Settings.txtSpellChecking": "Проверка орфографии", "SSE.Views.FormatRulesEditDlg.fillColor": "Цвет заливки", "SSE.Views.FormatRulesEditDlg.notcriticalErrorTitle": "Внимание", "SSE.Views.FormatRulesEditDlg.text2Scales": "Двухцветная шкала", diff --git a/apps/spreadsheeteditor/main/locale/sk.json b/apps/spreadsheeteditor/main/locale/sk.json index 1c53a0bac..4c6cff769 100644 --- a/apps/spreadsheeteditor/main/locale/sk.json +++ b/apps/spreadsheeteditor/main/locale/sk.json @@ -2063,26 +2063,18 @@ "SSE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Zmeniť prístupové práva", "SSE.Views.FileMenuPanels.DocumentRights.txtRights": "Osoby s oprávneniami", "SSE.Views.FileMenuPanels.MainSettingsGeneral.okButtonText": "Použiť", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strAutoRecover": "Zapnúť automatickú obnovu", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strAutosave": "Zapnúť automatické ukladanie", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthMode": "Režim spoločnej úpravy", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescFast": "Ostatní používatelia uvidia Vaše zmeny naraz", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescStrict": "Musíte akceptovať zmeny pretým ako ich uvidíte ", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strDecimalSeparator": "Oddeľovač desatinných miest", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFast": "Rýchly", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFontRender": "Náznak typu písma", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strForcesave": "Pridaj verziu na úložisko kliknutím na Uložiť alebo Ctrl+S", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocale": "Jazyk vzorcov", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocaleEx": "Príklad: SÚČET; MIN; MAX; POČET", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strLiveComment": "Zapnúť zobrazovanie komentárov", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strMacrosSettings": "Nastavenia makier", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPaste": "Vystrihni, skopíruj a vlep", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPasteButton": "Po vložení obsahu ukázať tlačítko Možnosti vloženia", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strR1C1": "Zapnúť R1C1 štýl", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettings": "Miestne nastavenia", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettingsEx": "Príklad:", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strResolvedComment": "Zapnúť zobrazenie vyriešených komentárov", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strSeparator": "Oddeľovač", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strStrict": "Prísny", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strTheme": "Téma rozhrania", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strThousandsSeparator": "Oddeľovač tisícov", @@ -2118,7 +2110,6 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtIt": "Talianský", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtJa": "Japonsky", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtKo": "Kórejsky ", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLiveComment": "Zobrazenie komentárov", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLo": "Laoský", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLv": "Lotyšský", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtMac": "ako OS X", @@ -2145,12 +2136,6 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacrosDesc": "Zablokovať všetky makrá s upozornením", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin": "ako Windows", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtZh": "Čínsky", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.okButtonText": "Aplikovať", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strDictionaryLanguage": "Jazyk slovníka", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strIgnoreWordsInUPPERCASE": "Ignorovať slová písané iba VEĽKÝMI PÍSMENAMI", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strIgnoreWordsWithNumbers": "Ignorovať slová obsahujúce čísla", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.txtAutoCorrect": "Možnosti automatickej opravy...", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.txtProofing": "Hľadanie chýb", "SSE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Upozornenie", "SSE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "Za pomoci hesla", "SSE.Views.FileMenuPanels.ProtectDoc.strProtect": "Zabezpečiť pracovný list", @@ -2162,9 +2147,6 @@ "SSE.Views.FileMenuPanels.ProtectDoc.txtSigned": "Do tabuľky boli pridané platné podpisy. Tabuľka je chránená pred úpravami.", "SSE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "Niektoré digitálne podpisy v tabuľke sú neplatné alebo ich nebolo možné overiť. Tabuľka je chránená pred úpravami.", "SSE.Views.FileMenuPanels.ProtectDoc.txtView": "Zobraziť podpisy", - "SSE.Views.FileMenuPanels.Settings.txtGeneral": "Všeobecné", - "SSE.Views.FileMenuPanels.Settings.txtPageSettings": "Nastavenie stránky", - "SSE.Views.FileMenuPanels.Settings.txtSpellChecking": "Kontrola pravopisu", "SSE.Views.FormatRulesEditDlg.fillColor": "Farba pozadia", "SSE.Views.FormatRulesEditDlg.notcriticalErrorTitle": "Upozornenie", "SSE.Views.FormatRulesEditDlg.text2Scales": "2 Farebná škála", diff --git a/apps/spreadsheeteditor/main/locale/sl.json b/apps/spreadsheeteditor/main/locale/sl.json index b56d382e0..958e1631b 100644 --- a/apps/spreadsheeteditor/main/locale/sl.json +++ b/apps/spreadsheeteditor/main/locale/sl.json @@ -740,15 +740,11 @@ "SSE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Spremeni pravice dostopa", "SSE.Views.FileMenuPanels.DocumentRights.txtRights": "Osebe, ki imajo pravice", "SSE.Views.FileMenuPanels.MainSettingsGeneral.okButtonText": "Uporabi", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strAutosave": "Vključi samodejno shranjevanje", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthMode": "Co-editing mode", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescFast": "Other users will see your changes at once", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescStrict": "You will need to accept changes before you can see them", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFast": "Fast", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFontRender": "Namigovanje pisave", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocale": "Formula Language", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocaleEx": "Example: SUM; MIN; MAX; COUNT", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strLiveComment": "Vključi možnost živega komentiranja", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strMacrosSettings": "Nastavitve makrojev", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettings": "Regional Settings", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettingsEx": "Example: ", @@ -769,16 +765,12 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEn": "English", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtFr": "Francosko", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtInch": "Palec", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLiveComment": "Živo komentiranje", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtMac": "kot OS X", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNative": "Domači", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPt": "Točka", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRu": "Russian", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin": "kot Windows", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.okButtonText": "Uporabi", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strDictionaryLanguage": "Jezik slovarja", "SSE.Views.FileMenuPanels.ProtectDoc.txtEdit": "Uredi razpredelnico", - "SSE.Views.FileMenuPanels.Settings.txtGeneral": "Splošen", "SSE.Views.FormatRulesEditDlg.fillColor": "Barva ozadja", "SSE.Views.FormatRulesEditDlg.textAutomatic": "Samodejeno", "SSE.Views.FormatRulesEditDlg.textBordersColor": "Barve obrob", diff --git a/apps/spreadsheeteditor/main/locale/sv.json b/apps/spreadsheeteditor/main/locale/sv.json index 01672ed3c..e93ff8259 100644 --- a/apps/spreadsheeteditor/main/locale/sv.json +++ b/apps/spreadsheeteditor/main/locale/sv.json @@ -2063,26 +2063,18 @@ "SSE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Ändra behörigheter", "SSE.Views.FileMenuPanels.DocumentRights.txtRights": "Personer som har behörigheter", "SSE.Views.FileMenuPanels.MainSettingsGeneral.okButtonText": "Tillämpa", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strAutoRecover": "Aktivera automatisk återställning", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strAutosave": "Aktivera spara automatiskt", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthMode": "Redigera samtidigt", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescFast": "Andra användare kommer att se dina ändringar på en gång", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescStrict": "Du måste acceptera ändringar innan du kan se dom", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strDecimalSeparator": "Decimaltecken", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFast": "Snabb", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFontRender": "Fontförslag", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strForcesave": "Lägg till version till lagringen efter att ha klickat på Spara eller CTRL+S", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocale": "Formelspråk", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocaleEx": "SUMMA; MIN; MAX; ANTAL", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strLiveComment": "Aktivera visning av kommentarer", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strMacrosSettings": "Makroinställningar", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPaste": "Klipp ut, kopiera och klistra in", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPasteButton": "Visa knappen Klistra in alternativ när innehållet klistras in", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strR1C1": "Aktivera R1C1-stil", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettings": "Regionala inställningar", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettingsEx": "Exempel:", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strResolvedComment": "Aktivera visning av lösta kommentarer", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strSeparator": "Separator", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strStrict": "Strikt", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strTheme": "Gränssnittstema", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strThousandsSeparator": "Tusentals-separator", @@ -2118,7 +2110,6 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtIt": "Italian", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtJa": "Japanese", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtKo": "Korean", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLiveComment": "Visa kommentarer", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLo": "Lao", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLv": "Latvian", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtMac": "som OS X", @@ -2145,12 +2136,6 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacrosDesc": "Inaktivera alla makron med en avisering", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin": "som Windows", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtZh": "Chinese", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.okButtonText": "Tillämpa", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strDictionaryLanguage": "Rättstavningsspråk", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strIgnoreWordsInUPPERCASE": "Ignorera ord med VERSALER", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strIgnoreWordsWithNumbers": "Ignorera ord med tal", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.txtAutoCorrect": "Inställningar autokorrigering", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.txtProofing": "Korrektur", "SSE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Varning", "SSE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "Med lösenord", "SSE.Views.FileMenuPanels.ProtectDoc.strProtect": "Skydda kalkylblad", @@ -2162,9 +2147,6 @@ "SSE.Views.FileMenuPanels.ProtectDoc.txtSigned": "Giltiga signaturer har lagts till i kalkylbladet. Kalkylarket är skyddat från redigering.", "SSE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "Vissa av de digitala signaturerna i kalkylarket är ogiltiga eller kunde inte verifieras. Kalkylarket är skyddat från redigering.", "SSE.Views.FileMenuPanels.ProtectDoc.txtView": "Visa signaturer", - "SSE.Views.FileMenuPanels.Settings.txtGeneral": "Generell", - "SSE.Views.FileMenuPanels.Settings.txtPageSettings": "Sidinställningar", - "SSE.Views.FileMenuPanels.Settings.txtSpellChecking": "Stavningskontroll", "SSE.Views.FormatRulesEditDlg.fillColor": "Bakgrundsfärg", "SSE.Views.FormatRulesEditDlg.notcriticalErrorTitle": "Varning", "SSE.Views.FormatRulesEditDlg.text2Scales": "2-färgs skala", diff --git a/apps/spreadsheeteditor/main/locale/tr.json b/apps/spreadsheeteditor/main/locale/tr.json index 048323ee7..5e5d6d76d 100644 --- a/apps/spreadsheeteditor/main/locale/tr.json +++ b/apps/spreadsheeteditor/main/locale/tr.json @@ -2052,26 +2052,18 @@ "SSE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Erişim haklarını değiştir", "SSE.Views.FileMenuPanels.DocumentRights.txtRights": "Hakkı olan kişiler", "SSE.Views.FileMenuPanels.MainSettingsGeneral.okButtonText": "Uygula", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strAutoRecover": "Otomatik kaydetmeyi aç", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strAutosave": "Otomatik kaydetmeyi aç", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthMode": "Co-editing mode", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescFast": "Other users will see your changes at once", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescStrict": "You will need to accept changes before you can see them", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strDecimalSeparator": "ondalık ayırıcı", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFast": "Fast", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFontRender": "Yazı Tipi İpucu", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strForcesave": "Kaydet veya Ctrl+S'ye tıkladıktan sonra sürümü depolamaya ekleyin", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocale": "Formula Language", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocaleEx": "Example: SUM; MIN; MAX; COUNT", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strLiveComment": "Canlı yorum yapma seçeneğini aç", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strMacrosSettings": "Makro Ayarları", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPaste": "Kes, kopyala ve yapıştır", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPasteButton": "İçerik yapıştırıldığında Yapıştırma Seçenekleri düğmesini göster", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strR1C1": "R1C1 stilini aç", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettings": "Regional Settings", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettingsEx": "Example: ", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strResolvedComment": "Çözülmüş yorumların görünümünü aç", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strSeparator": "Ayıraç", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strStrict": "Strict", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strTheme": "Arayüz teması", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strThousandsSeparator": "Binlik ayırıcı", @@ -2107,7 +2099,6 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtIt": "Italian", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtJa": "Japanese", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtKo": "Korean", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLiveComment": "Canlı Yorum", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLo": "Lao", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLv": "Letonca", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtMac": "OS X olarak", @@ -2134,12 +2125,6 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacrosDesc": "Bütün macroları uyarı vererek devre dışı bırak", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin": "Windows olarak", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtZh": "Çince", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.okButtonText": "Uygula", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strDictionaryLanguage": "sözlük dili", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strIgnoreWordsInUPPERCASE": "BÜYÜK HARF içindeki kelimeleri yoksay", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strIgnoreWordsWithNumbers": "Sayı içeren kelimeleri yoksay", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.txtAutoCorrect": "Otomatik Düzeltme seçenekleri", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.txtProofing": "Prova", "SSE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Uyarı", "SSE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "Parola ile", "SSE.Views.FileMenuPanels.ProtectDoc.strProtect": "Elektronik Tabloyu Koru", @@ -2151,9 +2136,6 @@ "SSE.Views.FileMenuPanels.ProtectDoc.txtSigned": "Elektronik tabloya geçerli imzalar eklendi. Elektronik tablo, düzenlemeye karşı korumalıdır.", "SSE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "Elektronik tablodaki bazı dijital imzalar geçersiz veya doğrulanamadı. Elektronik tablo, düzenlemeye karşı korumalıdır.", "SSE.Views.FileMenuPanels.ProtectDoc.txtView": "İmzaları görüntüle", - "SSE.Views.FileMenuPanels.Settings.txtGeneral": "Genel", - "SSE.Views.FileMenuPanels.Settings.txtPageSettings": "Sayfa Ayarları", - "SSE.Views.FileMenuPanels.Settings.txtSpellChecking": "Yazım denetimi", "SSE.Views.FormatRulesEditDlg.fillColor": "Dolgu Rengi", "SSE.Views.FormatRulesEditDlg.notcriticalErrorTitle": "Dikkat", "SSE.Views.FormatRulesEditDlg.text2Scales": "2 Renk skalası", diff --git a/apps/spreadsheeteditor/main/locale/uk.json b/apps/spreadsheeteditor/main/locale/uk.json index d397e5d3a..62a9486ee 100644 --- a/apps/spreadsheeteditor/main/locale/uk.json +++ b/apps/spreadsheeteditor/main/locale/uk.json @@ -2063,26 +2063,18 @@ "SSE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Змінити права доступу", "SSE.Views.FileMenuPanels.DocumentRights.txtRights": "Особи, які мають права", "SSE.Views.FileMenuPanels.MainSettingsGeneral.okButtonText": "Застосувати", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strAutoRecover": "Увімкніть автозапуск", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strAutosave": "Увімкніть автоматичне збереження", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthMode": "Режим спільного редагування", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescFast": "Інші користувачі побачать ваші зміни одразу", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescStrict": "Вам потрібно буде прийняти зміни, перш ніж побачити їх", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strDecimalSeparator": "Десятковий роздільник", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFast": "Швидко", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFontRender": "Підказки шрифта", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strForcesave": "Додавати версію до сховища після натискання кнопки Зберегти або Ctrl+S", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocale": "Мова формули", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocaleEx": "Приклад: SUM; ХВ; MAX; РАХУВАТИ", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strLiveComment": "Увімкніть показ коментарів", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strMacrosSettings": "Налаштування макросів", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPaste": "Вирізання, копіювання та вставка", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPasteButton": "Показувати кнопку Налаштування вставки при вставці вмісту", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strR1C1": "Включити стиль R1C1", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettings": "Регіональні налаштування", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettingsEx": "Приклад:", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strResolvedComment": "Увімкніть відображення усунених зауважень", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strSeparator": "Розділювач", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strStrict": "Суворий", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strTheme": "Тема інтерфейсу", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strThousandsSeparator": "Роздільник тисяч", @@ -2118,7 +2110,6 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtIt": "Італійська", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtJa": "Японська", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtKo": "Корейська", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLiveComment": "Дісплей коментування", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLo": "Лаоська", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLv": "Латиська", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtMac": "як OS X", @@ -2145,12 +2136,6 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacrosDesc": "Вимкнути всі макроси зі сповіщенням", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin": "як Windows", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtZh": "Китайська", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.okButtonText": "Застосувати", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strDictionaryLanguage": "Мова словника", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strIgnoreWordsInUPPERCASE": "Пропускати слова з ВЕЛИКИХ БУКВ", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strIgnoreWordsWithNumbers": "Пропускати слова з цифрами", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.txtAutoCorrect": "Параметри автозаміни...", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.txtProofing": "Правопис", "SSE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Увага", "SSE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "За допомогою паролю", "SSE.Views.FileMenuPanels.ProtectDoc.strProtect": "Захистити електронну таблицю", @@ -2162,9 +2147,6 @@ "SSE.Views.FileMenuPanels.ProtectDoc.txtSigned": "До електронної таблиці додано дійсні підписи. Таблиця захищена від редагування.", "SSE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "Деякі цифрові підписи в електронній таблиці є недійсними або їх не можна перевірити. Таблиця захищена від редагування.", "SSE.Views.FileMenuPanels.ProtectDoc.txtView": "Перегляд підписів", - "SSE.Views.FileMenuPanels.Settings.txtGeneral": "Загальні", - "SSE.Views.FileMenuPanels.Settings.txtPageSettings": "Налаштування сторінки", - "SSE.Views.FileMenuPanels.Settings.txtSpellChecking": "Перевірка орфографії", "SSE.Views.FormatRulesEditDlg.fillColor": "Колір заливки", "SSE.Views.FormatRulesEditDlg.notcriticalErrorTitle": "Увага", "SSE.Views.FormatRulesEditDlg.text2Scales": "Двоколірна шкала", diff --git a/apps/spreadsheeteditor/main/locale/vi.json b/apps/spreadsheeteditor/main/locale/vi.json index 3018c4b51..f7e6d134b 100644 --- a/apps/spreadsheeteditor/main/locale/vi.json +++ b/apps/spreadsheeteditor/main/locale/vi.json @@ -1045,20 +1045,14 @@ "SSE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Thay đổi quyền truy cập", "SSE.Views.FileMenuPanels.DocumentRights.txtRights": "Những cá nhân có quyền", "SSE.Views.FileMenuPanels.MainSettingsGeneral.okButtonText": "Áp dụng", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strAutoRecover": "Bật tự động khôi phục", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strAutosave": "Bật tự động lưu", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthMode": "Chế độ đồng chỉnh sửa", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescFast": "Những người dùng khác sẽ cùng lúc thấy các thay đổi của bạn", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescStrict": "Bạn sẽ cần chấp nhận thay đổi trước khi có thể xem chúng", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFast": "Nhanh", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFontRender": "Phông chữ gợi ý", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strForcesave": "Luôn lưu vào server (hoặc lưu vào server khi đóng tài liệu)", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocale": "Ngôn ngữ công thức", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocaleEx": "Ví dụ: SUM; MIN; MAX; COUNT", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strLiveComment": "Bật hiển thị bình luận", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettings": "Thiết lập khu vực", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettingsEx": "Ví dụ:", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strResolvedComment": "Bật hiển thị các bình luận đã giải quyết", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strStrict": "Nghiêm ngặt", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strUnit": "Đơn vị đo lường", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strZoom": "Giá trị Phóng to Mặc định", @@ -1074,15 +1068,12 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCm": "Centimet", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEn": "Tiếng anh", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtInch": "Inch", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLiveComment": "Hiển thị đang bình luận", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtMac": "như OS X", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNative": "Bản địa", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPl": "Đánh bóng", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPt": "Điểm", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRu": "Nga", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin": "như Windows", - "SSE.Views.FileMenuPanels.Settings.txtGeneral": "Tổng quát", - "SSE.Views.FileMenuPanels.Settings.txtPageSettings": "Cài đặt trang", "SSE.Views.FormatRulesEditDlg.textNewColor": "Màu tùy chỉnh", "SSE.Views.FormatSettingsDialog.textCategory": "Danh mục", "SSE.Views.FormatSettingsDialog.textDecimal": "Thập phân", diff --git a/apps/spreadsheeteditor/main/locale/zh-TW.json b/apps/spreadsheeteditor/main/locale/zh-TW.json index 75b895d9d..b411dc530 100644 --- a/apps/spreadsheeteditor/main/locale/zh-TW.json +++ b/apps/spreadsheeteditor/main/locale/zh-TW.json @@ -158,7 +158,6 @@ "Common.Views.AutoCorrectDialog.textAutoFormat": "鍵入時自動調整規格", "Common.Views.AutoCorrectDialog.textBy": "通過", "Common.Views.AutoCorrectDialog.textDelete": "刪除", - "Common.Views.AutoCorrectDialog.textFLSentence": "英文句子第一個字母大寫", "Common.Views.AutoCorrectDialog.textHyperlink": "網絡路徑超連結", "Common.Views.AutoCorrectDialog.textMathCorrect": "數學自動更正", "Common.Views.AutoCorrectDialog.textNewRowCol": "在表格中包括新的行和列", @@ -1626,9 +1625,7 @@ "SSE.Views.ChartSettingsDlg.textCustom": "自訂", "SSE.Views.ChartSettingsDlg.textDataColumns": "在列中", "SSE.Views.ChartSettingsDlg.textDataLabels": "數據標籤", - "SSE.Views.ChartSettingsDlg.textDataRange": "數據範圍", "SSE.Views.ChartSettingsDlg.textDataRows": "成排", - "SSE.Views.ChartSettingsDlg.textDataSeries": "數據系列", "SSE.Views.ChartSettingsDlg.textDisplayLegend": "顯示圖例", "SSE.Views.ChartSettingsDlg.textEmptyCells": "隱藏和清空單元格", "SSE.Views.ChartSettingsDlg.textEmptyLine": "用線連接數據點", @@ -1643,9 +1640,7 @@ "SSE.Views.ChartSettingsDlg.textHigh": "高", "SSE.Views.ChartSettingsDlg.textHorAxis": "橫軸", "SSE.Views.ChartSettingsDlg.textHorAxisSec": "副横轴", - "SSE.Views.ChartSettingsDlg.textHorGrid": "水平網格線", "SSE.Views.ChartSettingsDlg.textHorizontal": "水平", - "SSE.Views.ChartSettingsDlg.textHorTitle": "水平軸標題", "SSE.Views.ChartSettingsDlg.textHundredMil": "100 000 000", "SSE.Views.ChartSettingsDlg.textHundreds": "幾百個", "SSE.Views.ChartSettingsDlg.textHundredThousands": "100 000", @@ -1697,11 +1692,9 @@ "SSE.Views.ChartSettingsDlg.textSeparator": "數據標籤分隔符", "SSE.Views.ChartSettingsDlg.textSeriesName": "系列名稱", "SSE.Views.ChartSettingsDlg.textShow": "顯示", - "SSE.Views.ChartSettingsDlg.textShowAxis": "顯示軸", "SSE.Views.ChartSettingsDlg.textShowBorders": "顯示圖表邊框", "SSE.Views.ChartSettingsDlg.textShowData": "在隱藏的行和列中顯示數據", "SSE.Views.ChartSettingsDlg.textShowEmptyCells": "將空單元格顯示為", - "SSE.Views.ChartSettingsDlg.textShowGrid": "網格線", "SSE.Views.ChartSettingsDlg.textShowSparkAxis": "顯示軸", "SSE.Views.ChartSettingsDlg.textShowValues": "顯示圖表值", "SSE.Views.ChartSettingsDlg.textSingle": "單一走勢圖", @@ -1721,13 +1714,10 @@ "SSE.Views.ChartSettingsDlg.textTwoCell": "移動並調整單元格大小", "SSE.Views.ChartSettingsDlg.textType": "類型", "SSE.Views.ChartSettingsDlg.textTypeData": "類型和數據", - "SSE.Views.ChartSettingsDlg.textTypeStyle": "圖表類型,樣式和
數據範圍", "SSE.Views.ChartSettingsDlg.textUnits": "顯示單位", "SSE.Views.ChartSettingsDlg.textValue": "值", "SSE.Views.ChartSettingsDlg.textVertAxis": "垂直軸", "SSE.Views.ChartSettingsDlg.textVertAxisSec": "副纵轴", - "SSE.Views.ChartSettingsDlg.textVertGrid": "垂直網格線", - "SSE.Views.ChartSettingsDlg.textVertTitle": "垂直軸標題", "SSE.Views.ChartSettingsDlg.textXAxisTitle": "X軸標題", "SSE.Views.ChartSettingsDlg.textYAxisTitle": "Y軸標題", "SSE.Views.ChartSettingsDlg.textZero": "零", @@ -2073,26 +2063,18 @@ "SSE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "更改存取權限", "SSE.Views.FileMenuPanels.DocumentRights.txtRights": "有權利的人", "SSE.Views.FileMenuPanels.MainSettingsGeneral.okButtonText": "套用", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strAutoRecover": "開啟自動恢復", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strAutosave": "打開自動保存", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthMode": "共同編輯模式", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescFast": "其他用戶將立即看到您的更改", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescStrict": "您需要先接受更改,然後才能看到它們", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strDecimalSeparator": "小數點分隔符", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFast": "快", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFontRender": "字體提示", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strForcesave": "儲存時同時上傳到伺服器(否則在文檔關閉時才上傳)", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocale": "公式語言", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocaleEx": "示例:SUM; MIN; MAX;COUNT", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strLiveComment": "開啟評論顯示", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strMacrosSettings": "巨集設定", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPaste": "剪切,複製和粘貼", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPasteButton": "粘貼內容時顯示“粘貼選項”按鈕", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strR1C1": "開啟R1C1樣式", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettings": "區域設置", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettingsEx": "例:", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strResolvedComment": "打開顯示已解決的評論", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strSeparator": "分隔器", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strStrict": "嚴格", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strTheme": "介面主題", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strThousandsSeparator": "千位分隔符", @@ -2128,7 +2110,6 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtIt": "義大利文", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtJa": "日文", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtKo": "韓文", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLiveComment": "評論顯示", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLo": "老撾語", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLv": "拉脫維亞語", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtMac": "作為OS X", @@ -2155,12 +2136,6 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacrosDesc": "以提示停用全部巨集", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin": "作為Windows", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtZh": "中文", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.okButtonText": "套用", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strDictionaryLanguage": "字典語言", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strIgnoreWordsInUPPERCASE": "忽略大寫單詞", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strIgnoreWordsWithNumbers": "忽略帶數字的單詞", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.txtAutoCorrect": "自動更正選項...", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.txtProofing": "打樣", "SSE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "警告", "SSE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "帶密碼", "SSE.Views.FileMenuPanels.ProtectDoc.strProtect": "保護電子表格", @@ -2172,9 +2147,6 @@ "SSE.Views.FileMenuPanels.ProtectDoc.txtSigned": "有效簽名已添加到電子表格中。電子表格受到保護,無法編輯。", "SSE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "電子表格中的某些數字簽名無效或無法驗證。電子表格受到保護,無法編輯。", "SSE.Views.FileMenuPanels.ProtectDoc.txtView": "查看簽名", - "SSE.Views.FileMenuPanels.Settings.txtGeneral": "一般", - "SSE.Views.FileMenuPanels.Settings.txtPageSettings": "頁面設置", - "SSE.Views.FileMenuPanels.Settings.txtSpellChecking": "拼字檢查", "SSE.Views.FormatRulesEditDlg.fillColor": "填色", "SSE.Views.FormatRulesEditDlg.notcriticalErrorTitle": "警告", "SSE.Views.FormatRulesEditDlg.text2Scales": "2色標", diff --git a/apps/spreadsheeteditor/main/locale/zh.json b/apps/spreadsheeteditor/main/locale/zh.json index 288fb0baf..73cc254c7 100644 --- a/apps/spreadsheeteditor/main/locale/zh.json +++ b/apps/spreadsheeteditor/main/locale/zh.json @@ -2063,26 +2063,18 @@ "SSE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "更改访问权限", "SSE.Views.FileMenuPanels.DocumentRights.txtRights": "有权利的人", "SSE.Views.FileMenuPanels.MainSettingsGeneral.okButtonText": "应用", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strAutoRecover": "启用自动恢复", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strAutosave": "打开自动保存", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthMode": "共同编辑模式", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescFast": "其他用户将一次看到您的更改", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescStrict": "您将需要接受更改才能看到它们", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strDecimalSeparator": "小数分隔符", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFast": "快速", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFontRender": "字体微调方式", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strForcesave": "单击“保存”或Ctrl+S之后版本添加到存储", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocale": "公式语言", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocaleEx": "例:SUM; MIN; MAX; COUNT", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strLiveComment": "显示批注", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strMacrosSettings": "宏设置", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPaste": "剪切、复制、黏贴", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPasteButton": "粘贴内容时显示“粘贴选项”按钮", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strR1C1": "打开R1C1风格", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettings": "区域设置", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettingsEx": "例: ", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strResolvedComment": "显示已解决批注", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strSeparator": "分隔符", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strStrict": "严格", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strTheme": "界面主题", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strThousandsSeparator": "千位分隔符", @@ -2118,7 +2110,6 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtIt": "意大利语", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtJa": "日语", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtKo": "韩语", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLiveComment": "批注显示", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLo": "老挝语", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLv": "拉脱维亚语", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtMac": "仿照 OS X", @@ -2145,12 +2136,6 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacrosDesc": "解除所有带通知的宏", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin": "仿照 Windows", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtZh": "中文", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.okButtonText": "应用", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strDictionaryLanguage": "词典语言", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strIgnoreWordsInUPPERCASE": "忽略大写单词", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strIgnoreWordsWithNumbers": "忽略带数字的单词", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.txtAutoCorrect": "自动修正选项...", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.txtProofing": "校对", "SSE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "警告", "SSE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "使用密码", "SSE.Views.FileMenuPanels.ProtectDoc.strProtect": "保护电子表格", @@ -2162,9 +2147,6 @@ "SSE.Views.FileMenuPanels.ProtectDoc.txtSigned": "有效签名已添加到电子表格中。该电子表格已限制编辑。", "SSE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "电子表格中的某些数字签名无效或无法验证。该电子表格已限制编辑。", "SSE.Views.FileMenuPanels.ProtectDoc.txtView": "查看签名", - "SSE.Views.FileMenuPanels.Settings.txtGeneral": "常规", - "SSE.Views.FileMenuPanels.Settings.txtPageSettings": "页面设置", - "SSE.Views.FileMenuPanels.Settings.txtSpellChecking": "拼写检查", "SSE.Views.FormatRulesEditDlg.fillColor": "填充颜色", "SSE.Views.FormatRulesEditDlg.notcriticalErrorTitle": "警告", "SSE.Views.FormatRulesEditDlg.text2Scales": "双色刻度", diff --git a/apps/spreadsheeteditor/mobile/locale/be.json b/apps/spreadsheeteditor/mobile/locale/be.json index b6cb82ab2..b4d3132cd 100644 --- a/apps/spreadsheeteditor/mobile/locale/be.json +++ b/apps/spreadsheeteditor/mobile/locale/be.json @@ -258,8 +258,8 @@ "textSheet": "Sheet", "textSheetName": "Sheet Name", "textUnhide": "Unhide", - "textWarnDeleteSheet": "The worksheet maybe has data. Proceed operation?", - "textTabColor": "Tab Color" + "textTabColor": "Tab Color", + "textWarnDeleteSheet": "The worksheet maybe has data. Proceed operation?" }, "View": { "Add": { @@ -553,6 +553,7 @@ "textFormulaLanguage": "Formula Language", "textFormulas": "Formulas", "textHelp": "Help", + "textFeedback": "Feedback & Support", "textHideGridlines": "Hide Gridlines", "textHideHeadings": "Hide Headings", "textHighlightRes": "Highlight results", @@ -632,8 +633,7 @@ "txtSemicolon": "Semicolon", "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?", - "textFeedback": "Feedback & Support" + "warnDownloadAs": "If you continue saving in this format all features except the text will be lost.
Are you sure you want to continue?" } }, "LongActions": { diff --git a/apps/spreadsheeteditor/mobile/locale/ca.json b/apps/spreadsheeteditor/mobile/locale/ca.json index 996f72bbd..3635a4c7c 100644 --- a/apps/spreadsheeteditor/mobile/locale/ca.json +++ b/apps/spreadsheeteditor/mobile/locale/ca.json @@ -299,7 +299,7 @@ "textSheet": "Full", "textSheetName": "Nom del full", "textUnhide": "Mostrar", - "textWarnDeleteSheet": "El full de càlcul pot tenir dades. Vols continuar amb l'operació?", + "textWarnDeleteSheet": "El full de càlcul pot tenir dades. Voleu continuar amb l'operació?", "textTabColor": "Tab Color" }, "Toolbar": { @@ -679,7 +679,7 @@ "txtSemicolon": "Punt i coma", "txtSpace": "Espai", "txtTab": "Pestanya", - "warnDownloadAs": "Si continues i deses en aquest format, es perdran totes les característiques, excepte el text.
Vols continuar?", + "warnDownloadAs": "Si continueu i deseu en aquest format, es perdran totes les característiques, excepte el text.
Voleu continuar?", "textFeedback": "Feedback & Support" } } diff --git a/apps/spreadsheeteditor/mobile/locale/da.json b/apps/spreadsheeteditor/mobile/locale/da.json index 57554338d..d46b2b02a 100644 --- a/apps/spreadsheeteditor/mobile/locale/da.json +++ b/apps/spreadsheeteditor/mobile/locale/da.json @@ -299,8 +299,8 @@ "textSheet": "Sheet", "textSheetName": "Sheet Name", "textUnhide": "Unhide", - "textWarnDeleteSheet": "The worksheet maybe has data. Proceed operation?", - "textTabColor": "Tab Color" + "textTabColor": "Tab Color", + "textWarnDeleteSheet": "The worksheet maybe has data. Proceed operation?" }, "Toolbar": { "leaveButtonText": "Forlad denne side", @@ -648,6 +648,7 @@ "advDRMEnterPassword": "Your password, please:", "notcriticalErrorTitle": "Warning", "textDarkTheme": "Dark Theme", + "textFeedback": "Feedback & Support", "textNoTextFound": "Text not found", "textReplace": "Replace", "textReplaceAll": "Replace All", @@ -679,8 +680,7 @@ "txtScheme21": "Verve", "txtSemicolon": "Semicolon", "txtSpace": "Space", - "txtTab": "Tab", - "textFeedback": "Feedback & Support" + "txtTab": "Tab" } } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/ko.json b/apps/spreadsheeteditor/mobile/locale/ko.json index cb6cddd74..f4fb73f69 100644 --- a/apps/spreadsheeteditor/mobile/locale/ko.json +++ b/apps/spreadsheeteditor/mobile/locale/ko.json @@ -68,6 +68,7 @@ "Main": { "criticalErrorTitle": "오류", "errorAccessDeny": "권한이 없는 작업을 수행하려고 합니다.
관리자에게 문의하십시오.", + "errorOpensource": "무료 커뮤니티 버전을 사용하는 경우 열린 파일만 볼 수 있습니다. 모바일 온라인 에디터 기능을 사용하기 위해서는 유료 라이선스가 필요합니다.", "errorProcessSaveResult": "저장이 실패했습니다.", "errorServerVersion": "편집기 버전이 업데이트되었습니다. 페이지가 다시로드되어 변경 사항이 적용됩니다.", "errorUpdateVersion": "파일 버전이 변경되었습니다. 페이지가 다시로드됩니다.", @@ -142,9 +143,14 @@ "textGuest": "게스트", "textHasMacros": "파일에 자동 매크로가 포함되어 있습니다.
매크로를 실행 하시겠습니까?", "textNo": "아니오", + "textNoChoices": "셀을 채울 선택이 없습니다.
열의 텍스트 값만 대체 할 수 있습니다.", "textNoLicenseTitle": "라이센스 수를 제한했습니다.", + "textNoTextFound": "텍스트를 찾을 수 없습니다", + "textOk": "확정", "textPaidFeature": "유료기능", "textRemember": "선택사항을 저장", + "textReplaceSkipped": "대체가 이루어졌습니다. {0} 건은 건너 뛰었습니다.", + "textReplaceSuccess": "검색이 완료되었습니다. {0} 횟수가 대체되었습니다. ", "textYes": "확인", "titleServerVersion": "편집기가 업데이트되었습니다", "titleUpdateVersion": "버전이 변경되었습니다.", @@ -154,13 +160,7 @@ "warnLicenseUsersExceeded": "편집자 사용자 한도인 %1명에 도달했습니다. 자세한 내용은 관리자에게 문의하십시오.", "warnNoLicense": "% 1 편집 연결 수 제한에 도달했습니다. 이 문서는 보기 모드로 열립니다. 개인적인 업그레이드 사항은 % 1 영업팀에 연락하십시오.", "warnNoLicenseUsers": "ONLYOFFICE 편집자의이 버전은 동시 사용자에게 일정한 제한이 있습니다.
더 필요한 것이 있으면 현재 라이센스를 업그레이드하거나 상용 라이센스를 구입하십시오.", - "warnProcessRightsChange": "파일을 수정할 수 있는 권한이 없습니다.", - "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", - "textNoChoices": "There are no choices for filling the cell.
Only text values from the column can be selected for replacement.", - "textNoTextFound": "Text not found", - "textOk": "Ok", - "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}" + "warnProcessRightsChange": "파일을 수정할 수 있는 권한이 없습니다." } }, "Error": { @@ -287,8 +287,12 @@ "textErrNotEmpty": "시트 이름은 비워둘 수 없습니다.", "textErrorLastSheet": "통합 문서에는 표시되는 워크시트가 하나 이상 있어야 합니다.", "textErrorRemoveSheet": "워크 시트를 삭제할 수 없습니다.", + "textHidden": "숨김", "textHide": "숨기기", "textMore": "자세히", + "textMove": "이동", + "textMoveBefore": "시트 이전으로 이동", + "textMoveToEnd": "(끝으로 이동)", "textOk": "확인", "textRename": "이름 바꾸기", "textRenameSheet": "시트 이름 바꾸기", @@ -296,10 +300,6 @@ "textSheetName": "시트 이름", "textUnhide": "숨기기 해제", "textWarnDeleteSheet": "워크시트에 데이터가 포함될 수 있습니다. 진행 하시겠습니까?", - "textHidden": "Hidden", - "textMove": "Move", - "textMoveBefore": "Move before sheet", - "textMoveToEnd": "(Move to end)", "textTabColor": "Tab Color" }, "Toolbar": { @@ -343,6 +343,7 @@ "textLink": "링크", "textLinkSettings": "링크 설정", "textLinkType": "링크 유형", + "textOk": "확정", "textOther": "기타", "textPictureFromLibrary": "그림 라이브러리에서", "textPictureFromURL": "URL로 부터 그림 가져오기", @@ -364,7 +365,6 @@ "textAllTableHint": "Returns the entire contents of the table or specified table columns including column headers, data and total rows", "textDataTableHint": "Returns the data cells of the table or specified table columns", "textHeadersTableHint": "Returns the column headers for the table or specified table columns", - "textOk": "Ok", "textThisRowHint": "Choose only this row of the specified column", "textTotalsTableHint": "Returns the total rows for the table or specified table columns" }, @@ -385,6 +385,7 @@ "textAngleClockwise": "시계 방향으로 회전", "textAngleCounterclockwise": "시계 반대 방향 회전", "textAuto": "자동", + "textAutomatic": "자동", "textAxisCrosses": "교차축", "textAxisOptions": "축 옵션", "textAxisPosition": "축 위치", @@ -485,6 +486,7 @@ "textNoOverlay": "오버레이 없음", "textNotUrl": "이 필드는 \"http://www.example.com\"형식의 URL이어야합니다.", "textNumber": "숫자", + "textOk": "확정", "textOnTickMarks": "눈금 표시", "textOpacity": "투명도", "textOut": "바깥쪽", @@ -546,9 +548,7 @@ "textYen": "엔", "txtNotUrl": "이 필드는 \"http://www.example.com\"형식의 URL이어야합니다.", "txtSortHigh2Low": "가장 높은 것부터 가장 낮은 것부터 정렬", - "txtSortLow2High": "오름차순 정렬", - "textAutomatic": "Automatic", - "textOk": "Ok" + "txtSortLow2High": "오름차순 정렬" }, "Settings": { "advCSVOptions": "CSV 옵션 선택", diff --git a/apps/spreadsheeteditor/mobile/locale/lo.json b/apps/spreadsheeteditor/mobile/locale/lo.json index c864eb431..3c730dd59 100644 --- a/apps/spreadsheeteditor/mobile/locale/lo.json +++ b/apps/spreadsheeteditor/mobile/locale/lo.json @@ -299,10 +299,8 @@ "textSheet": "ແຜ່ນງານ", "textSheetName": "ຊື່ແຜ່ນເຈ້ຍ", "textUnhide": "ເປີດເຜີຍ", - "textMoveBack": "Move back", - "textMoveForward": "Move forward", - "textTabColor": "Tab Color", - "textWarnDeleteSheet": "ແຜ່ນວຽກອາດມີຂໍ້ມູນ. ດໍາເນີນການດໍາເນີນງານບໍ?" + "textWarnDeleteSheet": "ແຜ່ນວຽກອາດມີຂໍ້ມູນ. ດໍາເນີນການດໍາເນີນງານບໍ?", + "textTabColor": "Tab Color" }, "Toolbar": { "dlgLeaveMsgText": "ທ່ານມີການປ່ຽນແປງທີ່ຍັງບໍ່ໄດ້ບັນທຶກໄວ້ໃນເອກະສານນີ້. ຄລິກທີ່ 'ຢູ່ໃນໜ້ານີ້' ເພື່ອລໍຖ້າການບັນທຶກອັດຕະໂນມັດ. ຄລິກ 'ອອກຈາກໜ້ານີ້' ເພື່ອຍົກເລີກການປ່ຽນແປງທີ່ບໍ່ໄດ້ບັນທຶກໄວ້ທັງໝົດ.", @@ -681,8 +679,8 @@ "txtSemicolon": "ຈ້ຳຈຸດ", "txtSpace": "ຍະຫວ່າງ", "txtTab": "ແທບ", - "textFeedback": "Feedback & Support", - "warnDownloadAs": "ຖ້າທ່ານສືບຕໍ່ບັນທຶກໃນຮູບແບບນີ້ທຸກລັກສະນະ ຍົກເວັ້ນຂໍ້ຄວາມຈະຫາຍໄປ.
ທ່ານແນ່ໃຈບໍ່ວ່າທ່ານຕ້ອງການດໍາເນີນຕໍ່?" + "warnDownloadAs": "ຖ້າທ່ານສືບຕໍ່ບັນທຶກໃນຮູບແບບນີ້ທຸກລັກສະນະ ຍົກເວັ້ນຂໍ້ຄວາມຈະຫາຍໄປ.
ທ່ານແນ່ໃຈບໍ່ວ່າທ່ານຕ້ອງການດໍາເນີນຕໍ່?", + "textFeedback": "Feedback & Support" } } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/ru.json b/apps/spreadsheeteditor/mobile/locale/ru.json index 7b87aeb68..f68118e11 100644 --- a/apps/spreadsheeteditor/mobile/locale/ru.json +++ b/apps/spreadsheeteditor/mobile/locale/ru.json @@ -679,7 +679,7 @@ "txtSemicolon": "Точка с запятой", "txtSpace": "Пробел", "txtTab": "Табуляция", - "warnDownloadAs": "Если вы продолжите сохранение в этот формат, весь функционал, кроме текста, будет потерян.
Вы действительно хотите продолжить?", + "warnDownloadAs": "Если Вы продолжите сохранение в этот формат, вcя функциональность, кроме текста, будет потеряна.
Вы действительно хотите продолжить?", "textFeedback": "Feedback & Support" } } diff --git a/apps/spreadsheeteditor/mobile/locale/sk.json b/apps/spreadsheeteditor/mobile/locale/sk.json index e2572631b..c589527c3 100644 --- a/apps/spreadsheeteditor/mobile/locale/sk.json +++ b/apps/spreadsheeteditor/mobile/locale/sk.json @@ -278,9 +278,6 @@ "waitText": "Prosím čakajte..." }, "Statusbar": { - "textMoveBack": "Move back", - "textMoveForward": "Move forward", - "textTabColor": "Tab Color", "notcriticalErrorTitle": "Upozornenie", "textCancel": "Zrušiť", "textDelete": "Odstrániť", @@ -302,7 +299,8 @@ "textSheet": "List", "textSheetName": "Názov listu", "textUnhide": "Odkryť", - "textWarnDeleteSheet": "Pracovný hárok môže obsahovať údaje. Pokračovať v operácii?" + "textWarnDeleteSheet": "Pracovný hárok môže obsahovať údaje. Pokračovať v operácii?", + "textTabColor": "Tab Color" }, "Toolbar": { "dlgLeaveMsgText": "V tomto dokumente máte neuložené zmeny. Kliknite na „Zostať na tejto stránke“ a počkajte na automatické uloženie. Kliknutím na „Opustiť túto stránku“ zahodíte všetky neuložené zmeny.", @@ -659,7 +657,6 @@ "txtScheme1": "Kancelária", "txtScheme10": "Medián", "txtScheme11": "Metro", - "textFeedback": "Feedback & Support", "txtScheme12": "Modul", "txtScheme13": "Opulentný", "txtScheme14": "Výklenok", @@ -682,7 +679,8 @@ "txtSemicolon": "Bodkočiarka", "txtSpace": "Priestor", "txtTab": "Tabulátor", - "warnDownloadAs": "Ak budete pokračovať v ukladaní v tomto formáte, všetky funkcie okrem textu sa stratia.
Ste si istý, že chcete pokračovať?" + "warnDownloadAs": "Ak budete pokračovať v ukladaní v tomto formáte, všetky funkcie okrem textu sa stratia.
Ste si istý, že chcete pokračovať?", + "textFeedback": "Feedback & Support" } } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/src/controller/Main.jsx b/apps/spreadsheeteditor/mobile/src/controller/Main.jsx index 0b7925cf3..76ab31109 100644 --- a/apps/spreadsheeteditor/mobile/src/controller/Main.jsx +++ b/apps/spreadsheeteditor/mobile/src/controller/Main.jsx @@ -171,8 +171,11 @@ class MainController extends Component { docInfo.put_Lang(this.editorConfig.lang); docInfo.put_Mode(this.editorConfig.mode); - if (typeof this.editorConfig.coEditing == 'object' && this.editorConfig.coEditing.mode!==undefined) - docInfo.put_CoEditingMode(this.editorConfig.coEditing.mode); + // var coEditMode = !(this.editorConfig.coEditing && typeof this.editorConfig.coEditing == 'object') ? 'fast' : // fast by default + // this.editorConfig.mode === 'view' && this.editorConfig.coEditing.change!==false ? 'fast' : // if can change mode in viewer - set fast for using live viewer + // this.editorConfig.coEditing.mode || 'fast'; + // docInfo.put_CoEditingMode(coEditMode); + docInfo.put_CoEditingMode('strict'); // need to change!!! const appOptions = this.props.storeAppOptions; let enable = !appOptions.customization || (appOptions.customization.macros !== false); diff --git a/build/common.json b/build/common.json index 3e7f7220d..5b56517c8 100644 --- a/build/common.json +++ b/build/common.json @@ -113,7 +113,7 @@ { "expand": true, "cwd": "../apps/common/main/resources/img", - "src": "**/*_s.svg", + "src": "**/*.svg", "dest": "../deploy/web-apps/apps/common/main/resources/img" } ] diff --git a/build/package-lock.json b/build/package-lock.json index 8c5946751..cc9a7f95e 100644 --- a/build/package-lock.json +++ b/build/package-lock.json @@ -29,13 +29,13 @@ "iconv-lite": "^0.6.3", "less-plugin-clean-css": "1.5.1", "lodash": "^4.17.21", + "terser": "^5.12.1", "vinyl-fs": "^3.0.3" }, "devDependencies": { "chai": "1.9.1", "grunt-mocha": "^1.0.0", - "mocha": "^9.2.0", - "terser": "^5.12.1" + "mocha": "^9.2.0" } }, "node_modules/@ampproject/remapping": { diff --git a/build/package.json b/build/package.json index 3ab1f3efa..b8d3f8f6f 100644 --- a/build/package.json +++ b/build/package.json @@ -25,10 +25,10 @@ "iconv-lite": "^0.6.3", "less-plugin-clean-css": "1.5.1", "lodash": "^4.17.21", + "terser": "^5.12.1", "vinyl-fs": "^3.0.3" }, "devDependencies": { - "terser": "^5.12.1", "chai": "1.9.1", "grunt-mocha": "^1.0.0", "mocha": "^9.2.0"