From 97755f0d79d87fec2167871c9dd1d7b4c6eff10b Mon Sep 17 00:00:00 2001 From: ShimaginAndrey Date: Wed, 29 Sep 2021 11:17:14 +0300 Subject: [PATCH 01/67] [DE PE SSE] Fix Bug 51652 --- .../mobile/src/view/settings/DocumentSettings.jsx | 2 +- .../mobile/src/view/settings/PresentationSettings.jsx | 2 +- .../mobile/src/view/settings/SpreadsheetSettings.jsx | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/documenteditor/mobile/src/view/settings/DocumentSettings.jsx b/apps/documenteditor/mobile/src/view/settings/DocumentSettings.jsx index dd620d449..87d99925f 100644 --- a/apps/documenteditor/mobile/src/view/settings/DocumentSettings.jsx +++ b/apps/documenteditor/mobile/src/view/settings/DocumentSettings.jsx @@ -176,7 +176,7 @@ const PageDocumentColorSchemes = props => { onChange={() => { if(index !== curScheme) { setScheme(index); - props.onColorSchemeChange(index); + setTimeout(() => props.onColorSchemeChange(index), 10); }; }}>
diff --git a/apps/presentationeditor/mobile/src/view/settings/PresentationSettings.jsx b/apps/presentationeditor/mobile/src/view/settings/PresentationSettings.jsx index 0f5b4d39d..d34cee681 100644 --- a/apps/presentationeditor/mobile/src/view/settings/PresentationSettings.jsx +++ b/apps/presentationeditor/mobile/src/view/settings/PresentationSettings.jsx @@ -58,7 +58,7 @@ const PagePresentationColorSchemes = props => { onChange={() => { if(index !== curScheme) { setScheme(index); - props.onColorSchemeChange(index); + setTimeout(() => props.onColorSchemeChange(index), 10); }; }}>
diff --git a/apps/spreadsheeteditor/mobile/src/view/settings/SpreadsheetSettings.jsx b/apps/spreadsheeteditor/mobile/src/view/settings/SpreadsheetSettings.jsx index be2a38fee..867460a86 100644 --- a/apps/spreadsheeteditor/mobile/src/view/settings/SpreadsheetSettings.jsx +++ b/apps/spreadsheeteditor/mobile/src/view/settings/SpreadsheetSettings.jsx @@ -31,7 +31,7 @@ const PageSpreadsheetColorSchemes = props => { onChange={() => { if(index !== curScheme) { setScheme(index); - props.onColorSchemeChange(index); + setTimeout(() => props.onColorSchemeChange(index), 15); }; }}>
From ba27f4d38ad6964ba3c60dd62dea571264948f12 Mon Sep 17 00:00:00 2001 From: ShimaginAndrey Date: Wed, 29 Sep 2021 11:43:42 +0300 Subject: [PATCH 02/67] Fix Bug 52824 --- apps/common/mobile/resources/less/search.less | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/apps/common/mobile/resources/less/search.less b/apps/common/mobile/resources/less/search.less index f322929d1..076b7d4a7 100644 --- a/apps/common/mobile/resources/less/search.less +++ b/apps/common/mobile/resources/less/search.less @@ -43,6 +43,10 @@ height: auto; display: block; line-height: normal; + + &:before{ + display: none; + } } } From 113dcc58f163b63e365a1f0fa686e92e30a58b9f Mon Sep 17 00:00:00 2001 From: ShimaginAndrey Date: Thu, 30 Sep 2021 13:13:27 +0300 Subject: [PATCH 03/67] [DE PE SSE] Fix Bug 52819 --- .../mobile/src/view/edit/EditShape.jsx | 16 ++++++++++++---- .../mobile/src/view/edit/EditShape.jsx | 15 ++++++++++++--- .../mobile/src/view/edit/EditShape.jsx | 14 +++++++++++--- 3 files changed, 35 insertions(+), 10 deletions(-) diff --git a/apps/documenteditor/mobile/src/view/edit/EditShape.jsx b/apps/documenteditor/mobile/src/view/edit/EditShape.jsx index 85095537b..f15ee3cab 100644 --- a/apps/documenteditor/mobile/src/view/edit/EditShape.jsx +++ b/apps/documenteditor/mobile/src/view/edit/EditShape.jsx @@ -508,7 +508,13 @@ const EditShape = props => { const canFill = props.storeFocusObjects.shapeObject.get_ShapeProperties().get_CanFill(); const shapeObject = props.storeFocusObjects.shapeObject; const wrapType = props.storeShapeSettings.getWrapType(shapeObject); - + + const shapeType = shapeObject.get_ShapeProperties().asc_getType(); + const hideChangeType = shapeObject.get_ShapeProperties().get_FromChart() || shapeType=='line' || shapeType=='bentConnector2' || shapeType=='bentConnector3' + || shapeType=='bentConnector4' || shapeType=='bentConnector5' || shapeType=='curvedConnector2' + || shapeType=='curvedConnector3' || shapeType=='curvedConnector4' || shapeType=='curvedConnector5' + || shapeType=='straightConnector1'; + let disableRemove = !!props.storeFocusObjects.paragraphObject; return ( @@ -533,9 +539,11 @@ const EditShape = props => { onOverlap: props.onOverlap, onWrapDistance: props.onWrapDistance }}> - + { !hideChangeType && + + } { wrapType !== 'inline' && } diff --git a/apps/presentationeditor/mobile/src/view/edit/EditShape.jsx b/apps/presentationeditor/mobile/src/view/edit/EditShape.jsx index 39a55a8b4..d476f12cd 100644 --- a/apps/presentationeditor/mobile/src/view/edit/EditShape.jsx +++ b/apps/presentationeditor/mobile/src/view/edit/EditShape.jsx @@ -12,6 +12,12 @@ const EditShape = props => { const shapeObject = storeFocusObjects.shapeObject; const canFill = shapeObject && shapeObject.get_CanFill(); + const shapeType = shapeObject.asc_getType(); + const hideChangeType = shapeObject.get_FromChart() || shapeType=='line' || shapeType=='bentConnector2' || shapeType=='bentConnector3' + || shapeType=='bentConnector4' || shapeType=='bentConnector5' || shapeType=='curvedConnector2' + || shapeType=='curvedConnector3' || shapeType=='curvedConnector4' || shapeType=='curvedConnector5' + || shapeType=='straightConnector1'; + let disableRemove = !!props.storeFocusObjects.paragraphObject; return ( @@ -30,9 +36,12 @@ const EditShape = props => { onBorderColor: props.onBorderColor }}> } - + { !hideChangeType && + + } + diff --git a/apps/spreadsheeteditor/mobile/src/view/edit/EditShape.jsx b/apps/spreadsheeteditor/mobile/src/view/edit/EditShape.jsx index ef6ffd9d7..b8a17a049 100644 --- a/apps/spreadsheeteditor/mobile/src/view/edit/EditShape.jsx +++ b/apps/spreadsheeteditor/mobile/src/view/edit/EditShape.jsx @@ -12,6 +12,12 @@ const EditShape = props => { const shapeObject = storeFocusObjects.shapeObject; const canFill = shapeObject && shapeObject.get_ShapeProperties().asc_getCanFill(); + const shapeType = shapeObject.get_ShapeProperties().asc_getType(); + const hideChangeType = shapeObject.get_ShapeProperties().get_FromChart() || shapeType=='line' || shapeType=='bentConnector2' || shapeType=='bentConnector3' + || shapeType=='bentConnector4' || shapeType=='bentConnector5' || shapeType=='curvedConnector2' + || shapeType=='curvedConnector3' || shapeType=='curvedConnector4' || shapeType=='curvedConnector5' + || shapeType=='straightConnector1'; + let disableRemove = storeFocusObjects.selections.indexOf('text') > -1; return ( @@ -30,9 +36,11 @@ const EditShape = props => { onBorderColor: props.onBorderColor }}> } - + { !hideChangeType && + + } From 5d0a1b5e00737bc23268537f8014ec49086369e6 Mon Sep 17 00:00:00 2001 From: ShimaginAndrey Date: Thu, 30 Sep 2021 15:03:39 +0300 Subject: [PATCH 04/67] [SSE] Fix Bug 52808 --- .../mobile/src/controller/ContextMenu.jsx | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) diff --git a/apps/spreadsheeteditor/mobile/src/controller/ContextMenu.jsx b/apps/spreadsheeteditor/mobile/src/controller/ContextMenu.jsx index 86d2dffaa..47212dde2 100644 --- a/apps/spreadsheeteditor/mobile/src/controller/ContextMenu.jsx +++ b/apps/spreadsheeteditor/mobile/src/controller/ContextMenu.jsx @@ -114,13 +114,24 @@ class ContextMenu extends ContextMenuController { onMergeCells() { const { t } = this.props; - const _t = t("ContextMenu", { returnObjects: true }); const api = Common.EditorApi.get(); if (api.asc_mergeCellsDataLost(Asc.c_oAscMergeOptions.Merge)) { setTimeout(() => { - f7.dialog.confirm(_t.warnMergeLostData, _t.notcriticalErrorTitle, () => { - api.asc_mergeCells(Asc.c_oAscMergeOptions.Merge); - }); + f7.dialog.create({ + title: t('ContextMenu.notcriticalErrorTitle'), + text: t('ContextMenu.warnMergeLostData'), + buttons: [ + { + text: t('ContextMenu.menuCancel') + }, + { + text: 'OK', + onClick: () => { + api.asc_mergeCells(Asc.c_oAscMergeOptions.Merge); + } + } + ] + }).open(); }, 0); } else { api.asc_mergeCells(Asc.c_oAscMergeOptions.Merge); From dc004c7f09b846776367805cd7b42b3992fd9b3a Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Thu, 30 Sep 2021 22:07:16 +0300 Subject: [PATCH 05/67] [SSE] For Bug 52800 --- .../main/app/controller/LeftMenu.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/apps/spreadsheeteditor/main/app/controller/LeftMenu.js b/apps/spreadsheeteditor/main/app/controller/LeftMenu.js index ec0ca3b6e..bb426514a 100644 --- a/apps/spreadsheeteditor/main/app/controller/LeftMenu.js +++ b/apps/spreadsheeteditor/main/app/controller/LeftMenu.js @@ -551,7 +551,7 @@ define([ /** coauthoring end **/ onQuerySearch: function(d, w, opts) { - if (opts.textsearch && opts.textsearch.length) { + // if (opts.textsearch && opts.textsearch.length) { var options = this.dlgSearch.findOptions; options.asc_setFindWhat(opts.textsearch); options.asc_setScanForward(d != 'back'); @@ -570,11 +570,11 @@ define([ } }); } - } + // } }, onQueryReplace: function(w, opts) { - if (!_.isEmpty(opts.textsearch)) { + // if (!_.isEmpty(opts.textsearch)) { this.api.isReplaceAll = false; var options = this.dlgSearch.findOptions; @@ -588,11 +588,11 @@ define([ options.asc_setIsReplaceAll(false); this.api.asc_replaceText(options); - } + // } }, onQueryReplaceAll: function(w, opts) { - if (!_.isEmpty(opts.textsearch)) { + // if (!_.isEmpty(opts.textsearch)) { this.api.isReplaceAll = true; var options = this.dlgSearch.findOptions; @@ -606,7 +606,7 @@ define([ options.asc_setIsReplaceAll(true); this.api.asc_replaceText(options); - } + // } }, onSearchHighlight: function(w, highlight) { From bd7fb9a4f00644a7d9299f71b8ae971cbf7ccf83 Mon Sep 17 00:00:00 2001 From: Maxim Kadushkin Date: Thu, 30 Sep 2021 23:49:12 +0300 Subject: [PATCH 06/67] [all] fix bug 50356 --- apps/common/main/lib/component/RadioBox.js | 26 ++++-- apps/common/main/resources/less/radiobox.less | 82 +++++++------------ 2 files changed, 50 insertions(+), 58 deletions(-) diff --git a/apps/common/main/lib/component/RadioBox.js b/apps/common/main/lib/component/RadioBox.js index 040d88af3..54e0d6253 100644 --- a/apps/common/main/lib/component/RadioBox.js +++ b/apps/common/main/lib/component/RadioBox.js @@ -71,8 +71,13 @@ define([ disabled : false, rendered : false, - template : _.template(''), + template : _.template('
' + + '' + + '' + + '' + + '' + + '' + + '
'), initialize : function(options) { Common.UI.BaseView.prototype.initialize.call(this, options); @@ -111,9 +116,14 @@ define([ })); this.$radio = el.find('input[type=radio]'); - this.$label = el.find('label.radiobox'); + this.$label = el.find('div.radiobox'); this.$span = this.$label.find('span'); this.$label.on('keydown', this.onKeyDown.bind(this)); + + this.$label.find('svg, span').on('click', function(e) { + this.setValue(true); + }.bind(this)); + this.rendered = true; return this; @@ -153,10 +163,12 @@ define([ setValue: function(value, suspendchange) { if (this.rendered) { - var lastValue = this.$radio.hasClass('checked'); - this.setRawValue(value); - if (suspendchange !== true && lastValue !== value) - this.trigger('change', this, this.$radio.is(':checked')); + if ( !this.disabled ) { + var lastValue = this.$radio.hasClass('checked'); + this.setRawValue(value); + if (suspendchange !== true && lastValue !== value) + this.trigger('change', this, this.$radio.is(':checked')); + } } else { this.options.checked = value; } diff --git a/apps/common/main/resources/less/radiobox.less b/apps/common/main/resources/less/radiobox.less index 843c1eb82..5c876ef59 100644 --- a/apps/common/main/resources/less/radiobox.less +++ b/apps/common/main/resources/less/radiobox.less @@ -1,72 +1,52 @@ .radiobox { - padding-left: 22px; margin-bottom: 0; .font-size-normal(); font-weight: normal; position: relative; min-height: 1em; - input[type=radio] { + display: flex; + align-items: center; + svg { + margin-right: 8px; + .rb-circle { + fill: @background-normal; + stroke: @border-regular-control; + } + + .rb-check-mark { + fill: @text-normal; + } + } + + input[type=radio] { display: none; - + label { - position: absolute; - left: 0; - margin-top: auto; - padding-bottom: 4px; - width: 14px; - height: 14px; - - background: @background-normal-ie; - background: @background-normal; - border: @scaled-one-px-value-ie solid @border-regular-control-ie; - border: @scaled-one-px-value solid @border-regular-control; - border-radius: 50%; - - + span { - outline: @scaled-one-px-value-ie dotted transparent; - outline: @scaled-one-px-value dotted transparent; - display: inline-block; + &:not(:checked) + svg { + .rb-check-mark { + display: none; } } + } - &:checked { - + label { - &::before { - content: ''; - position: absolute; - background: @text-normal-ie; - background: @text-normal; - border-radius: 50%; - width: 8px; - height: 8px; - left: 2px; - top: 2px; - } - } - } - - &.disabled, &:disabled { - - + label { - &::before { - } - } + &.disabled, &:disabled { + svg, span { + opacity: @component-disabled-opacity; } } &:focus:not(.disabled) { - input[type=radio] { - + label { - border-color: @border-control-focus-ie; - border-color: @border-control-focus; - - + span { - outline-color: @border-control-focus-ie; - outline-color: @border-control-focus; - } + svg { + .rb-circle { + stroke: @border-control-focus-ie; + stroke: @border-control-focus; } } + + span { + outline: @scaled-one-px-value-ie dotted @border-control-focus-ie; + outline: @scaled-one-px-value dotted @border-control-focus; + } } } \ No newline at end of file From ef34139e9b34b971e8bfa530973063f18d4be249 Mon Sep 17 00:00:00 2001 From: Maxim Kadushkin Date: Fri, 1 Oct 2021 12:13:41 +0300 Subject: [PATCH 07/67] [all] refactoring for disabled state of radiobox --- apps/common/main/lib/component/RadioBox.js | 13 ++++++------- apps/common/main/resources/less/radiobox.less | 1 + 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/apps/common/main/lib/component/RadioBox.js b/apps/common/main/lib/component/RadioBox.js index 54e0d6253..e528a59f9 100644 --- a/apps/common/main/lib/component/RadioBox.js +++ b/apps/common/main/lib/component/RadioBox.js @@ -121,7 +121,8 @@ define([ this.$label.on('keydown', this.onKeyDown.bind(this)); this.$label.find('svg, span').on('click', function(e) { - this.setValue(true); + if ( !this.disabled ) + this.setValue(true); }.bind(this)); this.rendered = true; @@ -163,12 +164,10 @@ define([ setValue: function(value, suspendchange) { if (this.rendered) { - if ( !this.disabled ) { - var lastValue = this.$radio.hasClass('checked'); - this.setRawValue(value); - if (suspendchange !== true && lastValue !== value) - this.trigger('change', this, this.$radio.is(':checked')); - } + var lastValue = this.$radio.hasClass('checked'); + this.setRawValue(value); + if (suspendchange !== true && lastValue !== value) + this.trigger('change', this, this.$radio.is(':checked')); } else { this.options.checked = value; } diff --git a/apps/common/main/resources/less/radiobox.less b/apps/common/main/resources/less/radiobox.less index 5c876ef59..6aebe8c2f 100644 --- a/apps/common/main/resources/less/radiobox.less +++ b/apps/common/main/resources/less/radiobox.less @@ -33,6 +33,7 @@ &.disabled, &:disabled { svg, span { opacity: @component-disabled-opacity; + pointer-events: none; } } From a8f1274a24b613c40e33e76d003864986700db9a Mon Sep 17 00:00:00 2001 From: Maxim Kadushkin Date: Fri, 1 Oct 2021 12:29:57 +0300 Subject: [PATCH 08/67] [common] fixed combobox stylesheet --- apps/common/main/resources/less/combobox.less | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/apps/common/main/resources/less/combobox.less b/apps/common/main/resources/less/combobox.less index f8ae86617..d561e6ee7 100644 --- a/apps/common/main/resources/less/combobox.less +++ b/apps/common/main/resources/less/combobox.less @@ -34,6 +34,11 @@ -webkit-filter: @img-border-type-filter; filter: @img-border-type-filter; } + + .text { + line-height: 20px; + padding-left: 2px; + } } .btn { From 7db1746595fbbd9c059733af6f9ce21fce7938e9 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Fri, 1 Oct 2021 14:22:15 +0300 Subject: [PATCH 09/67] Update translation --- apps/documenteditor/embed/locale/el.json | 4 + apps/documenteditor/embed/locale/ko.json | 19 +- apps/documenteditor/embed/locale/zh.json | 10 +- apps/documenteditor/main/locale/ca.json | 21 + apps/documenteditor/main/locale/cs.json | 22 +- apps/documenteditor/main/locale/el.json | 20 +- apps/documenteditor/main/locale/en.json | 4 +- apps/documenteditor/main/locale/ja.json | 4 +- apps/documenteditor/main/locale/ko.json | 1203 +++++++++++-- apps/documenteditor/main/locale/zh.json | 38 +- apps/presentationeditor/embed/locale/el.json | 2 + apps/presentationeditor/embed/locale/ko.json | 14 +- apps/presentationeditor/embed/locale/tr.json | 3 + apps/presentationeditor/embed/locale/zh.json | 2 + apps/presentationeditor/main/locale/ca.json | 38 + apps/presentationeditor/main/locale/cs.json | 205 ++- apps/presentationeditor/main/locale/el.json | 21 +- apps/presentationeditor/main/locale/ko.json | 722 +++++++- apps/presentationeditor/main/locale/zh.json | 56 +- apps/spreadsheeteditor/embed/locale/el.json | 2 + apps/spreadsheeteditor/embed/locale/ko.json | 6 + apps/spreadsheeteditor/embed/locale/tr.json | 1 + apps/spreadsheeteditor/embed/locale/zh.json | 2 + apps/spreadsheeteditor/main/locale/ca.json | 124 +- apps/spreadsheeteditor/main/locale/cs.json | 51 + apps/spreadsheeteditor/main/locale/el.json | 62 +- apps/spreadsheeteditor/main/locale/ko.json | 1574 ++++++++++++++++-- 27 files changed, 3797 insertions(+), 433 deletions(-) diff --git a/apps/documenteditor/embed/locale/el.json b/apps/documenteditor/embed/locale/el.json index 2a30fac8d..049a753c7 100644 --- a/apps/documenteditor/embed/locale/el.json +++ b/apps/documenteditor/embed/locale/el.json @@ -14,6 +14,8 @@ "DE.ApplicationController.errorEditingDownloadas": "Παρουσιάστηκε σφάλμα κατά την εργασία με το έγγραφο.
Χρησιμοποιήστε την επιλογή «Λήψη ως...» για να αποθηκεύσετε το αντίγραφο ασφαλείας στον σκληρό δίσκο του υπολογιστή σας.", "DE.ApplicationController.errorFilePassProtect": "Το αρχείο προστατεύεται με συνθηματικό και δεν μπορεί να ανοίξει.", "DE.ApplicationController.errorFileSizeExceed": "Το μέγεθος του αρχείου υπερβαίνει το όριο που έχει οριστεί για τον διακομιστή σας.
Παρακαλούμε επικοινωνήστε με τον διαχειριστή του διακομιστή εγγράφων για λεπτομέρειες.", + "DE.ApplicationController.errorForceSave": "Παρουσιάστηκε σφάλμα κατά την αποθήκευση του αρχείου. Χρησιμοποιήστε την επιλογή «Λήψη ως» για να αποθηκεύσετε το αρχείο στον σκληρό δίσκο του υπολογιστή σας ή δοκιμάστε ξανά αργότερα.", + "DE.ApplicationController.errorLoadingFont": "Οι γραμματοσειρές δεν έχουν φορτωθεί.
Παρακαλούμε επικοινωνήστε με τον διαχειριστή του Εξυπηρετητή Εγγράφων σας.", "DE.ApplicationController.errorSubmit": "Η υποβολή απέτυχε.", "DE.ApplicationController.errorUpdateVersionOnDisconnect": "Η σύνδεση στο Διαδίκτυο έχει αποκατασταθεί και η έκδοση του αρχείου έχει αλλάξει.
Προτού συνεχίσετε να εργάζεστε, πρέπει να κατεβάσετε το αρχείο ή να αντιγράψετε το περιεχόμενό του για να βεβαιωθείτε ότι δεν έχει χαθεί τίποτα και, στη συνέχεια, φορτώστε ξανά αυτήν τη σελίδα.", "DE.ApplicationController.errorUserDrop": "Δεν είναι δυνατή η πρόσβαση στο αρχείο αυτήν τη στιγμή.", @@ -30,6 +32,8 @@ "DE.ApplicationController.textSubmit": "Υποβολή", "DE.ApplicationController.textSubmited": "Η φόρμα υποβλήθηκε με επιτυχία
Κάντε κλικ για να κλείσετε τη συμβουλή ", "DE.ApplicationController.txtClose": "Κλείσιμο", + "DE.ApplicationController.txtEmpty": "(Κενό)", + "DE.ApplicationController.txtPressLink": "Πατήστε Ctrl και κάντε κλικ στο σύνδεσμο", "DE.ApplicationController.unknownErrorText": "Άγνωστο σφάλμα.", "DE.ApplicationController.unsupportedBrowserErrorText": "Ο περιηγητής σας δεν υποστηρίζεται.", "DE.ApplicationController.waitText": "Παρακαλούμε, περιμένετε...", diff --git a/apps/documenteditor/embed/locale/ko.json b/apps/documenteditor/embed/locale/ko.json index 0420837fe..8c841fd6a 100644 --- a/apps/documenteditor/embed/locale/ko.json +++ b/apps/documenteditor/embed/locale/ko.json @@ -11,23 +11,38 @@ "DE.ApplicationController.downloadTextText": "문서 다운로드 중...", "DE.ApplicationController.errorAccessDeny": "권한이없는 작업을 수행하려고합니다.
Document Server 관리자에게 문의하십시오.", "DE.ApplicationController.errorDefaultMessage": "오류 코드: %1", + "DE.ApplicationController.errorEditingDownloadas": " 문서 작업 중에 알수 없는 장애가 발생했습니다.
\"다른 이름으로 다운로드...\"를 선택하여 파일을 현재 사용 중인 컴퓨터 하드 디스크에 저장하시기 바랍니다.", "DE.ApplicationController.errorFilePassProtect": "이 문서는 암호로 보호되어있어 열 수 없습니다.", "DE.ApplicationController.errorFileSizeExceed": "파일의 크기가 서버에서 정해진 범위를 초과 했습니다. 문서 서버 관리자에게 해당 내용에 대한 자세한 안내를 받아 보시기 바랍니다.", - "DE.ApplicationController.errorUpdateVersionOnDisconnect": "인터넷 연결이 복구 되었으며 파일에 수정 사항이 발생되었습니다. 작업을 계속 하시기 전에 반드시 기존의 파일을 다운로드하거나 내용을 복사해서 작업 내용을 잃어 버리는 일이 없도록 한 후에 이 페이지를 새로 고침(reload) 해 주시기 바랍니다.", + "DE.ApplicationController.errorForceSave": "파일을 저장하는 동안 오류가 발생했습니다. \"다른 이름으로 다운로드\" 옵션을 사용하여 파일을 컴퓨터의 하드 드라이브에 저장하거나 나중에 다시 시도하십시오.", + "DE.ApplicationController.errorLoadingFont": "글꼴이 로드되지 않았습니다.
문서 관리 관리자에게 문의하십시오.", + "DE.ApplicationController.errorSubmit": "전송실패", + "DE.ApplicationController.errorUpdateVersionOnDisconnect": "네트워크 연결이 복원되었으며 파일 버전이 변경되었습니다.
계속 작업하기 전에 데이터 손실을 방지하기 위해 파일을 다운로드하거나 내용을 복사한 다음 이 페이지를 새로 고쳐야 합니다.", "DE.ApplicationController.errorUserDrop": "파일에 지금 액세스 할 수 없습니다.", "DE.ApplicationController.notcriticalErrorTitle": "경고", "DE.ApplicationController.scriptLoadError": "연결 속도가 느려, 일부 요소들이 로드되지 않았습니다. 페이지를 다시 새로 고침해주세요.", "DE.ApplicationController.textAnonymous": "익명사용자", + "DE.ApplicationController.textClear": "모든 필드 지우기", + "DE.ApplicationController.textGotIt": "취득", + "DE.ApplicationController.textGuest": "게스트", "DE.ApplicationController.textLoadingDocument": "문서 로드 중", + "DE.ApplicationController.textNext": "다음 필드", "DE.ApplicationController.textOf": "의", + "DE.ApplicationController.textRequired": "양식을 보내려면 모든 필수 필드를 채우십시오.", + "DE.ApplicationController.textSubmit": "전송", + "DE.ApplicationController.textSubmited": "양식이 성공적으로 전송되었습니다.
여기를 클릭하여 프롬프트를 닫으십시오", "DE.ApplicationController.txtClose": "닫기", + "DE.ApplicationController.txtEmpty": "(없음)", + "DE.ApplicationController.txtPressLink": "CTRL 키를 누른 상태에서 링크 클릭", "DE.ApplicationController.unknownErrorText": "알 수없는 오류.", "DE.ApplicationController.unsupportedBrowserErrorText": "사용중인 브라우저가 지원되지 않습니다.", - "DE.ApplicationController.waitText": "잠시만 기달려주세요...", + "DE.ApplicationController.waitText": "잠시만 기다려주세요...", "DE.ApplicationView.txtDownload": "다운로드 ", "DE.ApplicationView.txtDownloadDocx": "docx 형식으로 다운로드", "DE.ApplicationView.txtDownloadPdf": "PDF형식으로 다운로드", "DE.ApplicationView.txtEmbed": "개체 삽입", + "DE.ApplicationView.txtFileLocation": "파일 위치 열기", "DE.ApplicationView.txtFullScreen": "전체 화면", + "DE.ApplicationView.txtPrint": "인쇄", "DE.ApplicationView.txtShare": "공유" } \ No newline at end of file diff --git a/apps/documenteditor/embed/locale/zh.json b/apps/documenteditor/embed/locale/zh.json index 24883a822..af7534220 100644 --- a/apps/documenteditor/embed/locale/zh.json +++ b/apps/documenteditor/embed/locale/zh.json @@ -14,6 +14,8 @@ "DE.ApplicationController.errorEditingDownloadas": "在处理文档期间发生错误。
使用“下载为…”选项将文件备份复制到您的计算机硬盘中。", "DE.ApplicationController.errorFilePassProtect": "该文档受密码保护,无法被打开。", "DE.ApplicationController.errorFileSizeExceed": "文件大小超出了为服务器设置的限制.
有关详细信息,请与文档服务器管理员联系。", + "DE.ApplicationController.errorForceSave": "保存文件时发生错误。请使用“下载为”选项将文件保存到计算机硬盘中或稍后重试。", + "DE.ApplicationController.errorLoadingFont": "字体未加载。
请联系文档服务器管理员。", "DE.ApplicationController.errorSubmit": "提交失败", "DE.ApplicationController.errorUpdateVersionOnDisconnect": "网络连接已恢复,文件版本已变更。
在继续工作之前,需要下载文件或复制其内容以避免丢失数据,然后刷新此页。", "DE.ApplicationController.errorUserDrop": "该文件现在无法访问。", @@ -28,14 +30,16 @@ "DE.ApplicationController.textOf": "的", "DE.ApplicationController.textRequired": "要发送表单,请填写所有必填项目。", "DE.ApplicationController.textSubmit": "提交", - "DE.ApplicationController.textSubmited": "表单成功地被提交了
点击以关闭贴士", + "DE.ApplicationController.textSubmited": "表单提交成功
点击以关闭提示", "DE.ApplicationController.txtClose": "关闭", + "DE.ApplicationController.txtEmpty": "(空)", + "DE.ApplicationController.txtPressLink": "按CTRL并单击链接", "DE.ApplicationController.unknownErrorText": "未知错误。", "DE.ApplicationController.unsupportedBrowserErrorText": "您的浏览器不受支持", "DE.ApplicationController.waitText": "请稍候...", "DE.ApplicationView.txtDownload": "下载", - "DE.ApplicationView.txtDownloadDocx": "导出成docx格式", - "DE.ApplicationView.txtDownloadPdf": "导出成PDF格式", + "DE.ApplicationView.txtDownloadDocx": "导出成docx", + "DE.ApplicationView.txtDownloadPdf": "导出成PDF", "DE.ApplicationView.txtEmbed": "嵌入", "DE.ApplicationView.txtFileLocation": "打开文件所在位置", "DE.ApplicationView.txtFullScreen": "全屏", diff --git a/apps/documenteditor/main/locale/ca.json b/apps/documenteditor/main/locale/ca.json index ef149d954..6bd5bd984 100644 --- a/apps/documenteditor/main/locale/ca.json +++ b/apps/documenteditor/main/locale/ca.json @@ -212,6 +212,7 @@ "Common.Views.AutoCorrectDialog.textBy": "Per", "Common.Views.AutoCorrectDialog.textDelete": "Suprimeix", "Common.Views.AutoCorrectDialog.textFLSentence": "Escriu en majúscules la primera lletra de les frases", + "Common.Views.AutoCorrectDialog.textHyperlink": "Camins de xarxa i d'Internet per enllaços", "Common.Views.AutoCorrectDialog.textHyphens": "Guionets (--) per guió llarg (—)", "Common.Views.AutoCorrectDialog.textMathCorrect": "Autocorrecció de símbols matemàtics", "Common.Views.AutoCorrectDialog.textNumbered": "Llistes numerades automàtiques", @@ -233,6 +234,10 @@ "Common.Views.Chat.textSend": "Envia", "Common.Views.Comments.mniAuthorAsc": "Autor de A a Z", "Common.Views.Comments.mniAuthorDesc": "Autor de Z a A", + "Common.Views.Comments.mniDateAsc": "Més antic", + "Common.Views.Comments.mniDateDesc": "Més recent", + "Common.Views.Comments.mniPositionAsc": "Des de dalt", + "Common.Views.Comments.mniPositionDesc": "Des de baix", "Common.Views.Comments.textAdd": "Afegeix", "Common.Views.Comments.textAddComment": "Afegeix un comentari", "Common.Views.Comments.textAddCommentToDoc": "Afegeix un comentari al document", @@ -240,6 +245,7 @@ "Common.Views.Comments.textAnonym": "Convidat", "Common.Views.Comments.textCancel": "Cancel·la", "Common.Views.Comments.textClose": "Tanca", + "Common.Views.Comments.textClosePanel": "Tanqueu els comentaris", "Common.Views.Comments.textComments": "Comentaris", "Common.Views.Comments.textEdit": "D'acord", "Common.Views.Comments.textEnterCommentHint": "Introdueix el teu comentari aquí", @@ -248,6 +254,7 @@ "Common.Views.Comments.textReply": "Respon", "Common.Views.Comments.textResolve": "Resol", "Common.Views.Comments.textResolved": "Resolt", + "Common.Views.Comments.textSort": "Ordena els comentaris", "Common.Views.CopyWarningDialog.textDontShow": "No tornis a mostrar aquest missatge", "Common.Views.CopyWarningDialog.textMsg": "Les accions de copia, talla i enganxa mitjançant els botons de la barra d’eines de l’editor i les accions del menú contextual només es realitzaran dins d’aquesta pestanya editor.

Per copiar o enganxar a o des d’aplicacions fora de la pestanya de l'editor, utilitzeu les combinacions de teclat següents:", "Common.Views.CopyWarningDialog.textTitle": "Accions de copia, talla i enganxa ", @@ -386,6 +393,7 @@ "Common.Views.ReviewChanges.txtMarkup": "Tots els canvis {0}", "Common.Views.ReviewChanges.txtMarkupCap": "Etiquetatge", "Common.Views.ReviewChanges.txtMarkupSimple": "Tots els canvis {0}
Sense globus", + "Common.Views.ReviewChanges.txtMarkupSimpleCap": "Només l'etiquetatge", "Common.Views.ReviewChanges.txtNext": "Següent", "Common.Views.ReviewChanges.txtOff": "DESACTIVAT per a mi", "Common.Views.ReviewChanges.txtOffGlobal": "DESACTIVAT per a mi i per a tothom", @@ -522,6 +530,7 @@ "DE.Controllers.Main.errorForceSave": "S'ha produït un error en desar el fitxer. Utilitzeu l'opció \"Baixa-ho com a\" per desar el fitxer al disc dur de l’ordinador o torneu-ho a provar més endavant.", "DE.Controllers.Main.errorKeyEncrypt": "Descriptor de claus desconegut", "DE.Controllers.Main.errorKeyExpire": "El descriptor de claus ha caducat", + "DE.Controllers.Main.errorLoadingFont": "No s'han carregat els tipus de lletra.
Contacteu amb l'administrador del Servidor de Documents.", "DE.Controllers.Main.errorMailMergeLoadFile": "No s'ha pogut carregar el document. Seleccioneu un fitxer diferent.", "DE.Controllers.Main.errorMailMergeSaveFile": "No s'ha pogut combinar.", "DE.Controllers.Main.errorProcessSaveResult": "S'ha produït un error en desar.", @@ -583,6 +592,7 @@ "DE.Controllers.Main.textContactUs": "Contacta amb vendes", "DE.Controllers.Main.textConvertEquation": "Aquesta equació es va crear amb una versió antiga de l'editor d'equacions que ja no és compatible. Per editar-la, converteixi l’equació al format d’Office Math ML.
Convertir ara?", "DE.Controllers.Main.textCustomLoader": "Tingueu en compte que, segons els termes de la llicència, no teniu dret a canviar el carregador.
Contacteu amb el nostre departament de vendes per obtenir un pressupost.", + "DE.Controllers.Main.textDisconnect": "S'ha perdut la connexió", "DE.Controllers.Main.textGuest": "Convidat", "DE.Controllers.Main.textHasMacros": "El fitxer conté macros automàtiques.
Voleu executar les macros?", "DE.Controllers.Main.textLearnMore": "Més informació", @@ -877,6 +887,7 @@ "DE.Controllers.Toolbar.textAccent": "Accents", "DE.Controllers.Toolbar.textBracket": "Claudàtors", "DE.Controllers.Toolbar.textEmptyImgUrl": "Cal especificar l'URL de la imatge.", + "DE.Controllers.Toolbar.textEmptyMMergeUrl": "Cal especificar l’URL.", "DE.Controllers.Toolbar.textFontSizeErr": "El valor introduït no és correcte.
Introduïu un valor numèric entre 1 i 300.", "DE.Controllers.Toolbar.textFraction": "Fraccions", "DE.Controllers.Toolbar.textFunction": "Funcions", @@ -1402,6 +1413,7 @@ "DE.Views.DocumentHolder.mergeCellsText": "Combina les cel·les", "DE.Views.DocumentHolder.moreText": "Més variants...", "DE.Views.DocumentHolder.noSpellVariantsText": "Sense variants", + "DE.Views.DocumentHolder.notcriticalErrorTitle": "Advertiment", "DE.Views.DocumentHolder.originalSizeText": "Mida real", "DE.Views.DocumentHolder.paragraphText": "Paràgraf", "DE.Views.DocumentHolder.removeHyperlinkText": "Suprimeix l'enllaç", @@ -1559,6 +1571,7 @@ "DE.Views.DocumentHolder.txtRemLimit": "Suprimeix el límit", "DE.Views.DocumentHolder.txtRemoveAccentChar": "Suprimeix el caràcter d'accent", "DE.Views.DocumentHolder.txtRemoveBar": "Suprimeix la barra", + "DE.Views.DocumentHolder.txtRemoveWarning": "Voleu eliminar aquesta signatura?
No es podrà desfer.", "DE.Views.DocumentHolder.txtRemScripts": "Suprimeix els scripts", "DE.Views.DocumentHolder.txtRemSubscript": "Suprimeix el subíndex", "DE.Views.DocumentHolder.txtRemSuperscript": "Suprimeix el superíndex", @@ -1578,6 +1591,7 @@ "DE.Views.DocumentHolder.txtTopAndBottom": "Superior i inferior", "DE.Views.DocumentHolder.txtUnderbar": "Barra sota text", "DE.Views.DocumentHolder.txtUngroup": "Desagrupa", + "DE.Views.DocumentHolder.txtWarnUrl": "Si feu clic en aquest enllaç pot perjudicar el dispositiu i les dades.
Esteu segur que voleu continuar?", "DE.Views.DocumentHolder.updateStyleText": "Actualitzar estil %1", "DE.Views.DocumentHolder.vertAlignText": "Alineació vertical", "DE.Views.DropcapSettingsAdvanced.strBorders": "Vores i emplenament", @@ -1645,6 +1659,7 @@ "DE.Views.FileMenu.btnToEditCaption": "Edita el document", "DE.Views.FileMenu.textDownload": "Baixa", "DE.Views.FileMenuPanels.CreateNew.txtBlank": "Document en blanc", + "DE.Views.FileMenuPanels.CreateNew.txtCreateNew": "Crea'n un de nou", "DE.Views.FileMenuPanels.DocumentInfo.okButtonText": "Aplica", "DE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Afegeix l'autor", "DE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Afegeix text", @@ -1697,6 +1712,7 @@ "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", @@ -1718,6 +1734,8 @@ "DE.Views.FileMenuPanels.Settings.txtAll": "Mostra-ho tot", "DE.Views.FileMenuPanels.Settings.txtAutoCorrect": "Opcions de correcció automàtica ...", "DE.Views.FileMenuPanels.Settings.txtCacheMode": "Mode de memòria cau per defecte", + "DE.Views.FileMenuPanels.Settings.txtChangesBalloons": "Mostra fent un clic en els globus", + "DE.Views.FileMenuPanels.Settings.txtChangesTip": "Mostra en passar el cursor per damunt dels indicadors de funció", "DE.Views.FileMenuPanels.Settings.txtCm": "Centímetre", "DE.Views.FileMenuPanels.Settings.txtFitPage": "Ajusta a la pàgina", "DE.Views.FileMenuPanels.Settings.txtFitWidth": "Ajusta-ho a l'amplària", @@ -2566,6 +2584,9 @@ "DE.Views.Toolbar.mniEditFooter": "Edita el peu de pàgina", "DE.Views.Toolbar.mniEditHeader": "Edita la capçalera", "DE.Views.Toolbar.mniEraseTable": "Suprimeix la taula", + "DE.Views.Toolbar.mniFromFile": "Des d'un fitxer", + "DE.Views.Toolbar.mniFromStorage": "Des de l’emmagatzematge", + "DE.Views.Toolbar.mniFromUrl": "Des de l'URL", "DE.Views.Toolbar.mniHiddenBorders": "Les vores de la taula estan amagades", "DE.Views.Toolbar.mniHiddenChars": "Caràcters que no es poden imprimir", "DE.Views.Toolbar.mniHighlightControls": "Ressalta la configuració", diff --git a/apps/documenteditor/main/locale/cs.json b/apps/documenteditor/main/locale/cs.json index db33e26e8..881b05314 100644 --- a/apps/documenteditor/main/locale/cs.json +++ b/apps/documenteditor/main/locale/cs.json @@ -63,8 +63,8 @@ "Common.Controllers.ReviewChanges.textShape": "Obrazec", "Common.Controllers.ReviewChanges.textShd": "Barva pozadí", "Common.Controllers.ReviewChanges.textShow": "Zobrazit změny na", - "Common.Controllers.ReviewChanges.textSmallCaps": "Malé kapitálky", - "Common.Controllers.ReviewChanges.textSpacing": "Rozestupy", + "Common.Controllers.ReviewChanges.textSmallCaps": "Malá písmena", + "Common.Controllers.ReviewChanges.textSpacing": "Mezery", "Common.Controllers.ReviewChanges.textSpacingAfter": "Mezera za", "Common.Controllers.ReviewChanges.textSpacingBefore": "Mezera před", "Common.Controllers.ReviewChanges.textStrikeout": "Přeškrtnout", @@ -105,7 +105,7 @@ "Common.define.chartData.textHBarStackedPer": "100% skládaný sloupcový", "Common.define.chartData.textHBarStackedPer3d": "3D 100% skládaný sloupcový", "Common.define.chartData.textLine": "Liniový graf", - "Common.define.chartData.textLine3d": "3d spojnicový", + "Common.define.chartData.textLine3d": "3D spojnicový", "Common.define.chartData.textLineMarker": "Spojnicový se značkami", "Common.define.chartData.textLineStacked": "Skládaný spojnicový", "Common.define.chartData.textLineStackedMarker": "Skládaný spojnicový se značkami", @@ -456,7 +456,7 @@ "Common.Views.SignSettingsDialog.textInfoName": "Název", "Common.Views.SignSettingsDialog.textInfoTitle": "Nadpis podepisujícího", "Common.Views.SignSettingsDialog.textInstructions": "Pokyny pro podepisujícího", - "Common.Views.SignSettingsDialog.textShowDate": "Na řádek s podpisem zobrazit datum podpisu", + "Common.Views.SignSettingsDialog.textShowDate": "Na řádku s podpisem zobrazit datum podpisu", "Common.Views.SignSettingsDialog.textTitle": "Nastavení podpisu", "Common.Views.SignSettingsDialog.txtEmpty": "Tuto kolonku je třeba vyplnit", "Common.Views.SymbolTableDialog.textCharacter": "Znak", @@ -774,7 +774,7 @@ "DE.Controllers.Main.txtShape_parallelogram": "Rovnoběžník", "DE.Controllers.Main.txtShape_pentagon": "Pětiúhelník", "DE.Controllers.Main.txtShape_pie": "Kruhová výseč", - "DE.Controllers.Main.txtShape_plaque": "Znak", + "DE.Controllers.Main.txtShape_plaque": "Podepsat", "DE.Controllers.Main.txtShape_plus": "Plus", "DE.Controllers.Main.txtShape_polyline1": "Od ruky", "DE.Controllers.Main.txtShape_polyline2": "Volná forma", @@ -1432,7 +1432,7 @@ "DE.Views.DocumentHolder.strDelete": "Odebrat podpis", "DE.Views.DocumentHolder.strDetails": "Podrobnosti podpisu", "DE.Views.DocumentHolder.strSetup": "Nastavení podpisu", - "DE.Views.DocumentHolder.strSign": "Podpis", + "DE.Views.DocumentHolder.strSign": "Podepsat", "DE.Views.DocumentHolder.styleText": "Formátování jako styl", "DE.Views.DocumentHolder.tableText": "Tabulka", "DE.Views.DocumentHolder.textAlign": "Zarovnání", @@ -2183,9 +2183,9 @@ "DE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "Odsazení a mezery", "DE.Views.ParagraphSettingsAdvanced.strParagraphLine": "Zalomení řádků a stránek", "DE.Views.ParagraphSettingsAdvanced.strParagraphPosition": "Umístění", - "DE.Views.ParagraphSettingsAdvanced.strSmallCaps": "Malé kapitálky", + "DE.Views.ParagraphSettingsAdvanced.strSmallCaps": "Malá písmena", "DE.Views.ParagraphSettingsAdvanced.strSomeParagraphSpace": "Nepřidávat interval mezi odstavce se stejným stylem", - "DE.Views.ParagraphSettingsAdvanced.strSpacing": "Rozestupy", + "DE.Views.ParagraphSettingsAdvanced.strSpacing": "Mezery", "DE.Views.ParagraphSettingsAdvanced.strStrike": "Přeškrtnutí", "DE.Views.ParagraphSettingsAdvanced.strSubscript": "Dolní index", "DE.Views.ParagraphSettingsAdvanced.strSuperscript": "Horní index", @@ -2218,7 +2218,7 @@ "DE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Odstranit vše", "DE.Views.ParagraphSettingsAdvanced.textRight": "Vpravo", "DE.Views.ParagraphSettingsAdvanced.textSet": "Specifikovat", - "DE.Views.ParagraphSettingsAdvanced.textSpacing": "Řádkování", + "DE.Views.ParagraphSettingsAdvanced.textSpacing": "Mezery", "DE.Views.ParagraphSettingsAdvanced.textTabCenter": "Na střed", "DE.Views.ParagraphSettingsAdvanced.textTabLeft": "Vlevo", "DE.Views.ParagraphSettingsAdvanced.textTabPosition": "Pozice tabulátoru", @@ -2314,7 +2314,7 @@ "DE.Views.SignatureSettings.strInvalid": "Neplatné podpisy", "DE.Views.SignatureSettings.strRequested": "Požadované podpisy", "DE.Views.SignatureSettings.strSetup": "Nastavení podpisu", - "DE.Views.SignatureSettings.strSign": "Podpis", + "DE.Views.SignatureSettings.strSign": "Podepsat", "DE.Views.SignatureSettings.strSignature": "Podpis", "DE.Views.SignatureSettings.strSigner": "Podepsal", "DE.Views.SignatureSettings.strValid": "Platné podpisy", @@ -2433,7 +2433,7 @@ "DE.Views.TableSettings.txtTable_TableGrid": "Mřížka tabulky", "DE.Views.TableSettingsAdvanced.textAlign": "Zarovnání", "DE.Views.TableSettingsAdvanced.textAlignment": "Zarovnání", - "DE.Views.TableSettingsAdvanced.textAllowSpacing": "Povolit odsazení mezi buňkami", + "DE.Views.TableSettingsAdvanced.textAllowSpacing": "Mezera mezi buňkami", "DE.Views.TableSettingsAdvanced.textAlt": "Alternativní text", "DE.Views.TableSettingsAdvanced.textAltDescription": "Popis", "DE.Views.TableSettingsAdvanced.textAltTip": "Alternativní textová reprezentace informací vizuálního objektu, která bude čtena lidem se zrakovým nebo kognitivním postižením, aby jim pomohla lépe porozumět informacím, které se nacházejí v obrázku, grafu, obrazci nebo v tabulce.", diff --git a/apps/documenteditor/main/locale/el.json b/apps/documenteditor/main/locale/el.json index a81c11d47..4984e3ebb 100644 --- a/apps/documenteditor/main/locale/el.json +++ b/apps/documenteditor/main/locale/el.json @@ -206,12 +206,13 @@ "Common.Views.About.txtVersion": "Έκδοση ", "Common.Views.AutoCorrectDialog.textAdd": "Προσθήκη", "Common.Views.AutoCorrectDialog.textApplyText": "Εφαρμογή Κατά Την Πληκτρολόγηση", - "Common.Views.AutoCorrectDialog.textAutoCorrect": "Αυτόματη διόρθωση", + "Common.Views.AutoCorrectDialog.textAutoCorrect": "Αυτόματη Διόρθωση", "Common.Views.AutoCorrectDialog.textAutoFormat": "Αυτόματη Μορφοποίηση Κατά Την Πληκτρολόγηση", "Common.Views.AutoCorrectDialog.textBulleted": "Αυτόματες λίστες κουκκίδων", "Common.Views.AutoCorrectDialog.textBy": "Από", "Common.Views.AutoCorrectDialog.textDelete": "Διαγραφή", "Common.Views.AutoCorrectDialog.textFLSentence": "Κεφαλαιοποιήστε το πρώτο γράμμα των προτάσεων", + "Common.Views.AutoCorrectDialog.textHyperlink": "Μονοπάτια δικτύου και διαδικτύου με υπερσυνδέσμους", "Common.Views.AutoCorrectDialog.textHyphens": "Παύλες (--) με πλατιά παύλα (—)", "Common.Views.AutoCorrectDialog.textMathCorrect": "Αυτόματη Διόρθωση Μαθηματικών", "Common.Views.AutoCorrectDialog.textNumbered": "Αυτόματες αριθμημένες λίστες", @@ -233,6 +234,10 @@ "Common.Views.Chat.textSend": "Αποστολή", "Common.Views.Comments.mniAuthorAsc": "Συγγραφέας Α έως Ω", "Common.Views.Comments.mniAuthorDesc": "Συγγραφέας Ω έως Α", + "Common.Views.Comments.mniDateAsc": "Παλαιότερο", + "Common.Views.Comments.mniDateDesc": "Νεότερο", + "Common.Views.Comments.mniPositionAsc": "Από πάνω", + "Common.Views.Comments.mniPositionDesc": "Από κάτω", "Common.Views.Comments.textAdd": "Προσθήκη", "Common.Views.Comments.textAddComment": "Προσθήκη Σχολίου", "Common.Views.Comments.textAddCommentToDoc": "Προσθήκη Σχολίου στο Έγγραφο", @@ -249,6 +254,7 @@ "Common.Views.Comments.textReply": "Απάντηση", "Common.Views.Comments.textResolve": "Επίλυση", "Common.Views.Comments.textResolved": "Επιλύθηκε", + "Common.Views.Comments.textSort": "Ταξινόμηση σχολίων", "Common.Views.CopyWarningDialog.textDontShow": "Να μην εμφανίζεται αυτό το μήνυμα ξανά", "Common.Views.CopyWarningDialog.textMsg": "Η αντιγραφή, η αποκοπή και η επικόλληση μέσω των κουμπιών της εργαλειοθήκης του συντάκτη καθώς και οι ενέργειες του μενού συμφραζομένων εφαρμόζονται μόνο εντός αυτής της καρτέλας.

Για αντιγραφή ή επικόλληση από ή προς εφαρμογές εκτός της καρτέλας χρησιμοποιήστε τους ακόλουθους συνδυασμούς πλήκτρων:", "Common.Views.CopyWarningDialog.textTitle": "Ενέργειες Αντιγραφής, Αποκοπής και Επικόλλησης", @@ -385,7 +391,9 @@ "Common.Views.ReviewChanges.txtFinalCap": "Τελικός", "Common.Views.ReviewChanges.txtHistory": "Ιστορικό Εκδόσεων", "Common.Views.ReviewChanges.txtMarkup": "Όλες οι αλλαγές {0}", - "Common.Views.ReviewChanges.txtMarkupCap": "Markup", + "Common.Views.ReviewChanges.txtMarkupCap": "Σήμανση και συννεφάκια", + "Common.Views.ReviewChanges.txtMarkupSimple": "Όλες οι αλλαγές {0}
Χωρίς συννεφάκια", + "Common.Views.ReviewChanges.txtMarkupSimpleCap": "Μόνο σήμανση", "Common.Views.ReviewChanges.txtNext": "Επόμενη", "Common.Views.ReviewChanges.txtOff": "ΑΠΕΝΕΡΓΟΠΟΙΗΜΕΝΗ για μένα", "Common.Views.ReviewChanges.txtOffGlobal": "ΑΠΕΝΕΡΓΟΠΟΙΗΜΕΝΗ για μένα και όλους", @@ -879,6 +887,7 @@ "DE.Controllers.Toolbar.textAccent": "Τόνοι/Πνεύματα", "DE.Controllers.Toolbar.textBracket": "Αγκύλες", "DE.Controllers.Toolbar.textEmptyImgUrl": "Πρέπει να καθορίσετε τη διεύθυνση URL της εικόνας.", + "DE.Controllers.Toolbar.textEmptyMMergeUrl": "Πρέπει να ορίσετε μια διεύθυνση URL.", "DE.Controllers.Toolbar.textFontSizeErr": "Η τιμή που βάλατε δεν είναι αποδεκτή.
Παρακαλούμε βάλτε μια αριθμητική τιμή μεταξύ 1 και 300", "DE.Controllers.Toolbar.textFraction": "Κλάσματα", "DE.Controllers.Toolbar.textFunction": "Λειτουργίες", @@ -1404,6 +1413,7 @@ "DE.Views.DocumentHolder.mergeCellsText": "Συγχώνευση Κελιών", "DE.Views.DocumentHolder.moreText": "Περισσότερες παραλλαγές...", "DE.Views.DocumentHolder.noSpellVariantsText": "Καμιά παραλλαγή", + "DE.Views.DocumentHolder.notcriticalErrorTitle": "Προειδοποίηση", "DE.Views.DocumentHolder.originalSizeText": "Πραγματικό Μέγεθος", "DE.Views.DocumentHolder.paragraphText": "Παράγραφος", "DE.Views.DocumentHolder.removeHyperlinkText": "Αφαίρεση Υπερσυνδέσμου", @@ -1702,6 +1712,7 @@ "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": "Αυστηρή", @@ -1723,6 +1734,8 @@ "DE.Views.FileMenuPanels.Settings.txtAll": "Προβολή Όλων", "DE.Views.FileMenuPanels.Settings.txtAutoCorrect": "Επιλογές αυτόματης διόρθωσης...", "DE.Views.FileMenuPanels.Settings.txtCacheMode": "Προεπιλεγμένη κατάσταση λανθάνουσας μνήμης", + "DE.Views.FileMenuPanels.Settings.txtChangesBalloons": "Εμφάνιση με κλικ στα συννεφάκια", + "DE.Views.FileMenuPanels.Settings.txtChangesTip": "Εμφάνιση με αιώρηση πάνω από συμβουλές", "DE.Views.FileMenuPanels.Settings.txtCm": "Εκατοστό", "DE.Views.FileMenuPanels.Settings.txtFitPage": "Προσαρμογή στη Σελίδα", "DE.Views.FileMenuPanels.Settings.txtFitWidth": "Προσαρμογή στο Πλάτος", @@ -2571,6 +2584,9 @@ "DE.Views.Toolbar.mniEditFooter": "Επεξεργασία Υποσέλιδου", "DE.Views.Toolbar.mniEditHeader": "Επεξεργασία Κεφαλίδας", "DE.Views.Toolbar.mniEraseTable": "Εκκαθάριση Πίνακα", + "DE.Views.Toolbar.mniFromFile": "Από Αρχείο", + "DE.Views.Toolbar.mniFromStorage": "Από Αποθηκευτικό Χώρο", + "DE.Views.Toolbar.mniFromUrl": "Από διεύθυνση URL", "DE.Views.Toolbar.mniHiddenBorders": "Κρυμμένα Περιγράμματα Πίνακα", "DE.Views.Toolbar.mniHiddenChars": "Μη Εκτυπώσιμοι Χαρακτήρες", "DE.Views.Toolbar.mniHighlightControls": "Ρυθμίσεις Επισήμανσης", diff --git a/apps/documenteditor/main/locale/en.json b/apps/documenteditor/main/locale/en.json index e229c530b..fff7a32a4 100644 --- a/apps/documenteditor/main/locale/en.json +++ b/apps/documenteditor/main/locale/en.json @@ -1803,6 +1803,7 @@ "DE.Views.FormsTab.capBtnNext": "Next Field", "DE.Views.FormsTab.capBtnPrev": "Previous Field", "DE.Views.FormsTab.capBtnRadioBox": "Radio Button", + "DE.Views.FormsTab.capBtnSaveForm": "Save as a Form", "DE.Views.FormsTab.capBtnSubmit": "Submit", "DE.Views.FormsTab.capBtnText": "Text Field", "DE.Views.FormsTab.capBtnView": "View Form", @@ -1819,11 +1820,10 @@ "DE.Views.FormsTab.tipNextForm": "Go to the next field", "DE.Views.FormsTab.tipPrevForm": "Go to the previous field", "DE.Views.FormsTab.tipRadioBox": "Insert radio button", + "DE.Views.FormsTab.tipSaveForm": "Save a file as a fillable OFORM document", "DE.Views.FormsTab.tipSubmit": "Submit form", "DE.Views.FormsTab.tipTextField": "Insert text field", "DE.Views.FormsTab.tipViewForm": "View form", - "DE.Views.FormsTab.capBtnSaveForm": "Save as a Form", - "DE.Views.FormsTab.tipSaveForm": "Save a file as a fillable OFORM document", "DE.Views.HeaderFooterSettings.textBottomCenter": "Bottom center", "DE.Views.HeaderFooterSettings.textBottomLeft": "Bottom left", "DE.Views.HeaderFooterSettings.textBottomPage": "Bottom of Page", diff --git a/apps/documenteditor/main/locale/ja.json b/apps/documenteditor/main/locale/ja.json index 50d047e70..eed711ed6 100644 --- a/apps/documenteditor/main/locale/ja.json +++ b/apps/documenteditor/main/locale/ja.json @@ -802,7 +802,7 @@ "DE.Controllers.Main.txtShape_star12": "十二芒星", "DE.Controllers.Main.txtShape_star16": "十六芒星", "DE.Controllers.Main.txtShape_star24": "二十四芒星", - "DE.Controllers.Main.txtShape_star32": "三十二芒星", + "DE.Controllers.Main.txtShape_star32": "32ポイントスター", "DE.Controllers.Main.txtShape_star4": "四芒星", "DE.Controllers.Main.txtShape_star5": "五芒星", "DE.Controllers.Main.txtShape_star6": "六芒星", @@ -2078,7 +2078,7 @@ "DE.Views.MailMergeSettings.textSendMsg": "すべての電子メールの準備ができました。 しばらく時間にメールメッセージが送信されます。
配信速度はメールサーバに依存します。
ドキュメントの作業を続行するか、閉じることができます。メッセージが送信されると、送信者はメッセージが開封されると送信される通知です。", "DE.Views.MailMergeSettings.textTo": "へ", "DE.Views.MailMergeSettings.txtFirst": "先頭レコード", - "DE.Views.MailMergeSettings.txtFromToError": "「から」値は「まで」値より小さくする必要があります。", + "DE.Views.MailMergeSettings.txtFromToError": "\"From \"の値は \"To \"の値よりも小さくなければなりません。", "DE.Views.MailMergeSettings.txtLast": "最後のレコード", "DE.Views.MailMergeSettings.txtNext": "次のレコード", "DE.Views.MailMergeSettings.txtPrev": "前のレコード", diff --git a/apps/documenteditor/main/locale/ko.json b/apps/documenteditor/main/locale/ko.json index a55758315..a84443a46 100644 --- a/apps/documenteditor/main/locale/ko.json +++ b/apps/documenteditor/main/locale/ko.json @@ -15,14 +15,15 @@ "Common.Controllers.ReviewChanges.textAuto": "auto", "Common.Controllers.ReviewChanges.textBaseline": "Baseline", "Common.Controllers.ReviewChanges.textBold": "Bold", - "Common.Controllers.ReviewChanges.textBreakBefore": "전에 페이지 나누기", + "Common.Controllers.ReviewChanges.textBreakBefore": "현재 단락 앞에서 페이지 나누기", "Common.Controllers.ReviewChanges.textCaps": "모든 대문자", "Common.Controllers.ReviewChanges.textCenter": "센터 정렬", + "Common.Controllers.ReviewChanges.textChar": "문자레벨", "Common.Controllers.ReviewChanges.textChart": "차트", "Common.Controllers.ReviewChanges.textColor": "글꼴 색", - "Common.Controllers.ReviewChanges.textContextual": "같은 스타일의 단락 사이에 간격을 추가하지 마십시오.", + "Common.Controllers.ReviewChanges.textContextual": "같은 스타일의 단락 사이에 공백 삽입 안 함", "Common.Controllers.ReviewChanges.textDeleted": " 삭제됨 : ", - "Common.Controllers.ReviewChanges.textDStrikeout": "Double strikeout", + "Common.Controllers.ReviewChanges.textDStrikeout": "이중 취소선", "Common.Controllers.ReviewChanges.textEquation": "수식", "Common.Controllers.ReviewChanges.textExact": "정확히", "Common.Controllers.ReviewChanges.textFirstLine": "첫 번째 줄", @@ -34,23 +35,23 @@ "Common.Controllers.ReviewChanges.textIndentRight": "들여 쓰기", "Common.Controllers.ReviewChanges.textInserted": " 삽입 됨 : ", "Common.Controllers.ReviewChanges.textItalic": "Italic", - "Common.Controllers.ReviewChanges.textJustify": "정렬 정렬", - "Common.Controllers.ReviewChanges.textKeepLines": "줄을 함께 유지", - "Common.Controllers.ReviewChanges.textKeepNext": "다음으로 유지", + "Common.Controllers.ReviewChanges.textJustify": "양쪽 맞춤", + "Common.Controllers.ReviewChanges.textKeepLines": "현재 단락을 나누지 않음", + "Common.Controllers.ReviewChanges.textKeepNext": "현재 단락과 다음 단락을 항상 같은 페이지에 배치", "Common.Controllers.ReviewChanges.textLeft": "왼쪽 맞춤", "Common.Controllers.ReviewChanges.textLineSpacing": "줄 간격 :", - "Common.Controllers.ReviewChanges.textMultiple": "multiple", - "Common.Controllers.ReviewChanges.textNoBreakBefore": "이전에 페이지 나누기 없음", + "Common.Controllers.ReviewChanges.textMultiple": "배수", + "Common.Controllers.ReviewChanges.textNoBreakBefore": "현재 단락 앞에서 페이지 나누기 없음", "Common.Controllers.ReviewChanges.textNoContextual": "같은 스타일의 단락 사이 간격 추가", - "Common.Controllers.ReviewChanges.textNoKeepLines": "줄을 함께 보관하지 마십시오", - "Common.Controllers.ReviewChanges.textNoKeepNext": "다음 보관하지 마십시오", + "Common.Controllers.ReviewChanges.textNoKeepLines": "현재 단락을 나누지 마십시오", + "Common.Controllers.ReviewChanges.textNoKeepNext": "현재 단락과 다음 단락을 항상 같은 페이지에 배치하지 마십시오", "Common.Controllers.ReviewChanges.textNot": "Not", "Common.Controllers.ReviewChanges.textNoWidow": "위젯 컨트롤 없음", "Common.Controllers.ReviewChanges.textNum": "번호 매기기 변경", - "Common.Controllers.ReviewChanges.textOff": "더이상 {0} 변경 내역 조회가 불가합니다. ", - "Common.Controllers.ReviewChanges.textOffGlobal": "{0} 변경 내역 추적 기능이 비활성화 되었습니다.", + "Common.Controllers.ReviewChanges.textOff": "더이상 {0} 변경 내용 조회가 불가합니다. ", + "Common.Controllers.ReviewChanges.textOffGlobal": "{0} 변경 내용 추적 기능이 비활성화 되었습니다.", "Common.Controllers.ReviewChanges.textOn": "{0} 추적을 사용하기 시작했습니다.", - "Common.Controllers.ReviewChanges.textOnGlobal": "{0} 변경 내역 추적 기능이 활성화 되었습니다.", + "Common.Controllers.ReviewChanges.textOnGlobal": "{0} 변경 내용 추적 기능이 활성화 되었습니다.", "Common.Controllers.ReviewChanges.textParaDeleted": "단락이 삭제되었습니다", "Common.Controllers.ReviewChanges.textParaFormatted": "단락 서식 지정", "Common.Controllers.ReviewChanges.textParaInserted": "단락이 삽입되었습니다", @@ -59,20 +60,105 @@ "Common.Controllers.ReviewChanges.textParaMoveTo": "이동:", "Common.Controllers.ReviewChanges.textPosition": "위치", "Common.Controllers.ReviewChanges.textRight": "오른쪽 정렬", - "Common.Controllers.ReviewChanges.textShape": "Shape", + "Common.Controllers.ReviewChanges.textShape": "도형", "Common.Controllers.ReviewChanges.textShd": "배경색", + "Common.Controllers.ReviewChanges.textShow": "변경 사항 표시", "Common.Controllers.ReviewChanges.textSmallCaps": "작은 대문자", "Common.Controllers.ReviewChanges.textSpacing": "간격", "Common.Controllers.ReviewChanges.textSpacingAfter": "간격 뒤", - "Common.Controllers.ReviewChanges.textSpacingBefore": "앞에 간격", - "Common.Controllers.ReviewChanges.textStrikeout": "Strikeout", + "Common.Controllers.ReviewChanges.textSpacingBefore": "간격 앞", + "Common.Controllers.ReviewChanges.textStrikeout": "취소선", "Common.Controllers.ReviewChanges.textSubScript": "아래 첨자", "Common.Controllers.ReviewChanges.textSuperScript": "Superscript", + "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": "Widow control", + "Common.Controllers.ReviewChanges.textWord": "단어 수준", + "Common.define.chartData.textArea": "영역", + "Common.define.chartData.textAreaStacked": "누적 영역형", + "Common.define.chartData.textAreaStackedPer": "100% 누적 영역형", + "Common.define.chartData.textBar": "막대", + "Common.define.chartData.textBarNormal": "묶은 세로 막대형", + "Common.define.chartData.textBarNormal3d": "3차원 묶은 세로 막대", + "Common.define.chartData.textBarNormal3dPerspective": "3차원 세로 막대", + "Common.define.chartData.textBarStacked": "누적 세로 막대형", + "Common.define.chartData.textBarStacked3d": "3차원 누적 세로 막대형", + "Common.define.chartData.textBarStackedPer": "100% 누적 세로 막대형", + "Common.define.chartData.textBarStackedPer3d": "3차원 100 % 누적 세로 막 대형", + "Common.define.chartData.textCharts": "차트", + "Common.define.chartData.textColumn": "열", + "Common.define.chartData.textCombo": "콤보", + "Common.define.chartData.textComboAreaBar": "누적 영역형 - 묶은 세로 막대형", + "Common.define.chartData.textComboBarLine": "묶은 세로 막대형 - 꺾은선형", + "Common.define.chartData.textComboBarLineSecondary": "묶은 세로 막대형 - 꺾은선형,보조 축", + "Common.define.chartData.textComboCustom": "맞춤 조합", + "Common.define.chartData.textDoughnut": "도넛", + "Common.define.chartData.textHBarNormal": "묶은 가로 막대형", + "Common.define.chartData.textHBarNormal3d": "3차원 집합 막대", + "Common.define.chartData.textHBarStacked": "누적 가로 막대형", + "Common.define.chartData.textHBarStacked3d": "3차원 누적 가로 막대형", + "Common.define.chartData.textHBarStackedPer": "100% 누적 막대형", + "Common.define.chartData.textHBarStackedPer3d": "3차원 100 % 기준 누적 가로 막 대형", + "Common.define.chartData.textLine": "선", + "Common.define.chartData.textLine3d": "3차원 꺾은 선형", + "Common.define.chartData.textLineMarker": "마커 라인", + "Common.define.chartData.textLineStacked": "누적 꺾은 선형", + "Common.define.chartData.textLineStackedMarker": "표식이 있는 누적 꺾은 선형", + "Common.define.chartData.textLineStackedPer": "100 % 기준 누적 꺾은 선형", + "Common.define.chartData.textLineStackedPerMarker": "표식이 있는 100 % 기준 누적 꺾은 선형", + "Common.define.chartData.textPie": "부분 원형", + "Common.define.chartData.textPie3d": "3차원 원형", + "Common.define.chartData.textPoint": "XY (분산형)", + "Common.define.chartData.textScatter": "분산형", + "Common.define.chartData.textScatterLine": "직선이 있는 분산형", + "Common.define.chartData.textScatterLineMarker": "직선 및 표식이 있는 분산형", + "Common.define.chartData.textScatterSmooth": "곡선이 있는 분산형", + "Common.define.chartData.textScatterSmoothMarker": "곡선 및 표식이 있는 분산형", + "Common.define.chartData.textStock": "주식형", + "Common.define.chartData.textSurface": "표면", + "Common.Translation.warnFileLocked": "파일이 다른 응용 프로그램에서 편집 중입니다. 편집을 계속하고 사본으로 저장할 수 있습니다.", + "Common.Translation.warnFileLockedBtnEdit": "복사본 만들기", + "Common.Translation.warnFileLockedBtnView": "미리보기", + "Common.UI.ButtonColored.textAutoColor": "자동", + "Common.UI.ButtonColored.textNewColor": "사용자 정의 색상 추가", + "Common.UI.Calendar.textApril": "4월", + "Common.UI.Calendar.textAugust": "8월", + "Common.UI.Calendar.textDecember": "12월", + "Common.UI.Calendar.textFebruary": "2월", + "Common.UI.Calendar.textJanuary": "1월", + "Common.UI.Calendar.textJuly": "7월", + "Common.UI.Calendar.textJune": "6월", + "Common.UI.Calendar.textMarch": "3월", + "Common.UI.Calendar.textMay": "5월", + "Common.UI.Calendar.textMonths": "개월", + "Common.UI.Calendar.textNovember": "11월", + "Common.UI.Calendar.textOctober": "10월", + "Common.UI.Calendar.textSeptember": "9월", + "Common.UI.Calendar.textShortApril": "4.", + "Common.UI.Calendar.textShortAugust": "8.", + "Common.UI.Calendar.textShortDecember": "12.", + "Common.UI.Calendar.textShortFebruary": "2.", + "Common.UI.Calendar.textShortFriday": "Fr", + "Common.UI.Calendar.textShortJanuary": "1.", + "Common.UI.Calendar.textShortJuly": "7.", + "Common.UI.Calendar.textShortJune": "6.", + "Common.UI.Calendar.textShortMarch": "3.", + "Common.UI.Calendar.textShortMay": "5월", + "Common.UI.Calendar.textShortMonday": "월", + "Common.UI.Calendar.textShortNovember": "11.", + "Common.UI.Calendar.textShortOctober": "10.", + "Common.UI.Calendar.textShortSaturday": "토", + "Common.UI.Calendar.textShortSeptember": "9월", + "Common.UI.Calendar.textShortSunday": "일", + "Common.UI.Calendar.textShortThursday": "Th", + "Common.UI.Calendar.textShortTuesday": "화", + "Common.UI.Calendar.textShortWednesday": "우리", + "Common.UI.Calendar.textYears": "년", "Common.UI.ComboBorderSize.txtNoBorders": "테두리 없음", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "테두리 없음", "Common.UI.ComboDataView.emptyComboText": "스타일 없음", @@ -96,6 +182,9 @@ "Common.UI.SynchronizeTip.textSynchronize": "다른 사용자가 문서를 변경했습니다.
클릭하여 변경 사항을 저장하고 업데이트를 다시로드하십시오.", "Common.UI.ThemeColorPalette.textStandartColors": "표준 색상", "Common.UI.ThemeColorPalette.textThemeColors": "테마 색", + "Common.UI.Themes.txtThemeClassicLight": "전통적인 밝은 색상", + "Common.UI.Themes.txtThemeDark": "어두운", + "Common.UI.Themes.txtThemeLight": "밝은", "Common.UI.Window.cancelButtonText": "취소", "Common.UI.Window.closeButtonText": "닫기", "Common.UI.Window.noButtonText": "No", @@ -115,8 +204,40 @@ "Common.Views.About.txtPoweredBy": "Powered by", "Common.Views.About.txtTel": "tel .:", "Common.Views.About.txtVersion": "버전", + "Common.Views.AutoCorrectDialog.textAdd": "추가", + "Common.Views.AutoCorrectDialog.textApplyText": "입력과 동시에 적용", + "Common.Views.AutoCorrectDialog.textAutoCorrect": "자동 고침", + "Common.Views.AutoCorrectDialog.textAutoFormat": "입력 할 때 자동 서식", + "Common.Views.AutoCorrectDialog.textBulleted": "자동 글머리 기호 목록", + "Common.Views.AutoCorrectDialog.textBy": "작성", + "Common.Views.AutoCorrectDialog.textDelete": "삭제", + "Common.Views.AutoCorrectDialog.textFLSentence": "영어 문장의 첫 글자를 대문자로", + "Common.Views.AutoCorrectDialog.textHyperlink": "네트워크 경로 하이퍼링크", + "Common.Views.AutoCorrectDialog.textHyphens": "하이픈(--)과 대시(—)", + "Common.Views.AutoCorrectDialog.textMathCorrect": "수식 자동 고침", + "Common.Views.AutoCorrectDialog.textNumbered": "자동 번호 매기기 목록", "Common.Views.AutoCorrectDialog.textQuotes": "\"직선 따옴표\" 및 \"곱게 따옴표\"", + "Common.Views.AutoCorrectDialog.textRecognized": "인식된 함수", + "Common.Views.AutoCorrectDialog.textRecognizedDesc": "다음 표현식은 인식 된 수식입니다. 자동으로 이탤릭체로 될 수는 없습니다.", + "Common.Views.AutoCorrectDialog.textReplace": "바꾸기", + "Common.Views.AutoCorrectDialog.textReplaceText": "입력시 바꿈", + "Common.Views.AutoCorrectDialog.textReplaceType": "입력시 텍스트 바꿈", + "Common.Views.AutoCorrectDialog.textReset": "재설정", + "Common.Views.AutoCorrectDialog.textResetAll": "기본값을 재설정", + "Common.Views.AutoCorrectDialog.textRestore": "복구", + "Common.Views.AutoCorrectDialog.textTitle": "자동 고침", + "Common.Views.AutoCorrectDialog.textWarnAddRec": "인식되는 함수는 대소 A ~ Z까지의 문자만을 포함해야합니다.", + "Common.Views.AutoCorrectDialog.textWarnResetRec": "추가한 모든 표현식이 삭제되고 삭제된 표현식이 복원됩니다. 계속하시겠습니까?", + "Common.Views.AutoCorrectDialog.warnReplace": "%1에 대한 자동 고침 항목이 이미 있습니다. 교체하시겠습니까?", + "Common.Views.AutoCorrectDialog.warnReset": "추가한 모든 자동 고침이 삭제되고 변경된 자동 수정이 원래 값으로 복원됩니다. 계속하시겠습니까?", + "Common.Views.AutoCorrectDialog.warnRestore": "%1의 자동 고침 항목이 원래 값으로 재설정됩니다. 계속하시겠습니까?", "Common.Views.Chat.textSend": "보내기", + "Common.Views.Comments.mniAuthorAsc": "A에서 Z까지 작성자", + "Common.Views.Comments.mniAuthorDesc": "Z에서 A까지 작성자", + "Common.Views.Comments.mniDateAsc": "가장 오래된", + "Common.Views.Comments.mniDateDesc": "최신", + "Common.Views.Comments.mniPositionAsc": "위에서 부터", + "Common.Views.Comments.mniPositionDesc": "아래로 부터", "Common.Views.Comments.textAdd": "추가", "Common.Views.Comments.textAddComment": "덧글 추가", "Common.Views.Comments.textAddCommentToDoc": "문서에 설명 추가", @@ -124,6 +245,7 @@ "Common.Views.Comments.textAnonym": "손님", "Common.Views.Comments.textCancel": "취소", "Common.Views.Comments.textClose": "닫기", + "Common.Views.Comments.textClosePanel": "코멘트 닫기", "Common.Views.Comments.textComments": "Comments", "Common.Views.Comments.textEdit": "OK", "Common.Views.Comments.textEnterCommentHint": "여기에 의견을 입력하십시오", @@ -132,6 +254,7 @@ "Common.Views.Comments.textReply": "Reply", "Common.Views.Comments.textResolve": "해결", "Common.Views.Comments.textResolved": "해결됨", + "Common.Views.Comments.textSort": "코멘트 분류", "Common.Views.CopyWarningDialog.textDontShow": "이 메시지를 다시 표시하지 않음", "Common.Views.CopyWarningDialog.textMsg": "편집기 도구 모음 단추 및 컨텍스트 메뉴 작업을 사용하여 복사, 잘라 내기 및 붙여 넣기 작업은이 편집기 탭 내에서만 수행됩니다.

외부 응용 프로그램으로 복사하거나 붙여 넣으려면 편집기 탭은 다음과 같은 키보드 조합을 사용합니다 : ", "Common.Views.CopyWarningDialog.textTitle": "작업 복사, 잘라 내기 및 붙여 넣기", @@ -146,13 +269,15 @@ "Common.Views.ExternalMergeEditor.textClose": "닫기", "Common.Views.ExternalMergeEditor.textSave": "저장 및 종료", "Common.Views.ExternalMergeEditor.textTitle": "편지 병합받는 사람", - "Common.Views.Header.labelCoUsersDescr": "문서는 현재 여러 사용자가 편집하고 있습니다.", + "Common.Views.Header.labelCoUsersDescr": "파일을 편집 중인 사용자:", + "Common.Views.Header.textAddFavorite": "즐겨찾기에 추가", "Common.Views.Header.textAdvSettings": "고급 설정", - "Common.Views.Header.textBack": "문서로 이동", + "Common.Views.Header.textBack": "파일 위치 열기", "Common.Views.Header.textCompactView": "보기 컴팩트 도구 모음", "Common.Views.Header.textHideLines": "눈금자 숨기기", "Common.Views.Header.textHideStatusBar": "상태 표시 줄 숨기기", - "Common.Views.Header.textZoom": "확대 / 축소", + "Common.Views.Header.textRemoveFavorite": "즐겨찾기 제거", + "Common.Views.Header.textZoom": "확대/축소", "Common.Views.Header.tipAccessRights": "문서 액세스 권한 관리", "Common.Views.Header.tipDownload": "파일을 다운로드", "Common.Views.Header.tipGoEdit": "현재 파일 편집", @@ -170,6 +295,7 @@ "Common.Views.History.textRestore": "복원", "Common.Views.History.textShow": "확장", "Common.Views.History.textShowAll": "자세한 변경 사항 표시", + "Common.Views.History.textVer": "ver.", "Common.Views.ImageFromUrlDialog.textUrl": "이미지 URL 붙여 넣기 :", "Common.Views.ImageFromUrlDialog.txtEmpty": "이 입력란은 필수 항목", "Common.Views.ImageFromUrlDialog.txtNotUrl": "이 필드는 \"http://www.example.com\"형식의 URL이어야합니다.", @@ -187,6 +313,7 @@ "Common.Views.OpenDialog.txtOpenFile": "파일을 열려면 암호를 입력하십시오.", "Common.Views.OpenDialog.txtPassword": "비밀번호", "Common.Views.OpenDialog.txtPreview": "미리보기", + "Common.Views.OpenDialog.txtProtected": "암호를 입력하고 파일을 열면 파일의 현재 암호가 재설정됩니다.", "Common.Views.OpenDialog.txtTitle": "% 1 옵션 선택", "Common.Views.OpenDialog.txtTitleProtected": "보호 된 파일", "Common.Views.PasswordDialog.txtDescription": "문서 보호용 비밀번호를 세팅하세요", @@ -210,22 +337,32 @@ "Common.Views.Protection.txtEncrypt": "암호화", "Common.Views.Protection.txtInvisibleSignature": "디지털 서명을 추가", "Common.Views.Protection.txtSignature": "서명", - "Common.Views.Protection.txtSignatureLine": "서명 라인", + "Common.Views.Protection.txtSignatureLine": "서명란 추가", "Common.Views.RenameDialog.textName": "파일 이름", "Common.Views.RenameDialog.txtInvalidName": "파일 이름에 다음 문자를 포함 할 수 없습니다 :", "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.strFastDesc": "실시간 협력 편집. 모든 변경사항들은 자동적으로 저장됨.", + "Common.Views.ReviewChanges.strFastDesc": "실시간 공동 편집. 모든 변경사항들은 자동적으로 저장됨.", "Common.Views.ReviewChanges.strStrict": "엄격한", - "Common.Views.ReviewChanges.strStrictDesc": "귀하와 다른 사람이 변경사항을 동기화 하려면 '저장'버튼을 사용하세요.", - "Common.Views.ReviewChanges.textWarnTrackChanges": "승인된 사용자를 위해 변경 내용 추적이 활성중입니다. 다음 사용자가 문서를 열면 변경 내용 추적이 활성 상태로 유지됩니다.", - "Common.Views.ReviewChanges.textWarnTrackChangesTitle": "모든 사용자에게 변경 내역을 적용 하시겠습니까?", + "Common.Views.ReviewChanges.strStrictDesc": "\"저장\" 버튼을 사용하여 귀하와 다른 사람들이 변경한 사항을 동기화하십시오.", + "Common.Views.ReviewChanges.textEnable": "활성", + "Common.Views.ReviewChanges.textWarnTrackChanges": "승인된 사용자를 위해 변경 내용 추적 기능이 활성중입니다. 다음 사용자가 문서를 열면 변경 내용 추적 기능이 활성 상태로 유지됩니다.", + "Common.Views.ReviewChanges.textWarnTrackChangesTitle": "모든 사용자에게 변경 내용 추적 기능을 적용 하시겠습니까?", "Common.Views.ReviewChanges.tipAcceptCurrent": "현재 변경 내용 적용", "Common.Views.ReviewChanges.tipCoAuthMode": "협력 편집 모드 세팅", + "Common.Views.ReviewChanges.tipCommentRem": "코멘트 삭제", + "Common.Views.ReviewChanges.tipCommentRemCurrent": "현재 코멘트 삭제", + "Common.Views.ReviewChanges.tipCommentResolve": "코멘트를 해결된 것으로 표시", + "Common.Views.ReviewChanges.tipCommentResolveCurrent": "현 코멘트를 해결된 것으로 표시", + "Common.Views.ReviewChanges.tipCompare": "현재 문서를 다른 문서와 비교", "Common.Views.ReviewChanges.tipHistory": "버전 표시", "Common.Views.ReviewChanges.tipRejectCurrent": "현재 변경 거부", - "Common.Views.ReviewChanges.tipReview": "변경 내역 추적", + "Common.Views.ReviewChanges.tipReview": "변경 내용 추적", "Common.Views.ReviewChanges.tipReviewView": "변경사항이 표시될 모드 선택", "Common.Views.ReviewChanges.tipSetDocLang": "문서 언어 설정", "Common.Views.ReviewChanges.tipSetSpelling": "맞춤법 검사", @@ -237,14 +374,31 @@ "Common.Views.ReviewChanges.txtChat": "채팅", "Common.Views.ReviewChanges.txtClose": "닫기", "Common.Views.ReviewChanges.txtCoAuthMode": "공동 편집 모드", + "Common.Views.ReviewChanges.txtCommentRemAll": "모든 코멘트 삭제", + "Common.Views.ReviewChanges.txtCommentRemCurrent": "현재 코멘트 삭제", + "Common.Views.ReviewChanges.txtCommentRemMy": "내 코멘트 삭제", + "Common.Views.ReviewChanges.txtCommentRemMyCurrent": "내 현재 댓글 삭제", + "Common.Views.ReviewChanges.txtCommentRemove": "삭제", + "Common.Views.ReviewChanges.txtCommentResolve": "해결", + "Common.Views.ReviewChanges.txtCommentResolveAll": "모든 코멘트를 해결된 것으로 표시", + "Common.Views.ReviewChanges.txtCommentResolveCurrent": "현 코멘트를 해결된 것으로 표시", + "Common.Views.ReviewChanges.txtCommentResolveMy": "내 코멘트를 해결된 것을 표시", + "Common.Views.ReviewChanges.txtCommentResolveMyCurrent": "내 코멘트를 해결된 것으로 표시", + "Common.Views.ReviewChanges.txtCompare": "비교", "Common.Views.ReviewChanges.txtDocLang": "언어", "Common.Views.ReviewChanges.txtEditing": "편집", "Common.Views.ReviewChanges.txtFinal": "모든 변경 접수됨 {0}", "Common.Views.ReviewChanges.txtFinalCap": "최종", "Common.Views.ReviewChanges.txtHistory": "버전 기록", "Common.Views.ReviewChanges.txtMarkup": "모든 변경{0}", - "Common.Views.ReviewChanges.txtMarkupCap": "마크업", + "Common.Views.ReviewChanges.txtMarkupCap": "마크업 과 풍선", + "Common.Views.ReviewChanges.txtMarkupSimple": "모든 변경사항{0}
풍선 없음", + "Common.Views.ReviewChanges.txtMarkupSimpleCap": "표시된 변경 사항만", "Common.Views.ReviewChanges.txtNext": "다음 변경 사항", + "Common.Views.ReviewChanges.txtOff": "나만 표시 안함", + "Common.Views.ReviewChanges.txtOffGlobal": "나와 모두 표시 안함", + "Common.Views.ReviewChanges.txtOn": "나만 표시", + "Common.Views.ReviewChanges.txtOnGlobal": "나와 모두 표시", "Common.Views.ReviewChanges.txtOriginal": "모든 변경 거부됨 {0}", "Common.Views.ReviewChanges.txtOriginalCap": "오리지널", "Common.Views.ReviewChanges.txtPrev": "이전 변경으로", @@ -255,7 +409,7 @@ "Common.Views.ReviewChanges.txtRejectCurrent": "현재 변경 거부", "Common.Views.ReviewChanges.txtSharing": "공유", "Common.Views.ReviewChanges.txtSpelling": "맞춤법 검사", - "Common.Views.ReviewChanges.txtTurnon": "변경 내역 추적", + "Common.Views.ReviewChanges.txtTurnon": "변경 내용 추적", "Common.Views.ReviewChanges.txtView": "디스플레이 모드", "Common.Views.ReviewChangesDialog.textTitle": "변경사항 다시보기", "Common.Views.ReviewChangesDialog.txtAccept": "수락", @@ -266,13 +420,27 @@ "Common.Views.ReviewChangesDialog.txtReject": "거부", "Common.Views.ReviewChangesDialog.txtRejectAll": "모든 변경 사항 거부", "Common.Views.ReviewChangesDialog.txtRejectCurrent": "현재 변경 거부", + "Common.Views.ReviewPopover.textAdd": "추가", + "Common.Views.ReviewPopover.textAddReply": "댓글추가", + "Common.Views.ReviewPopover.textCancel": "취소", + "Common.Views.ReviewPopover.textClose": "닫기", + "Common.Views.ReviewPopover.textEdit": "확인", + "Common.Views.ReviewPopover.textFollowMove": "이동", "Common.Views.ReviewPopover.textMention": "+이 내용은 이 문서에 접근시 이메일을 통해 전달됩니다.", "Common.Views.ReviewPopover.textMentionNotify": "+이 내용은 사용자에게 이메일을 통해서 알려집니다.", + "Common.Views.ReviewPopover.textOpenAgain": "다시 열기", + "Common.Views.ReviewPopover.textReply": "댓글", + "Common.Views.ReviewPopover.textResolve": "해결", + "Common.Views.SaveAsDlg.textLoading": "로드 중", + "Common.Views.SaveAsDlg.textTitle": "저장 폴더", + "Common.Views.SelectFileDlg.textLoading": "로드 중", + "Common.Views.SelectFileDlg.textTitle": "데이터 소스 선택", "Common.Views.SignDialog.textBold": "볼드체", "Common.Views.SignDialog.textCertificate": "인증", "Common.Views.SignDialog.textChange": "변경", "Common.Views.SignDialog.textInputName": "서명자 성함을 입력하세요", "Common.Views.SignDialog.textItalic": "이탈릭", + "Common.Views.SignDialog.textNameError": "서명자의 이름은 비워둘 수 없습니다.", "Common.Views.SignDialog.textPurpose": "이 문서에 서명하는 목적", "Common.Views.SignDialog.textSelect": "선택", "Common.Views.SignDialog.textSelectImage": "이미지 선택", @@ -291,19 +459,48 @@ "Common.Views.SignSettingsDialog.textShowDate": "서명라인에 서명 날짜를 보여주세요", "Common.Views.SignSettingsDialog.textTitle": "서명 셋업", "Common.Views.SignSettingsDialog.txtEmpty": "이 입력란은 필수 항목", + "Common.Views.SymbolTableDialog.textCharacter": "문자", "Common.Views.SymbolTableDialog.textCode": "유니코드 HEX 값", + "Common.Views.SymbolTableDialog.textCopyright": "저작권 표시", + "Common.Views.SymbolTableDialog.textDCQuote": "큰 따옴표 닫기", + "Common.Views.SymbolTableDialog.textDOQuote": "큰 따옴표 (왼쪽)", + "Common.Views.SymbolTableDialog.textEllipsis": "수평줄임표", + "Common.Views.SymbolTableDialog.textEmDash": "Em 대시", + "Common.Views.SymbolTableDialog.textEmSpace": "Em 공백", + "Common.Views.SymbolTableDialog.textEnDash": "En 대시", + "Common.Views.SymbolTableDialog.textEnSpace": "En 공백", "Common.Views.SymbolTableDialog.textFont": "글꼴", + "Common.Views.SymbolTableDialog.textNBHyphen": "줄 바꿈없는 하이픈", + "Common.Views.SymbolTableDialog.textNBSpace": "줄 바꿈 없는 공백", + "Common.Views.SymbolTableDialog.textPilcrow": "단락기호", + "Common.Views.SymbolTableDialog.textQEmSpace": "1/4 칸", + "Common.Views.SymbolTableDialog.textRange": "범위", + "Common.Views.SymbolTableDialog.textRecent": "최근 사용한 기호", + "Common.Views.SymbolTableDialog.textRegistered": "등록된 서명", + "Common.Views.SymbolTableDialog.textSCQuote": "작은 따옴표 닫기", + "Common.Views.SymbolTableDialog.textSection": "섹션 기호", + "Common.Views.SymbolTableDialog.textShortcut": "단축키", + "Common.Views.SymbolTableDialog.textSHyphen": "소프트 하이픈", + "Common.Views.SymbolTableDialog.textSOQuote": "작은 따옴표 (왼쪽)", + "Common.Views.SymbolTableDialog.textSpecial": "특수 문자", "Common.Views.SymbolTableDialog.textSymbols": "기호", "Common.Views.SymbolTableDialog.textTitle": "기호", - "DE.Controllers.LeftMenu.leavePageText": "이 문서의 모든 저장되지 않은 변경 사항이 손실됩니다.
취소 를 클릭 한 다음저장 \"을 클릭하여 저장하십시오. 저장되지 않은 변경 사항. ", + "Common.Views.SymbolTableDialog.textTradeMark": "로고기호", + "Common.Views.UserNameDialog.textDontShow": "다시 표시하지 않음", + "Common.Views.UserNameDialog.textLabel": "라벨:", + "Common.Views.UserNameDialog.textLabelError": "라벨은 비워 둘 수 없습니다.", + "DE.Controllers.LeftMenu.leavePageText": "이 문서에 저장되지 않은 모든 변경 사항이 손실됩니다.
\"취소\"를 클릭한 다음 \"저장\"을 클릭하여 저장하십시오. 저장되지 않은 모든 변경 사항을 취소하려면 \"확인\"을 클릭하십시오.", "DE.Controllers.LeftMenu.newDocumentTitle": "Unnamed document", "DE.Controllers.LeftMenu.notcriticalErrorTitle": "경고", "DE.Controllers.LeftMenu.requestEditRightsText": "편집 권한 요청 중 ...", - "DE.Controllers.LeftMenu.textLoadHistory": "버전 기록로드 중 ...", + "DE.Controllers.LeftMenu.textLoadHistory": "버전 기록 로드 중...", "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.warnDownloadAs": "이 형식으로 저장을 계속하면 텍스트를 제외한 모든 기능이 손실됩니다. 계속 하시겠습니까?", + "DE.Controllers.LeftMenu.warnDownloadAsRTF": "이 형식으로 계속 저장하면 일부 형식이 손실될 수 있습니다.
계속하시겠습니까?", "DE.Controllers.Main.applyChangesTextText": "변경로드 중 ...", "DE.Controllers.Main.applyChangesTitleText": "변경 내용로드 중", "DE.Controllers.Main.convertationTimeoutText": "전환 시간 초과를 초과했습니다.", @@ -317,30 +514,42 @@ "DE.Controllers.Main.errorAccessDeny": "권한이없는 작업을 수행하려고합니다.
문서 관리자에게 문의하십시오.", "DE.Controllers.Main.errorBadImageUrl": "이미지 URL이 잘못되었습니다.", "DE.Controllers.Main.errorCoAuthoringDisconnect": "서버 연결이 끊어졌습니다. 지금 문서를 편집 할 수 없습니다.", - "DE.Controllers.Main.errorConnectToServer": "문서를 저장할 수 없습니다. 연결 설정을 확인하거나 관리자에게 문의하십시오.
'확인'버튼을 클릭하면 문서를 다운로드하라는 메시지가 나타납니다.", + "DE.Controllers.Main.errorComboSeries": "혼합형 차트를 만들려면 최소 2 개의 데이터를 선택합니다.", + "DE.Controllers.Main.errorCompare": "공동 편집 시 \"문서 비교\" 기능을 사용할 수 없습니다.", + "DE.Controllers.Main.errorConnectToServer": "문서를 저장할 수 없습니다. 연결 설정을 확인하거나 관리자에게 문의하세요.
\"확인\" 버튼을 클릭하면 문서를 다운로드하라는 메시지가 표시됩니다.", "DE.Controllers.Main.errorDatabaseConnection": "외부 오류.
데이터베이스 연결 오류입니다. 오류가 계속 발생하면 지원부에 문의하십시오.", - "DE.Controllers.Main.errorDataRange": "잘못된 데이터 범위입니다.", + "DE.Controllers.Main.errorDataEncrypted": "암호화 변경 사항이 수신되었으며 해독할 수 없습니다.", + "DE.Controllers.Main.errorDataRange": "잘못된 참조 대상 입니다.", "DE.Controllers.Main.errorDefaultMessage": "오류 코드 : % 1", + "DE.Controllers.Main.errorDirectUrl": "문서에 대한 링크를 확인하십시오.
이 링크는 다운로드할 파일에 대한 직접 링크여야 합니다.", + "DE.Controllers.Main.errorEditingDownloadas": "문서를 처리하는 동안 오류가 발생했습니다.
\"다른 이름으로 다운로드...\" 옵션을 사용하여 파일의 백업 사본을 컴퓨터의 하드 드라이브에 저장하십시오.", + "DE.Controllers.Main.errorEditingSaveas": "문서를 사용하는 동안 오류가 발생했습니다.
파일의 백업 사본을 컴퓨터의 하드 드라이브에 저장하려면 \"다른 이름으로 저장...\" 옵션을 사용하십시오.", + "DE.Controllers.Main.errorEmailClient": "이메일 클라이언트를 찾을 수 없습니다.", "DE.Controllers.Main.errorFilePassProtect": "문서가 암호로 보호되어 있습니다.", + "DE.Controllers.Main.errorFileSizeExceed": "이 파일은 이 호스트의 크기 제한을 초과합니다.
자세한 내용은 파일 서비스 호스트의 관리자에게 문의하십시오.", "DE.Controllers.Main.errorForceSave": "파일 저장중 문제 발생됨. 컴퓨터 하드 드라이브에 파일을 저장하려면 '로 다운로드' 옵션을 사용 또는 나중에 다시 시도하세요.", "DE.Controllers.Main.errorKeyEncrypt": "알 수없는 키 설명자", "DE.Controllers.Main.errorKeyExpire": "키 설명자가 만료되었습니다", "DE.Controllers.Main.errorLoadingFont": "글꼴 불러오기에 실패하였습니다.
문서 시스템 관리자에게 문의하세요.", - "DE.Controllers.Main.errorMailMergeLoadFile": "로드 실패", + "DE.Controllers.Main.errorMailMergeLoadFile": "문서의 읽기에 실패했습니다. 다른 파일을 선택하십시오.", "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.errorSetPassword": "비밀번호를 재설정할 수 없습니다.", "DE.Controllers.Main.errorStockChart": "잘못된 행 순서. 주식형 차트를 작성하려면 다음 순서로 시트에 데이터를 배치하십시오 :
개시 가격, 최대 가격, 최소 가격, 마감 가격.", + "DE.Controllers.Main.errorSubmit": "전송실패", "DE.Controllers.Main.errorToken": "문서 보안 토큰이 올바르게 구성되지 않았습니다.
Document Server 관리자에게 문의하십시오.", "DE.Controllers.Main.errorTokenExpire": "문서 보안 토큰이 만료되었습니다.
Document Server 관리자에게 문의하십시오.", "DE.Controllers.Main.errorUpdateVersion": "파일 버전이 변경되었습니다. 페이지가 다시로드됩니다.", + "DE.Controllers.Main.errorUpdateVersionOnDisconnect": "네트워크 연결이 복원되었습니다. 파일 버전이 변경되었습니다. .
계속 작업하기 전에 파일을 다운로드하거나 파일 내용을 복사하여 손실된 항목이 없는지 확인한 다음 이 페이지를 다시 로드해야 합니다.", "DE.Controllers.Main.errorUserDrop": "파일에 지금 액세스 할 수 없습니다.", "DE.Controllers.Main.errorUsersExceed": "가격 책정 계획에서 허용 한 사용자 수가 초과되었습니다", "DE.Controllers.Main.errorViewerDisconnect": "연결이 끊어졌습니다. 문서를 볼 수는

하지만 연결이 복원 될 때까지 다운로드하거나 인쇄 할 수 없습니다.", - "DE.Controllers.Main.leavePageText": "이 문서에 변경 사항을 저장하지 않았습니다.이 페이지에 머물러 \"다음 \"저장\"을 클릭하여 저장하십시오. \"이 페이지를 남겨두기\"를 클릭하여 모두 버리십시오. 저장되지 않은 변경 사항. ", + "DE.Controllers.Main.leavePageText": "이 문서에 변경 사항을 저장하지 않았습니다. \"이 페이지에 유지\"를 클릭한 다음 \"저장\"을 클릭하여 저장합니다. 저장하지 않은 모든 변경 사항을 취소하려면 \"이 페이지에서 나가기\"를 클릭하십시오.", + "DE.Controllers.Main.leavePageTextOnClose": "이 문서에 저장되지 않은 모든 변경 사항이 손실됩니다.
\"취소\"를 클릭한 다음 \"저장\"을 클릭하여 저장하십시오. 저장되지 않은 모든 변경 사항을 취소하려면 \"확인\"을 클릭하십시오.", "DE.Controllers.Main.loadFontsTextText": "데이터로드 중 ...", "DE.Controllers.Main.loadFontsTitleText": "데이터로드 중", "DE.Controllers.Main.loadFontTextText": "데이터로드 중 ...", @@ -363,25 +572,41 @@ "DE.Controllers.Main.requestEditFailedMessageText": "누군가이 문서를 지금 편집하고 있습니다. 나중에 다시 시도하십시오.", "DE.Controllers.Main.requestEditFailedTitleText": "액세스가 거부되었습니다", "DE.Controllers.Main.saveErrorText": "파일을 저장하는 동안 오류가 발생했습니다.", + "DE.Controllers.Main.saveErrorTextDesktop": "이 파일을 저장하거나 생성할 수 없습니다.
가능한 이유는 다음과 같습니다.
1. 파일이 읽기 전용입니다.
2. 다른 사용자가 파일을 편집 중입니다.
3. 디스크가 가득 찼거나 손상되었습니다.", "DE.Controllers.Main.savePreparingText": "저장 준비 중", "DE.Controllers.Main.savePreparingTitle": "저장 준비 중입니다. 잠시 기다려주십시오 ...", "DE.Controllers.Main.saveTextText": "문서 저장 중 ...", "DE.Controllers.Main.saveTitleText": "문서 저장 중", + "DE.Controllers.Main.scriptLoadError": "연결 속도가 느려, 일부 요소들이 로드되지 않았습니다. 페이지를 다시 새로 고침해주세요.", "DE.Controllers.Main.sendMergeText": "Sending Merge ...", "DE.Controllers.Main.sendMergeTitle": "Sending Merge", "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.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.textDisconnect": "네트워크 연결 끊김", + "DE.Controllers.Main.textGuest": "게스트", + "DE.Controllers.Main.textHasMacros": "파일에 자동 매크로가 포함되어 있습니다.
매크로를 실행 하시겠습니까?", + "DE.Controllers.Main.textLearnMore": "자세히", "DE.Controllers.Main.textLoadingDocument": "문서로드 중", + "DE.Controllers.Main.textLongName": "128자 미만의 이름을 입력하세요.", "DE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE 연결 제한", - "DE.Controllers.Main.textShape": "Shape", + "DE.Controllers.Main.textPaidFeature": "유료기능", + "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.textTryUndoRedo": "Fast co-editing mode 에서는 실행 취소 / 다시 실행 기능이 비활성화됩니다.
\"Strict co-editing mode \"버튼을 클릭하면 엄격한 공동 편집 모드로 전환되어 파일을 편집 할 수 있습니다. 다른 사용자가 방해를해서 저장 한 후에 만 ​​변경 사항을 보내면됩니다. 편집자 고급 설정을 사용하여 공동 편집 모드간에 전환 할 수 있습니다. ", + "DE.Controllers.Main.textTryUndoRedoWarn": "빠른 공동 편집 모드에서 실행 취소 / 다시 실행 기능을 사용할 수 없습니다.", "DE.Controllers.Main.titleLicenseExp": "라이센스 만료", "DE.Controllers.Main.titleServerVersion": "편집기가 업데이트되었습니다.", "DE.Controllers.Main.titleUpdateVersion": "버전이 변경되었습니다.", @@ -391,40 +616,216 @@ "DE.Controllers.Main.txtBelow": "아래", "DE.Controllers.Main.txtBookmarkError": "문제발생! 북마크가 정의되지 않음", "DE.Controllers.Main.txtButtons": "Buttons", - "DE.Controllers.Main.txtCallouts": "콜 아웃", + "DE.Controllers.Main.txtCallouts": "설명선", "DE.Controllers.Main.txtCharts": "Charts", + "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.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": "\n표에없는 수식", "DE.Controllers.Main.txtHeader": "머리글", + "DE.Controllers.Main.txtHyperlink": "하이퍼 링크", + "DE.Controllers.Main.txtIndTooLarge": "색인이 너무 큽니다", "DE.Controllers.Main.txtLines": "Lines", + "DE.Controllers.Main.txtMainDocOnly": "오류! 주요 문서만 해당됨.", "DE.Controllers.Main.txtMath": "수학", + "DE.Controllers.Main.txtMissArg": "인수가 없습니다", + "DE.Controllers.Main.txtMissOperator": "연산자가 없습니다", "DE.Controllers.Main.txtNeedSynchronize": "업데이트가 있습니다.", - "DE.Controllers.Main.txtNoTableOfContents": "테이블 콘텐츠 항목 없슴", + "DE.Controllers.Main.txtNone": "없음", + "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.txtRectangles": "사각형", "DE.Controllers.Main.txtSameAsPrev": "이전과 동일", "DE.Controllers.Main.txtSection": "섹션", "DE.Controllers.Main.txtSeries": "Series", - "DE.Controllers.Main.txtShape_bentArrow": "구불어진 화살표", + "DE.Controllers.Main.txtShape_accentBorderCallout1": "설명선 1 (테두리 강조)", + "DE.Controllers.Main.txtShape_accentBorderCallout2": "설명선 2 (테두리 강조)", + "DE.Controllers.Main.txtShape_accentBorderCallout3": "설명선 3 (테두리 강조)", + "DE.Controllers.Main.txtShape_accentCallout1": "설명선 1 (강조선)", + "DE.Controllers.Main.txtShape_accentCallout2": "설명선 2 (강조선)", + "DE.Controllers.Main.txtShape_accentCallout3": "설명선 3 (강조선)", + "DE.Controllers.Main.txtShape_actionButtonBackPrevious": "되돌리기 또는 이전 버튼", + "DE.Controllers.Main.txtShape_actionButtonBeginning": "시작 버튼", + "DE.Controllers.Main.txtShape_actionButtonBlank": "공백 버튼", + "DE.Controllers.Main.txtShape_actionButtonDocument": "문서버튼", + "DE.Controllers.Main.txtShape_actionButtonEnd": "종료버튼", + "DE.Controllers.Main.txtShape_actionButtonForwardNext": "다음 버튼", + "DE.Controllers.Main.txtShape_actionButtonHelp": "도움말 버튼", + "DE.Controllers.Main.txtShape_actionButtonHome": "홈 버튼", + "DE.Controllers.Main.txtShape_actionButtonInformation": "상세정보 버튼", + "DE.Controllers.Main.txtShape_actionButtonMovie": "동영상 버튼", + "DE.Controllers.Main.txtShape_actionButtonReturn": "뒤로가기 버튼", + "DE.Controllers.Main.txtShape_actionButtonSound": "소리 버튼", + "DE.Controllers.Main.txtShape_arc": "원호", + "DE.Controllers.Main.txtShape_bentArrow": "화살표: 굽음", "DE.Controllers.Main.txtShape_bentConnector5": "연결선: 꺾임", "DE.Controllers.Main.txtShape_bentConnector5WithArrow": "연결선: 꺾인 화살표", "DE.Controllers.Main.txtShape_bentConnector5WithTwoArrows": "연결선: 꺾인 양쪽 화살표", - "DE.Controllers.Main.txtShape_bentUpArrow": "위로 구불어진 화살표", - "DE.Controllers.Main.txtShape_circularArrow": "원형 화살표", + "DE.Controllers.Main.txtShape_bentUpArrow": "화살표: 위로 굽음", + "DE.Controllers.Main.txtShape_bevel": "액자", + "DE.Controllers.Main.txtShape_blockArc": "막힌 원호", + "DE.Controllers.Main.txtShape_borderCallout1": "설명선 1", + "DE.Controllers.Main.txtShape_borderCallout2": "설명선 2", + "DE.Controllers.Main.txtShape_borderCallout3": "설명선 3", + "DE.Controllers.Main.txtShape_bracePair": "양쪽 중괄호", + "DE.Controllers.Main.txtShape_callout1": "설명선 1 (테두리없음)", + "DE.Controllers.Main.txtShape_callout2": "설명선 2 (테두리없음)", + "DE.Controllers.Main.txtShape_callout3": "설명선 3 (테두리없음)", + "DE.Controllers.Main.txtShape_can": "원통형", + "DE.Controllers.Main.txtShape_chevron": "쉐브론", + "DE.Controllers.Main.txtShape_chord": "현", + "DE.Controllers.Main.txtShape_circularArrow": "화살표: 원형", + "DE.Controllers.Main.txtShape_cloud": "클라우드", + "DE.Controllers.Main.txtShape_cloudCallout": "생각풍선: 구름 모양", + "DE.Controllers.Main.txtShape_corner": "L도형", + "DE.Controllers.Main.txtShape_cube": "정육면체", "DE.Controllers.Main.txtShape_curvedConnector3": "연결선: 구부러짐", "DE.Controllers.Main.txtShape_curvedConnector3WithArrow": "연결선: 구부러진 화살표", "DE.Controllers.Main.txtShape_curvedConnector3WithTwoArrows": "연결선: 구부러진 양쪽 화살표", + "DE.Controllers.Main.txtShape_curvedDownArrow": "화살표: 아래로 구불어 짐", + "DE.Controllers.Main.txtShape_curvedLeftArrow": "화살표: 왼쪽으로 구불어 짐", + "DE.Controllers.Main.txtShape_curvedRightArrow": "화살표: 오른쪽으로 구불어 짐", + "DE.Controllers.Main.txtShape_curvedUpArrow": "화살표: 위로 구불어 짐", + "DE.Controllers.Main.txtShape_decagon": "십각형", + "DE.Controllers.Main.txtShape_diagStripe": "대각선 줄무늬", + "DE.Controllers.Main.txtShape_diamond": "다이아몬드", + "DE.Controllers.Main.txtShape_dodecagon": "12각형", + "DE.Controllers.Main.txtShape_donut": "도넛", + "DE.Controllers.Main.txtShape_doubleWave": "이중 물결", + "DE.Controllers.Main.txtShape_downArrow": "화살표: 아래쪽", + "DE.Controllers.Main.txtShape_downArrowCallout": "설명선: 아래쪽 화살표", + "DE.Controllers.Main.txtShape_ellipse": "타원형", + "DE.Controllers.Main.txtShape_ellipseRibbon": "리본: 아래로 구불어지고 기울어짐 ", + "DE.Controllers.Main.txtShape_ellipseRibbon2": "리본: 위로 구불어지고 기울어짐 ", + "DE.Controllers.Main.txtShape_flowChartAlternateProcess": "순서도: 대체 프로세스", + "DE.Controllers.Main.txtShape_flowChartCollate": "순서도: 일치", + "DE.Controllers.Main.txtShape_flowChartConnector": "순서도: 연결 연산자", + "DE.Controllers.Main.txtShape_flowChartDecision": "순서도: 결정", + "DE.Controllers.Main.txtShape_flowChartDelay": "순서도: 지연", + "DE.Controllers.Main.txtShape_flowChartDisplay": "순서도: 표시", + "DE.Controllers.Main.txtShape_flowChartDocument": "순서도: 문서", + "DE.Controllers.Main.txtShape_flowChartExtract": "순서도: 추출", + "DE.Controllers.Main.txtShape_flowChartInputOutput": "순서도: 데이터", + "DE.Controllers.Main.txtShape_flowChartInternalStorage": "순서도: 내부 스토리지", + "DE.Controllers.Main.txtShape_flowChartMagneticDisk": "순서도: 디스크", + "DE.Controllers.Main.txtShape_flowChartMagneticDrum": "순서도: 스토리지에 직접 접근", + "DE.Controllers.Main.txtShape_flowChartMagneticTape": "순서도: 순차 접근 스토리지", + "DE.Controllers.Main.txtShape_flowChartManualInput": "순서도: 수동 입력", + "DE.Controllers.Main.txtShape_flowChartManualOperation": "순서도: 수동조작", + "DE.Controllers.Main.txtShape_flowChartMerge": "순서도: 병합", + "DE.Controllers.Main.txtShape_flowChartMultidocument": "순서도: 다중문서", + "DE.Controllers.Main.txtShape_flowChartOffpageConnector": "순서도: 페이지 외부 커넥터", + "DE.Controllers.Main.txtShape_flowChartOnlineStorage": "순서도: 저장된 데이터", + "DE.Controllers.Main.txtShape_flowChartOr": "순서도: 또는", + "DE.Controllers.Main.txtShape_flowChartPredefinedProcess": "순서도: 미리 정의된 흐름", + "DE.Controllers.Main.txtShape_flowChartPreparation": "순서도: 준비", + "DE.Controllers.Main.txtShape_flowChartProcess": "순서도: 프로세스", + "DE.Controllers.Main.txtShape_flowChartPunchedCard": "순서도: 카드", + "DE.Controllers.Main.txtShape_flowChartPunchedTape": "순서도: 천공된 종이 테이프", + "DE.Controllers.Main.txtShape_flowChartSort": "순서도: 정렬", + "DE.Controllers.Main.txtShape_flowChartSummingJunction": "순서도: 합계 노드", + "DE.Controllers.Main.txtShape_flowChartTerminator": "순서도: 종료", + "DE.Controllers.Main.txtShape_foldedCorner": "접힌 모서리", + "DE.Controllers.Main.txtShape_frame": "프레임", + "DE.Controllers.Main.txtShape_halfFrame": "1/2 액자", + "DE.Controllers.Main.txtShape_heart": "하트모양", + "DE.Controllers.Main.txtShape_heptagon": "칠각형", + "DE.Controllers.Main.txtShape_hexagon": "육각형", + "DE.Controllers.Main.txtShape_homePlate": "오각형", + "DE.Controllers.Main.txtShape_horizontalScroll": "두루마리 모양: 가로로 말림", + "DE.Controllers.Main.txtShape_irregularSeal1": "폭발: 8pt", + "DE.Controllers.Main.txtShape_irregularSeal2": "폭발: 14pt", + "DE.Controllers.Main.txtShape_leftArrow": "화살표: 왼쪽", + "DE.Controllers.Main.txtShape_leftArrowCallout": "설명선: 왼쪽 화살표", + "DE.Controllers.Main.txtShape_leftBrace": "왼쪽 중괄호", + "DE.Controllers.Main.txtShape_leftBracket": "왼쪽 대괄호", + "DE.Controllers.Main.txtShape_leftRightArrow": "선 화살표 : 양방향", + "DE.Controllers.Main.txtShape_leftRightArrowCallout": "설명선: 왼쪽 및 오른쪽 화살표", + "DE.Controllers.Main.txtShape_leftRightUpArrow": "화살표: 왼쪽/위쪽", + "DE.Controllers.Main.txtShape_leftUpArrow": "화살표: 왼쪽", + "DE.Controllers.Main.txtShape_lightningBolt": "번개", + "DE.Controllers.Main.txtShape_line": "선", "DE.Controllers.Main.txtShape_lineWithArrow": "화살표", + "DE.Controllers.Main.txtShape_lineWithTwoArrows": "선 화살표: 양방향", + "DE.Controllers.Main.txtShape_mathDivide": "분할", + "DE.Controllers.Main.txtShape_mathEqual": "등호", + "DE.Controllers.Main.txtShape_mathMinus": "마이너스", + "DE.Controllers.Main.txtShape_mathMultiply": "곱셈", + "DE.Controllers.Main.txtShape_mathNotEqual": "부등호", + "DE.Controllers.Main.txtShape_mathPlus": "덧셈", + "DE.Controllers.Main.txtShape_moon": "달모양", "DE.Controllers.Main.txtShape_noSmoking": "\"없음\" 기호", - "DE.Controllers.Main.txtShape_textRect": "텍스트상자", - "DE.Controllers.Main.txtStarsRibbons": "Stars & Ribbons", + "DE.Controllers.Main.txtShape_notchedRightArrow": "화살표: 오른쪽 톱니 모양", + "DE.Controllers.Main.txtShape_octagon": "팔각형", + "DE.Controllers.Main.txtShape_parallelogram": "평행 사변형", + "DE.Controllers.Main.txtShape_pentagon": "오각형", + "DE.Controllers.Main.txtShape_pie": "부분 원형", + "DE.Controllers.Main.txtShape_plaque": "배지", + "DE.Controllers.Main.txtShape_plus": "덧셈", + "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_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_round1Rect": "사각형: 둥근 한쪽 모서리", + "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_snip1Rect": "사각형: 잘린 한쪽 모서리", + "DE.Controllers.Main.txtShape_snip2DiagRect": "사각형: 잘린 대각선 방향 모서리", + "DE.Controllers.Main.txtShape_snip2SameRect": "사각형: 잘린 양쪽 모서리", + "DE.Controllers.Main.txtShape_snipRoundRect": "사각형: 한쪽은 둥글고 한쪽은 짤린 모서리", + "DE.Controllers.Main.txtShape_spline": "곡선", + "DE.Controllers.Main.txtShape_star10": "별: 꼭짓점 10개", + "DE.Controllers.Main.txtShape_star12": "별: 꼭짓점 12개", + "DE.Controllers.Main.txtShape_star16": "별: 꼭짓점 16개", + "DE.Controllers.Main.txtShape_star24": "별: 꼭짓점 24개", + "DE.Controllers.Main.txtShape_star32": "별: 꼭짓점 32개", + "DE.Controllers.Main.txtShape_star4": "별: 꼭짓점 4개", + "DE.Controllers.Main.txtShape_star5": "별: 꼭짓점 5개", + "DE.Controllers.Main.txtShape_star6": "별: 꼭짓점 6개", + "DE.Controllers.Main.txtShape_star7": "별: 꼭짓점 7개", + "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_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_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_wedgeRoundRectCallout": "말풍선: 모서리가 둥근 사각형", + "DE.Controllers.Main.txtStarsRibbons": "별 및 현수막", + "DE.Controllers.Main.txtStyle_Caption": "참조", + "DE.Controllers.Main.txtStyle_endnote_text": "미주 텍스트", "DE.Controllers.Main.txtStyle_footnote_text": "꼬리말 글", "DE.Controllers.Main.txtStyle_Heading_1": "제목 1", "DE.Controllers.Main.txtStyle_Heading_2": "제목 2", @@ -436,52 +837,71 @@ "DE.Controllers.Main.txtStyle_Heading_8": "제목 8", "DE.Controllers.Main.txtStyle_Heading_9": "제목 9", "DE.Controllers.Main.txtStyle_Intense_Quote": "강렬한 견적", - "DE.Controllers.Main.txtStyle_List_Paragraph": "목록 단락", + "DE.Controllers.Main.txtStyle_List_Paragraph": "단락 목록", "DE.Controllers.Main.txtStyle_No_Spacing": "간격 없음", "DE.Controllers.Main.txtStyle_Normal": "표준", "DE.Controllers.Main.txtStyle_Quote": "Quote", "DE.Controllers.Main.txtStyle_Subtitle": "자막", "DE.Controllers.Main.txtStyle_Title": "제목", "DE.Controllers.Main.txtSyntaxError": "구문 오류", + "DE.Controllers.Main.txtTableInd": "테이블 인덱스는 0일 수 없습니다.", "DE.Controllers.Main.txtTableOfContents": "콘텐츠 테이블", + "DE.Controllers.Main.txtTableOfFigures": "목차", + "DE.Controllers.Main.txtTOCHeading": "TOC 제목", + "DE.Controllers.Main.txtTooLarge": "숫자가 너무 커서 형식을 지정할 수 없습니다", + "DE.Controllers.Main.txtTypeEquation": "여기에 방정식을 입력합니다.", + "DE.Controllers.Main.txtUndefBookmark": "정의되지 않은 책갈피", "DE.Controllers.Main.txtXAxis": "X 축", "DE.Controllers.Main.txtYAxis": "Y 축", + "DE.Controllers.Main.txtZeroDivide": "0으로 나누기", "DE.Controllers.Main.unknownErrorText": "알 수없는 오류.", "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.uploadImageSizeMessage": "이미지 크기 제한을 초과했습니다.", "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.warnBrowserZoom": "브라우저의 현재 확대/축소 설정이 완전히 지원되지 않습니다. Ctrl + 0을 눌러 기본 확대 / 축소로 재설정하십시오.", + "DE.Controllers.Main.warnLicenseExceeded": "귀하의 시스템은 동시에 연결을 편집하는 %1명의 편집자에게 도달했습니다. 이 문서는 보기 모드에서만 열 수 있습니다.
자세한 내용은 관리자에게 문의하십시오.", "DE.Controllers.Main.warnLicenseExp": "귀하의 라이센스가 만료되었습니다.
라이센스를 업데이트하고 페이지를 새로 고침하십시오.", - "DE.Controllers.Main.warnNoLicense": "이 버전의 %1 편집자는 문서 서버에 대한 동시 연결에 특정 제한 사항이 있습니다.
더 많은 정보가 필요하면 현재 라이센스를 업그레이드하거나 상업용 라이센스를 구입하십시오.", - "DE.Controllers.Main.warnNoLicenseUsers": "%1 편집자의이 버전은 동시 사용자에게 일정한 제한이 있습니다.
더 필요한 것이 있으면 현재 라이센스를 업그레이드하거나 상용 라이센스를 구입하십시오.", + "DE.Controllers.Main.warnLicenseLimitedNoAccess": "라이센스가 만료되었습니다.
더 이상 파일을 수정할 수 있는 권한이 없습니다.
관리자에게 문의하세요.", + "DE.Controllers.Main.warnLicenseLimitedRenewed": "라이센스를 갱신해야합니다.
문서 편집 기능에 대한 액세스가 제한되어 있습니다.
전체 액세스 권한을 얻으려면 관리자에게 문의하십시오", + "DE.Controllers.Main.warnLicenseUsersExceeded": "편집자 사용자 한도인 %1명에 도달했습니다. 자세한 내용은 관리자에게 문의하십시오.", + "DE.Controllers.Main.warnNoLicense": "이 버전의 %1 편집자에게는 문서 서버에 대한 동시 연결에 대한 특정 제한 사항이 있습니다.
더 많은 정보가 필요하면 현재 라이센스를 업그레이드하거나 상용 소프트웨어를 구입하십시오.", + "DE.Controllers.Main.warnNoLicenseUsers": "ONLYOFFICE 편집자의이 버전은 동시 사용자에게 일정한 제한이 있습니다.
더 필요한 것이 있으면 현재 라이센스를 업그레이드하거나 상용 라이센스를 구입하십시오.", "DE.Controllers.Main.warnProcessRightsChange": "파일 편집 권한이 거부되었습니다.", "DE.Controllers.Navigation.txtBeginning": "문서의 시작", "DE.Controllers.Navigation.txtGotoBeginning": "문서의 시작점으로 이동", "DE.Controllers.Statusbar.textHasChanges": "새로운 변경 내역이 조회되었습니다", - "DE.Controllers.Statusbar.textSetTrackChanges": "변경 내역 조회모드", - "DE.Controllers.Statusbar.textTrackChanges": "변경 내역 추적 기능이 활성화된 상태에서 문서가 열립니다.", - "DE.Controllers.Statusbar.tipReview": "변경 내역 추적", - "DE.Controllers.Statusbar.zoomText": "확대 / 축소 {0} %", + "DE.Controllers.Statusbar.textSetTrackChanges": "변경 내용 추적 모드 사용중", + "DE.Controllers.Statusbar.textTrackChanges": "변경 내용 추적 기능이 활성화된 상태에서 문서가 열립니다.", + "DE.Controllers.Statusbar.tipReview": "변경 내용 추적", + "DE.Controllers.Statusbar.zoomText": "확대/축소 {0} %", "DE.Controllers.Toolbar.confirmAddFontName": "저장하려는 글꼴을 현재 장치에서 사용할 수 없습니다.
시스템 글꼴 중 하나를 사용하여 텍스트 스타일을 표시하고 저장된 글꼴을 사용할 때 사용할 수 있습니다.
계속 하시겠습니까? ", "DE.Controllers.Toolbar.notcriticalErrorTitle": "경고", "DE.Controllers.Toolbar.textAccent": "Accents", "DE.Controllers.Toolbar.textBracket": "대괄호", "DE.Controllers.Toolbar.textEmptyImgUrl": "이미지 URL을 지정해야합니다.", + "DE.Controllers.Toolbar.textEmptyMMergeUrl": "URL을 지정해야 합니다.", "DE.Controllers.Toolbar.textFontSizeErr": "입력 한 값이 잘못되었습니다.
1 ~ 300 사이의 숫자 값을 입력하십시오.", "DE.Controllers.Toolbar.textFraction": "Fractions", "DE.Controllers.Toolbar.textFunction": "Functions", + "DE.Controllers.Toolbar.textGroup": "그룹", + "DE.Controllers.Toolbar.textInsert": "삽입", "DE.Controllers.Toolbar.textIntegral": "Integrals", "DE.Controllers.Toolbar.textLargeOperator": "Large Operators", "DE.Controllers.Toolbar.textLimitAndLog": "한계 및 로그 수", "DE.Controllers.Toolbar.textMatrix": "Matrices", "DE.Controllers.Toolbar.textOperator": "연산자", "DE.Controllers.Toolbar.textRadical": "Radicals", - "DE.Controllers.Toolbar.textScript": "Scripts", + "DE.Controllers.Toolbar.textScript": "스크립트", "DE.Controllers.Toolbar.textSymbols": "Symbols", + "DE.Controllers.Toolbar.textTabForms": "폼", "DE.Controllers.Toolbar.textWarning": "경고", "DE.Controllers.Toolbar.txtAccent_Accent": "Acute", "DE.Controllers.Toolbar.txtAccent_ArrowD": "오른쪽 위 왼쪽 화살표", @@ -493,8 +913,8 @@ "DE.Controllers.Toolbar.txtAccent_BorderBox": "상자가있는 수식 (자리 표시 자 포함)", "DE.Controllers.Toolbar.txtAccent_BorderBoxCustom": "상자화 된 수식 (예)", "DE.Controllers.Toolbar.txtAccent_Check": "확인", - "DE.Controllers.Toolbar.txtAccent_CurveBracketBot": "Underbrace", - "DE.Controllers.Toolbar.txtAccent_CurveBracketTop": "Overbrace", + "DE.Controllers.Toolbar.txtAccent_CurveBracketBot": "아래쪽 중괄호", + "DE.Controllers.Toolbar.txtAccent_CurveBracketTop": "위쪽 중괄호", "DE.Controllers.Toolbar.txtAccent_Custom_1": "벡터 A", "DE.Controllers.Toolbar.txtAccent_Custom_2": "ABC With Overbar", "DE.Controllers.Toolbar.txtAccent_Custom_3": "x XOR y Overbar", @@ -672,7 +1092,7 @@ "DE.Controllers.Toolbar.txtMatrix_3_3": "3x3 빈 행렬", "DE.Controllers.Toolbar.txtMatrix_Dots_Baseline": "Baseline Dots", "DE.Controllers.Toolbar.txtMatrix_Dots_Center": "Midline Dots", - "DE.Controllers.Toolbar.txtMatrix_Dots_Diagonal": "Diagonal Dots", + "DE.Controllers.Toolbar.txtMatrix_Dots_Diagonal": "대각선 점", "DE.Controllers.Toolbar.txtMatrix_Dots_Vertical": "수직 점", "DE.Controllers.Toolbar.txtMatrix_Flat_Round": "스파 스 매트릭스", "DE.Controllers.Toolbar.txtMatrix_Flat_Square": "스파 스 매트릭스", @@ -707,10 +1127,10 @@ "DE.Controllers.Toolbar.txtRadicalRoot_3": "Cubic Root", "DE.Controllers.Toolbar.txtRadicalRoot_n": "학위가있는 급진파", "DE.Controllers.Toolbar.txtRadicalSqrt": "Square Root", - "DE.Controllers.Toolbar.txtScriptCustom_1": "Script", - "DE.Controllers.Toolbar.txtScriptCustom_2": "Script", - "DE.Controllers.Toolbar.txtScriptCustom_3": "Script", - "DE.Controllers.Toolbar.txtScriptCustom_4": "Script", + "DE.Controllers.Toolbar.txtScriptCustom_1": "스크립트", + "DE.Controllers.Toolbar.txtScriptCustom_2": "스크립트", + "DE.Controllers.Toolbar.txtScriptCustom_3": "스크립트", + "DE.Controllers.Toolbar.txtScriptCustom_4": "스크립트", "DE.Controllers.Toolbar.txtScriptSub": "Subscript", "DE.Controllers.Toolbar.txtScriptSubSup": "Subscript-Superscript", "DE.Controllers.Toolbar.txtScriptSubSupLeft": "LeftSubscript-Superscript", @@ -735,7 +1155,7 @@ "DE.Controllers.Toolbar.txtSymbol_degree": "도", "DE.Controllers.Toolbar.txtSymbol_delta": "Delta", "DE.Controllers.Toolbar.txtSymbol_div": "Division Sign", - "DE.Controllers.Toolbar.txtSymbol_downarrow": "아래쪽 화살표", + "DE.Controllers.Toolbar.txtSymbol_downarrow": "화살표: 아래쪽", "DE.Controllers.Toolbar.txtSymbol_emptyset": "빈 세트", "DE.Controllers.Toolbar.txtSymbol_epsilon": "Epsilon", "DE.Controllers.Toolbar.txtSymbol_equals": "Equal", @@ -755,7 +1175,7 @@ "DE.Controllers.Toolbar.txtSymbol_iota": "Iota", "DE.Controllers.Toolbar.txtSymbol_kappa": "Kappa", "DE.Controllers.Toolbar.txtSymbol_lambda": "Lambda", - "DE.Controllers.Toolbar.txtSymbol_leftarrow": "왼쪽 화살표", + "DE.Controllers.Toolbar.txtSymbol_leftarrow": "화살표: 왼쪽", "DE.Controllers.Toolbar.txtSymbol_leftrightarrow": "왼쪽 / 오른쪽 화살표", "DE.Controllers.Toolbar.txtSymbol_leq": "보다 작거나 같음", "DE.Controllers.Toolbar.txtSymbol_less": "Less Than", @@ -783,14 +1203,14 @@ "DE.Controllers.Toolbar.txtSymbol_qed": "End of Proof", "DE.Controllers.Toolbar.txtSymbol_rddots": "오른쪽 위 대각선 줄임표", "DE.Controllers.Toolbar.txtSymbol_rho": "Rho", - "DE.Controllers.Toolbar.txtSymbol_rightarrow": "오른쪽 화살표", + "DE.Controllers.Toolbar.txtSymbol_rightarrow": "화살표: 오른쪽", "DE.Controllers.Toolbar.txtSymbol_sigma": "Sigma", "DE.Controllers.Toolbar.txtSymbol_sqrt": "Radical Sign", "DE.Controllers.Toolbar.txtSymbol_tau": "Tau", "DE.Controllers.Toolbar.txtSymbol_therefore": "그러므로", "DE.Controllers.Toolbar.txtSymbol_theta": "Theta", "DE.Controllers.Toolbar.txtSymbol_times": "곱셈 기호", - "DE.Controllers.Toolbar.txtSymbol_uparrow": "위쪽 화살표", + "DE.Controllers.Toolbar.txtSymbol_uparrow": "화살표: 위쪽", "DE.Controllers.Toolbar.txtSymbol_upsilon": "Upsilon", "DE.Controllers.Toolbar.txtSymbol_varepsilon": "Epsilon Variant", "DE.Controllers.Toolbar.txtSymbol_varphi": "Phi Variant", @@ -803,19 +1223,55 @@ "DE.Controllers.Toolbar.txtSymbol_zeta": "Zeta", "DE.Controllers.Viewport.textFitPage": "페이지에 맞춤", "DE.Controllers.Viewport.textFitWidth": "너비에 맞춤", + "DE.Views.AddNewCaptionLabelDialog.textLabel": "라벨:", + "DE.Views.AddNewCaptionLabelDialog.textLabelError": "라벨은 비워 둘 수 없습니다.", "DE.Views.BookmarksDialog.textAdd": "추가", + "DE.Views.BookmarksDialog.textBookmarkName": "즐겨찾기명", "DE.Views.BookmarksDialog.textClose": "닫기", + "DE.Views.BookmarksDialog.textCopy": "복사", "DE.Views.BookmarksDialog.textDelete": "삭제", + "DE.Views.BookmarksDialog.textGetLink": "링크 가져오기", + "DE.Views.BookmarksDialog.textGoto": "이동", + "DE.Views.BookmarksDialog.textHidden": "숨겨진 북마크", "DE.Views.BookmarksDialog.textLocation": "위치", "DE.Views.BookmarksDialog.textName": "이름", - "DE.Views.BookmarksDialog.textSort": "정렬", - "DE.Views.BookmarksDialog.textTitle": "책갈피", + "DE.Views.BookmarksDialog.textSort": "정렬 기준", + "DE.Views.BookmarksDialog.textTitle": "북마크", + "DE.Views.BookmarksDialog.txtInvalidName": "즐겨찾기 명은 문자, 숫자 및 밑줄만 포함할 수 있으며 문자로 시작해야 합니다.", + "DE.Views.CaptionDialog.textAdd": "라벨추가", + "DE.Views.CaptionDialog.textAfter": "이후", + "DE.Views.CaptionDialog.textBefore": "이전", + "DE.Views.CaptionDialog.textCaption": "참조", + "DE.Views.CaptionDialog.textChapter": "스타일로 챕터를 시작", + "DE.Views.CaptionDialog.textChapterInc": "챕터번호 포함", + "DE.Views.CaptionDialog.textColon": "콜론", + "DE.Views.CaptionDialog.textDash": "대시", + "DE.Views.CaptionDialog.textDelete": "라벨제거", + "DE.Views.CaptionDialog.textEquation": "수식", + "DE.Views.CaptionDialog.textExamples": "예: 표 2-A, 이미지 1.IV", + "DE.Views.CaptionDialog.textExclude": "라벨을 캡션에서 제외", + "DE.Views.CaptionDialog.textFigure": "숫자", + "DE.Views.CaptionDialog.textHyphen": "하이픈", + "DE.Views.CaptionDialog.textInsert": "삽입", + "DE.Views.CaptionDialog.textLabel": "라벨", + "DE.Views.CaptionDialog.textLongDash": "긴대시", + "DE.Views.CaptionDialog.textNumbering": "번호 매기기", + "DE.Views.CaptionDialog.textPeriod": "기간", + "DE.Views.CaptionDialog.textSeparator": "구분 기호 사용", "DE.Views.CaptionDialog.textTable": "표", + "DE.Views.CaptionDialog.textTitle": "캡션 삽입", + "DE.Views.CellsAddDialog.textCol": "열", + "DE.Views.CellsAddDialog.textDown": "커서 아래", + "DE.Views.CellsAddDialog.textLeft": "왼쪽 유지", + "DE.Views.CellsAddDialog.textRight": "오른쪽으로", + "DE.Views.CellsAddDialog.textRow": "행", + "DE.Views.CellsAddDialog.textTitle": "개별 삽입", + "DE.Views.CellsAddDialog.textUp": "커서위에", "DE.Views.ChartSettings.textAdvanced": "고급 설정 표시", "DE.Views.ChartSettings.textChartType": "차트 유형 변경", "DE.Views.ChartSettings.textEditData": "데이터 편집", "DE.Views.ChartSettings.textHeight": "높이", - "DE.Views.ChartSettings.textOriginalSize": "기본 크기", + "DE.Views.ChartSettings.textOriginalSize": "실제 크기", "DE.Views.ChartSettings.textSize": "크기", "DE.Views.ChartSettings.textStyle": "스타일", "DE.Views.ChartSettings.textUndock": "패널에서 도킹 해제", @@ -829,27 +1285,98 @@ "DE.Views.ChartSettings.txtTight": "Tight", "DE.Views.ChartSettings.txtTitle": "차트", "DE.Views.ChartSettings.txtTopAndBottom": "상단 및 하단", + "DE.Views.ControlSettingsDialog.strGeneral": "일반", + "DE.Views.ControlSettingsDialog.textAdd": "추가", + "DE.Views.ControlSettingsDialog.textAppearance": "표시", + "DE.Views.ControlSettingsDialog.textApplyAll": "모두에 적용", + "DE.Views.ControlSettingsDialog.textBox": "바운딩박스", + "DE.Views.ControlSettingsDialog.textChange": "편집", + "DE.Views.ControlSettingsDialog.textCheckbox": "체크박스", + "DE.Views.ControlSettingsDialog.textChecked": "체크표시", + "DE.Views.ControlSettingsDialog.textColor": "색상", + "DE.Views.ControlSettingsDialog.textCombobox": "콤보박스", + "DE.Views.ControlSettingsDialog.textDate": "날짜 형식", + "DE.Views.ControlSettingsDialog.textDelete": "삭제", + "DE.Views.ControlSettingsDialog.textDisplayName": "표시이름", + "DE.Views.ControlSettingsDialog.textDown": "아래로", + "DE.Views.ControlSettingsDialog.textDropDown": "드롭 다운 메뉴", + "DE.Views.ControlSettingsDialog.textFormat": "날짜 형식", + "DE.Views.ControlSettingsDialog.textLang": "언어", "DE.Views.ControlSettingsDialog.textLock": "잠그기", "DE.Views.ControlSettingsDialog.textName": "제목", + "DE.Views.ControlSettingsDialog.textNone": "없음", + "DE.Views.ControlSettingsDialog.textPlaceholder": "대체표시", + "DE.Views.ControlSettingsDialog.textShowAs": "표시", "DE.Views.ControlSettingsDialog.textSystemColor": "시스템", "DE.Views.ControlSettingsDialog.textTag": "꼬리표", "DE.Views.ControlSettingsDialog.textTitle": "콘텐트 제어 세팅", + "DE.Views.ControlSettingsDialog.textUnchecked": "선택하지 않은 기호", + "DE.Views.ControlSettingsDialog.textUp": "위", + "DE.Views.ControlSettingsDialog.textValue": "값", + "DE.Views.ControlSettingsDialog.tipChange": "기호변경", "DE.Views.ControlSettingsDialog.txtLockDelete": "콘텐트 제어가 삭제될 수 없슴", "DE.Views.ControlSettingsDialog.txtLockEdit": "콘텐트가 편집될 수 없슴", + "DE.Views.CrossReferenceDialog.textAboveBelow": "상/하", + "DE.Views.CrossReferenceDialog.textBookmark": "즐겨찾기", + "DE.Views.CrossReferenceDialog.textBookmarkText": "즐겨찾기 텍스트", + "DE.Views.CrossReferenceDialog.textCaption": "전체 캡션", + "DE.Views.CrossReferenceDialog.textEmpty": "요청한 참조가 비어 있습니다.", + "DE.Views.CrossReferenceDialog.textEndnote": "미주", + "DE.Views.CrossReferenceDialog.textEndNoteNum": "미주번호", + "DE.Views.CrossReferenceDialog.textEndNoteNumForm": "미주번호 (형식지정)", + "DE.Views.CrossReferenceDialog.textEquation": "방정식", + "DE.Views.CrossReferenceDialog.textFigure": "숫자", + "DE.Views.CrossReferenceDialog.textFootnote": "각주", + "DE.Views.CrossReferenceDialog.textHeading": "제목", + "DE.Views.CrossReferenceDialog.textHeadingNum": "제목번호", + "DE.Views.CrossReferenceDialog.textHeadingNumFull": "제목번호 (전체)", + "DE.Views.CrossReferenceDialog.textHeadingNumNo": "제목 번호 (내용 없음)", + "DE.Views.CrossReferenceDialog.textHeadingText": "제목 텍스트", + "DE.Views.CrossReferenceDialog.textIncludeAbove": "위/아래 포함", + "DE.Views.CrossReferenceDialog.textInsert": "삽입", + "DE.Views.CrossReferenceDialog.textInsertAs": "하이퍼링크로 삽입", + "DE.Views.CrossReferenceDialog.textLabelNum": "라벨과 번호 만", + "DE.Views.CrossReferenceDialog.textNoteNum": "각주번호", + "DE.Views.CrossReferenceDialog.textNoteNumForm": "각주번호 (형식지정)", + "DE.Views.CrossReferenceDialog.textOnlyCaption": "캡션 텍스트만", + "DE.Views.CrossReferenceDialog.textPageNum": "페이지 번호", + "DE.Views.CrossReferenceDialog.textParagraph": "번호가 붙여진 항목", + "DE.Views.CrossReferenceDialog.textParaNum": "번호 매기기", + "DE.Views.CrossReferenceDialog.textParaNumFull": "단락 번호 (전체 문맥)", + "DE.Views.CrossReferenceDialog.textParaNumNo": "단락번호 (문맥없음)", + "DE.Views.CrossReferenceDialog.textSeparate": "숫자로 구분", "DE.Views.CrossReferenceDialog.textTable": "표", + "DE.Views.CrossReferenceDialog.textText": "단락 텍스트", + "DE.Views.CrossReferenceDialog.textWhich": "캡션 참조", + "DE.Views.CrossReferenceDialog.textWhichBookmark": "북마크참조", + "DE.Views.CrossReferenceDialog.textWhichEndnote": "미주 참조", + "DE.Views.CrossReferenceDialog.textWhichHeading": "제목 참조", + "DE.Views.CrossReferenceDialog.textWhichNote": "각주 참조", + "DE.Views.CrossReferenceDialog.textWhichPara": "참조", + "DE.Views.CrossReferenceDialog.txtReference": "참조 삽입", + "DE.Views.CrossReferenceDialog.txtTitle": "상호 참조", + "DE.Views.CrossReferenceDialog.txtType": "참조유형", "DE.Views.CustomColumnsDialog.textColumns": "열 수", "DE.Views.CustomColumnsDialog.textSeparator": "열 구분선", "DE.Views.CustomColumnsDialog.textSpacing": "열 사이의 간격", "DE.Views.CustomColumnsDialog.textTitle": "열", + "DE.Views.DateTimeDialog.confirmDefault": "{0} 기본 형식을 설정 : \"{1}\"", + "DE.Views.DateTimeDialog.textDefault": "디폴트 설정", + "DE.Views.DateTimeDialog.textFormat": "형식", + "DE.Views.DateTimeDialog.textLang": "언어", + "DE.Views.DateTimeDialog.textUpdate": "자동 업데이트", + "DE.Views.DateTimeDialog.txtTitle": "날짜 및 시간", "DE.Views.DocumentHolder.aboveText": "위", "DE.Views.DocumentHolder.addCommentText": "주석 추가", + "DE.Views.DocumentHolder.advancedDropCapText": "드롭 캡 설정", "DE.Views.DocumentHolder.advancedFrameText": "프레임 고급 설정", "DE.Views.DocumentHolder.advancedParagraphText": "단락 고급 설정", "DE.Views.DocumentHolder.advancedTableText": "표 고급 설정", "DE.Views.DocumentHolder.advancedText": "고급 설정", "DE.Views.DocumentHolder.alignmentText": "정렬", "DE.Views.DocumentHolder.belowText": "Below", - "DE.Views.DocumentHolder.breakBeforeText": "전에 페이지 나누기", + "DE.Views.DocumentHolder.breakBeforeText": "현재 단락 앞에서 페이지 나누기", + "DE.Views.DocumentHolder.bulletsText": "글 머리 기호 및 번호 매기기", "DE.Views.DocumentHolder.cellAlignText": "셀 수직 정렬", "DE.Views.DocumentHolder.cellText": "셀", "DE.Views.DocumentHolder.centerText": "Center", @@ -875,22 +1402,23 @@ "DE.Views.DocumentHolder.insertColumnLeftText": "왼쪽 열", "DE.Views.DocumentHolder.insertColumnRightText": "오른쪽 열", "DE.Views.DocumentHolder.insertColumnText": "열 삽입", - "DE.Views.DocumentHolder.insertRowAboveText": "위의 행", - "DE.Views.DocumentHolder.insertRowBelowText": "아래 행", + "DE.Views.DocumentHolder.insertRowAboveText": "행 위", + "DE.Views.DocumentHolder.insertRowBelowText": "행 아래", "DE.Views.DocumentHolder.insertRowText": "행 삽입", "DE.Views.DocumentHolder.insertText": "삽입", - "DE.Views.DocumentHolder.keepLinesText": "줄을 함께 유지", + "DE.Views.DocumentHolder.keepLinesText": "현재 단락을 나누지 않음", "DE.Views.DocumentHolder.langText": "언어 선택", "DE.Views.DocumentHolder.leftText": "왼쪽", "DE.Views.DocumentHolder.loadSpellText": "로드 변형 ...", "DE.Views.DocumentHolder.mergeCellsText": "셀 병합", "DE.Views.DocumentHolder.moreText": "추가 변형 ...", "DE.Views.DocumentHolder.noSpellVariantsText": "변형 없음", - "DE.Views.DocumentHolder.originalSizeText": "기본 크기", + "DE.Views.DocumentHolder.notcriticalErrorTitle": "경고", + "DE.Views.DocumentHolder.originalSizeText": "실제 크기", "DE.Views.DocumentHolder.paragraphText": "단락", "DE.Views.DocumentHolder.removeHyperlinkText": "하이퍼 링크 제거", "DE.Views.DocumentHolder.rightText": "오른쪽", - "DE.Views.DocumentHolder.rowText": "Row", + "DE.Views.DocumentHolder.rowText": "행", "DE.Views.DocumentHolder.saveStyleText": "새 스타일 만들기", "DE.Views.DocumentHolder.selectCellText": "셀 선택", "DE.Views.DocumentHolder.selectColumnText": "열 선택", @@ -909,34 +1437,62 @@ "DE.Views.DocumentHolder.tableText": "테이블", "DE.Views.DocumentHolder.textAlign": "정렬", "DE.Views.DocumentHolder.textArrange": "정렬", - "DE.Views.DocumentHolder.textArrangeBack": "배경에 보내기", + "DE.Views.DocumentHolder.textArrangeBack": "맨 뒤로 보내기", "DE.Views.DocumentHolder.textArrangeBackward": "뒤로 이동", "DE.Views.DocumentHolder.textArrangeForward": "앞으로 이동", "DE.Views.DocumentHolder.textArrangeFront": "포 그라운드로 가져 오기", + "DE.Views.DocumentHolder.textCells": "셀", + "DE.Views.DocumentHolder.textCol": "전체 열 삭제", "DE.Views.DocumentHolder.textContentControls": "콘텐트 제어", + "DE.Views.DocumentHolder.textContinueNumbering": "계속 번호 매기기", "DE.Views.DocumentHolder.textCopy": "복사", + "DE.Views.DocumentHolder.textCrop": "자르기", + "DE.Views.DocumentHolder.textCropFill": "채우기", + "DE.Views.DocumentHolder.textCropFit": "맞춤", "DE.Views.DocumentHolder.textCut": "잘라 내기", "DE.Views.DocumentHolder.textDistributeCols": "컬럼 배포", "DE.Views.DocumentHolder.textDistributeRows": "행 배포", "DE.Views.DocumentHolder.textEditControls": "콘텐트 제어 세팅", "DE.Views.DocumentHolder.textEditWrapBoundary": "둘러싸 기 경계 편집", + "DE.Views.DocumentHolder.textFlipH": "좌우대칭", + "DE.Views.DocumentHolder.textFlipV": "상하대칭", + "DE.Views.DocumentHolder.textFollow": "이동", "DE.Views.DocumentHolder.textFromFile": "파일로부터", + "DE.Views.DocumentHolder.textFromStorage": "스토리지로 부터", "DE.Views.DocumentHolder.textFromUrl": "URL로부터", + "DE.Views.DocumentHolder.textJoinList": "이전 목록에 추가", + "DE.Views.DocumentHolder.textLeft": "셀을 왼쪽으로 이동", "DE.Views.DocumentHolder.textNest": "네스트 테이블", "DE.Views.DocumentHolder.textNextPage": "다음 페이지", + "DE.Views.DocumentHolder.textNumberingValue": "번호", "DE.Views.DocumentHolder.textPaste": "붙여 넣기", "DE.Views.DocumentHolder.textPrevPage": "이전 페이지", "DE.Views.DocumentHolder.textRefreshField": "필드 새로고침", + "DE.Views.DocumentHolder.textRemCheckBox": "체크박스 제거", + "DE.Views.DocumentHolder.textRemComboBox": "콤보박스 제거", + "DE.Views.DocumentHolder.textRemDropdown": "드랍박스 제거", + "DE.Views.DocumentHolder.textRemField": "텍스트 필드 제거", "DE.Views.DocumentHolder.textRemove": "삭제", "DE.Views.DocumentHolder.textRemoveControl": "콘텐트 제어 삭제", + "DE.Views.DocumentHolder.textRemPicture": "이미지 제거", + "DE.Views.DocumentHolder.textRemRadioBox": "라디오버튼 제거", "DE.Views.DocumentHolder.textReplace": "이미지 바꾸기", + "DE.Views.DocumentHolder.textRotate": "회전", + "DE.Views.DocumentHolder.textRotate270": "왼쪽으로 90도 회전", + "DE.Views.DocumentHolder.textRotate90": "오른쪽으로 90도 회전", + "DE.Views.DocumentHolder.textRow": "전체 행 삭제", + "DE.Views.DocumentHolder.textSeparateList": "목록 분리", "DE.Views.DocumentHolder.textSettings": "설정", + "DE.Views.DocumentHolder.textSeveral": "여러 행/열", "DE.Views.DocumentHolder.textShapeAlignBottom": "아래쪽 정렬", "DE.Views.DocumentHolder.textShapeAlignCenter": "정렬 중심", "DE.Views.DocumentHolder.textShapeAlignLeft": "왼쪽 정렬", "DE.Views.DocumentHolder.textShapeAlignMiddle": "가운데 정렬", "DE.Views.DocumentHolder.textShapeAlignRight": "오른쪽 정렬", "DE.Views.DocumentHolder.textShapeAlignTop": "정렬", + "DE.Views.DocumentHolder.textStartNewList": "새 목록 시작", + "DE.Views.DocumentHolder.textStartNumberingFrom": "숫자 값 설정", + "DE.Views.DocumentHolder.textTitleCellsRemove": "셀 삭제", "DE.Views.DocumentHolder.textTOC": "콘텍츠 테이블", "DE.Views.DocumentHolder.textTOCSettings": "콘텐츠 테이블 세팅", "DE.Views.DocumentHolder.textUndo": "실행 취소", @@ -945,6 +1501,7 @@ "DE.Views.DocumentHolder.textUpdateTOC": "콘텐트 테이블 새로고침", "DE.Views.DocumentHolder.textWrap": "배치 스타일", "DE.Views.DocumentHolder.tipIsLocked": "이 요소는 현재 다른 사용자가 편집 중입니다.", + "DE.Views.DocumentHolder.toDictionaryText": "사용자 정의 사전에 추가", "DE.Views.DocumentHolder.txtAddBottom": "아래쪽 테두리 추가", "DE.Views.DocumentHolder.txtAddFractionBar": "분수 막대 추가", "DE.Views.DocumentHolder.txtAddHor": "가로선 추가", @@ -961,12 +1518,14 @@ "DE.Views.DocumentHolder.txtColumnAlign": "열 정렬", "DE.Views.DocumentHolder.txtDecreaseArg": "인수 크기 감소", "DE.Views.DocumentHolder.txtDeleteArg": "인수 삭제", - "DE.Views.DocumentHolder.txtDeleteBreak": "수동 브레이크 삭제", + "DE.Views.DocumentHolder.txtDeleteBreak": "수동페이지 나누기 삭제", "DE.Views.DocumentHolder.txtDeleteChars": "둘러싸인 문자 삭제", "DE.Views.DocumentHolder.txtDeleteCharsAndSeparators": "둘러싸는 문자 및 구분 기호 삭제", "DE.Views.DocumentHolder.txtDeleteEq": "수식 삭제", "DE.Views.DocumentHolder.txtDeleteGroupChar": "문자 삭제", "DE.Views.DocumentHolder.txtDeleteRadical": "급진파 삭제", + "DE.Views.DocumentHolder.txtDistribHor": "수평 분포", + "DE.Views.DocumentHolder.txtDistribVert": "수직 분포", "DE.Views.DocumentHolder.txtEmpty": "(없음)", "DE.Views.DocumentHolder.txtFractionLinear": "선형 분수로 변경", "DE.Views.DocumentHolder.txtFractionSkewed": "기울어 진 분수로 변경", @@ -993,7 +1552,8 @@ "DE.Views.DocumentHolder.txtInline": "인라인", "DE.Views.DocumentHolder.txtInsertArgAfter": "뒤에 인수를 삽입하십시오.", "DE.Views.DocumentHolder.txtInsertArgBefore": "앞에 인수를 삽입하십시오", - "DE.Views.DocumentHolder.txtInsertBreak": "수동 중단 삽입", + "DE.Views.DocumentHolder.txtInsertBreak": "수동 페이지 나누기 삽입", + "DE.Views.DocumentHolder.txtInsertCaption": "캡션 삽입", "DE.Views.DocumentHolder.txtInsertEqAfter": "뒤에 수식을 삽입하십시오.", "DE.Views.DocumentHolder.txtInsertEqBefore": "이전에 수식 삽입", "DE.Views.DocumentHolder.txtKeepTextOnly": "텍스트 만 유지", @@ -1005,11 +1565,13 @@ "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.txtRemoveAccentChar": "액센트 문자 제거", "DE.Views.DocumentHolder.txtRemoveBar": "막대 제거", + "DE.Views.DocumentHolder.txtRemoveWarning": "이 서명을 삭제하시겠습니까?
이 작업은 취소할 수 없습니다.", "DE.Views.DocumentHolder.txtRemScripts": "스크립트 제거", "DE.Views.DocumentHolder.txtRemSubscript": "아래 첨자 제거", "DE.Views.DocumentHolder.txtRemSuperscript": "위 첨자 제거", @@ -1029,6 +1591,7 @@ "DE.Views.DocumentHolder.txtTopAndBottom": "상단 및 하단", "DE.Views.DocumentHolder.txtUnderbar": "텍스트 아래에 바", "DE.Views.DocumentHolder.txtUngroup": "그룹 해제", + "DE.Views.DocumentHolder.txtWarnUrl": "이 링크는 장치와 데이터에 손상을 줄 수 있습니다.
계속하시겠습니까?", "DE.Views.DocumentHolder.updateStyleText": "%1 스타일 업데이트", "DE.Views.DocumentHolder.vertAlignText": "Vertical Alignment", "DE.Views.DropcapSettingsAdvanced.strBorders": "테두리 및 채우기", @@ -1044,7 +1607,7 @@ "DE.Views.DropcapSettingsAdvanced.textBottom": "Bottom", "DE.Views.DropcapSettingsAdvanced.textCenter": "Center", "DE.Views.DropcapSettingsAdvanced.textColumn": "Column", - "DE.Views.DropcapSettingsAdvanced.textDistance": "텍스트로부터의 거리", + "DE.Views.DropcapSettingsAdvanced.textDistance": "텍스트 간격", "DE.Views.DropcapSettingsAdvanced.textExact": "정확히", "DE.Views.DropcapSettingsAdvanced.textFlow": "흐름 프레임", "DE.Views.DropcapSettingsAdvanced.textFont": "글꼴", @@ -1072,7 +1635,11 @@ "DE.Views.DropcapSettingsAdvanced.textWidth": "너비", "DE.Views.DropcapSettingsAdvanced.tipFontName": "글꼴", "DE.Views.DropcapSettingsAdvanced.txtNoBorders": "테두리 없음", - "DE.Views.FileMenu.btnBackCaption": "문서로 이동", + "DE.Views.EditListItemDialog.textDisplayName": "표시이름", + "DE.Views.EditListItemDialog.textNameError": "표시이름은 비워둘 수 없습니다.", + "DE.Views.EditListItemDialog.textValue": "값", + "DE.Views.EditListItemDialog.textValueError": "동일한 값을 가진 항목이 이미 존재합니다.", + "DE.Views.FileMenu.btnBackCaption": "파일 위치 열기", "DE.Views.FileMenu.btnCloseMenuCaption": "메뉴 닫기", "DE.Views.FileMenu.btnCreateNewCaption": "새로 만들기", "DE.Views.FileMenu.btnDownloadCaption": "다운로드 방법 ...", @@ -1087,20 +1654,34 @@ "DE.Views.FileMenu.btnRightsCaption": "액세스 권한 ...", "DE.Views.FileMenu.btnSaveAsCaption": "다른 이름으로 저장", "DE.Views.FileMenu.btnSaveCaption": "저장", + "DE.Views.FileMenu.btnSaveCopyAsCaption": "다른 이름으로 저장...", "DE.Views.FileMenu.btnSettingsCaption": "고급 설정 ...", "DE.Views.FileMenu.btnToEditCaption": "문서 편집", "DE.Views.FileMenu.textDownload": "다운로드", + "DE.Views.FileMenuPanels.CreateNew.txtBlank": "빈문서", + "DE.Views.FileMenuPanels.CreateNew.txtCreateNew": "새로 만들기", + "DE.Views.FileMenuPanels.DocumentInfo.okButtonText": "적용", + "DE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "작성자추가", + "DE.Views.FileMenuPanels.DocumentInfo.txtAddText": "텍스트추가", + "DE.Views.FileMenuPanels.DocumentInfo.txtAppName": "어플리케이션", "DE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "작성자", "DE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "액세스 권한 변경", + "DE.Views.FileMenuPanels.DocumentInfo.txtComment": "코멘트", + "DE.Views.FileMenuPanels.DocumentInfo.txtCreated": "생성되었습니다", "DE.Views.FileMenuPanels.DocumentInfo.txtLoading": "로드 중 ...", + "DE.Views.FileMenuPanels.DocumentInfo.txtModifyBy": "최종 편집자", + "DE.Views.FileMenuPanels.DocumentInfo.txtModifyDate": "최종 편집", + "DE.Views.FileMenuPanels.DocumentInfo.txtOwner": "소유자", "DE.Views.FileMenuPanels.DocumentInfo.txtPages": "Pages", "DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs": "단락", "DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "위치", "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.DocumentRights.txtBtnAccessRights": "액세스 권한 변경", "DE.Views.FileMenuPanels.DocumentRights.txtRights": "권한이있는 사람", @@ -1109,11 +1690,11 @@ "DE.Views.FileMenuPanels.ProtectDoc.strProtect": "문서 보호", "DE.Views.FileMenuPanels.ProtectDoc.strSignature": "서명으로", "DE.Views.FileMenuPanels.ProtectDoc.txtEdit": "문서 편집", - "DE.Views.FileMenuPanels.ProtectDoc.txtEditWarning": "편집은 문서에서 서명을 지울것입니다.
계속 진행하시겠습니까?", + "DE.Views.FileMenuPanels.ProtectDoc.txtEditWarning": "편집하면 문서의 서명이 삭제됩니다.
계속하시겠습니까?", "DE.Views.FileMenuPanels.ProtectDoc.txtEncrypted": "이 문서는 비밀번호로 보호된 적이 있슴", "DE.Views.FileMenuPanels.ProtectDoc.txtRequestedSignatures": "이 문서는 서명되어야 합니다.", - "DE.Views.FileMenuPanels.ProtectDoc.txtSigned": "유효한 서명이 당 문서에 추가되었슴. 이 문서는 편집할 수 없도록 보호됨.", - "DE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "문서에 있는 몇 가지 디지털 서명 이 맞지 않거나 확인되지 않음. 이 문서는 편집할 수 없도록 보호됨.", + "DE.Views.FileMenuPanels.ProtectDoc.txtSigned": "문서에 유효한 서명이 추가되었습니다. 문서가 보호되어 편집할 수 없습니다.", + "DE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "문서의 일부 디지털 서명이 유효하지 않거나 확인할 수 없습니다. 문서가 보호되어 편집할 수 없습니다.", "DE.Views.FileMenuPanels.ProtectDoc.txtView": "서명 보기", "DE.Views.FileMenuPanels.Settings.okButtonText": "적용", "DE.Views.FileMenuPanels.Settings.strAlignGuides": "정렬 안내선 켜기", @@ -1124,16 +1705,20 @@ "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.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.strReviewHover": "변경 내용 추적 표시", "DE.Views.FileMenuPanels.Settings.strShowChanges": "실시간 협업 변경 사항", "DE.Views.FileMenuPanels.Settings.strSpellCheckMode": "맞춤법 검사 옵션 켜기", "DE.Views.FileMenuPanels.Settings.strStrict": "Strict", + "DE.Views.FileMenuPanels.Settings.strTheme": "인터페이스 테마", "DE.Views.FileMenuPanels.Settings.strUnit": "측정 단위", - "DE.Views.FileMenuPanels.Settings.strZoom": "기본 확대 / 축소 값", + "DE.Views.FileMenuPanels.Settings.strZoom": "기본 확대/축소 값", "DE.Views.FileMenuPanels.Settings.text10Minutes": "매 10 분마다", "DE.Views.FileMenuPanels.Settings.text30Minutes": "매 30 분마다", "DE.Views.FileMenuPanels.Settings.text5Minutes": "매 5 분마다", @@ -1141,10 +1726,16 @@ "DE.Views.FileMenuPanels.Settings.textAlignGuides": "정렬 가이드", "DE.Views.FileMenuPanels.Settings.textAutoRecover": "Autorecover", "DE.Views.FileMenuPanels.Settings.textAutoSave": "자동 저장", + "DE.Views.FileMenuPanels.Settings.textCompatible": "호환성", "DE.Views.FileMenuPanels.Settings.textDisabled": "Disabled", - "DE.Views.FileMenuPanels.Settings.textForceSave": "서버에 저장", + "DE.Views.FileMenuPanels.Settings.textForceSave": "모든 기록 버전을 서버에 저장", "DE.Views.FileMenuPanels.Settings.textMinute": "Every Minute", + "DE.Views.FileMenuPanels.Settings.textOldVersions": "DOCX로 저장할 때 이전 버전의 MS Word와 호환되도록 파일을 만드십시오", "DE.Views.FileMenuPanels.Settings.txtAll": "모두보기", + "DE.Views.FileMenuPanels.Settings.txtAutoCorrect": "자동 고침 옵션...", + "DE.Views.FileMenuPanels.Settings.txtCacheMode": "사전 설정 캐시 모드", + "DE.Views.FileMenuPanels.Settings.txtChangesBalloons": "풍선을 클릭하여 표시", + "DE.Views.FileMenuPanels.Settings.txtChangesTip": "표시할 툴팁 위로 마우스를 가져갑니다.", "DE.Views.FileMenuPanels.Settings.txtCm": "센티미터", "DE.Views.FileMenuPanels.Settings.txtFitPage": "페이지에 맞춤", "DE.Views.FileMenuPanels.Settings.txtFitWidth": "너비에 맞춤", @@ -1155,14 +1746,87 @@ "DE.Views.FileMenuPanels.Settings.txtMac": "as OS X", "DE.Views.FileMenuPanels.Settings.txtNative": "Native", "DE.Views.FileMenuPanels.Settings.txtNone": "보기 없음", + "DE.Views.FileMenuPanels.Settings.txtProofing": "보정", "DE.Views.FileMenuPanels.Settings.txtPt": "Point", + "DE.Views.FileMenuPanels.Settings.txtRunMacros": "모두 활성화", + "DE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "알림 없이 모든 매크로 활성화", "DE.Views.FileMenuPanels.Settings.txtSpellCheck": "맞춤법 검사", + "DE.Views.FileMenuPanels.Settings.txtStopMacros": "모두 비활성화", + "DE.Views.FileMenuPanels.Settings.txtStopMacrosDesc": "모든 매크로 비활성화하라는 메시지", + "DE.Views.FileMenuPanels.Settings.txtWarnMacros": "알림 표시", + "DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "모든 매크로를 비활성화하라는 메시지", "DE.Views.FileMenuPanels.Settings.txtWin": "Windows로", + "DE.Views.FormSettings.textAlways": "항상", + "DE.Views.FormSettings.textAspect": "가로 세로 비율 잠금", + "DE.Views.FormSettings.textAutofit": "자동조정", + "DE.Views.FormSettings.textBackgroundColor": "배경색", + "DE.Views.FormSettings.textCheckbox": "체크박스", + "DE.Views.FormSettings.textColor": "테두리 색상", + "DE.Views.FormSettings.textComb": "문자 조합", + "DE.Views.FormSettings.textCombobox": "콤보박스", + "DE.Views.FormSettings.textConnected": "연결된 필드", + "DE.Views.FormSettings.textDelete": "삭제", + "DE.Views.FormSettings.textDisconnect": "연결해제", + "DE.Views.FormSettings.textDropDown": "드롭다운", + "DE.Views.FormSettings.textField": "텍스트 필드", + "DE.Views.FormSettings.textFixed": "필드 크기 고정", + "DE.Views.FormSettings.textFromFile": "파일로 부터", + "DE.Views.FormSettings.textFromStorage": "스토리지로 부터", + "DE.Views.FormSettings.textFromUrl": "URL로 부터", + "DE.Views.FormSettings.textGroupKey": "그룹 키", + "DE.Views.FormSettings.textImage": "이미지", + "DE.Views.FormSettings.textKey": "키", + "DE.Views.FormSettings.textLock": "잠금", + "DE.Views.FormSettings.textMaxChars": "문자제한", + "DE.Views.FormSettings.textMulti": "다중 필드", + "DE.Views.FormSettings.textNever": "절대", + "DE.Views.FormSettings.textNoBorder": "테두리 없음", + "DE.Views.FormSettings.textPlaceholder": "대체표시", + "DE.Views.FormSettings.textRadiobox": "라디오 버튼", + "DE.Views.FormSettings.textRequired": "필수", + "DE.Views.FormSettings.textScale": "확대/축소 시기", + "DE.Views.FormSettings.textSelectImage": "이미지 선택", + "DE.Views.FormSettings.textTip": "팁", + "DE.Views.FormSettings.textTipAdd": "새 값을 추가", + "DE.Views.FormSettings.textTipDelete": "값삭제", + "DE.Views.FormSettings.textTipDown": "아래로 이동", + "DE.Views.FormSettings.textTipUp": "위로 이동", + "DE.Views.FormSettings.textTooBig": "이미지가 너무 큽니다", + "DE.Views.FormSettings.textTooSmall": "이미지가 너무 작습니다", + "DE.Views.FormSettings.textUnlock": "잠금해제", + "DE.Views.FormSettings.textValue": "값 옵션", + "DE.Views.FormSettings.textWidth": "셀 너비", + "DE.Views.FormsTab.capBtnCheckBox": "체크박스", + "DE.Views.FormsTab.capBtnComboBox": "콤보박스", + "DE.Views.FormsTab.capBtnDropDown": "드롭다운", + "DE.Views.FormsTab.capBtnImage": "이미지", + "DE.Views.FormsTab.capBtnNext": "다음 필드", + "DE.Views.FormsTab.capBtnPrev": "이전 필드", + "DE.Views.FormsTab.capBtnRadioBox": "라디오 버튼", + "DE.Views.FormsTab.capBtnSubmit": "전송", + "DE.Views.FormsTab.capBtnText": "텍스트 필드", + "DE.Views.FormsTab.capBtnView": "양식 보기", + "DE.Views.FormsTab.textClear": "필드 지우기", + "DE.Views.FormsTab.textClearFields": "모든 필드 지우기", + "DE.Views.FormsTab.textHighlight": "강조 설정", + "DE.Views.FormsTab.textNoHighlight": "강조 표시되지 않음", + "DE.Views.FormsTab.textRequired": "양식을 보내려면 모든 필수 필드를 채우십시오.", + "DE.Views.FormsTab.textSubmited": "폼 전송 성공", + "DE.Views.FormsTab.tipCheckBox": "체크박스 삽입", + "DE.Views.FormsTab.tipComboBox": "콤보박스 삽입", + "DE.Views.FormsTab.tipDropDown": "드롭다운 목록 삽입", + "DE.Views.FormsTab.tipImageField": "이미지 삽입", + "DE.Views.FormsTab.tipNextForm": "다음 필드로 이동", + "DE.Views.FormsTab.tipPrevForm": "이전 필드로 이동", + "DE.Views.FormsTab.tipRadioBox": "라디오버튼 삽입", + "DE.Views.FormsTab.tipSubmit": "전송폼", + "DE.Views.FormsTab.tipTextField": "텍스트 필드 삽입", + "DE.Views.FormsTab.tipViewForm": "양식 보기", "DE.Views.HeaderFooterSettings.textBottomCenter": "하단 중앙", "DE.Views.HeaderFooterSettings.textBottomLeft": "왼쪽 하단", "DE.Views.HeaderFooterSettings.textBottomPage": "페이지 끝", "DE.Views.HeaderFooterSettings.textBottomRight": "오른쪽 하단", - "DE.Views.HeaderFooterSettings.textDiffFirst": "다른 첫 페이지", + "DE.Views.HeaderFooterSettings.textDiffFirst": "첫 페이지를 다르게 지정", "DE.Views.HeaderFooterSettings.textDiffOdd": "다른 홀수 및 짝수 페이지", "DE.Views.HeaderFooterSettings.textFrom": "시작 시간", "DE.Views.HeaderFooterSettings.textHeaderFromBottom": "하단에서 바닥 글", @@ -1181,23 +1845,36 @@ "DE.Views.HyperlinkSettingsDialog.textDefault": "선택한 텍스트 조각", "DE.Views.HyperlinkSettingsDialog.textDisplay": "표시", "DE.Views.HyperlinkSettingsDialog.textExternal": "외부 링크", + "DE.Views.HyperlinkSettingsDialog.textInternal": "문서의 현재 위치", "DE.Views.HyperlinkSettingsDialog.textTitle": "하이퍼 링크 설정", - "DE.Views.HyperlinkSettingsDialog.textTooltip": "스크린 팁 텍스트", + "DE.Views.HyperlinkSettingsDialog.textTooltip": "스크린팁 텍스트", "DE.Views.HyperlinkSettingsDialog.textUrl": "링크 대상", "DE.Views.HyperlinkSettingsDialog.txtBeginning": "문서의 시작", - "DE.Views.HyperlinkSettingsDialog.txtBookmarks": "책갈피", + "DE.Views.HyperlinkSettingsDialog.txtBookmarks": "북마크", "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.ImageSettings.textCrop": "자르기", + "DE.Views.ImageSettings.textCropFill": "채우기", + "DE.Views.ImageSettings.textCropFit": "맞춤", "DE.Views.ImageSettings.textEdit": "편집", "DE.Views.ImageSettings.textEditObject": "개체 편집", "DE.Views.ImageSettings.textFitMargins": "여백에 맞추기", + "DE.Views.ImageSettings.textFlip": "대칭", "DE.Views.ImageSettings.textFromFile": "파일로부터", + "DE.Views.ImageSettings.textFromStorage": "스토리지로 부터", "DE.Views.ImageSettings.textFromUrl": "From URL", "DE.Views.ImageSettings.textHeight": "높이", + "DE.Views.ImageSettings.textHint270": "왼쪽으로 90도 회전", + "DE.Views.ImageSettings.textHint90": "오른쪽으로 90도 회전", + "DE.Views.ImageSettings.textHintFlipH": "좌우대칭", + "DE.Views.ImageSettings.textHintFlipV": "상하대칭", "DE.Views.ImageSettings.textInsert": "이미지 바꾸기", - "DE.Views.ImageSettings.textOriginalSize": "기본 크기", + "DE.Views.ImageSettings.textOriginalSize": "실제 크기", + "DE.Views.ImageSettings.textRotate90": "90도 회전", + "DE.Views.ImageSettings.textRotation": "회전", "DE.Views.ImageSettings.textSize": "크기", "DE.Views.ImageSettings.textWidth": "너비", "DE.Views.ImageSettings.textWrap": "포장 스타일", @@ -1213,10 +1890,12 @@ "DE.Views.ImageSettingsAdvanced.textAlignment": "정렬", "DE.Views.ImageSettingsAdvanced.textAlt": "대체 텍스트", "DE.Views.ImageSettingsAdvanced.textAltDescription": "설명", - "DE.Views.ImageSettingsAdvanced.textAltTip": "시력이나인지 장애가있는 사람들에게 읽을 수있는 시각적 객체 정보의 대체 텍스트 기반 표현으로 이미지에있는 정보를 더 잘 이해할 수 있도록 도와줍니다. 차트 또는 표. ", + "DE.Views.ImageSettingsAdvanced.textAltTip": "시각적 개체 정보의 교체는 텍스트 표현을 기반으로 하며 시각 또는 인지 장애가 있는 사람들이 이미지, 자동 모양, 차트 또는 표에 포함된 정보를 더 잘 이해할 수 있도록 읽어줍니다.", "DE.Views.ImageSettingsAdvanced.textAltTitle": "Title", + "DE.Views.ImageSettingsAdvanced.textAngle": "각도", "DE.Views.ImageSettingsAdvanced.textArrows": "화살표", "DE.Views.ImageSettingsAdvanced.textAspectRatio": "가로 세로 비율 고정", + "DE.Views.ImageSettingsAdvanced.textAutofit": "자동조정", "DE.Views.ImageSettingsAdvanced.textBeginSize": "크기 시작", "DE.Views.ImageSettingsAdvanced.textBeginStyle": "스타일 시작", "DE.Views.ImageSettingsAdvanced.textBelow": "below", @@ -1228,12 +1907,14 @@ "DE.Views.ImageSettingsAdvanced.textCenter": "Center", "DE.Views.ImageSettingsAdvanced.textCharacter": "Character", "DE.Views.ImageSettingsAdvanced.textColumn": "Column", - "DE.Views.ImageSettingsAdvanced.textDistance": "텍스트로부터의 거리", + "DE.Views.ImageSettingsAdvanced.textDistance": "텍스트 간격", "DE.Views.ImageSettingsAdvanced.textEndSize": "최종 크기", "DE.Views.ImageSettingsAdvanced.textEndStyle": "끝 스타일", "DE.Views.ImageSettingsAdvanced.textFlat": "Flat", + "DE.Views.ImageSettingsAdvanced.textFlipped": "대칭됨", "DE.Views.ImageSettingsAdvanced.textHeight": "높이", "DE.Views.ImageSettingsAdvanced.textHorizontal": "Horizontal", + "DE.Views.ImageSettingsAdvanced.textHorizontally": "수평", "DE.Views.ImageSettingsAdvanced.textJoinType": "조인 유형", "DE.Views.ImageSettingsAdvanced.textKeepRatio": "상수 비율", "DE.Views.ImageSettingsAdvanced.textLeft": "왼쪽", @@ -1244,7 +1925,7 @@ "DE.Views.ImageSettingsAdvanced.textMiter": "연귀", "DE.Views.ImageSettingsAdvanced.textMove": "텍스트가있는 객체 이동", "DE.Views.ImageSettingsAdvanced.textOptions": "옵션", - "DE.Views.ImageSettingsAdvanced.textOriginalSize": "기본 크기", + "DE.Views.ImageSettingsAdvanced.textOriginalSize": "실제 크기", "DE.Views.ImageSettingsAdvanced.textOverlap": "중복 허용", "DE.Views.ImageSettingsAdvanced.textPage": "페이지", "DE.Views.ImageSettingsAdvanced.textParagraph": "단락", @@ -1252,20 +1933,23 @@ "DE.Views.ImageSettingsAdvanced.textPositionPc": "상대 위치", "DE.Views.ImageSettingsAdvanced.textRelative": "상대적", "DE.Views.ImageSettingsAdvanced.textRelativeWH": "상대적", + "DE.Views.ImageSettingsAdvanced.textResizeFit": "텍스트에 맞게 모양 조정", "DE.Views.ImageSettingsAdvanced.textRight": "오른쪽", "DE.Views.ImageSettingsAdvanced.textRightMargin": "오른쪽 여백", "DE.Views.ImageSettingsAdvanced.textRightOf": "오른쪽에", + "DE.Views.ImageSettingsAdvanced.textRotation": "회전", "DE.Views.ImageSettingsAdvanced.textRound": "Round", "DE.Views.ImageSettingsAdvanced.textShape": "도형 설정", "DE.Views.ImageSettingsAdvanced.textSize": "크기", "DE.Views.ImageSettingsAdvanced.textSquare": "Square", - "DE.Views.ImageSettingsAdvanced.textTextBox": "텍스트상자", + "DE.Views.ImageSettingsAdvanced.textTextBox": "텍스트 상자", "DE.Views.ImageSettingsAdvanced.textTitle": "이미지 - 고급 설정", "DE.Views.ImageSettingsAdvanced.textTitleChart": "차트 - 고급 설정", "DE.Views.ImageSettingsAdvanced.textTitleShape": "모양 - 고급 설정", "DE.Views.ImageSettingsAdvanced.textTop": "Top", "DE.Views.ImageSettingsAdvanced.textTopMargin": "Top Margin", "DE.Views.ImageSettingsAdvanced.textVertical": "Vertical", + "DE.Views.ImageSettingsAdvanced.textVertically": "세로", "DE.Views.ImageSettingsAdvanced.textWeightArrows": "가중치 및 화살표", "DE.Views.ImageSettingsAdvanced.textWidth": "너비", "DE.Views.ImageSettingsAdvanced.textWrap": "포장 스타일", @@ -1279,33 +1963,80 @@ "DE.Views.LeftMenu.tipAbout": "About", "DE.Views.LeftMenu.tipChat": "채팅", "DE.Views.LeftMenu.tipComments": "Comments", + "DE.Views.LeftMenu.tipNavigation": "네비게이션", "DE.Views.LeftMenu.tipPlugins": "플러그인", - "DE.Views.LeftMenu.tipSearch": "Search", + "DE.Views.LeftMenu.tipSearch": "검색", "DE.Views.LeftMenu.tipSupport": "피드백 및 지원", "DE.Views.LeftMenu.tipTitles": "제목", "DE.Views.LeftMenu.txtDeveloper": "개발자 모드", + "DE.Views.LeftMenu.txtLimit": "접근제한", "DE.Views.LeftMenu.txtTrial": "시험 모드", - "DE.Views.Links.capBtnBookmarks": "책갈피", + "DE.Views.LeftMenu.txtTrialDev": "개발자 모드 시도", + "DE.Views.LineNumbersDialog.textAddLineNumbering": "행 번호를 추가", + "DE.Views.LineNumbersDialog.textApplyTo": "변경 사항 적용", + "DE.Views.LineNumbersDialog.textContinuous": "계속", + "DE.Views.LineNumbersDialog.textCountBy": "줄 번호 증가", + "DE.Views.LineNumbersDialog.textDocument": "전체 문서", + "DE.Views.LineNumbersDialog.textForward": "Point 앞으로", + "DE.Views.LineNumbersDialog.textFromText": "텍스트로 부터", + "DE.Views.LineNumbersDialog.textNumbering": "번호 매기기", + "DE.Views.LineNumbersDialog.textRestartEachPage": "모든 페이지 다시 시작", + "DE.Views.LineNumbersDialog.textRestartEachSection": "각 섹션 다시 시작", + "DE.Views.LineNumbersDialog.textSection": "현재 섹션", + "DE.Views.LineNumbersDialog.textStartAt": "시작", + "DE.Views.LineNumbersDialog.textTitle": "행번호", + "DE.Views.LineNumbersDialog.txtAutoText": "자동", + "DE.Views.Links.capBtnBookmarks": "북마크", + "DE.Views.Links.capBtnCaption": "참조", "DE.Views.Links.capBtnContentsUpdate": "재실행", + "DE.Views.Links.capBtnCrossRef": "상호 참조", "DE.Views.Links.capBtnInsContents": "콘텍츠 테이블", "DE.Views.Links.capBtnInsFootnote": "각주", "DE.Views.Links.capBtnInsLink": "하이퍼 링크", + "DE.Views.Links.capBtnTOF": "목차", "DE.Views.Links.confirmDeleteFootnotes": "모든 각주를 삭제 하시겠습니까?", - "DE.Views.Links.mniDelFootnote": "모든 각주 삭제", + "DE.Views.Links.confirmReplaceTOF": "선택한 목차를 바꾸시겠습니까?", + "DE.Views.Links.mniConvertNote": "모든 메모 변환", + "DE.Views.Links.mniDelFootnote": "모든 메모 삭제", + "DE.Views.Links.mniInsEndnote": "미주 삽입", "DE.Views.Links.mniInsFootnote": "각주 삽입", "DE.Views.Links.mniNoteSettings": "메모 설정", "DE.Views.Links.textContentsRemove": "콘텐츠 테이블을 지우세요", "DE.Views.Links.textContentsSettings": "세팅", + "DE.Views.Links.textConvertToEndnotes": "모든 각주를 미주로 변환", + "DE.Views.Links.textConvertToFootnotes": "모든 미주를 각주로 변환", + "DE.Views.Links.textGotoEndnote": "미주로 이동", "DE.Views.Links.textGotoFootnote": "각주로 이동", + "DE.Views.Links.textSwapNotes": "각주와 미주 바꾸기", "DE.Views.Links.textUpdateAll": "전체 테이블을 새로고침하세요", "DE.Views.Links.textUpdatePages": "페이지 번호만 새로고침하세요", + "DE.Views.Links.tipBookmarks": "북마크 만들기", + "DE.Views.Links.tipCaption": "캡션 삽입", "DE.Views.Links.tipContents": "콘텐트 테이블 삽입", "DE.Views.Links.tipContentsUpdate": "콘텐트 테이블 새로고침", + "DE.Views.Links.tipCrossRef": "상호 참조 삽입", "DE.Views.Links.tipInsertHyperlink": "하이퍼 링크 추가", "DE.Views.Links.tipNotes": "각주 삽입 또는 편집", + "DE.Views.Links.tipTableFigures": "목차 삽입", + "DE.Views.Links.tipTableFiguresUpdate": "목차 새로고침", + "DE.Views.Links.titleUpdateTOF": "목차 새로고침", + "DE.Views.ListSettingsDialog.textAuto": "자동", + "DE.Views.ListSettingsDialog.textCenter": "가운데", + "DE.Views.ListSettingsDialog.textLeft": "왼쪽", + "DE.Views.ListSettingsDialog.textLevel": "레벨", "DE.Views.ListSettingsDialog.textPreview": "미리보기", + "DE.Views.ListSettingsDialog.textRight": "오른쪽", + "DE.Views.ListSettingsDialog.txtAlign": "맞춤", + "DE.Views.ListSettingsDialog.txtBullet": "글머리 기호", + "DE.Views.ListSettingsDialog.txtColor": "색상", "DE.Views.ListSettingsDialog.txtFont": "글꼴 및 기호", + "DE.Views.ListSettingsDialog.txtLikeText": "텍스트처럼", + "DE.Views.ListSettingsDialog.txtNewBullet": "새로운 글머리 기호", + "DE.Views.ListSettingsDialog.txtNone": "없음", + "DE.Views.ListSettingsDialog.txtSize": "크기", "DE.Views.ListSettingsDialog.txtSymbol": "기호", + "DE.Views.ListSettingsDialog.txtTitle": "목록설정", + "DE.Views.ListSettingsDialog.txtType": "유형", "DE.Views.MailMergeEmailDlg.filePlaceholder": "PDF", "DE.Views.MailMergeEmailDlg.okButtonText": "보내기", "DE.Views.MailMergeEmailDlg.subjectPlaceholder": "테마", @@ -1355,7 +2086,7 @@ "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.txtExpand": "모두 확장", "DE.Views.Navigation.txtExpandToLevel": "레벨로 확장하기", @@ -1368,9 +2099,11 @@ "DE.Views.NoteSettingsDialog.textApplyTo": "변경 사항 적용", "DE.Views.NoteSettingsDialog.textContinue": "연속", "DE.Views.NoteSettingsDialog.textCustom": "사용자 정의 표시", + "DE.Views.NoteSettingsDialog.textDocEnd": "문서의 마지막", "DE.Views.NoteSettingsDialog.textDocument": "전체 문서", "DE.Views.NoteSettingsDialog.textEachPage": "각 페이지 다시 시작", "DE.Views.NoteSettingsDialog.textEachSection": "각 섹션 다시 시작", + "DE.Views.NoteSettingsDialog.textEndnote": "미주", "DE.Views.NoteSettingsDialog.textFootnote": "각주", "DE.Views.NoteSettingsDialog.textFormat": "Format", "DE.Views.NoteSettingsDialog.textInsert": "삽입", @@ -1378,14 +2111,27 @@ "DE.Views.NoteSettingsDialog.textNumbering": "번호 매기기", "DE.Views.NoteSettingsDialog.textNumFormat": "숫자 형식", "DE.Views.NoteSettingsDialog.textPageBottom": "페이지 하단", + "DE.Views.NoteSettingsDialog.textSectEnd": "섹션의 끝", "DE.Views.NoteSettingsDialog.textSection": "현재 섹션", "DE.Views.NoteSettingsDialog.textStart": "시작 시간", "DE.Views.NoteSettingsDialog.textTextBottom": "텍스트 아래에", "DE.Views.NoteSettingsDialog.textTitle": "메모 설정", + "DE.Views.NotesRemoveDialog.textEnd": "모든 미주 삭제", + "DE.Views.NotesRemoveDialog.textFoot": "모든 각주 삭제", + "DE.Views.NotesRemoveDialog.textTitle": "메모 삭제", "DE.Views.PageMarginsDialog.notcriticalErrorTitle": "경고", "DE.Views.PageMarginsDialog.textBottom": "Bottom", + "DE.Views.PageMarginsDialog.textGutter": "홈", + "DE.Views.PageMarginsDialog.textGutterPosition": "홈위치", + "DE.Views.PageMarginsDialog.textInside": "내부", + "DE.Views.PageMarginsDialog.textLandscape": "수평", "DE.Views.PageMarginsDialog.textLeft": "왼쪽", + "DE.Views.PageMarginsDialog.textMirrorMargins": "좌우 대칭의 여백", + "DE.Views.PageMarginsDialog.textMultiplePages": "여러 페이지", "DE.Views.PageMarginsDialog.textNormal": "표준", + "DE.Views.PageMarginsDialog.textOrientation": "방향", + "DE.Views.PageMarginsDialog.textOutside": "외부", + "DE.Views.PageMarginsDialog.textPortrait": "세로", "DE.Views.PageMarginsDialog.textPreview": "미리보기", "DE.Views.PageMarginsDialog.textRight": "오른쪽", "DE.Views.PageMarginsDialog.textTitle": "여백", @@ -1393,76 +2139,104 @@ "DE.Views.PageMarginsDialog.txtMarginsH": "주어진 페이지 높이에 대해 위쪽 및 아래쪽 여백이 너무 높습니다.", "DE.Views.PageMarginsDialog.txtMarginsW": "왼쪽 및 오른쪽 여백이 주어진 페이지 너비에 비해 너무 넓습니다.", "DE.Views.PageSizeDialog.textHeight": "높이", + "DE.Views.PageSizeDialog.textPreset": "미리 설정된", "DE.Views.PageSizeDialog.textTitle": "페이지 크기", "DE.Views.PageSizeDialog.textWidth": "너비", "DE.Views.PageSizeDialog.txtCustom": "사용자 정의", + "DE.Views.ParagraphSettings.strIndent": "들여쓰기", + "DE.Views.ParagraphSettings.strIndentsLeftText": "왼쪽", + "DE.Views.ParagraphSettings.strIndentsRightText": "오른쪽", + "DE.Views.ParagraphSettings.strIndentsSpecial": "첫줄", "DE.Views.ParagraphSettings.strLineHeight": "줄 간격", "DE.Views.ParagraphSettings.strParagraphSpacing": "단락 간격", - "DE.Views.ParagraphSettings.strSomeParagraphSpace": "같은 스타일의 단락 사이에 간격을 추가하지 마십시오.", + "DE.Views.ParagraphSettings.strSomeParagraphSpace": "같은 스타일의 단락 사이에 공백 삽입 안 함", "DE.Views.ParagraphSettings.strSpacingAfter": "이후", - "DE.Views.ParagraphSettings.strSpacingBefore": "이전", + "DE.Views.ParagraphSettings.strSpacingBefore": "단락 앞", "DE.Views.ParagraphSettings.textAdvanced": "고급 설정 표시", "DE.Views.ParagraphSettings.textAt": "At", "DE.Views.ParagraphSettings.textAtLeast": "적어도", - "DE.Views.ParagraphSettings.textAuto": "Multiple", + "DE.Views.ParagraphSettings.textAuto": "배수", "DE.Views.ParagraphSettings.textBackColor": "배경색", "DE.Views.ParagraphSettings.textExact": "정확히", + "DE.Views.ParagraphSettings.textFirstLine": "첫 번째 줄", + "DE.Views.ParagraphSettings.textHanging": "둘째 줄 이하", "DE.Views.ParagraphSettings.textNoneSpecial": "(없음)", "DE.Views.ParagraphSettings.txtAutoText": "Auto", "DE.Views.ParagraphSettingsAdvanced.noTabs": "지정된 탭이이 필드에 나타납니다", "DE.Views.ParagraphSettingsAdvanced.strAllCaps": "모든 대문자", "DE.Views.ParagraphSettingsAdvanced.strBorders": "테두리 및 채우기", - "DE.Views.ParagraphSettingsAdvanced.strBreakBefore": "전에 페이지 나누기", - "DE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "이중 취소 선", + "DE.Views.ParagraphSettingsAdvanced.strBreakBefore": "현재 단락 앞에서 페이지 나누기", + "DE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "이중 취소선", + "DE.Views.ParagraphSettingsAdvanced.strIndent": "들여쓰기", "DE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Left", - "DE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Right", - "DE.Views.ParagraphSettingsAdvanced.strKeepLines": "줄을 함께 유지", - "DE.Views.ParagraphSettingsAdvanced.strKeepNext": "다음으로 유지", + "DE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing": "줄 간격", + "DE.Views.ParagraphSettingsAdvanced.strIndentsOutlinelevel": "개요 수준", + "DE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "오른쪽", + "DE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter": "이후", + "DE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore": "단락 앞", + "DE.Views.ParagraphSettingsAdvanced.strIndentsSpecial": "첫줄", + "DE.Views.ParagraphSettingsAdvanced.strKeepLines": "현재 단락을 나누지 않음", + "DE.Views.ParagraphSettingsAdvanced.strKeepNext": "현재 단락과 다음 단락을 항상 같은 페이지에 배치", "DE.Views.ParagraphSettingsAdvanced.strMargins": "Paddings", "DE.Views.ParagraphSettingsAdvanced.strOrphan": "고아 컨트롤", "DE.Views.ParagraphSettingsAdvanced.strParagraphFont": "글꼴", - "DE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "들여 쓰기 및 배치", + "DE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "들여쓰기 및 간격", + "DE.Views.ParagraphSettingsAdvanced.strParagraphLine": "줄 바꿈 및 페이지 나누기", "DE.Views.ParagraphSettingsAdvanced.strParagraphPosition": "게재 위치", "DE.Views.ParagraphSettingsAdvanced.strSmallCaps": "작은 대문자", - "DE.Views.ParagraphSettingsAdvanced.strStrike": "취소 선", + "DE.Views.ParagraphSettingsAdvanced.strSomeParagraphSpace": "같은 스타일의 단락 사이에 공백 삽입 안 함", + "DE.Views.ParagraphSettingsAdvanced.strSpacing": "간격", + "DE.Views.ParagraphSettingsAdvanced.strStrike": "취소선", "DE.Views.ParagraphSettingsAdvanced.strSubscript": "Subscript", "DE.Views.ParagraphSettingsAdvanced.strSuperscript": "Superscript", + "DE.Views.ParagraphSettingsAdvanced.strSuppressLineNumbers": "줄 번호 중지", "DE.Views.ParagraphSettingsAdvanced.strTabs": "탭", "DE.Views.ParagraphSettingsAdvanced.textAlign": "정렬", + "DE.Views.ParagraphSettingsAdvanced.textAtLeast": "최소", + "DE.Views.ParagraphSettingsAdvanced.textAuto": "배수", "DE.Views.ParagraphSettingsAdvanced.textBackColor": "배경색", + "DE.Views.ParagraphSettingsAdvanced.textBodyText": "기본 텍스트", "DE.Views.ParagraphSettingsAdvanced.textBorderColor": "Border Color", "DE.Views.ParagraphSettingsAdvanced.textBorderDesc": "다이어그램을 클릭하거나 단추를 사용하여 테두리를 선택하고 선택한 스타일을 적용", "DE.Views.ParagraphSettingsAdvanced.textBorderWidth": "테두리 크기", "DE.Views.ParagraphSettingsAdvanced.textBottom": "Bottom", + "DE.Views.ParagraphSettingsAdvanced.textCentered": "가운데", "DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "문자 간격", "DE.Views.ParagraphSettingsAdvanced.textDefault": "기본 탭", "DE.Views.ParagraphSettingsAdvanced.textEffects": "효과", + "DE.Views.ParagraphSettingsAdvanced.textExact": "고정", + "DE.Views.ParagraphSettingsAdvanced.textFirstLine": "첫 번째 줄", + "DE.Views.ParagraphSettingsAdvanced.textHanging": "둘째 줄 이하", + "DE.Views.ParagraphSettingsAdvanced.textJustified": "균등분할", "DE.Views.ParagraphSettingsAdvanced.textLeader": "리더", "DE.Views.ParagraphSettingsAdvanced.textLeft": "왼쪽", + "DE.Views.ParagraphSettingsAdvanced.textLevel": "레벨", "DE.Views.ParagraphSettingsAdvanced.textNone": "없음", "DE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(없음)", "DE.Views.ParagraphSettingsAdvanced.textPosition": "위치", - "DE.Views.ParagraphSettingsAdvanced.textRemove": "제거", + "DE.Views.ParagraphSettingsAdvanced.textRemove": "삭제", "DE.Views.ParagraphSettingsAdvanced.textRemoveAll": "모두 제거", - "DE.Views.ParagraphSettingsAdvanced.textRight": "Right", + "DE.Views.ParagraphSettingsAdvanced.textRight": "오른쪽", "DE.Views.ParagraphSettingsAdvanced.textSet": "지정", "DE.Views.ParagraphSettingsAdvanced.textSpacing": "간격", "DE.Views.ParagraphSettingsAdvanced.textTabCenter": "Center", "DE.Views.ParagraphSettingsAdvanced.textTabLeft": "왼쪽", "DE.Views.ParagraphSettingsAdvanced.textTabPosition": "탭 위치", - "DE.Views.ParagraphSettingsAdvanced.textTabRight": "Right", + "DE.Views.ParagraphSettingsAdvanced.textTabRight": "오른쪽", "DE.Views.ParagraphSettingsAdvanced.textTitle": "단락 - 고급 설정", "DE.Views.ParagraphSettingsAdvanced.textTop": "Top", - "DE.Views.ParagraphSettingsAdvanced.tipAll": "바깥 쪽 테두리 및 모든 안쪽 선 설정", - "DE.Views.ParagraphSettingsAdvanced.tipBottom": "아래쪽 테두리 만 설정", - "DE.Views.ParagraphSettingsAdvanced.tipInner": "가로형 내부 선만 설정", - "DE.Views.ParagraphSettingsAdvanced.tipLeft": "왼쪽 테두리 만 설정", + "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": "Set Top Border Only", + "DE.Views.ParagraphSettingsAdvanced.tipOuter": "바깥쪽 테두리", + "DE.Views.ParagraphSettingsAdvanced.tipRight": "오른쪽 테두리", + "DE.Views.ParagraphSettingsAdvanced.tipTop": "위쪽 테두리", + "DE.Views.ParagraphSettingsAdvanced.txtAutoText": "자동", "DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "테두리 없음", "DE.Views.RightMenu.txtChartSettings": "차트 설정", + "DE.Views.RightMenu.txtFormSettings": "폼 설정", "DE.Views.RightMenu.txtHeaderFooterSettings": "머리글 및 바닥 글 설정", "DE.Views.RightMenu.txtImageSettings": "이미지 설정", "DE.Views.RightMenu.txtMailMergeSettings": "편지 병합 설정", @@ -1477,9 +2251,10 @@ "DE.Views.ShapeSettings.strFill": "채우기", "DE.Views.ShapeSettings.strForeground": "전경색", "DE.Views.ShapeSettings.strPattern": "패턴", + "DE.Views.ShapeSettings.strShadow": "음영 표시", "DE.Views.ShapeSettings.strSize": "크기", - "DE.Views.ShapeSettings.strStroke": "Stroke", - "DE.Views.ShapeSettings.strTransparency": "불투명도", + "DE.Views.ShapeSettings.strStroke": "선", + "DE.Views.ShapeSettings.strTransparency": "투명도", "DE.Views.ShapeSettings.strType": "유형", "DE.Views.ShapeSettings.textAdvanced": "고급 설정 표시", "DE.Views.ShapeSettings.textAngle": "각도", @@ -1487,21 +2262,33 @@ "DE.Views.ShapeSettings.textColor": "색상 채우기", "DE.Views.ShapeSettings.textDirection": "Direction", "DE.Views.ShapeSettings.textEmptyPattern": "패턴 없음", + "DE.Views.ShapeSettings.textFlip": "대칭", "DE.Views.ShapeSettings.textFromFile": "파일로부터", + "DE.Views.ShapeSettings.textFromStorage": "스토리지로 부터", "DE.Views.ShapeSettings.textFromUrl": "URL로부터", - "DE.Views.ShapeSettings.textGradient": "그라디언트", + "DE.Views.ShapeSettings.textGradient": "Gradient Points", "DE.Views.ShapeSettings.textGradientFill": "그라데이션 채우기", + "DE.Views.ShapeSettings.textHint270": "왼쪽으로 90도 회전", + "DE.Views.ShapeSettings.textHint90": "오른쪽으로 90도 회전", + "DE.Views.ShapeSettings.textHintFlipH": "좌우대칭", + "DE.Views.ShapeSettings.textHintFlipV": "상하대칭", "DE.Views.ShapeSettings.textImageTexture": "그림 또는 질감", "DE.Views.ShapeSettings.textLinear": "선형", "DE.Views.ShapeSettings.textNoFill": "채우기 없음", "DE.Views.ShapeSettings.textPatternFill": "패턴", + "DE.Views.ShapeSettings.textPosition": "위치", "DE.Views.ShapeSettings.textRadial": "방사형", + "DE.Views.ShapeSettings.textRotate90": "90도 회전", + "DE.Views.ShapeSettings.textRotation": "회전", + "DE.Views.ShapeSettings.textSelectImage": "그림선택", "DE.Views.ShapeSettings.textSelectTexture": "선택", "DE.Views.ShapeSettings.textStretch": "늘이기", "DE.Views.ShapeSettings.textStyle": "스타일", "DE.Views.ShapeSettings.textTexture": "텍스처에서", "DE.Views.ShapeSettings.textTile": "타일", "DE.Views.ShapeSettings.textWrap": "배치 스타일", + "DE.Views.ShapeSettings.tipAddGradientPoint": "그라데이션 포인트 추가", + "DE.Views.ShapeSettings.tipRemoveGradientPoint": "그라데이션 포인트 제거", "DE.Views.ShapeSettings.txtBehind": "Behind", "DE.Views.ShapeSettings.txtBrownPaper": "갈색 종이", "DE.Views.ShapeSettings.txtCanvas": "Canvas", @@ -1532,16 +2319,17 @@ "DE.Views.SignatureSettings.strSigner": "서명자", "DE.Views.SignatureSettings.strValid": "유효 서명", "DE.Views.SignatureSettings.txtContinueEditing": "무조건 편집", - "DE.Views.SignatureSettings.txtEditWarning": "편집은 문서에서 서명을 지울것입니다.
계속 진행하시겠습니까?", + "DE.Views.SignatureSettings.txtEditWarning": "편집하면 문서의 서명이 삭제됩니다.
계속하시겠습니까?", + "DE.Views.SignatureSettings.txtRemoveWarning": "이 서명을 삭제하시겠습니까?
이 작업은 취소할 수 없습니다.", "DE.Views.SignatureSettings.txtRequestedSignatures": "이 문서는 서명되어야 합니다.", - "DE.Views.SignatureSettings.txtSigned": "유효한 서명이 당 문서에 추가되었슴. 이 문서는 편집할 수 없도록 보호됨.", - "DE.Views.SignatureSettings.txtSignedInvalid": "문서에 있는 몇 가지 디지털 서명 이 맞지 않거나 확인되지 않음. 이 문서는 편집할 수 없도록 보호됨.", + "DE.Views.SignatureSettings.txtSigned": "문서에 유효한 서명이 추가되었습니다. 문서가 보호되어 편집할 수 없습니다.", + "DE.Views.SignatureSettings.txtSignedInvalid": "문서의 일부 디지털 서명이 유효하지 않거나 확인할 수 없습니다. 문서가 보호되어 편집할 수 없습니다.", "DE.Views.Statusbar.goToPageText": "페이지로 이동", "DE.Views.Statusbar.pageIndexText": "{1}의 페이지 {0}", "DE.Views.Statusbar.tipFitPage": "페이지에 맞춤", "DE.Views.Statusbar.tipFitWidth": "너비에 맞춤", "DE.Views.Statusbar.tipSetLang": "텍스트 언어 설정", - "DE.Views.Statusbar.tipZoomFactor": "확대 / 축소", + "DE.Views.Statusbar.tipZoomFactor": "확대/축소", "DE.Views.Statusbar.tipZoomIn": "확대", "DE.Views.Statusbar.tipZoomOut": "축소", "DE.Views.Statusbar.txtPageNumInvalid": "페이지 번호가 잘못되었습니다.", @@ -1550,23 +2338,41 @@ "DE.Views.StyleTitleDialog.textTitle": "제목", "DE.Views.StyleTitleDialog.txtEmpty": "이 입력란은 필수 항목", "DE.Views.StyleTitleDialog.txtNotEmpty": "필드가 비어 있어서는 안됩니다.", + "DE.Views.StyleTitleDialog.txtSameAs": "새로 생성된 스타일과 동일하게", + "DE.Views.TableFormulaDialog.textBookmark": "북마크 붙여넣기", + "DE.Views.TableFormulaDialog.textFormat": "숫자 형식", + "DE.Views.TableFormulaDialog.textFormula": "수식", + "DE.Views.TableFormulaDialog.textInsertFunction": "함수 붙여넣기", + "DE.Views.TableFormulaDialog.textTitle": "수식설정", "DE.Views.TableOfContentsSettings.strAlign": "오른쪽 정렬 페이지 번호", + "DE.Views.TableOfContentsSettings.strFullCaption": "라벨과 번호를 포함", "DE.Views.TableOfContentsSettings.strLinks": "콘텐츠 테이블을 포맷하세요", + "DE.Views.TableOfContentsSettings.strLinksOF": "목차 형식을 링크로 변경", "DE.Views.TableOfContentsSettings.strShowPages": "페이지 번호를 보여주세요", "DE.Views.TableOfContentsSettings.textBuildTable": "콘텐츠 테이블을 작성하세요", + "DE.Views.TableOfContentsSettings.textBuildTableOF": "목차 폼 만들기", + "DE.Views.TableOfContentsSettings.textEquation": "방정식", + "DE.Views.TableOfContentsSettings.textFigure": "숫자", "DE.Views.TableOfContentsSettings.textLeader": "리더", "DE.Views.TableOfContentsSettings.textLevel": "레벨", "DE.Views.TableOfContentsSettings.textLevels": "레벨들", "DE.Views.TableOfContentsSettings.textNone": "없음", - "DE.Views.TableOfContentsSettings.textRadioLevels": "레벨을 간략하게 서술하세요", + "DE.Views.TableOfContentsSettings.textRadioCaption": "참조", + "DE.Views.TableOfContentsSettings.textRadioLevels": "개요 수준", + "DE.Views.TableOfContentsSettings.textRadioStyle": "스타일", "DE.Views.TableOfContentsSettings.textRadioStyles": "선택 스타일", "DE.Views.TableOfContentsSettings.textStyle": "스타일", "DE.Views.TableOfContentsSettings.textStyles": "스타일들", "DE.Views.TableOfContentsSettings.textTable": "표", "DE.Views.TableOfContentsSettings.textTitle": "콘텍츠 테이블", + "DE.Views.TableOfContentsSettings.textTitleTOF": "목차", + "DE.Views.TableOfContentsSettings.txtCentered": "가운데", "DE.Views.TableOfContentsSettings.txtClassic": "클래식", "DE.Views.TableOfContentsSettings.txtCurrent": "현재", + "DE.Views.TableOfContentsSettings.txtDistinctive": "고유한", + "DE.Views.TableOfContentsSettings.txtFormal": "공식", "DE.Views.TableOfContentsSettings.txtModern": "모던", + "DE.Views.TableOfContentsSettings.txtOnline": "온라인", "DE.Views.TableOfContentsSettings.txtSimple": "간단한", "DE.Views.TableOfContentsSettings.txtStandard": "기준", "DE.Views.TableSettings.deleteColumnText": "열 삭제", @@ -1584,13 +2390,15 @@ "DE.Views.TableSettings.splitCellsText": "셀 분할 ...", "DE.Views.TableSettings.splitCellTitleText": "셀 분할", "DE.Views.TableSettings.strRepeatRow": "각 페이지 상단의 헤더 행으로 반복", + "DE.Views.TableSettings.textAddFormula": "수식추가", "DE.Views.TableSettings.textAdvanced": "고급 설정 표시", "DE.Views.TableSettings.textBackColor": "배경색", "DE.Views.TableSettings.textBanded": "줄무늬", "DE.Views.TableSettings.textBorderColor": "Color", "DE.Views.TableSettings.textBorders": "테두리 스타일", - "DE.Views.TableSettings.textCellSize": "셀 크기", + "DE.Views.TableSettings.textCellSize": "행/열 크기", "DE.Views.TableSettings.textColumns": "열", + "DE.Views.TableSettings.textConvert": "표를 문자로 변환", "DE.Views.TableSettings.textDistributeCols": "컬럼 배포", "DE.Views.TableSettings.textDistributeRows": "행 배포", "DE.Views.TableSettings.textEdit": "행 및 열", @@ -1602,25 +2410,33 @@ "DE.Views.TableSettings.textRows": "행", "DE.Views.TableSettings.textSelectBorders": "위에서 선택한 스타일 적용을 변경하려는 테두리 선택", "DE.Views.TableSettings.textTemplate": "템플릿에서 선택", - "DE.Views.TableSettings.textTotal": "Total", + "DE.Views.TableSettings.textTotal": "요약 행", "DE.Views.TableSettings.textWidth": "너비", - "DE.Views.TableSettings.tipAll": "바깥 쪽 테두리 및 모든 안쪽 선 설정", - "DE.Views.TableSettings.tipBottom": "바깥 쪽 테두리 만 설정", + "DE.Views.TableSettings.tipAll": "바깥쪽 테두리 및 안쪽 테두리", + "DE.Views.TableSettings.tipBottom": "바깥 아래쪽 테두리", "DE.Views.TableSettings.tipInner": "내부 라인 만 설정", - "DE.Views.TableSettings.tipInnerHor": "가로형 내부 선만 설정", + "DE.Views.TableSettings.tipInnerHor": "안쪽 가로 테두리", "DE.Views.TableSettings.tipInnerVert": "세로 내부 선만 설정", - "DE.Views.TableSettings.tipLeft": "바깥 쪽 테두리 만 설정", + "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": "화려한", + "DE.Views.TableSettings.txtTable_Dark": "어두운", + "DE.Views.TableSettings.txtTable_GridTable": "그리드 테이블", + "DE.Views.TableSettings.txtTable_Light": "밝은", + "DE.Views.TableSettings.txtTable_ListTable": "테이블목록", + "DE.Views.TableSettings.txtTable_PlainTable": "일반표", + "DE.Views.TableSettings.txtTable_TableGrid": "테이블 그리드", "DE.Views.TableSettingsAdvanced.textAlign": "정렬", "DE.Views.TableSettingsAdvanced.textAlignment": "정렬", "DE.Views.TableSettingsAdvanced.textAllowSpacing": "셀 사이의 간격", "DE.Views.TableSettingsAdvanced.textAlt": "대체 텍스트", "DE.Views.TableSettingsAdvanced.textAltDescription": "설명", - "DE.Views.TableSettingsAdvanced.textAltTip": "시력이나인지 장애가있는 사람들에게 읽을 수있는 시각적 개체 정보의 대체 텍스트 기반 표현으로 이미지에있는 정보를 더 잘 이해할 수 있도록 도와줍니다. 차트 또는 표. ", + "DE.Views.TableSettingsAdvanced.textAltTip": "시각적 개체 정보의 교체는 텍스트 표현을 기반으로 하며 시각 또는 인지 장애가 있는 사람들이 이미지, 자동 모양, 차트 또는 표에 포함된 정보를 더 잘 이해할 수 있도록 읽어줍니다.", "DE.Views.TableSettingsAdvanced.textAltTitle": "Title", "DE.Views.TableSettingsAdvanced.textAnchorText": "텍스트", "DE.Views.TableSettingsAdvanced.textAutofit": "내용에 맞게 자동으로 크기 조정", @@ -1638,7 +2454,7 @@ "DE.Views.TableSettingsAdvanced.textCenterTooltip": "Center", "DE.Views.TableSettingsAdvanced.textCheckMargins": "기본 여백 사용", "DE.Views.TableSettingsAdvanced.textDefaultMargins": "기본 셀 여백", - "DE.Views.TableSettingsAdvanced.textDistance": "텍스트로부터의 거리", + "DE.Views.TableSettingsAdvanced.textDistance": "텍스트 간격", "DE.Views.TableSettingsAdvanced.textHorizontal": "Horizontal", "DE.Views.TableSettingsAdvanced.textIndLeft": "왼쪽에서 들여 쓰기", "DE.Views.TableSettingsAdvanced.textLeft": "왼쪽", @@ -1672,13 +2488,13 @@ "DE.Views.TableSettingsAdvanced.textWrapParallelTooltip": "흐름 표", "DE.Views.TableSettingsAdvanced.textWrappingStyle": "포장 스타일", "DE.Views.TableSettingsAdvanced.textWrapText": "텍스트 줄 바꾸기", - "DE.Views.TableSettingsAdvanced.tipAll": "바깥 쪽 테두리 및 모든 안쪽 선 설정", + "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.tipOuter": "바깥쪽 테두리", "DE.Views.TableSettingsAdvanced.tipTableOuterCellAll": "모든 내부 셀에 테두리 및 테두리 설정", "DE.Views.TableSettingsAdvanced.tipTableOuterCellInner": "내부 셀의 외부 테두리 및 수직 및 수평선 설정", "DE.Views.TableSettingsAdvanced.tipTableOuterCellOuter": "내부 셀에 대한 테이블 바깥 쪽 테두리 및 바깥 쪽 테두리 설정", @@ -1687,27 +2503,57 @@ "DE.Views.TableSettingsAdvanced.txtNoBorders": "테두리 없음", "DE.Views.TableSettingsAdvanced.txtPercent": "Percent", "DE.Views.TableSettingsAdvanced.txtPt": "Point", + "DE.Views.TableToTextDialog.textEmpty": "하나 이상의 맞춤 구분자를 입력해야 합니다.", + "DE.Views.TableToTextDialog.textNested": "중첩 테이블의 변환", + "DE.Views.TableToTextDialog.textOther": "기타", + "DE.Views.TableToTextDialog.textPara": "단락기호", + "DE.Views.TableToTextDialog.textSemicolon": "세미콜론", + "DE.Views.TableToTextDialog.textSeparator": "텍스트로 구분", + "DE.Views.TableToTextDialog.textTab": "탭", + "DE.Views.TableToTextDialog.textTitle": "표를 문자로 변환", "DE.Views.TextArtSettings.strColor": "Color", "DE.Views.TextArtSettings.strFill": "채우기", "DE.Views.TextArtSettings.strSize": "크기", - "DE.Views.TextArtSettings.strStroke": "Stroke", - "DE.Views.TextArtSettings.strTransparency": "불투명도", + "DE.Views.TextArtSettings.strStroke": "선", + "DE.Views.TextArtSettings.strTransparency": "투명도", "DE.Views.TextArtSettings.strType": "유형", + "DE.Views.TextArtSettings.textAngle": "각도", "DE.Views.TextArtSettings.textBorderSizeErr": "입력 한 값이 잘못되었습니다.
0 ~ 1584pt 사이의 값을 입력하십시오.", "DE.Views.TextArtSettings.textColor": "색상 채우기", "DE.Views.TextArtSettings.textDirection": "Direction", - "DE.Views.TextArtSettings.textGradient": "그라디언트", + "DE.Views.TextArtSettings.textGradient": "Gradient Points", "DE.Views.TextArtSettings.textGradientFill": "그라데이션 채우기", "DE.Views.TextArtSettings.textLinear": "선형", "DE.Views.TextArtSettings.textNoFill": "채우기 없음", + "DE.Views.TextArtSettings.textPosition": "위치", "DE.Views.TextArtSettings.textRadial": "방사형", "DE.Views.TextArtSettings.textSelectTexture": "선택", "DE.Views.TextArtSettings.textStyle": "스타일", "DE.Views.TextArtSettings.textTemplate": "템플릿", "DE.Views.TextArtSettings.textTransform": "변형", + "DE.Views.TextArtSettings.tipAddGradientPoint": "그라데이션 포인트 추가", + "DE.Views.TextArtSettings.tipRemoveGradientPoint": "그라데이션 포인트 제거", "DE.Views.TextArtSettings.txtNoBorders": "No Line", + "DE.Views.TextToTableDialog.textAutofit": "열너비 자동조정", + "DE.Views.TextToTableDialog.textColumns": "열", + "DE.Views.TextToTableDialog.textContents": "열 너비를 콘텐츠에 맞게 자동 조정", + "DE.Views.TextToTableDialog.textEmpty": "하나 이상의 맞춤 구분자를 입력해야 합니다.", + "DE.Views.TextToTableDialog.textFixed": "열 너비 고정", + "DE.Views.TextToTableDialog.textOther": "기타", + "DE.Views.TextToTableDialog.textPara": "단락", + "DE.Views.TextToTableDialog.textRows": "행", + "DE.Views.TextToTableDialog.textSemicolon": "세미콜론", + "DE.Views.TextToTableDialog.textSeparator": "분리된 텍스트", + "DE.Views.TextToTableDialog.textTab": "탭", + "DE.Views.TextToTableDialog.textTableSize": "표 크기", + "DE.Views.TextToTableDialog.textTitle": "문자를 테이블로 변환", + "DE.Views.TextToTableDialog.textWindow": "열 너비를 창에 맞게 자동 조정", + "DE.Views.TextToTableDialog.txtAutoText": "자동", + "DE.Views.Toolbar.capBtnAddComment": "코멘트 달기", + "DE.Views.Toolbar.capBtnBlankPage": "빈 페이지", "DE.Views.Toolbar.capBtnColumns": "열", "DE.Views.Toolbar.capBtnComment": "댓글", + "DE.Views.Toolbar.capBtnDateTime": "날짜 및 시간", "DE.Views.Toolbar.capBtnInsChart": "차트", "DE.Views.Toolbar.capBtnInsControls": "콘텐트 제어", "DE.Views.Toolbar.capBtnInsDropcap": "드롭 캡", @@ -1719,35 +2565,58 @@ "DE.Views.Toolbar.capBtnInsSymbol": "기호", "DE.Views.Toolbar.capBtnInsTable": "테이블", "DE.Views.Toolbar.capBtnInsTextart": "텍스트 아트", - "DE.Views.Toolbar.capBtnInsTextbox": "텍스트 박스", + "DE.Views.Toolbar.capBtnInsTextbox": "텍스트 상자", + "DE.Views.Toolbar.capBtnLineNumbers": "행번호", "DE.Views.Toolbar.capBtnMargins": "여백", "DE.Views.Toolbar.capBtnPageOrient": "오리엔테이션", "DE.Views.Toolbar.capBtnPageSize": "크기", + "DE.Views.Toolbar.capBtnWatermark": "워터마크", "DE.Views.Toolbar.capImgAlign": "정렬", "DE.Views.Toolbar.capImgBackward": "뒤로 이동", "DE.Views.Toolbar.capImgForward": "앞으로 이동", "DE.Views.Toolbar.capImgGroup": "그룹", "DE.Views.Toolbar.capImgWrapping": "포장", + "DE.Views.Toolbar.mniCapitalizeWords": "각 단어의 첫글자를 대문자로", "DE.Views.Toolbar.mniCustomTable": "사용자 정의 테이블 삽입", + "DE.Views.Toolbar.mniDrawTable": "표그리기", "DE.Views.Toolbar.mniEditControls": "제어 세팅", "DE.Views.Toolbar.mniEditDropCap": "드롭 캡 설정", "DE.Views.Toolbar.mniEditFooter": "바닥 글 편집", "DE.Views.Toolbar.mniEditHeader": "머리글 편집", + "DE.Views.Toolbar.mniEraseTable": "표삭제", + "DE.Views.Toolbar.mniFromFile": "파일로 부터", + "DE.Views.Toolbar.mniFromStorage": "스토리지로 부터", + "DE.Views.Toolbar.mniFromUrl": "URL로 부터", "DE.Views.Toolbar.mniHiddenBorders": "숨겨진 테이블 테두리", "DE.Views.Toolbar.mniHiddenChars": "인쇄되지 않는 문자", + "DE.Views.Toolbar.mniHighlightControls": "강조 설정", "DE.Views.Toolbar.mniImageFromFile": "그림 파일에서", + "DE.Views.Toolbar.mniImageFromStorage": "스토리지에서 불러오기", "DE.Views.Toolbar.mniImageFromUrl": "URL에서 그림", + "DE.Views.Toolbar.mniLowerCase": "소문자", + "DE.Views.Toolbar.mniSentenceCase": "문장의 첫 글자를 대문자로", + "DE.Views.Toolbar.mniTextToTable": "문자를 테이블로 변환", + "DE.Views.Toolbar.mniToggleCase": "대/소문자 전환", + "DE.Views.Toolbar.mniUpperCase": "대문자", "DE.Views.Toolbar.strMenuNoFill": "채우기 없음", "DE.Views.Toolbar.textAutoColor": "자동", "DE.Views.Toolbar.textBold": "Bold", "DE.Views.Toolbar.textBottom": "Bottom :", + "DE.Views.Toolbar.textChangeLevel": "목록 수준 변경", + "DE.Views.Toolbar.textCheckboxControl": "체크박스", "DE.Views.Toolbar.textColumnsCustom": "사용자 정의 열", "DE.Views.Toolbar.textColumnsLeft": "왼쪽", "DE.Views.Toolbar.textColumnsOne": "하나", "DE.Views.Toolbar.textColumnsRight": "오른쪽", "DE.Views.Toolbar.textColumnsThree": "3", "DE.Views.Toolbar.textColumnsTwo": "2", + "DE.Views.Toolbar.textComboboxControl": "콤보박스", + "DE.Views.Toolbar.textContinuous": "계속", "DE.Views.Toolbar.textContPage": "연속 페이지", + "DE.Views.Toolbar.textCustomLineNumbers": "행 번호 옵션", + "DE.Views.Toolbar.textDateControl": "날짜", + "DE.Views.Toolbar.textDropdownControl": "드롭 다운 메뉴", + "DE.Views.Toolbar.textEditWatermark": "사용자 정의 워터마크", "DE.Views.Toolbar.textEvenPage": "짝수 페이지", "DE.Views.Toolbar.textInMargin": "여백 있음", "DE.Views.Toolbar.textInsColumnBreak": "열 구분 삽입", @@ -1759,6 +2628,7 @@ "DE.Views.Toolbar.textItalic": "Italic", "DE.Views.Toolbar.textLandscape": "Landscape", "DE.Views.Toolbar.textLeft": "왼쪽 :", + "DE.Views.Toolbar.textListSettings": "목록설정", "DE.Views.Toolbar.textMarginsLast": "마지막 사용자 정의", "DE.Views.Toolbar.textMarginsModerate": "보통", "DE.Views.Toolbar.textMarginsNarrow": "좁다", @@ -1767,16 +2637,21 @@ "DE.Views.Toolbar.textMarginsWide": "Wide", "DE.Views.Toolbar.textNewColor": "새로운 사용자 정의 색 추가", "DE.Views.Toolbar.textNextPage": "다음 페이지", + "DE.Views.Toolbar.textNoHighlight": "강조 표시되지 않음", "DE.Views.Toolbar.textNone": "없음", "DE.Views.Toolbar.textOddPage": "홀수 페이지", "DE.Views.Toolbar.textPageMarginsCustom": "사용자 정의 여백", "DE.Views.Toolbar.textPageSizeCustom": "사용자 정의 페이지 크기", - "DE.Views.Toolbar.textPlainControl": "일반 텍스트 콘텐트 제어 삽입", + "DE.Views.Toolbar.textPictureControl": "그림", + "DE.Views.Toolbar.textPlainControl": "일반 텍스트", "DE.Views.Toolbar.textPortrait": "Portrait", - "DE.Views.Toolbar.textRemoveControl": "콘텐트 제어 삭제", - "DE.Views.Toolbar.textRichControl": "리치 텍스트 콘텐트 제어 삽입", + "DE.Views.Toolbar.textRemoveControl": "콘텐트 컨트롤 삭제", + "DE.Views.Toolbar.textRemWatermark": "워터마크 제거", + "DE.Views.Toolbar.textRestartEachPage": "모든 페이지 다시 시작", + "DE.Views.Toolbar.textRestartEachSection": "각 섹션 다시 시작", + "DE.Views.Toolbar.textRichControl": "리치 텍스트", "DE.Views.Toolbar.textRight": "오른쪽 :", - "DE.Views.Toolbar.textStrikeout": "Strikeout", + "DE.Views.Toolbar.textStrikeout": "취소선", "DE.Views.Toolbar.textStyleMenuDelete": "스타일 삭제", "DE.Views.Toolbar.textStyleMenuDeleteAll": "모든 사용자 정의 스타일 삭제", "DE.Views.Toolbar.textStyleMenuNew": "선택 항목의 새 스타일", @@ -1785,6 +2660,7 @@ "DE.Views.Toolbar.textStyleMenuUpdate": "선택 항목에서 업데이트", "DE.Views.Toolbar.textSubscript": "Subscript", "DE.Views.Toolbar.textSuperscript": "Superscript", + "DE.Views.Toolbar.textSuppressForCurrentParagraph": "이 단락에서 해제", "DE.Views.Toolbar.textTabCollaboration": "합치기", "DE.Views.Toolbar.textTabFile": "파일", "DE.Views.Toolbar.textTabHome": "홈", @@ -1802,13 +2678,16 @@ "DE.Views.Toolbar.tipAlignLeft": "왼쪽 정렬", "DE.Views.Toolbar.tipAlignRight": "오른쪽 정렬", "DE.Views.Toolbar.tipBack": "뒤로", + "DE.Views.Toolbar.tipBlankPage": "빈 페이지 삽입", + "DE.Views.Toolbar.tipChangeCase": "대소문자 변경", "DE.Views.Toolbar.tipChangeChart": "차트 유형 변경", "DE.Views.Toolbar.tipClearStyle": "스타일 지우기", "DE.Views.Toolbar.tipColorSchemas": "Change Color Scheme", "DE.Views.Toolbar.tipColumns": "열 삽입", - "DE.Views.Toolbar.tipControls": "콘텐트 제어를 삽입", + "DE.Views.Toolbar.tipControls": "컨텐츠 컨트롤 추가", "DE.Views.Toolbar.tipCopy": "복사", "DE.Views.Toolbar.tipCopyStyle": "스타일 복사", + "DE.Views.Toolbar.tipDateTime": "현재 날짜 시간 삽입", "DE.Views.Toolbar.tipDecFont": "글꼴 크기 작게", "DE.Views.Toolbar.tipDecPrLeft": "들여 쓰기 감소", "DE.Views.Toolbar.tipDropCap": "드롭 캡 삽입", @@ -1827,9 +2706,11 @@ "DE.Views.Toolbar.tipInsertImage": "그림 삽입", "DE.Views.Toolbar.tipInsertNum": "페이지 번호 삽입", "DE.Views.Toolbar.tipInsertShape": "도형 삽입", + "DE.Views.Toolbar.tipInsertSymbol": "기호 삽입", "DE.Views.Toolbar.tipInsertTable": "표 삽입", "DE.Views.Toolbar.tipInsertText": "텍스트 상자 삽입", "DE.Views.Toolbar.tipInsertTextArt": "텍스트 아트 삽입", + "DE.Views.Toolbar.tipLineNumbers": "행 번호 표시", "DE.Views.Toolbar.tipLineSpace": "단락 줄 간격", "DE.Views.Toolbar.tipMailRecepients": "편지 병합", "DE.Views.Toolbar.tipMarkers": "Bullets", @@ -1851,6 +2732,12 @@ "DE.Views.Toolbar.tipShowHiddenChars": "인쇄되지 않는 문자", "DE.Views.Toolbar.tipSynchronize": "다른 사용자가 문서를 변경했습니다. 변경 사항을 저장하고 업데이트를 다시로드하려면 클릭하십시오.", "DE.Views.Toolbar.tipUndo": "실행 취소", + "DE.Views.Toolbar.tipWatermark": "워터마크 수정", + "DE.Views.Toolbar.txtDistribHor": "수평 분포", + "DE.Views.Toolbar.txtDistribVert": "수직 분포", + "DE.Views.Toolbar.txtMarginAlign": "여백정렬", + "DE.Views.Toolbar.txtObjectsAlign": "선택한 개체 정렬", + "DE.Views.Toolbar.txtPageAlign": "페이지 정렬", "DE.Views.Toolbar.txtScheme1": "Office", "DE.Views.Toolbar.txtScheme10": "중앙값", "DE.Views.Toolbar.txtScheme11": "Metro", @@ -1865,6 +2752,7 @@ "DE.Views.Toolbar.txtScheme2": "Grayscale", "DE.Views.Toolbar.txtScheme20": "Urban", "DE.Views.Toolbar.txtScheme21": "Verve", + "DE.Views.Toolbar.txtScheme22": "신규 오피스", "DE.Views.Toolbar.txtScheme3": "Apex", "DE.Views.Toolbar.txtScheme4": "Aspect", "DE.Views.Toolbar.txtScheme5": "Civic", @@ -1872,9 +2760,28 @@ "DE.Views.Toolbar.txtScheme7": "Equity", "DE.Views.Toolbar.txtScheme8": "흐름", "DE.Views.Toolbar.txtScheme9": "주조", + "DE.Views.WatermarkSettingsDialog.textAuto": "자동", + "DE.Views.WatermarkSettingsDialog.textBold": "굵게", "DE.Views.WatermarkSettingsDialog.textColor": "글꼴색", + "DE.Views.WatermarkSettingsDialog.textDiagonal": "대각선", "DE.Views.WatermarkSettingsDialog.textFont": "글꼴", + "DE.Views.WatermarkSettingsDialog.textFromFile": "파일로 부터", + "DE.Views.WatermarkSettingsDialog.textFromStorage": "스토리지로 부터", + "DE.Views.WatermarkSettingsDialog.textFromUrl": "URL로 부터", + "DE.Views.WatermarkSettingsDialog.textHor": "수평", + "DE.Views.WatermarkSettingsDialog.textImageW": "워터마크 이미지", + "DE.Views.WatermarkSettingsDialog.textItalic": "기울림꼴", + "DE.Views.WatermarkSettingsDialog.textLanguage": "언어", + "DE.Views.WatermarkSettingsDialog.textLayout": "레이아웃", + "DE.Views.WatermarkSettingsDialog.textNone": "없음", + "DE.Views.WatermarkSettingsDialog.textScale": "크기", + "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.tipFontName": "글꼴이름", "DE.Views.WatermarkSettingsDialog.tipFontSize": "글꼴 크기" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/zh.json b/apps/documenteditor/main/locale/zh.json index 66b5540dc..ee59863dc 100644 --- a/apps/documenteditor/main/locale/zh.json +++ b/apps/documenteditor/main/locale/zh.json @@ -135,7 +135,7 @@ "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": "全部替换", @@ -165,9 +165,13 @@ "Common.Views.AutoCorrectDialog.textAdd": "新增", "Common.Views.AutoCorrectDialog.textApplyText": "输入时自动应用", "Common.Views.AutoCorrectDialog.textAutoFormat": "输入时自动调整格式", + "Common.Views.AutoCorrectDialog.textBulleted": "自动项目符号列表", "Common.Views.AutoCorrectDialog.textBy": "依据", "Common.Views.AutoCorrectDialog.textDelete": "删除", + "Common.Views.AutoCorrectDialog.textHyphens": "连带字符(-)改为破折号(-)", "Common.Views.AutoCorrectDialog.textMathCorrect": "数学自动修正", + "Common.Views.AutoCorrectDialog.textNumbered": "自动编号列表", + "Common.Views.AutoCorrectDialog.textQuotes": "“半角引号”替换为“全角引号”", "Common.Views.AutoCorrectDialog.textRecognizedDesc": "以下表达式被识别为数学公式。这些表达式不会被自动设为斜体。", "Common.Views.AutoCorrectDialog.textReplace": "替换", "Common.Views.AutoCorrectDialog.textReplaceText": "输入时自动替换", @@ -260,7 +264,7 @@ "Common.Views.PasswordDialog.txtPassword": "密码", "Common.Views.PasswordDialog.txtRepeat": "重复输入密码", "Common.Views.PasswordDialog.txtTitle": "设置密码", - "Common.Views.PasswordDialog.txtWarning": "警告: 如果丢失或忘记密码,则无法将其恢复。将其保存在安全位置。", + "Common.Views.PasswordDialog.txtWarning": "警告: 如果丢失或忘记密码,则无法将其恢复。请妥善保存。", "Common.Views.PluginDlg.textLoading": "载入中", "Common.Views.Plugins.groupCaption": "插件", "Common.Views.Plugins.strPlugins": "插件", @@ -471,7 +475,7 @@ "DE.Controllers.Main.errorUserDrop": "该文件现在无法访问。", "DE.Controllers.Main.errorUsersExceed": "超过了定价计划允许的用户数", "DE.Controllers.Main.errorViewerDisconnect": "连接丢失。您仍然可以查看文档
,但在连接恢复之前无法下载或打印。", - "DE.Controllers.Main.leavePageText": "您在本文档中有未保存的更改。点击“留在这个页面”,然后点击“保存”保存。点击“离开此页面”,放弃所有未保存的更改。", + "DE.Controllers.Main.leavePageText": "您在本文档中有未保存的更改。点击“留在此页面”,然后点击“保存”以保存保存。点击“离开此页面”,以放弃所有未保存的更改。", "DE.Controllers.Main.loadFontsTextText": "数据加载中…", "DE.Controllers.Main.loadFontsTitleText": "数据加载中", "DE.Controllers.Main.loadFontTextText": "数据加载中…", @@ -529,7 +533,7 @@ "DE.Controllers.Main.titleServerVersion": "编辑器已更新", "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": "错误!未定义书签。", @@ -556,7 +560,7 @@ "DE.Controllers.Main.txtMath": "数学", "DE.Controllers.Main.txtMissArg": "缺少参数", "DE.Controllers.Main.txtMissOperator": "缺少运算符", - "DE.Controllers.Main.txtNeedSynchronize": "你有更新", + "DE.Controllers.Main.txtNeedSynchronize": "您有更新", "DE.Controllers.Main.txtNoTableOfContents": "未找到目录条目。", "DE.Controllers.Main.txtNoText": "错误!文档中没有指定样式的文本。", "DE.Controllers.Main.txtNotInTable": "不在表格中", @@ -762,20 +766,20 @@ "DE.Controllers.Main.txtTableOfContents": "目录", "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.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.uploadImageTextText": "图片上传中...", "DE.Controllers.Main.uploadImageTitleText": "图片上传中", "DE.Controllers.Main.waitText": "请稍候...", "DE.Controllers.Main.warnBrowserIE9": "该应用程序在IE9上的功能很差。使用IE10或更高版本", @@ -791,10 +795,10 @@ "DE.Controllers.Navigation.txtBeginning": "文档开头", "DE.Controllers.Navigation.txtGotoBeginning": "转到文档开头", "DE.Controllers.Statusbar.textHasChanges": "已经跟踪了新的变化", - "DE.Controllers.Statusbar.textSetTrackChanges": "你现在处于了“跟踪变化”模式。", + "DE.Controllers.Statusbar.textSetTrackChanges": "你现在处于审阅模式。", "DE.Controllers.Statusbar.textTrackChanges": "打开文档,并启用“跟踪更改”模式", "DE.Controllers.Statusbar.tipReview": "跟踪变化", - "DE.Controllers.Statusbar.zoomText": "缩放%{0}", + "DE.Controllers.Statusbar.zoomText": "缩放{0}%", "DE.Controllers.Toolbar.confirmAddFontName": "您要保存的字体在当前设备上不可用。
使用其中一种系统字体显示文本样式,当可用时将使用保存的字体。
是否要继续?", "DE.Controllers.Toolbar.notcriticalErrorTitle": "警告", "DE.Controllers.Toolbar.textAccent": "口音", @@ -1484,6 +1488,7 @@ "DE.Views.DocumentHolder.txtTopAndBottom": "上下", "DE.Views.DocumentHolder.txtUnderbar": "在文本栏", "DE.Views.DocumentHolder.txtUngroup": "取消组合", + "DE.Views.DocumentHolder.txtWarnUrl": "点击该链接可能会损害你的设备或数据。
你确定要继续吗?", "DE.Views.DocumentHolder.updateStyleText": "更新%1样式", "DE.Views.DocumentHolder.vertAlignText": "垂直对齐", "DE.Views.DropcapSettingsAdvanced.strBorders": "边框和填充", @@ -1566,13 +1571,13 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs": "段落", "DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "位置", "DE.Views.FileMenuPanels.DocumentInfo.txtRights": "有权利的人", - "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "符号和空格", + "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.txtWords": "字幕", "DE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "更改访问权限", "DE.Views.FileMenuPanels.DocumentRights.txtRights": "有权利的人", "DE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "警告", @@ -2006,6 +2011,7 @@ "DE.Views.ParagraphSettings.textAuto": "多", "DE.Views.ParagraphSettings.textBackColor": "背景颜色", "DE.Views.ParagraphSettings.textExact": "精确地", + "DE.Views.ParagraphSettings.textNoneSpecial": "将半角双引号替换为全角双引号", "DE.Views.ParagraphSettings.txtAutoText": "自动", "DE.Views.ParagraphSettingsAdvanced.noTabs": "指定的选项卡将显示在此字段中", "DE.Views.ParagraphSettingsAdvanced.strAllCaps": "全部大写", @@ -2065,7 +2071,7 @@ "DE.Views.ParagraphSettingsAdvanced.textSpacing": "间距", "DE.Views.ParagraphSettingsAdvanced.textTabCenter": "中心", "DE.Views.ParagraphSettingsAdvanced.textTabLeft": "左", - "DE.Views.ParagraphSettingsAdvanced.textTabPosition": "标签的位置", + "DE.Views.ParagraphSettingsAdvanced.textTabPosition": "标签位置", "DE.Views.ParagraphSettingsAdvanced.textTabRight": "右", "DE.Views.ParagraphSettingsAdvanced.textTitle": "段落 - 高级设置", "DE.Views.ParagraphSettingsAdvanced.textTop": "顶部", @@ -2099,7 +2105,7 @@ "DE.Views.ShapeSettings.strSize": "大小", "DE.Views.ShapeSettings.strStroke": "边框", "DE.Views.ShapeSettings.strTransparency": "不透明度", - "DE.Views.ShapeSettings.strType": "类型", + "DE.Views.ShapeSettings.strType": "按类型查看", "DE.Views.ShapeSettings.textAdvanced": "显示高级设置", "DE.Views.ShapeSettings.textAngle": "角度", "DE.Views.ShapeSettings.textBorderSizeErr": "输入的值不正确。
请输入介于0 pt和1584 pt之间的值。", @@ -2322,7 +2328,7 @@ "DE.Views.TableSettingsAdvanced.textTop": "顶部", "DE.Views.TableSettingsAdvanced.textVertical": "垂直", "DE.Views.TableSettingsAdvanced.textWidth": "宽度", - "DE.Views.TableSettingsAdvanced.textWidthSpaces": "宽度和空间", + "DE.Views.TableSettingsAdvanced.textWidthSpaces": "宽度和间距", "DE.Views.TableSettingsAdvanced.textWrap": "文字包装", "DE.Views.TableSettingsAdvanced.textWrapNoneTooltip": "内联表", "DE.Views.TableSettingsAdvanced.textWrapParallelTooltip": "流程表", @@ -2348,7 +2354,7 @@ "DE.Views.TextArtSettings.strSize": "大小", "DE.Views.TextArtSettings.strStroke": "边框", "DE.Views.TextArtSettings.strTransparency": "不透明度", - "DE.Views.TextArtSettings.strType": "类型", + "DE.Views.TextArtSettings.strType": "按类型查看", "DE.Views.TextArtSettings.textAngle": "角度", "DE.Views.TextArtSettings.textBorderSizeErr": "输入的值不正确。
请输入介于0 pt和1584 pt之间的值。", "DE.Views.TextArtSettings.textColor": "颜色填充", diff --git a/apps/presentationeditor/embed/locale/el.json b/apps/presentationeditor/embed/locale/el.json index 51974b652..848966485 100644 --- a/apps/presentationeditor/embed/locale/el.json +++ b/apps/presentationeditor/embed/locale/el.json @@ -13,6 +13,8 @@ "PE.ApplicationController.errorDefaultMessage": "Κωδικός σφάλματος: %1", "PE.ApplicationController.errorFilePassProtect": "Το αρχείο προστατεύεται με συνθηματικό και δεν μπορεί να ανοίξει.", "PE.ApplicationController.errorFileSizeExceed": "Το μέγεθος του αρχείου υπερβαίνει το όριο που έχει οριστεί για τον διακομιστή σας.
Παρακαλούμε επικοινωνήστε με τον διαχειριστή του διακομιστή εγγράφων για λεπτομέρειες.", + "PE.ApplicationController.errorForceSave": "Παρουσιάστηκε σφάλμα κατά την αποθήκευση του αρχείου. Χρησιμοποιήστε την επιλογή «Λήψη ως» για να αποθηκεύσετε το αρχείο στον σκληρό δίσκο του υπολογιστή σας ή δοκιμάστε ξανά αργότερα.", + "PE.ApplicationController.errorLoadingFont": "Οι γραμματοσειρές δεν έχουν φορτωθεί.
Παρακαλούμε επικοινωνήστε με τον διαχειριστή του Εξυπηρετητή Εγγράφων σας.", "PE.ApplicationController.errorUpdateVersionOnDisconnect": "Η σύνδεση στο Διαδίκτυο έχει αποκατασταθεί και η έκδοση του αρχείου έχει αλλάξει.
Προτού συνεχίσετε να εργάζεστε, πρέπει να κατεβάσετε το αρχείο ή να αντιγράψετε το περιεχόμενό του για να βεβαιωθείτε ότι δεν έχει χαθεί τίποτα και, στη συνέχεια, φορτώστε ξανά αυτήν τη σελίδα.", "PE.ApplicationController.errorUserDrop": "Δεν είναι δυνατή η πρόσβαση στο αρχείο αυτήν τη στιγμή.", "PE.ApplicationController.notcriticalErrorTitle": "Προειδοποίηση", diff --git a/apps/presentationeditor/embed/locale/ko.json b/apps/presentationeditor/embed/locale/ko.json index b86a5835d..09b1a6e53 100644 --- a/apps/presentationeditor/embed/locale/ko.json +++ b/apps/presentationeditor/embed/locale/ko.json @@ -3,20 +3,24 @@ "common.view.modals.txtEmbed": "개체 삽입", "common.view.modals.txtHeight": "높이", "common.view.modals.txtShare": "링크 공유", - "common.view.modals.txtWidth": "넓이", + "common.view.modals.txtWidth": "너비", "PE.ApplicationController.convertationErrorText": "변환 실패", "PE.ApplicationController.convertationTimeoutText": "변환 시간을 초과했습니다.", "PE.ApplicationController.criticalErrorTitle": "오류", "PE.ApplicationController.downloadErrorText": "다운로드 실패", "PE.ApplicationController.downloadTextText": "프리젠테이션 다운로드 중 ...", - "PE.ApplicationController.errorAccessDeny": "권한이없는 작업을 수행하려고합니다. \n문서 서버 관리자에게 보다 자세한 내용을 안내 받으시기 바랍니다.", + "PE.ApplicationController.errorAccessDeny": "권한이없는 작업을 수행하려고합니다.
Document Server 관리자에게 문의하십시오.", "PE.ApplicationController.errorDefaultMessage": "오류 코드 : %1", "PE.ApplicationController.errorFilePassProtect": "이 문서는 암호로 보호되어 있어 열 수 없습니다.", "PE.ApplicationController.errorFileSizeExceed": "파일의 크기가 서버에서 정해진 범위를 초과 했습니다. 문서 서버 관리자에게 해당 내용에 대한 자세한 안내를 받아 보시기 바랍니다.", - "PE.ApplicationController.errorUpdateVersionOnDisconnect": "인터넷 연결이 복구 되었으며 파일에 수정 사항이 발생되었습니다. 작업을 계속 하시기 전에 반드시 기존의 파일을 다운로드하거나 내용을 복사해서 작업 내용을 잃어 버리는 일이 없도록 한 후에 이 페이지를 새로 고침(reload) 해 주시기 바랍니다.", + "PE.ApplicationController.errorForceSave": "파일을 저장하는 동안 오류가 발생했습니다. \"다른 이름으로 다운로드\" 옵션을 사용하여 파일을 컴퓨터의 하드 드라이브에 저장하거나 나중에 다시 시도하십시오.", + "PE.ApplicationController.errorLoadingFont": "글꼴이 로드되지 않았습니다.
문서 관리 관리자에게 문의하십시오.", + "PE.ApplicationController.errorUpdateVersionOnDisconnect": "네트워크 연결이 복원되었으며 파일 버전이 변경되었습니다.
계속 작업하기 전에 데이터 손실을 방지하기 위해 파일을 다운로드하거나 내용을 복사한 다음 이 페이지를 새로 고쳐야 합니다.", "PE.ApplicationController.errorUserDrop": "파일에 지금 액세스 할 수 없습니다.", "PE.ApplicationController.notcriticalErrorTitle": "경고", - "PE.ApplicationController.scriptLoadError": "연결 속도가 느려 일부 요소들이 로드되지 않았습니다. 페이지를 다시 새로 고침해주세요.", + "PE.ApplicationController.scriptLoadError": "연결 속도가 느려, 일부 요소들이 로드되지 않았습니다. 페이지를 다시 새로 고침해주세요.", + "PE.ApplicationController.textAnonymous": "익명", + "PE.ApplicationController.textGuest": "게스트", "PE.ApplicationController.textLoadingDocument": "프레젠테이션 로드 중", "PE.ApplicationController.textOf": "의", "PE.ApplicationController.txtClose": "닫기", @@ -25,6 +29,8 @@ "PE.ApplicationController.waitText": "잠시만 기다려주세요...", "PE.ApplicationView.txtDownload": "다운로드", "PE.ApplicationView.txtEmbed": "개체 삽입", + "PE.ApplicationView.txtFileLocation": "파일 위치 열기", "PE.ApplicationView.txtFullScreen": "전체 화면", + "PE.ApplicationView.txtPrint": "인쇄", "PE.ApplicationView.txtShare": "공유" } \ No newline at end of file diff --git a/apps/presentationeditor/embed/locale/tr.json b/apps/presentationeditor/embed/locale/tr.json index 402dc5d93..66431e356 100644 --- a/apps/presentationeditor/embed/locale/tr.json +++ b/apps/presentationeditor/embed/locale/tr.json @@ -12,10 +12,13 @@ "PE.ApplicationController.errorAccessDeny": "Hakkınız olmayan bir eylem gerçekleştirmeye çalışıyorsunuz.
Lütfen Belge Sunucu yöneticinize başvurun.", "PE.ApplicationController.errorDefaultMessage": "Hata kodu: %1", "PE.ApplicationController.errorFilePassProtect": "Döküman şifre korumalı ve açılamadı", + "PE.ApplicationController.errorLoadingFont": "Fontlar yüklenmedi.
Lütfen belge sunucu yöneticinizle iletişime geçin.", "PE.ApplicationController.errorUpdateVersionOnDisconnect": "İnternet bağlantısı tekrar sağlandı, ve dosya versiyon değişti.
Çalışmanıza devam etmeden önce, veri kaybını önlemeniz için dosyasının bir kopyasını indirmeniz ya da dosya içeriğini kopyalamanız ve sonrasında sayfayı yenilemeniz gerekmektedir.", "PE.ApplicationController.errorUserDrop": "Belgeye şu an erişilemiyor.", "PE.ApplicationController.notcriticalErrorTitle": "Uyarı", "PE.ApplicationController.scriptLoadError": "Bağlantı çok yavaş, bileşenlerin bazıları yüklenemedi. Lütfen sayfayı yenileyin.", + "PE.ApplicationController.textAnonymous": "Anonim", + "PE.ApplicationController.textGuest": "Ziyaretçi", "PE.ApplicationController.textLoadingDocument": "Sunum yükleniyor", "PE.ApplicationController.textOf": "'in", "PE.ApplicationController.txtClose": "Kapat", diff --git a/apps/presentationeditor/embed/locale/zh.json b/apps/presentationeditor/embed/locale/zh.json index 6597c40ac..ca0d1ebe0 100644 --- a/apps/presentationeditor/embed/locale/zh.json +++ b/apps/presentationeditor/embed/locale/zh.json @@ -13,6 +13,8 @@ "PE.ApplicationController.errorDefaultMessage": "错误代码:%1", "PE.ApplicationController.errorFilePassProtect": "该文档受密码保护,无法被打开。", "PE.ApplicationController.errorFileSizeExceed": "文件大小超出了为服务器设置的限制.
有关详细信息,请与文档服务器管理员联系。", + "PE.ApplicationController.errorForceSave": "保存文件时发生错误。请使用“下载为”选项将文件保存到计算机硬盘中或稍后重试。", + "PE.ApplicationController.errorLoadingFont": "字体未加载。
请与文档服务器管理员联系。", "PE.ApplicationController.errorUpdateVersionOnDisconnect": "网络连接已恢复,文件版本已变更。
在继续工作之前,需要下载文件或复制其内容以避免丢失数据,然后刷新此页。", "PE.ApplicationController.errorUserDrop": "该文件现在无法访问。", "PE.ApplicationController.notcriticalErrorTitle": "警告", diff --git a/apps/presentationeditor/main/locale/ca.json b/apps/presentationeditor/main/locale/ca.json index 3548e2477..ef0496a65 100644 --- a/apps/presentationeditor/main/locale/ca.json +++ b/apps/presentationeditor/main/locale/ca.json @@ -51,6 +51,7 @@ "Common.Translation.warnFileLockedBtnEdit": "Crea una còpia", "Common.Translation.warnFileLockedBtnView": "Obre per a la seva visualització", "Common.UI.ButtonColored.textAutoColor": "Automàtic", + "Common.UI.ButtonColored.textNewColor": "Afegeix un color personalitzat nou ", "Common.UI.ComboBorderSize.txtNoBorders": "Sense vores", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Sense vores", "Common.UI.ComboDataView.emptyComboText": "Sense estils", @@ -104,6 +105,7 @@ "Common.Views.AutoCorrectDialog.textBy": "Per", "Common.Views.AutoCorrectDialog.textDelete": "Suprimeix", "Common.Views.AutoCorrectDialog.textFLSentence": "Escriu en majúscules la primera lletra de les frases", + "Common.Views.AutoCorrectDialog.textHyperlink": "Camins de xarxa i d'Internet per enllaços", "Common.Views.AutoCorrectDialog.textHyphens": "Guionets (--) per guió llarg (—)", "Common.Views.AutoCorrectDialog.textMathCorrect": "Autocorrecció de símbols matemàtics", "Common.Views.AutoCorrectDialog.textNumbered": "Llistes numerades automàtiques", @@ -123,6 +125,12 @@ "Common.Views.AutoCorrectDialog.warnReset": "Qualsevol autocorrecció que hàgiu afegit se suprimirà i les modificades es restauraran als seus valors originals. Voleu continuar?", "Common.Views.AutoCorrectDialog.warnRestore": "L'entrada de correcció automàtica de %1 es restablirà al seu valor original. Vols continuar?", "Common.Views.Chat.textSend": "Envia", + "Common.Views.Comments.mniAuthorAsc": "Autor de la A a la Z", + "Common.Views.Comments.mniAuthorDesc": "Autor de la Z a la A", + "Common.Views.Comments.mniDateAsc": "Més antic", + "Common.Views.Comments.mniDateDesc": "Més recent", + "Common.Views.Comments.mniPositionAsc": "Des de dalt", + "Common.Views.Comments.mniPositionDesc": "Des de baix", "Common.Views.Comments.textAdd": "Afegir", "Common.Views.Comments.textAddComment": "Afegeix un comentari", "Common.Views.Comments.textAddCommentToDoc": "Afegeix un comentari al document", @@ -130,6 +138,7 @@ "Common.Views.Comments.textAnonym": "Convidat", "Common.Views.Comments.textCancel": "Cancel·la", "Common.Views.Comments.textClose": "Tanca", + "Common.Views.Comments.textClosePanel": "Tanqueu els comentaris", "Common.Views.Comments.textComments": "Comentaris", "Common.Views.Comments.textEdit": "D'acord", "Common.Views.Comments.textEnterCommentHint": "Introdueix el teu comentari aquí", @@ -138,6 +147,7 @@ "Common.Views.Comments.textReply": "Respon", "Common.Views.Comments.textResolve": "Resol", "Common.Views.Comments.textResolved": "Resolt", + "Common.Views.Comments.textSort": "Ordena els comentaris", "Common.Views.CopyWarningDialog.textDontShow": "No tornis a mostrar aquest missatge", "Common.Views.CopyWarningDialog.textMsg": "Les accions de copiar, tallar i enganxar mitjançant els botons de la barra d’eines de l’editor i les accions del menú contextual només es realitzaran dins d’aquesta pestanya editor.

Per copiar o enganxar a o des d’aplicacions fora de la pestanya de l'editor, utilitzeu les combinacions de teclat següents:", "Common.Views.CopyWarningDialog.textTitle": "Accions de copiar, tallar i enganxar ", @@ -394,6 +404,7 @@ "PE.Controllers.Main.errorForceSave": "S'ha produït un error en desar el fitxer. Utilitzeu l'opció \"Baixa-ho com a\" per desar el fitxer al disc dur de l’ordinador o torneu-ho a provar més endavant.", "PE.Controllers.Main.errorKeyEncrypt": "Descriptor de claus desconegut", "PE.Controllers.Main.errorKeyExpire": "El descriptor de claus ha caducat", + "PE.Controllers.Main.errorLoadingFont": "No s'han carregat els tipus de lletra.
Contacteu amb l'administrador del Servidor de Documents.", "PE.Controllers.Main.errorProcessSaveResult": "S'ha produït un error en desar.", "PE.Controllers.Main.errorServerVersion": "S'ha actualitzat la versió de l'editor. Es tornarà a carregar la pàgina per aplicar els canvis.", "PE.Controllers.Main.errorSessionAbsolute": "La sessió d’edició del document ha caducat. Torneu a carregar la pàgina.", @@ -450,6 +461,7 @@ "PE.Controllers.Main.textContactUs": "Contacta amb vendes", "PE.Controllers.Main.textConvertEquation": "Aquesta equació es va crear amb una versió antiga de l'editor d'equacions que ja no és compatible. Per editar-la, converteixi l’equació al format d’Office Math ML.
Convertir ara?", "PE.Controllers.Main.textCustomLoader": "Tingueu en compte que, segons els termes de la llicència, no teniu dret a canviar el carregador.
Contacteu amb el nostre departament de vendes per obtenir un pressupost.", + "PE.Controllers.Main.textDisconnect": "S'ha perdut la connexió", "PE.Controllers.Main.textGuest": "Convidat", "PE.Controllers.Main.textHasMacros": "El fitxer conté macros automàtiques.
Voleu executar les macros?", "PE.Controllers.Main.textLearnMore": "Més informació", @@ -1268,6 +1280,7 @@ "PE.Views.DocumentHolder.txtTop": "Superior", "PE.Views.DocumentHolder.txtUnderbar": "Barra sota el text", "PE.Views.DocumentHolder.txtUngroup": "Desagrupa", + "PE.Views.DocumentHolder.txtWarnUrl": "Si feu clic en aquest enllaç pot perjudicar el dispositiu i les dades.
Esteu segur que voleu continuar?", "PE.Views.DocumentHolder.vertAlignText": "Alineació Vertical", "PE.Views.DocumentPreview.goToSlideText": "Ves a la diapositiva", "PE.Views.DocumentPreview.slideIndexText": "Diapositiva {0} de {1}", @@ -1301,6 +1314,8 @@ "PE.Views.FileMenu.btnSaveCopyAsCaption": "Desa còpia com a...", "PE.Views.FileMenu.btnSettingsCaption": "Configuració avançada...", "PE.Views.FileMenu.btnToEditCaption": "Edita la presentació", + "PE.Views.FileMenuPanels.CreateNew.txtBlank": "Presentació en blanc", + "PE.Views.FileMenuPanels.CreateNew.txtCreateNew": "Crea'n un de nou", "PE.Views.FileMenuPanels.DocumentInfo.okButtonText": "Aplica", "PE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Afegeix l'autor", "PE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Afegeix text", @@ -1886,6 +1901,7 @@ "PE.Views.Toolbar.textTabHome": "Inici", "PE.Views.Toolbar.textTabInsert": "Insereix", "PE.Views.Toolbar.textTabProtect": "Protecció", + "PE.Views.Toolbar.textTabTransitions": "Transicions", "PE.Views.Toolbar.textTitleError": "Error", "PE.Views.Toolbar.textUnderline": "Subratllat", "PE.Views.Toolbar.tipAddSlide": "Afegeix una diapositiva", @@ -1966,17 +1982,39 @@ "PE.Views.Toolbar.txtSlideAlign": "Alinea a la diapositiva", "PE.Views.Toolbar.txtUngroup": "Desagrupa", "PE.Views.Transitions.strDelay": "Retard", + "PE.Views.Transitions.strDuration": "Durada", + "PE.Views.Transitions.strStartOnClick": "Inicia clicant", + "PE.Views.Transitions.textBlack": "En negre", + "PE.Views.Transitions.textBottom": "Part inferior", "PE.Views.Transitions.textBottomLeft": "Part inferior-Esquerra", "PE.Views.Transitions.textBottomRight": "Part Inferior-Dreta", "PE.Views.Transitions.textClock": "Rellotge", "PE.Views.Transitions.textClockwise": "En sentit horari", "PE.Views.Transitions.textCounterclockwise": "En sentit antihorari", + "PE.Views.Transitions.textCover": "Cobreix", "PE.Views.Transitions.textFade": "Esvaïment", + "PE.Views.Transitions.textHorizontalIn": "Horitzontal entrant", + "PE.Views.Transitions.textHorizontalOut": "Horitzontal sortint", "PE.Views.Transitions.textLeft": "Esquerra", "PE.Views.Transitions.textNone": "cap", + "PE.Views.Transitions.textPush": "Empeny", "PE.Views.Transitions.textRight": "Dreta", + "PE.Views.Transitions.textSmoothly": "Suau", + "PE.Views.Transitions.textSplit": "Divideix", "PE.Views.Transitions.textTop": "Superior", + "PE.Views.Transitions.textTopLeft": "Superior-esquerra", + "PE.Views.Transitions.textTopRight": "Superior-dreta", + "PE.Views.Transitions.textUnCover": "Descobreix", + "PE.Views.Transitions.textVerticalIn": "Vertical entrant", + "PE.Views.Transitions.textVerticalOut": "Vertical sortint", "PE.Views.Transitions.textWedge": "Falca", + "PE.Views.Transitions.textWipe": "Elimina", + "PE.Views.Transitions.textZoom": "Zoom", + "PE.Views.Transitions.textZoomIn": "Amplia", + "PE.Views.Transitions.textZoomOut": "Redueix", + "PE.Views.Transitions.textZoomRotate": "Amplia i gira", + "PE.Views.Transitions.txtApplyToAll": "Aplica-ho a totes les diapositives", "PE.Views.Transitions.txtParameters": "Paràmetres", + "PE.Views.Transitions.txtPreview": "Visualització prèvia", "PE.Views.Transitions.txtSec": "S" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/cs.json b/apps/presentationeditor/main/locale/cs.json index 4a0d33672..9dc241148 100644 --- a/apps/presentationeditor/main/locale/cs.json +++ b/apps/presentationeditor/main/locale/cs.json @@ -6,28 +6,49 @@ "Common.Controllers.ExternalDiagramEditor.warningText": "Objekt je znepřístupněný, protože je upravován jiným uživatelem.", "Common.Controllers.ExternalDiagramEditor.warningTitle": "Varování", "Common.define.chartData.textArea": "Plošný", + "Common.define.chartData.textAreaStacked": "Skládaný plošný", "Common.define.chartData.textAreaStackedPer": "100% skládaný plošný", "Common.define.chartData.textBar": "Pruhový graf", + "Common.define.chartData.textBarNormal": "Skupinový sloupcový", "Common.define.chartData.textBarNormal3d": "3D skupinový sloupcový", "Common.define.chartData.textBarNormal3dPerspective": "3D sloupcový", + "Common.define.chartData.textBarStacked": "Skládaný sloupcový", "Common.define.chartData.textBarStacked3d": "3D skládaný sloupcový", "Common.define.chartData.textBarStackedPer": "100% skládaný sloupcový", "Common.define.chartData.textBarStackedPer3d": "3D 100% skládaný sloupcový", "Common.define.chartData.textCharts": "Grafy", "Common.define.chartData.textColumn": "Sloupcový graf", + "Common.define.chartData.textCombo": "Kombinovaný", + "Common.define.chartData.textComboAreaBar": "Plošný - skupinový sloupcový", + "Common.define.chartData.textComboBarLine": "Skupinový sloupcový - spojnice", + "Common.define.chartData.textComboBarLineSecondary": "Skupinový sloupcový - spojnice na sekundární ose", + "Common.define.chartData.textComboCustom": "Vlastní kombinace", + "Common.define.chartData.textDoughnut": "Prstencový", + "Common.define.chartData.textHBarNormal": "Skupinový pruhový", "Common.define.chartData.textHBarNormal3d": "3D Skupinový pruhový", + "Common.define.chartData.textHBarStacked": "Skládaný", "Common.define.chartData.textHBarStacked3d": "3D skládaný sloupcový", "Common.define.chartData.textHBarStackedPer": "100% skládaný sloupcový", "Common.define.chartData.textHBarStackedPer3d": "3D 100% skládaný sloupcový", "Common.define.chartData.textLine": "Liniový graf", "Common.define.chartData.textLine3d": "3d spojnicový", + "Common.define.chartData.textLineMarker": "Spojnicový se značkami", + "Common.define.chartData.textLineStacked": "Skládaný spojnicový", + "Common.define.chartData.textLineStackedMarker": "Skládaný spojnicový se značkami", "Common.define.chartData.textLineStackedPer": "100% skládaný spojnicový", "Common.define.chartData.textLineStackedPerMarker": "100% skládaný spojnicový s makry", "Common.define.chartData.textPie": "Kruhový diagram", "Common.define.chartData.textPie3d": "3D výsečový", "Common.define.chartData.textPoint": "Bodový graf", + "Common.define.chartData.textScatter": "Bodový", + "Common.define.chartData.textScatterLine": "Bodový s rovnými spojnicemi", + "Common.define.chartData.textScatterLineMarker": "Bodový s vyhlazenými spojnicemi a značkami", + "Common.define.chartData.textScatterSmooth": "Bodový s vyhlazenými spojnicemi", + "Common.define.chartData.textScatterSmoothMarker": "Bodový s vyhlazenými spojnicemi a značkami", "Common.define.chartData.textStock": "Burzovní graf", "Common.define.chartData.textSurface": "Povrch", + "Common.Translation.warnFileLockedBtnEdit": "Vytvořit kopii", + "Common.Translation.warnFileLockedBtnView": "Otevřít pro náhled", "Common.UI.ButtonColored.textAutoColor": "Automatické", "Common.UI.ButtonColored.textNewColor": "Přidat novou vlastní barvu", "Common.UI.ComboBorderSize.txtNoBorders": "Bez ohraničení", @@ -53,6 +74,9 @@ "Common.UI.SynchronizeTip.textSynchronize": "Dokument byl mezitím změněn jiným uživatelem.
Kliknutím uložte změny provedené vámi a načtěte ty od ostatních.", "Common.UI.ThemeColorPalette.textStandartColors": "Standardní barvy", "Common.UI.ThemeColorPalette.textThemeColors": "Barvy motivu vzhledu", + "Common.UI.Themes.txtThemeClassicLight": "Standartní světlost", + "Common.UI.Themes.txtThemeDark": "Tmavé", + "Common.UI.Themes.txtThemeLight": "Světlé", "Common.UI.Window.cancelButtonText": "Zrušit", "Common.UI.Window.closeButtonText": "Zavřít", "Common.UI.Window.noButtonText": "Ne", @@ -74,13 +98,38 @@ "Common.Views.About.txtVersion": "Verze", "Common.Views.AutoCorrectDialog.textAdd": "Přidat", "Common.Views.AutoCorrectDialog.textApplyText": "Použít během psaní", + "Common.Views.AutoCorrectDialog.textAutoCorrect": "Autokorekce textu", "Common.Views.AutoCorrectDialog.textAutoFormat": "Automaticky formátovat během psaní", + "Common.Views.AutoCorrectDialog.textBulleted": "Automatické odrážkové seznamy", + "Common.Views.AutoCorrectDialog.textBy": "Od", + "Common.Views.AutoCorrectDialog.textDelete": "Odstranit", + "Common.Views.AutoCorrectDialog.textFLSentence": "Velká na začátku věty", + "Common.Views.AutoCorrectDialog.textHyperlink": "Internetové a síťové přístupy s hypertextovými odkazy", + "Common.Views.AutoCorrectDialog.textHyphens": "Spojovníky (--) s pomlčkou (—)", + "Common.Views.AutoCorrectDialog.textMathCorrect": "Autokorekce pro matematiku", + "Common.Views.AutoCorrectDialog.textNumbered": "Automatické číslované seznamy", "Common.Views.AutoCorrectDialog.textQuotes": "Apostrofy typografické s ASCII", + "Common.Views.AutoCorrectDialog.textRecognized": "Rozpoznávané funkce", + "Common.Views.AutoCorrectDialog.textRecognizedDesc": "Následující výrazy jsou rozpoznány jako matematické funkce. Nebudou aplikována pravidla týkajících se velkých a malých písmen.", + "Common.Views.AutoCorrectDialog.textReplace": "Nahradit", + "Common.Views.AutoCorrectDialog.textReplaceText": "Nahrazovat během psaní", + "Common.Views.AutoCorrectDialog.textReplaceType": "Nahrazovat text během psaní", + "Common.Views.AutoCorrectDialog.textReset": "Obnovit", + "Common.Views.AutoCorrectDialog.textResetAll": "Obnovit výchozí hodnoty", + "Common.Views.AutoCorrectDialog.textRestore": "Obnovit", "Common.Views.AutoCorrectDialog.textTitle": "Autokorekce", + "Common.Views.AutoCorrectDialog.textWarnAddRec": "Rozpoznávané funkce musí obsahovat pouze malá, nebo velká písmena A až Z.", + "Common.Views.AutoCorrectDialog.textWarnResetRec": "Vámi zadané tvary slov budou odstraněny a odstraněné budou obnoveny. Opravdu chcete pokračovat? ", + "Common.Views.AutoCorrectDialog.warnReplace": "Hodnota pro automatické opravy %1 již existuje. Opravdu ji chcete nahradit?", "Common.Views.AutoCorrectDialog.warnReset": "Vámi přidané autokorekce budou odstraněny a změněné budou obnoveny do výchozích hodnot. Opravdu chcete pokračovat? ", + "Common.Views.AutoCorrectDialog.warnRestore": "Hodnota pro automatické opravy %1 bude nastavena na původní hodnotu. Opravdu chcete pokračovat?", "Common.Views.Chat.textSend": "Poslat", "Common.Views.Comments.mniAuthorAsc": "Autor A až Z", "Common.Views.Comments.mniAuthorDesc": "Autor Z až A", + "Common.Views.Comments.mniDateAsc": "Nejstarší", + "Common.Views.Comments.mniDateDesc": "Nejnovější", + "Common.Views.Comments.mniPositionAsc": "Shora", + "Common.Views.Comments.mniPositionDesc": "Zdola", "Common.Views.Comments.textAdd": "Přidat", "Common.Views.Comments.textAddComment": "Přidat komentář", "Common.Views.Comments.textAddCommentToDoc": "Přidat komentář k dokumentu", @@ -88,6 +137,7 @@ "Common.Views.Comments.textAnonym": "Návštěvník", "Common.Views.Comments.textCancel": "Zrušit", "Common.Views.Comments.textClose": "Zavřít", + "Common.Views.Comments.textClosePanel": "Zavřít komentáře", "Common.Views.Comments.textComments": "Komentáře", "Common.Views.Comments.textEdit": "OK", "Common.Views.Comments.textEnterCommentHint": "Sem napište svůj komentář", @@ -96,6 +146,7 @@ "Common.Views.Comments.textReply": "Odpovědět", "Common.Views.Comments.textResolve": "Vyřešit", "Common.Views.Comments.textResolved": "Vyřešeno", + "Common.Views.Comments.textSort": "Řadit 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", @@ -108,11 +159,14 @@ "Common.Views.ExternalDiagramEditor.textSave": "Uložit a ukončit", "Common.Views.ExternalDiagramEditor.textTitle": "Editor grafu", "Common.Views.Header.labelCoUsersDescr": "Uživatelé, kteří soubor právě upravují:", + "Common.Views.Header.textAddFavorite": "Označit jako oblíbené", "Common.Views.Header.textAdvSettings": "Pokročilá nastavení", "Common.Views.Header.textBack": "Otevřít umístění souboru", "Common.Views.Header.textCompactView": "Skrýt panel nástrojů", "Common.Views.Header.textHideLines": "Skrýt pravítka", + "Common.Views.Header.textHideNotes": "Skrýt poznámky", "Common.Views.Header.textHideStatusBar": "Skrýt stavový řádek", + "Common.Views.Header.textRemoveFavorite": "Odebrat z oblíbených", "Common.Views.Header.textSaveBegin": "Ukládání…", "Common.Views.Header.textSaveChanged": "Změněno", "Common.Views.Header.textSaveEnd": "Všechny změny uloženy", @@ -131,7 +185,11 @@ "Common.Views.Header.txtAccessRights": "Změnit přístupová práva", "Common.Views.Header.txtRename": "Přejmenovat", "Common.Views.History.textCloseHistory": "Zavřít historii", + "Common.Views.History.textHide": "Sbalit", "Common.Views.History.textHideAll": "Skrýt podrobné změny", + "Common.Views.History.textRestore": "Obnovit", + "Common.Views.History.textShow": "Rozšířit", + "Common.Views.History.textShowAll": "Zobrazit detailní změny", "Common.Views.ImageFromUrlDialog.textUrl": "Vložte URL adresu obrázku:", "Common.Views.ImageFromUrlDialog.txtEmpty": "Tuto kolonku je třeba vyplnit", "Common.Views.ImageFromUrlDialog.txtNotUrl": "Obsahem této kolonky by měla být URL adresa ve formátu „http://www.example.com“", @@ -143,13 +201,19 @@ "Common.Views.InsertTableDialog.txtTitle": "Velikost tabulky", "Common.Views.InsertTableDialog.txtTitleSplit": "Rozdělit buňku", "Common.Views.LanguageDialog.labelSelect": "Vybrat jazyk dokumentu", + "Common.Views.ListSettingsDialog.textBulleted": "S odrážkami", + "Common.Views.ListSettingsDialog.textNumbering": "Číslovaný", "Common.Views.ListSettingsDialog.tipChange": "Změnit odrážku", "Common.Views.ListSettingsDialog.txtBullet": "Odrážka", "Common.Views.ListSettingsDialog.txtColor": "Barva", + "Common.Views.ListSettingsDialog.txtNewBullet": "Nová odrážka", + "Common.Views.ListSettingsDialog.txtNone": "Žádné", "Common.Views.ListSettingsDialog.txtOfText": "% textu", "Common.Views.ListSettingsDialog.txtSize": "Velikost", "Common.Views.ListSettingsDialog.txtStart": "Začít na", + "Common.Views.ListSettingsDialog.txtSymbol": "Symbol", "Common.Views.ListSettingsDialog.txtTitle": "Nastavení seznamu", + "Common.Views.ListSettingsDialog.txtType": "Typ", "Common.Views.OpenDialog.closeButtonText": "Zavřít soubor", "Common.Views.OpenDialog.txtEncoding": "Kódování", "Common.Views.OpenDialog.txtIncorrectPwd": "Heslo není správné.", @@ -192,6 +256,8 @@ "Common.Views.ReviewChanges.tipCoAuthMode": "Nastavit režim spolupráce na úpravách", "Common.Views.ReviewChanges.tipCommentRem": "Odebrat komentáře", "Common.Views.ReviewChanges.tipCommentRemCurrent": "Odebrat právě zobrazovaný komentář", + "Common.Views.ReviewChanges.tipCommentResolve": "Vyřešit komentáře", + "Common.Views.ReviewChanges.tipCommentResolveCurrent": "Vyřešit aktuální komentáře", "Common.Views.ReviewChanges.tipHistory": "Zobrazit historii verzí", "Common.Views.ReviewChanges.tipRejectCurrent": "Odmítnout změnu, která právě proběhla", "Common.Views.ReviewChanges.tipReview": "Sledovat změny", @@ -211,6 +277,11 @@ "Common.Views.ReviewChanges.txtCommentRemMy": "Odebrat mé komentáře", "Common.Views.ReviewChanges.txtCommentRemMyCurrent": "Odebrat mé stávající komentáře", "Common.Views.ReviewChanges.txtCommentRemove": "Odstranit", + "Common.Views.ReviewChanges.txtCommentResolve": "Vyřešit", + "Common.Views.ReviewChanges.txtCommentResolveAll": "Vyřešit všechny komentáře", + "Common.Views.ReviewChanges.txtCommentResolveCurrent": "Vyřešit aktuální komentáře", + "Common.Views.ReviewChanges.txtCommentResolveMy": "Vyřešit moje komentáře", + "Common.Views.ReviewChanges.txtCommentResolveMyCurrent": "Vyřešit moje aktuální komentáře", "Common.Views.ReviewChanges.txtDocLang": "Jazyk", "Common.Views.ReviewChanges.txtFinal": "Všechny změny přijaty (náhled)", "Common.Views.ReviewChanges.txtFinalCap": "Konečné", @@ -248,6 +319,7 @@ "Common.Views.SignDialog.textChange": "Změnit", "Common.Views.SignDialog.textInputName": "Zadat jméno podepisujícího", "Common.Views.SignDialog.textItalic": "Skloněné", + "Common.Views.SignDialog.textNameError": "Jméno podepisovatele musí být vyplněno.", "Common.Views.SignDialog.textPurpose": "Účel podepsání tohoto dokumentu", "Common.Views.SignDialog.textSelect": "Vybrat", "Common.Views.SignDialog.textSelectImage": "Vybrat obrázek", @@ -266,16 +338,41 @@ "Common.Views.SignSettingsDialog.textShowDate": "Na řádku s podpisem zobrazit datum podpisu", "Common.Views.SignSettingsDialog.textTitle": "Nastavení podpisu", "Common.Views.SignSettingsDialog.txtEmpty": "Tuto kolonku je třeba vyplnit", + "Common.Views.SymbolTableDialog.textCharacter": "Znak", "Common.Views.SymbolTableDialog.textCode": "Unicode HEX hodnota", + "Common.Views.SymbolTableDialog.textCopyright": "Znak autorských práv", + "Common.Views.SymbolTableDialog.textDCQuote": "Uzavírací dvojitá uvozovka", + "Common.Views.SymbolTableDialog.textDOQuote": "Otevírací dvojitá uvozovka", + "Common.Views.SymbolTableDialog.textEllipsis": "Vodorovná výpustka", + "Common.Views.SymbolTableDialog.textEmDash": "Dlouhá pomlčka", + "Common.Views.SymbolTableDialog.textEmSpace": "Dlouhá mezera", + "Common.Views.SymbolTableDialog.textEnDash": "Krátká pomlčka", + "Common.Views.SymbolTableDialog.textEnSpace": "Mezera", "Common.Views.SymbolTableDialog.textFont": "Písmo", + "Common.Views.SymbolTableDialog.textNBHyphen": "pevná pomlčka", + "Common.Views.SymbolTableDialog.textNBSpace": "Nezlomitelná mezera", + "Common.Views.SymbolTableDialog.textPilcrow": "Pí", "Common.Views.SymbolTableDialog.textQEmSpace": "1/4 em mezera", "Common.Views.SymbolTableDialog.textRange": "Rozsah", "Common.Views.SymbolTableDialog.textRecent": "Nedávno použité symboly", + "Common.Views.SymbolTableDialog.textRegistered": "Symbol registrované ochranné známky", + "Common.Views.SymbolTableDialog.textSCQuote": "Uzavírací jednoduchá uvozovka", + "Common.Views.SymbolTableDialog.textSection": "Paragraf", + "Common.Views.SymbolTableDialog.textShortcut": "Klávesová zkratka", + "Common.Views.SymbolTableDialog.textSHyphen": "Měkká pomlčka", + "Common.Views.SymbolTableDialog.textSOQuote": "Otevírací jednoduchá uvozovka", + "Common.Views.SymbolTableDialog.textSpecial": "Speciální znaky", + "Common.Views.SymbolTableDialog.textSymbols": "Symboly", "Common.Views.SymbolTableDialog.textTitle": "Symbol", + "Common.Views.SymbolTableDialog.textTradeMark": "Symbol užívané obchodní značky", + "Common.Views.UserNameDialog.textDontShow": "Znovu se neptat", + "Common.Views.UserNameDialog.textLabel": "Štítek:", + "Common.Views.UserNameDialog.textLabelError": "Štítek je nutné vyplnit.", "PE.Controllers.LeftMenu.leavePageText": "Všechny neuložené změny v tomto dokumentu budou ztraceny.
Klikněte na \"Zrušit\" a poté na \"Uložit\" pro uložení. Klikněte na \"OK\" pro zrušení všech neuložených změn.", "PE.Controllers.LeftMenu.newDocumentTitle": "Nepojmenovaná prezentace", "PE.Controllers.LeftMenu.notcriticalErrorTitle": "Varování", "PE.Controllers.LeftMenu.requestEditRightsText": "Žádá se o oprávnění pro úpravy…", + "PE.Controllers.LeftMenu.textLoadHistory": "Načítání historie verzí…", "PE.Controllers.LeftMenu.textNoTextFound": "Data, která jste hledali, nebyla nalezena. Upravte parametry vyhledávání.", "PE.Controllers.LeftMenu.textReplaceSkipped": "Nahrazení bylo provedeno. {0} výskytů bylo přeskočeno.", "PE.Controllers.LeftMenu.textReplaceSuccess": "Hledání bylo dokončeno. Nahrazeno výskytů: {0}", @@ -291,6 +388,7 @@ "PE.Controllers.Main.errorAccessDeny": "Pokoušíte se provést akci, na kterou nemáte oprávnění.
Obraťte se na správce vámi využívaného dokumentového serveru.", "PE.Controllers.Main.errorBadImageUrl": "URL adresa obrázku není správně", "PE.Controllers.Main.errorCoAuthoringDisconnect": "Spojení se serverem ztraceno. Dokument v tuto chvíli nelze upravovat.", + "PE.Controllers.Main.errorComboSeries": "Pro vytvoření kombinovaného grafu, zvolte alespoň dvě skupiny dat. ", "PE.Controllers.Main.errorConnectToServer": "Dokument se nedaří uložit. Zkontrolujte nastavení vašeho připojení nebo se obraťte na svého správce.
Když kliknete na „OK“ budete vyzváni k tomu, abyste si dokument stáhli.", "PE.Controllers.Main.errorDatabaseConnection": "Externí chyba.
Chyba spojení s databází. Pokud chyba přetrvává, obraťte se na podporu.", "PE.Controllers.Main.errorDataEncrypted": "Obdrženy šifrované změny – bez hesla je není možné zobrazit.", @@ -304,11 +402,13 @@ "PE.Controllers.Main.errorForceSave": "Došlo k chybě při ukládání souboru. Použijte volbu „Stáhnout jako“ a uložte si do souboru na svůj počítač nebo to zkuste později znovu.", "PE.Controllers.Main.errorKeyEncrypt": "Neznámý popisovač klíče", "PE.Controllers.Main.errorKeyExpire": "Platnost popisovače klíče skončila", + "PE.Controllers.Main.errorLoadingFont": "Styly nejsou načteny.
Prosím kontaktujte Vašeho administrátora dokumentových serverů.", "PE.Controllers.Main.errorProcessSaveResult": "Ukládání se nezdařilo.", "PE.Controllers.Main.errorServerVersion": "Verze editoru byla aktualizována. Stránka bude znovu načtena, aby se změny uplatnily.", "PE.Controllers.Main.errorSessionAbsolute": "Platnost relace upravování dokumentu skončila. Načtete stránku znovu.", "PE.Controllers.Main.errorSessionIdle": "Po dost dlouhou dobu jste s otevřeným dokumentem nepracovali. Načtete stránku znovu.", "PE.Controllers.Main.errorSessionToken": "Spojení se serverem bylo přerušeno. Načtěte stránku znovu.", + "PE.Controllers.Main.errorSetPassword": "Heslo nemohlo být použito", "PE.Controllers.Main.errorStockChart": "Nesprávné pořadí řádků. Pro vytvoření burzovního grafu umístěte data na list v následujícím pořadí:
otevírací cena, maximální cena, minimální cena, uzavírací cena.", "PE.Controllers.Main.errorToken": "Token zabezpečení dokumentu nemá správný formát.
Obraťte se na správce vámi využívaného dokumentového serveru.", "PE.Controllers.Main.errorTokenExpire": "Platnost tokenu zabezpečení dokumentu skončila.
Obraťte se na správce vámi využívaného dokumentového serveru.", @@ -318,6 +418,7 @@ "PE.Controllers.Main.errorUsersExceed": "Počet uživatelů pro daný tarif byl překročen", "PE.Controllers.Main.errorViewerDisconnect": "Spojení bylo ztraceno. Dokument zůstává zobrazen,
ale do obnovení spojení (a znovunačtení stránky) ho není možné si stáhnout a ani vytisknout.", "PE.Controllers.Main.leavePageText": "V této prezentaci máte neuložené změny. Pokud o ně nechcete přijít, klikněte na „Zůstat na této stránce“, poté na „Uložit“. V opačném případě klikněte na „Opustit tuto stránku“ a všechny neuložené změny budou zahozeny.", + "PE.Controllers.Main.leavePageTextOnClose": "Všechny neuložené změny v této prezentaci budou ztraceny.
Klikněte na \"Zrušit\" a poté na \"Uložit\" pro uložení. Klikněte na \"OK\" pro zrušení všech neuložených změn.", "PE.Controllers.Main.loadFontsTextText": "Načítání dat…", "PE.Controllers.Main.loadFontsTitleText": "Načítání dat", "PE.Controllers.Main.loadFontTextText": "Načítání dat…", @@ -340,6 +441,7 @@ "PE.Controllers.Main.requestEditFailedMessageText": "Tuto prezentaci někdo právě upravuje. Zkuste to znovu později.", "PE.Controllers.Main.requestEditFailedTitleText": "Přístup odepřen", "PE.Controllers.Main.saveErrorText": "Při ukládání souboru došlo k chybě.", + "PE.Controllers.Main.saveErrorTextDesktop": "Soubor nemohl být uložen nebo vytvořen.
Možné důvody:
1. Soubor je pouze pro čtení.
2. Soubor je editován jinými uživateli.
3. Úložiště je plně zaplněno nebo poškozeno.", "PE.Controllers.Main.savePreparingText": "Příprava na ukládání", "PE.Controllers.Main.savePreparingTitle": "Příprava ukládání. Čekejte…", "PE.Controllers.Main.saveTextText": "Ukládání prezentace…", @@ -355,16 +457,23 @@ "PE.Controllers.Main.textClose": "Zavřít", "PE.Controllers.Main.textCloseTip": "Tip zavřete kliknutím", "PE.Controllers.Main.textContactUs": "Obraťte se na obchodní oddělení", + "PE.Controllers.Main.textConvertEquation": "Tato rovnice byla vytvořena starou verzí editoru rovnic, která už není podporovaná. Pro její upravení, převeďte rovnici do formátu Office Math ML.
Převést nyní?", "PE.Controllers.Main.textCustomLoader": "Mějte na paměti, že dle podmínek licence nejste oprávněni měnit zavaděč.
Pro získání nabídky se obraťte na naše obchodní oddělení.", "PE.Controllers.Main.textDisconnect": "Spojení je ztraceno", "PE.Controllers.Main.textGuest": "Návštěvník", + "PE.Controllers.Main.textHasMacros": "Soubor obsahuje automatická makra.
Opravdu chcete makra spustit?", "PE.Controllers.Main.textLearnMore": "Více informací", "PE.Controllers.Main.textLoadingDocument": "Načítání prezentace", - "PE.Controllers.Main.textNoLicenseTitle": "omezení na %1 spojení", + "PE.Controllers.Main.textLongName": "Zadejte jméno, které má méně než 128 znaků.", + "PE.Controllers.Main.textNoLicenseTitle": "Došlo k dosažení limitu licence", "PE.Controllers.Main.textPaidFeature": "Placená funkce", + "PE.Controllers.Main.textRemember": "Zapamatovat mou volbu", + "PE.Controllers.Main.textRenameError": "Jméno uživatele nesmí být prázdné. ", + "PE.Controllers.Main.textRenameLabel": "Zadejte jméno, které bude použito pro spolupráci", "PE.Controllers.Main.textShape": "Tvar", "PE.Controllers.Main.textStrict": "Striktní režim", "PE.Controllers.Main.textTryUndoRedo": "Funkce zpět/znovu nejsou v režimu rychlé spolupráce na úpravách k dispozici.
Kliknutím na tlačítko „Striktní režim“ přejdete do striktního režimu spolupráce na úpravách, ve kterém soubor upravujte bez vyrušování ostatními uživateli a vámi provedené změny odesíláte pouze po jejich uložení. Mezi oběma režimy spolupráce na úpravách je možné přepínat v pokročilých nastaveních editoru.", + "PE.Controllers.Main.textTryUndoRedoWarn": "Funkce Zpět/Znovu jsou vypnuty pro rychlý režim spolupráce.", "PE.Controllers.Main.titleLicenseExp": "Platnost licence skončila", "PE.Controllers.Main.titleServerVersion": "Editor byl aktualizován", "PE.Controllers.Main.txtAddFirstSlide": "Kliknutím přidáte první stránku", @@ -379,6 +488,7 @@ "PE.Controllers.Main.txtDiagram": "SmartArt", "PE.Controllers.Main.txtDiagramTitle": "Nadpis grafu", "PE.Controllers.Main.txtEditingMode": "Nastavit režim úprav…", + "PE.Controllers.Main.txtErrorLoadHistory": "Načítání historie se nezdařilo", "PE.Controllers.Main.txtFiguredArrows": "Orientační šipky", "PE.Controllers.Main.txtFooter": "Zápatí", "PE.Controllers.Main.txtHeader": "Záhlaví", @@ -388,6 +498,7 @@ "PE.Controllers.Main.txtMath": "Matematika", "PE.Controllers.Main.txtMedia": "Média", "PE.Controllers.Main.txtNeedSynchronize": "Máte nové aktualizace", + "PE.Controllers.Main.txtNone": "Žádné", "PE.Controllers.Main.txtPicture": "Obrázek", "PE.Controllers.Main.txtRectangles": "Obdélníky", "PE.Controllers.Main.txtSeries": "Řady", @@ -623,17 +734,19 @@ "PE.Controllers.Main.unsupportedBrowserErrorText": "Vámi používaný webový prohlížeč není podporován.", "PE.Controllers.Main.uploadImageExtMessage": "Neznámý formát obrázku.", "PE.Controllers.Main.uploadImageFileCountMessage": "Nenahrány žádné obrázky.", - "PE.Controllers.Main.uploadImageSizeMessage": "Překročena nejvyšší umožněná velikost obrázku.", + "PE.Controllers.Main.uploadImageSizeMessage": "Obrázek je příliš velký. Maximální velikost je 25 MB.", "PE.Controllers.Main.uploadImageTextText": "Nahrávání obrázku…", "PE.Controllers.Main.uploadImageTitleText": "Nahrávání obrázku", "PE.Controllers.Main.waitText": "Čekejte prosím…", "PE.Controllers.Main.warnBrowserIE9": "Aplikace nemůže v IE9 fungovat správně. Použijte IE10 a novější", "PE.Controllers.Main.warnBrowserZoom": "Stávající nastavení velikosti zobrazení vámi využívaného prohlížeče není zcela podporováno. Stisknutím CTRL+0 vraťte velikost zobrazení na výchozí hodnotu.", - "PE.Controllers.Main.warnLicenseExceeded": "Počet souběžných spojení na dokumentový server byl překročen a dokument bude otevřen pouze pro prohlížení.
Ohledně podrobností se obraťte na svého správce.", + "PE.Controllers.Main.warnLicenseExceeded": "Došlo k dosažení limitu počtu souběžných spojení %1 editorů. Dokument bude otevřen pouze pro náhled.
Pro více podrobností kontaktujte svého správce.", "PE.Controllers.Main.warnLicenseExp": "Platnost vaší licence skončila.
Obnovte si svou licenci a načtěte stránku znovu.", - "PE.Controllers.Main.warnLicenseUsersExceeded": "Počet souběžných uživatelů byl překročen a dokument bude otevřen pouze pro čtení.
Ohledně podrobností se obraťte na svého správce.", - "PE.Controllers.Main.warnNoLicense": "Používáte open source variantu %1. Ta má omezení pro souběžné připojení k dokumentovému serveru (20 připojení najednou).
Pokud potřebujete více, zvažte zakoupení komerční licence.", - "PE.Controllers.Main.warnNoLicenseUsers": "Tato verze editorů %1 má určitá omezení ohledně souběžně připojených uživatelů.
Pokud potřebujete více, zvažte zakoupení komerční licence.", + "PE.Controllers.Main.warnLicenseLimitedNoAccess": "Platnost vaší licence skončila.
Nemáte přístup k možnostem editace dokumentu.
Prosím kontaktujte svého administrátora.", + "PE.Controllers.Main.warnLicenseLimitedRenewed": "Vaši licenci je nutné obnovit.
Přístup k možnostem editace dokumentu je omezen.
Pro získání plného přístupu prosím kontaktujte svého administrátora.", + "PE.Controllers.Main.warnLicenseUsersExceeded": "Došlo dosažení limitu %1 editorů v režimu spolupráce na úpravách. Ohledně podrobností se obraťte na svého správce.", + "PE.Controllers.Main.warnNoLicense": "Došlo dosažení limitu souběžných připojení %1 editorů. Dokument bude otevřen pouze pro náhled.
Pro rozšíření funkcí kontaktujte %1 obchodní oddělení.", + "PE.Controllers.Main.warnNoLicenseUsers": "Došlo k dosažení limitu %1 editorů. Pro rozšíření funkcí kontaktujte %1 obchodní oddělení.", "PE.Controllers.Main.warnProcessRightsChange": "Bylo vám odepřeno oprávnění soubor upravovat.", "PE.Controllers.Statusbar.zoomText": "Přiblížení {0}%", "PE.Controllers.Toolbar.confirmAddFontName": "Písmo (font) ve kterém se chystáte uložit, není na tomto zařízení k dispozici.
Text bude zobrazen pomocí některého ze systémových písem s tím, že uložené písmo bude použito, když bude dostupné.
Chcete pokračovat?", @@ -981,7 +1094,7 @@ "PE.Views.ChartSettings.textWidth": "Šířka", "PE.Views.ChartSettingsAdvanced.textAlt": "Alternativní text", "PE.Views.ChartSettingsAdvanced.textAltDescription": "Popis", - "PE.Views.ChartSettingsAdvanced.textAltTip": "Alternativní textová reprezentace informací vizuálního objektu, která bude čtena lidem se zrakovým nebo kognitivním postižením, aby jim pomohla lépe porozumět informacím, které se nacházejí v obrázku, automatickém tvaru, grafu nebo v tabulce.", + "PE.Views.ChartSettingsAdvanced.textAltTip": "Alternativní textová reprezentace informací vizuálního objektu, která bude čtena lidem se zrakovým nebo kognitivním postižením, aby jim pomohla lépe porozumět informacím, které se nacházejí v obrázku, grafu, obrazci nebo v tabulce.", "PE.Views.ChartSettingsAdvanced.textAltTitle": "Název", "PE.Views.ChartSettingsAdvanced.textTitle": "Graf – pokročilá nastavení", "PE.Views.DateTimeDialog.confirmDefault": "Nastavit výchozí formát pro {0}: „{1}“", @@ -994,7 +1107,7 @@ "PE.Views.DocumentHolder.addCommentText": "Přidat komentář", "PE.Views.DocumentHolder.addToLayoutText": "Přidat do rozvržení", "PE.Views.DocumentHolder.advancedImageText": "Pokročilá nastavení obrázku", - "PE.Views.DocumentHolder.advancedParagraphText": "Pokročilá nastavení textu", + "PE.Views.DocumentHolder.advancedParagraphText": "Pokročilá nastavení odstavce", "PE.Views.DocumentHolder.advancedShapeText": "Pokročilá nastavení tvaru", "PE.Views.DocumentHolder.advancedTableText": "Pokročilá nastavení tabulky", "PE.Views.DocumentHolder.alignmentText": "Zarovnání", @@ -1053,6 +1166,7 @@ "PE.Views.DocumentHolder.textFlipH": "Převrátit vodorovně", "PE.Views.DocumentHolder.textFlipV": "Převrátit svisle", "PE.Views.DocumentHolder.textFromFile": "Ze souboru", + "PE.Views.DocumentHolder.textFromStorage": "Z úložiště", "PE.Views.DocumentHolder.textFromUrl": "Z URL adresy", "PE.Views.DocumentHolder.textNextPage": "Další snímek", "PE.Views.DocumentHolder.textPaste": "Vložit", @@ -1138,7 +1252,7 @@ "PE.Views.DocumentHolder.txtPasteDestFormat": "Použít cílový motiv vzhledu", "PE.Views.DocumentHolder.txtPastePicture": "Obrázek", "PE.Views.DocumentHolder.txtPasteSourceFormat": "Ponechat formátování zdroje", - "PE.Views.DocumentHolder.txtPressLink": "Stiskněte CTRL a klikněte na odkaz", + "PE.Views.DocumentHolder.txtPressLink": "Stikněte CTRL a klikněte na odkaz", "PE.Views.DocumentHolder.txtPreview": "Spustit prezentaci", "PE.Views.DocumentHolder.txtPrintSelection": "Vytisknout vybrané", "PE.Views.DocumentHolder.txtRemFractionBar": "Odstranit zlomkovou čáru", @@ -1164,6 +1278,7 @@ "PE.Views.DocumentHolder.txtTop": "Nahoře", "PE.Views.DocumentHolder.txtUnderbar": "Čárka pod textem", "PE.Views.DocumentHolder.txtUngroup": "Zrušit seskupení", + "PE.Views.DocumentHolder.txtWarnUrl": "Kliknutí na tento odkaz může být škodlivé pro Vaše zařízení a Vaše data.
Jste si jistí, že chcete pokračovat?", "PE.Views.DocumentHolder.vertAlignText": "Svislé zarovnání", "PE.Views.DocumentPreview.goToSlideText": "Přejít na snímek", "PE.Views.DocumentPreview.slideIndexText": "Snímek {0} z {1}", @@ -1197,6 +1312,7 @@ "PE.Views.FileMenu.btnSaveCopyAsCaption": "Uložit kopii jako…", "PE.Views.FileMenu.btnSettingsCaption": "Pokročilá nastavení…", "PE.Views.FileMenu.btnToEditCaption": "Upravit prezentaci", + "PE.Views.FileMenuPanels.CreateNew.txtCreateNew": "Vytvořit nový", "PE.Views.FileMenuPanels.DocumentInfo.okButtonText": "Použít", "PE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Přidat autora", "PE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Přidat text", @@ -1234,11 +1350,15 @@ "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": "Vždy uložit na server (jinak uložit na server při zavření dokumentu)", + "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", "PE.Views.FileMenuPanels.Settings.strZoom": "Výchozí měřítko zobrazení", "PE.Views.FileMenuPanels.Settings.text10Minutes": "Každých 10 minut", @@ -1249,7 +1369,7 @@ "PE.Views.FileMenuPanels.Settings.textAutoRecover": "Automatická obnova", "PE.Views.FileMenuPanels.Settings.textAutoSave": "Automatické ukládání", "PE.Views.FileMenuPanels.Settings.textDisabled": "Vypnuto", - "PE.Views.FileMenuPanels.Settings.textForceSave": "Uložit na server", + "PE.Views.FileMenuPanels.Settings.textForceSave": "Uložit dočasnou verzi", "PE.Views.FileMenuPanels.Settings.textMinute": "Každou minutu", "PE.Views.FileMenuPanels.Settings.txtAll": "Zobrazit všechny", "PE.Views.FileMenuPanels.Settings.txtAutoCorrect": "Autokorekce možnosti...", @@ -1262,8 +1382,15 @@ "PE.Views.FileMenuPanels.Settings.txtLast": "Zobrazit poslední", "PE.Views.FileMenuPanels.Settings.txtMac": "jako macOS", "PE.Views.FileMenuPanels.Settings.txtNative": "Nativní", + "PE.Views.FileMenuPanels.Settings.txtProofing": "Kontrola pravopisu", "PE.Views.FileMenuPanels.Settings.txtPt": "Bod", + "PE.Views.FileMenuPanels.Settings.txtRunMacros": "Zapnout vše", + "PE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "Zapnout všechna makra bez notifikace", "PE.Views.FileMenuPanels.Settings.txtSpellCheck": "Kontrola pravopisu", + "PE.Views.FileMenuPanels.Settings.txtStopMacros": "Vypnout vše", + "PE.Views.FileMenuPanels.Settings.txtStopMacrosDesc": "Vypnout všechna makra bez notifikací", + "PE.Views.FileMenuPanels.Settings.txtWarnMacros": "Zobrazit notifikace", + "PE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Vypnout všechna makra s notifikacemi", "PE.Views.FileMenuPanels.Settings.txtWin": "jako Windows", "PE.Views.HeaderFooterDialog.applyAllText": "Použít na vše", "PE.Views.HeaderFooterDialog.applyText": "Použít", @@ -1287,6 +1414,7 @@ "PE.Views.HyperlinkSettingsDialog.textEmptyTooltip": "Sem zadejte popisek", "PE.Views.HyperlinkSettingsDialog.textExternalLink": "Externí odkaz", "PE.Views.HyperlinkSettingsDialog.textInternalLink": "Snímek v této prezentaci", + "PE.Views.HyperlinkSettingsDialog.textSlides": "Snímky", "PE.Views.HyperlinkSettingsDialog.textTipText": "Text bublinové nápovědy", "PE.Views.HyperlinkSettingsDialog.textTitle": "Nastavení hypertextového odkazu", "PE.Views.HyperlinkSettingsDialog.txtEmpty": "Tuto kolonku je třeba vyplnit", @@ -1295,6 +1423,7 @@ "PE.Views.HyperlinkSettingsDialog.txtNext": "Další snímek", "PE.Views.HyperlinkSettingsDialog.txtNotUrl": "Obsahem této kolonky by měla být URL adresa ve formátu „http://www.example.com“", "PE.Views.HyperlinkSettingsDialog.txtPrev": "Předchozí snímek", + "PE.Views.HyperlinkSettingsDialog.txtSizeLimit": "Toto pole je omezeno na 2083 znaků", "PE.Views.HyperlinkSettingsDialog.txtSlide": "Snímek", "PE.Views.ImageSettings.textAdvanced": "Zobrazit pokročilá nastavení", "PE.Views.ImageSettings.textCrop": "Oříznout", @@ -1305,6 +1434,7 @@ "PE.Views.ImageSettings.textFitSlide": "Přizpůsobit snímku", "PE.Views.ImageSettings.textFlip": "Převrátit", "PE.Views.ImageSettings.textFromFile": "Ze souboru", + "PE.Views.ImageSettings.textFromStorage": "Z úložiště", "PE.Views.ImageSettings.textFromUrl": "Z URL adresy", "PE.Views.ImageSettings.textHeight": "Výška", "PE.Views.ImageSettings.textHint270": "Otočit o 90° doleva", @@ -1319,7 +1449,7 @@ "PE.Views.ImageSettings.textWidth": "Šířka", "PE.Views.ImageSettingsAdvanced.textAlt": "Alternativní text", "PE.Views.ImageSettingsAdvanced.textAltDescription": "Popis", - "PE.Views.ImageSettingsAdvanced.textAltTip": "Alternativní textová reprezentace informací vizuálního objektu, která bude čtena lidem se zrakovým nebo kognitivním postižením, aby jim pomohla lépe porozumět informacím, které se nacházejí v obrázku, automatickém tvaru, grafu nebo v tabulce.", + "PE.Views.ImageSettingsAdvanced.textAltTip": "Alternativní textová reprezentace informací vizuálního objektu, která bude čtena lidem se zrakovým nebo kognitivním postižením, aby jim pomohla lépe porozumět informacím, které se nacházejí v obrázku, grafu, obrazci nebo v tabulce.", "PE.Views.ImageSettingsAdvanced.textAltTitle": "Název", "PE.Views.ImageSettingsAdvanced.textAngle": "Úhel", "PE.Views.ImageSettingsAdvanced.textFlipped": "Převrácené", @@ -1343,7 +1473,9 @@ "PE.Views.LeftMenu.tipSupport": "Zpětná vazba a technická podpora", "PE.Views.LeftMenu.tipTitles": "Nadpisy", "PE.Views.LeftMenu.txtDeveloper": "REŽIM PRO VÝVOJÁŘE", + "PE.Views.LeftMenu.txtLimit": "Omezený přístup", "PE.Views.LeftMenu.txtTrial": "ZKUŠEBNÍ REŽIM", + "PE.Views.LeftMenu.txtTrialDev": "Zkušební vývojářský režim", "PE.Views.ParagraphSettings.strLineHeight": "Rozestupy řádek", "PE.Views.ParagraphSettings.strParagraphSpacing": "Rozestup odstavců", "PE.Views.ParagraphSettings.strSpacingAfter": "Za", @@ -1393,7 +1525,7 @@ "PE.Views.ParagraphSettingsAdvanced.txtAutoText": "Automaticky", "PE.Views.RightMenu.txtChartSettings": "Nastavení grafu", "PE.Views.RightMenu.txtImageSettings": "Nastavení obrázku", - "PE.Views.RightMenu.txtParagraphSettings": "Nastavení textu", + "PE.Views.RightMenu.txtParagraphSettings": "Nastavení odstavce", "PE.Views.RightMenu.txtShapeSettings": "Nastavení tvaru", "PE.Views.RightMenu.txtSignatureSettings": "Nastavení podpisu", "PE.Views.RightMenu.txtSlideSettings": "Nastavení snímku", @@ -1418,6 +1550,7 @@ "PE.Views.ShapeSettings.textEmptyPattern": "Bez vzoru", "PE.Views.ShapeSettings.textFlip": "Převrátit", "PE.Views.ShapeSettings.textFromFile": "Ze souboru", + "PE.Views.ShapeSettings.textFromStorage": "Z úložiště", "PE.Views.ShapeSettings.textFromUrl": "Z URL adresy", "PE.Views.ShapeSettings.textGradient": "Přechod", "PE.Views.ShapeSettings.textGradientFill": "Výplň přechodem", @@ -1429,15 +1562,18 @@ "PE.Views.ShapeSettings.textLinear": "Lineární", "PE.Views.ShapeSettings.textNoFill": "Bez výplně", "PE.Views.ShapeSettings.textPatternFill": "Vzor", + "PE.Views.ShapeSettings.textPosition": "Pozice", "PE.Views.ShapeSettings.textRadial": "Kruhový", "PE.Views.ShapeSettings.textRotate90": "Otočit o 90°", "PE.Views.ShapeSettings.textRotation": "Otočení", + "PE.Views.ShapeSettings.textSelectImage": "Vybrat obrázek", "PE.Views.ShapeSettings.textSelectTexture": "Vybrat", "PE.Views.ShapeSettings.textStretch": "Roztáhnout", "PE.Views.ShapeSettings.textStyle": "Styl", "PE.Views.ShapeSettings.textTexture": "Z textury", "PE.Views.ShapeSettings.textTile": "Dlaždice", "PE.Views.ShapeSettings.tipAddGradientPoint": "Přidat stínování", + "PE.Views.ShapeSettings.tipRemoveGradientPoint": "Odstranit stínování", "PE.Views.ShapeSettings.txtBrownPaper": "Hnědý papír", "PE.Views.ShapeSettings.txtCanvas": "Plátno", "PE.Views.ShapeSettings.txtCarton": "Karton", @@ -1454,7 +1590,7 @@ "PE.Views.ShapeSettingsAdvanced.strMargins": "Vnitřní odsazení textu", "PE.Views.ShapeSettingsAdvanced.textAlt": "Alternativní text", "PE.Views.ShapeSettingsAdvanced.textAltDescription": "Popis", - "PE.Views.ShapeSettingsAdvanced.textAltTip": "Alternativní textová reprezentace informací vizuálního objektu, která bude čtena lidem se zrakovým nebo kognitivním postižením, aby jim pomohla lépe porozumět informacím, které se nacházejí v obrázku, automatickém tvaru, grafu nebo v tabulce.", + "PE.Views.ShapeSettingsAdvanced.textAltTip": "Alternativní textová reprezentace informací vizuálního objektu, která bude čtena lidem se zrakovým nebo kognitivním postižením, aby jim pomohla lépe porozumět informacím, které se nacházejí v obrázku, grafu, obrazci nebo v tabulce.", "PE.Views.ShapeSettingsAdvanced.textAltTitle": "Název", "PE.Views.ShapeSettingsAdvanced.textAngle": "Úhel", "PE.Views.ShapeSettingsAdvanced.textArrows": "Šipky", @@ -1476,6 +1612,8 @@ "PE.Views.ShapeSettingsAdvanced.textLeft": "Vlevo", "PE.Views.ShapeSettingsAdvanced.textLineStyle": "Styl čáry", "PE.Views.ShapeSettingsAdvanced.textMiter": "Pokos", + "PE.Views.ShapeSettingsAdvanced.textNofit": "Nepřizpůsobovat automaticky", + "PE.Views.ShapeSettingsAdvanced.textResizeFit": "Upravit velikost podle textu", "PE.Views.ShapeSettingsAdvanced.textRight": "Vpravo", "PE.Views.ShapeSettingsAdvanced.textRotation": "Otočení", "PE.Views.ShapeSettingsAdvanced.textRound": "Zaoblené", @@ -1497,6 +1635,7 @@ "PE.Views.SignatureSettings.strValid": "Platné podpisy", "PE.Views.SignatureSettings.txtContinueEditing": "Upravit i tak", "PE.Views.SignatureSettings.txtEditWarning": "Upravení z prezentace odebere podpisy.
Opravdu chcete pokračovat?", + "PE.Views.SignatureSettings.txtRemoveWarning": "Chcete odstranit podpis?
Tento krok je nevratný. ", "PE.Views.SignatureSettings.txtSigned": "Do prezentace byly přidány platné podpisy. Tím je chráněna před úpravami.", "PE.Views.SignatureSettings.txtSignedInvalid": "Některé z digitálních podpisů v prezentaci nejsou platné nebo se je nedaří ověřit. Prezentace je chráněna před úpravami.", "PE.Views.SlideSettings.strBackground": "Barva pozadí", @@ -1513,6 +1652,7 @@ "PE.Views.SlideSettings.textDirection": "Směr", "PE.Views.SlideSettings.textEmptyPattern": "Bez vzoru", "PE.Views.SlideSettings.textFromFile": "Ze souboru", + "PE.Views.SlideSettings.textFromStorage": "Z úložiště", "PE.Views.SlideSettings.textFromUrl": "Z URL adresy", "PE.Views.SlideSettings.textGradient": "Přechod", "PE.Views.SlideSettings.textGradientFill": "Výplň přechodem", @@ -1520,14 +1660,17 @@ "PE.Views.SlideSettings.textLinear": "Lineární", "PE.Views.SlideSettings.textNoFill": "Bez výplně", "PE.Views.SlideSettings.textPatternFill": "Vzor", + "PE.Views.SlideSettings.textPosition": "Pozice", "PE.Views.SlideSettings.textRadial": "Kruhový", "PE.Views.SlideSettings.textReset": "Zrušit změny", + "PE.Views.SlideSettings.textSelectImage": "Vybrat obrázek", "PE.Views.SlideSettings.textSelectTexture": "Vybrat", "PE.Views.SlideSettings.textStretch": "Roztáhnout", "PE.Views.SlideSettings.textStyle": "Styl", "PE.Views.SlideSettings.textTexture": "Z textury", "PE.Views.SlideSettings.textTile": "Dlaždice", "PE.Views.SlideSettings.tipAddGradientPoint": "Přidat stínování", + "PE.Views.SlideSettings.tipRemoveGradientPoint": "Odstranit stínování", "PE.Views.SlideSettings.txtBrownPaper": "Hnědý papír", "PE.Views.SlideSettings.txtCanvas": "Plátno", "PE.Views.SlideSettings.txtCarton": "Karton", @@ -1559,6 +1702,7 @@ "PE.Views.SlideSizeSettings.txtLetter": "Letter Paper (8.5x11 in)", "PE.Views.SlideSizeSettings.txtOverhead": "Horní", "PE.Views.SlideSizeSettings.txtStandard": "Standardní (4:3)", + "PE.Views.SlideSizeSettings.txtWidescreen": "Širokoúhlá", "PE.Views.Statusbar.goToPageText": "Přejít na snímek", "PE.Views.Statusbar.pageIndexText": "Snímek {0} z {1}", "PE.Views.Statusbar.textShowBegin": "Zobrazit od začátku", @@ -1628,7 +1772,7 @@ "PE.Views.TableSettings.txtTable_ThemedStyle": "Styl opatřený motivem vzhledu", "PE.Views.TableSettingsAdvanced.textAlt": "Alternativní text", "PE.Views.TableSettingsAdvanced.textAltDescription": "Popis", - "PE.Views.TableSettingsAdvanced.textAltTip": "Alternativní textová reprezentace informací vizuálního objektu, která bude čtena lidem se zrakovým nebo kognitivním postižením, aby jim pomohla lépe porozumět informacím, které se nacházejí v obrázku, automatickém tvaru, grafu nebo v tabulce.", + "PE.Views.TableSettingsAdvanced.textAltTip": "Alternativní textová reprezentace informací vizuálního objektu, která bude čtena lidem se zrakovým nebo kognitivním postižením, aby jim pomohla lépe porozumět informacím, které se nacházejí v obrázku, grafu, obrazci nebo v tabulce.", "PE.Views.TableSettingsAdvanced.textAltTitle": "Název", "PE.Views.TableSettingsAdvanced.textBottom": "Dole", "PE.Views.TableSettingsAdvanced.textCheckMargins": "Použít výchozí okraje", @@ -1661,6 +1805,7 @@ "PE.Views.TextArtSettings.textLinear": "Lineární", "PE.Views.TextArtSettings.textNoFill": "Bez výplně", "PE.Views.TextArtSettings.textPatternFill": "Vzor", + "PE.Views.TextArtSettings.textPosition": "Pozice", "PE.Views.TextArtSettings.textRadial": "Kruhový", "PE.Views.TextArtSettings.textSelectTexture": "Vybrat", "PE.Views.TextArtSettings.textStretch": "Roztáhnout", @@ -1670,6 +1815,7 @@ "PE.Views.TextArtSettings.textTile": "Dlaždice", "PE.Views.TextArtSettings.textTransform": "Transformovat", "PE.Views.TextArtSettings.tipAddGradientPoint": "Přidat stínování", + "PE.Views.TextArtSettings.tipRemoveGradientPoint": "Odstranit stínování", "PE.Views.TextArtSettings.txtBrownPaper": "Hnědý papír", "PE.Views.TextArtSettings.txtCanvas": "Plátno", "PE.Views.TextArtSettings.txtCarton": "Karton", @@ -1697,16 +1843,23 @@ "PE.Views.Toolbar.capInsertShape": "Tvar", "PE.Views.Toolbar.capInsertTable": "Tabulka", "PE.Views.Toolbar.capInsertText": "Textové pole", + "PE.Views.Toolbar.capInsertVideo": "Video", "PE.Views.Toolbar.capTabFile": "Soubor", "PE.Views.Toolbar.capTabHome": "Domů", "PE.Views.Toolbar.capTabInsert": "Vložit", + "PE.Views.Toolbar.mniCapitalizeWords": "Velká na začátku každého slova", "PE.Views.Toolbar.mniCustomTable": "Vložit uživatelsky určenou tabulku", "PE.Views.Toolbar.mniImageFromFile": "Obrázek ze souboru", "PE.Views.Toolbar.mniImageFromStorage": "Obrázek z úložiště", "PE.Views.Toolbar.mniImageFromUrl": "Obrázek z URL adresy", + "PE.Views.Toolbar.mniLowerCase": "všechna malá", + "PE.Views.Toolbar.mniSentenceCase": "Velká na začátku věty.", "PE.Views.Toolbar.mniSlideAdvanced": "Pokročilá nastavení", "PE.Views.Toolbar.mniSlideStandard": "Standardní (4:3)", "PE.Views.Toolbar.mniSlideWide": "Širokoúhlý (16:9)", + "PE.Views.Toolbar.mniToggleCase": "zAMĚNIT mALÁ a vELKÁ", + "PE.Views.Toolbar.mniUpperCase": "VŠECHNA VELKÁ", + "PE.Views.Toolbar.strMenuNoFill": "Bez výplně", "PE.Views.Toolbar.textAlignBottom": "Zarovnat text dolů", "PE.Views.Toolbar.textAlignCenter": "Vystředit text", "PE.Views.Toolbar.textAlignJust": "Do bloku", @@ -1719,6 +1872,10 @@ "PE.Views.Toolbar.textArrangeForward": "Přenést o vrstvu výš", "PE.Views.Toolbar.textArrangeFront": "Přenést do popředí", "PE.Views.Toolbar.textBold": "Tučně", + "PE.Views.Toolbar.textColumnsCustom": "Vlastní sloupce", + "PE.Views.Toolbar.textColumnsOne": "Jeden sloupec", + "PE.Views.Toolbar.textColumnsThree": "Tři sloupce", + "PE.Views.Toolbar.textColumnsTwo": "Dva sloupce", "PE.Views.Toolbar.textItalic": "Skloněné", "PE.Views.Toolbar.textListSettings": "Nastavení seznamu", "PE.Views.Toolbar.textShapeAlignBottom": "Zarovnat dolů", @@ -1739,14 +1896,17 @@ "PE.Views.Toolbar.textTabHome": "Domů", "PE.Views.Toolbar.textTabInsert": "Vložit", "PE.Views.Toolbar.textTabProtect": "Ochrana", + "PE.Views.Toolbar.textTabTransitions": "Přechod", "PE.Views.Toolbar.textTitleError": "Chyba", "PE.Views.Toolbar.textUnderline": "Podtržené", "PE.Views.Toolbar.tipAddSlide": "Přidat snímek", "PE.Views.Toolbar.tipBack": "Zpět", + "PE.Views.Toolbar.tipChangeCase": "Změna nastavení pravidel pro velká a malá písmena", "PE.Views.Toolbar.tipChangeChart": "Změnit typ grafu", "PE.Views.Toolbar.tipChangeSlide": "Změnit rozvržení snímku", "PE.Views.Toolbar.tipClearStyle": "Vymazat styl", "PE.Views.Toolbar.tipColorSchemas": "Změnit barevné schéma", + "PE.Views.Toolbar.tipColumns": "Vložit sloupce", "PE.Views.Toolbar.tipCopy": "Kopírovat", "PE.Views.Toolbar.tipCopyStyle": "Zkopírovat styl", "PE.Views.Toolbar.tipDateTime": "Vložit aktuální datum a čas", @@ -1757,8 +1917,10 @@ "PE.Views.Toolbar.tipFontName": "Písmo", "PE.Views.Toolbar.tipFontSize": "Velikost písma", "PE.Views.Toolbar.tipHAligh": "Zarovnat vodorovně", + "PE.Views.Toolbar.tipHighlightColor": "Barva zvýraznění", "PE.Views.Toolbar.tipIncFont": "Zvětšit velikost písma", "PE.Views.Toolbar.tipIncPrLeft": "Zvětšit odsazení", + "PE.Views.Toolbar.tipInsertAudio": "Vložit zvuk", "PE.Views.Toolbar.tipInsertChart": "Vložit graf", "PE.Views.Toolbar.tipInsertEquation": "Vložit rovnici", "PE.Views.Toolbar.tipInsertHyperlink": "Přidat hypertextový odkaz", @@ -1768,6 +1930,7 @@ "PE.Views.Toolbar.tipInsertTable": "Vložit tabulku", "PE.Views.Toolbar.tipInsertText": "Vložit textové pole", "PE.Views.Toolbar.tipInsertTextArt": "Vložit Text art", + "PE.Views.Toolbar.tipInsertVideo": "Vložit video", "PE.Views.Toolbar.tipLineSpace": "Rozestupy řádek", "PE.Views.Toolbar.tipMarkers": "Odrážky", "PE.Views.Toolbar.tipNumbers": "Číslování", @@ -1803,6 +1966,7 @@ "PE.Views.Toolbar.txtScheme2": "Stupně šedi", "PE.Views.Toolbar.txtScheme20": "Městský", "PE.Views.Toolbar.txtScheme21": "Elán", + "PE.Views.Toolbar.txtScheme22": "Nová kancelář", "PE.Views.Toolbar.txtScheme3": "Vrchol", "PE.Views.Toolbar.txtScheme4": "Poměr", "PE.Views.Toolbar.txtScheme5": "Občanský", @@ -1812,30 +1976,39 @@ "PE.Views.Toolbar.txtScheme9": "Slévárna", "PE.Views.Toolbar.txtSlideAlign": "Zarovnat vůči snímku", "PE.Views.Toolbar.txtUngroup": "Zrušit seskupení", + "PE.Views.Transitions.strDelay": "Prodleva", "PE.Views.Transitions.strDuration": "Doba trvání", + "PE.Views.Transitions.strStartOnClick": "Začněte kliknutím", "PE.Views.Transitions.textBlack": "Přes černou", + "PE.Views.Transitions.textBottom": "Dole", "PE.Views.Transitions.textBottomLeft": "Vlevo dole", "PE.Views.Transitions.textBottomRight": "Vpravo dole", "PE.Views.Transitions.textClock": "Hodiny", + "PE.Views.Transitions.textClockwise": "Po směru hodinových ručiček", "PE.Views.Transitions.textCounterclockwise": "Proti směru hodinových ručiček", "PE.Views.Transitions.textCover": "Zakrýt", "PE.Views.Transitions.textFade": "Vyblednout", "PE.Views.Transitions.textHorizontalIn": "Vodorovně uvnitř", "PE.Views.Transitions.textHorizontalOut": "Vodorovně vně", "PE.Views.Transitions.textLeft": "Vlevo", + "PE.Views.Transitions.textNone": "Žádné", "PE.Views.Transitions.textPush": "Posunout", "PE.Views.Transitions.textRight": "Vpravo", "PE.Views.Transitions.textSmoothly": "Plynule", "PE.Views.Transitions.textSplit": "Rozdělit", + "PE.Views.Transitions.textTop": "Nahoře", "PE.Views.Transitions.textTopLeft": "Vlevo nahoře", "PE.Views.Transitions.textTopRight": "Vpravo nahoře", "PE.Views.Transitions.textUnCover": "Odkrýt", "PE.Views.Transitions.textVerticalIn": "Svislý uvnitř", "PE.Views.Transitions.textVerticalOut": "Svislý vně", "PE.Views.Transitions.textWipe": "Vyčistit", + "PE.Views.Transitions.textZoom": "Přiblížení", "PE.Views.Transitions.textZoomIn": "Přiblížit", "PE.Views.Transitions.textZoomOut": "Oddálit", "PE.Views.Transitions.textZoomRotate": "Přiblížit a otočit", "PE.Views.Transitions.txtApplyToAll": "Použít na všechny snímky", - "PE.Views.Transitions.txtParameters": "Parametry" + "PE.Views.Transitions.txtParameters": "Parametry", + "PE.Views.Transitions.txtPreview": "Náhled", + "PE.Views.Transitions.txtSec": "S" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/el.json b/apps/presentationeditor/main/locale/el.json index f8585aa57..ce2e455d2 100644 --- a/apps/presentationeditor/main/locale/el.json +++ b/apps/presentationeditor/main/locale/el.json @@ -51,6 +51,7 @@ "Common.Translation.warnFileLockedBtnEdit": "Δημιουργία αντιγράφου", "Common.Translation.warnFileLockedBtnView": "Άνοιγμα για προβολή", "Common.UI.ButtonColored.textAutoColor": "Αυτόματα", + "Common.UI.ButtonColored.textNewColor": "Προσθήκη Νέου Προσαρμοσμένου Χρώματος", "Common.UI.ComboBorderSize.txtNoBorders": "Χωρίς περιγράμματα", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Χωρίς περιγράμματα", "Common.UI.ComboDataView.emptyComboText": "Χωρίς τεχνοτροπίες", @@ -98,12 +99,13 @@ "Common.Views.About.txtVersion": "Έκδοση ", "Common.Views.AutoCorrectDialog.textAdd": "Προσθήκη", "Common.Views.AutoCorrectDialog.textApplyText": "Εφαρμογή Κατά Την Πληκτρολόγηση", - "Common.Views.AutoCorrectDialog.textAutoCorrect": "Αυτόματη διόρθωση", + "Common.Views.AutoCorrectDialog.textAutoCorrect": "Αυτόματη Διόρθωση", "Common.Views.AutoCorrectDialog.textAutoFormat": "Αυτόματη Μορφοποίηση Κατά Την Πληκτρολόγηση", "Common.Views.AutoCorrectDialog.textBulleted": "Αυτόματες λίστες κουκκίδων", "Common.Views.AutoCorrectDialog.textBy": "Κατά", "Common.Views.AutoCorrectDialog.textDelete": "Διαγραφή", "Common.Views.AutoCorrectDialog.textFLSentence": "Κεφαλαιοποιήστε το πρώτο γράμμα των προτάσεων", + "Common.Views.AutoCorrectDialog.textHyperlink": "Μονοπάτια δικτύου και διαδικτύου με υπερσυνδέσμους", "Common.Views.AutoCorrectDialog.textHyphens": "Παύλες (--) με πλατιά παύλα (—)", "Common.Views.AutoCorrectDialog.textMathCorrect": "Αυτόματη Διόρθωση Μαθηματικών", "Common.Views.AutoCorrectDialog.textNumbered": "Αυτόματες αριθμημένες λίστες", @@ -123,6 +125,12 @@ "Common.Views.AutoCorrectDialog.warnReset": "Κάθε αυτόματη διόρθωση που προσθέσατε θα αφαιρεθεί και ό,τι τροποποιήθηκε θα αποκατασταθεί στην αρχική του τιμή. Θέλετε να συνεχίσετε;", "Common.Views.AutoCorrectDialog.warnRestore": "Η καταχώρηση αυτόματης διόρθωσης για %1 θα τεθεί στην αρχική τιμή της. Θέλετε να συνεχίσετε;", "Common.Views.Chat.textSend": "Αποστολή", + "Common.Views.Comments.mniAuthorAsc": "Συγγραφέας Α έως Ω", + "Common.Views.Comments.mniAuthorDesc": "Συγγραφέας Ω έως Α", + "Common.Views.Comments.mniDateAsc": "Παλαιότερο", + "Common.Views.Comments.mniDateDesc": "Νεότερο", + "Common.Views.Comments.mniPositionAsc": "Από πάνω", + "Common.Views.Comments.mniPositionDesc": "Από κάτω", "Common.Views.Comments.textAdd": "Προσθήκη", "Common.Views.Comments.textAddComment": "Προσθήκη Σχολίου", "Common.Views.Comments.textAddCommentToDoc": "Προσθήκη Σχολίου στο Έγγραφο", @@ -130,6 +138,7 @@ "Common.Views.Comments.textAnonym": "Επισκέπτης", "Common.Views.Comments.textCancel": "Ακύρωση", "Common.Views.Comments.textClose": "Κλείσιμο", + "Common.Views.Comments.textClosePanel": "Κλείσιμο σχολίων", "Common.Views.Comments.textComments": "Σχόλια", "Common.Views.Comments.textEdit": "Εντάξει", "Common.Views.Comments.textEnterCommentHint": "Εισάγετε το σχόλιό σας εδώ", @@ -138,6 +147,7 @@ "Common.Views.Comments.textReply": "Απάντηση", "Common.Views.Comments.textResolve": "Επίλυση", "Common.Views.Comments.textResolved": "Επιλύθηκε", + "Common.Views.Comments.textSort": "Ταξινόμηση σχολίων", "Common.Views.CopyWarningDialog.textDontShow": "Να μην εμφανίζεται αυτό το μήνυμα ξανά", "Common.Views.CopyWarningDialog.textMsg": "Η αντιγραφή, η αποκοπή και η επικόλληση μέσω των κουμπιών της εργαλειοθήκης του συντάκτη καθώς και οι ενέργειες του μενού συμφραζομένων εφαρμόζονται μόνο εντός αυτής της καρτέλας.

Για αντιγραφή ή επικόλληση από ή προς εφαρμογές εκτός της καρτέλας χρησιμοποιήστε τους ακόλουθους συνδυασμούς πλήκτρων:", "Common.Views.CopyWarningDialog.textTitle": "Ενέργειες Αντιγραφής, Αποκοπής και Επικόλλησης", @@ -394,6 +404,7 @@ "PE.Controllers.Main.errorForceSave": "Παρουσιάστηκε σφάλμα κατά την αποθήκευση του αρχείου. Χρησιμοποιήστε την επιλογή «Λήψη ως» για να αποθηκεύσετε το αρχείο στον σκληρό δίσκο του υπολογιστή σας ή δοκιμάστε ξανά αργότερα.", "PE.Controllers.Main.errorKeyEncrypt": "Άγνωστος περιγραφέας κλειδιού", "PE.Controllers.Main.errorKeyExpire": "Ο περιγραφέας κλειδιού έχει λήξει", + "PE.Controllers.Main.errorLoadingFont": "Οι γραμματοσειρές δεν έχουν φορτωθεί.
Παρακαλούμε επικοινωνήστε με τον διαχειριστή του Εξυπηρετητή Εγγράφων σας.", "PE.Controllers.Main.errorProcessSaveResult": "Αποτυχία αποθήκευσης.", "PE.Controllers.Main.errorServerVersion": "Αναβαθμίστηκε η έκδοση του συντάκτη. Η σελίδα θα φορτωθεί ξανά για να εφαρμοστούν οι αλλαγές.", "PE.Controllers.Main.errorSessionAbsolute": "Η σύνοδος επεξεργασίας εγγράφου έχει λήξει. Παρακαλούμε ανανεώστε τη σελίδα.", @@ -450,6 +461,7 @@ "PE.Controllers.Main.textContactUs": "Επικοινωνήστε με το τμήμα πωλήσεων", "PE.Controllers.Main.textConvertEquation": "Η εξίσωση αυτή δημιουργήθηκε με παλαιότερη έκδοση του συντάκτη εξισώσεων που δεν υποστηρίζεται πια. Για να την επεξεργαστείτε, μετατρέψτε την σε μορφή Office Math ML.
Να μετατραπεί τώρα;", "PE.Controllers.Main.textCustomLoader": "Παρακαλούμε λάβετε υπόψη ότι σύμφωνα με τους όρους της άδειας δεν δικαιούστε αλλαγή του φορτωτή.
Παρακαλούμε επικοινωνήστε με το Τμήμα Πωλήσεων για να λάβετε μια προσφορά.", + "PE.Controllers.Main.textDisconnect": "Η σύνδεση χάθηκε", "PE.Controllers.Main.textGuest": "Επισκέπτης", "PE.Controllers.Main.textHasMacros": "Το αρχείο περιέχει αυτόματες μακροεντολές.
Θέλετε να εκτελέσετε μακροεντολές;", "PE.Controllers.Main.textLearnMore": "Μάθετε περισσότερα", @@ -1268,6 +1280,7 @@ "PE.Views.DocumentHolder.txtTop": "Επάνω", "PE.Views.DocumentHolder.txtUnderbar": "Μπάρα κάτω από κείμενο", "PE.Views.DocumentHolder.txtUngroup": "Κατάργηση ομαδοποίησης", + "PE.Views.DocumentHolder.txtWarnUrl": "Η συσκευή και τα δεδομένα σας μπορεί να κινδυνεύσουν αν κάνετε κλικ σε αυτόν τον σύνδεσμο.
Θέλετε σίγουρα να συνεχίσετε;", "PE.Views.DocumentHolder.vertAlignText": "Κατακόρυφη Στοίχιση", "PE.Views.DocumentPreview.goToSlideText": "Μετάβαση στη Διαφάνεια", "PE.Views.DocumentPreview.slideIndexText": "Διαφάνεια {0} από {1}", @@ -1301,6 +1314,8 @@ "PE.Views.FileMenu.btnSaveCopyAsCaption": "Αποθήκευση Αντιγράφου ως...", "PE.Views.FileMenu.btnSettingsCaption": "Προηγμένες Ρυθμίσεις...", "PE.Views.FileMenu.btnToEditCaption": "Επεξεργασία Παρουσίασης", + "PE.Views.FileMenuPanels.CreateNew.txtBlank": "Κενή Παρουσίαση", + "PE.Views.FileMenuPanels.CreateNew.txtCreateNew": "Δημιουργία Νέας", "PE.Views.FileMenuPanels.DocumentInfo.okButtonText": "Εφαρμογή", "PE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Προσθήκη Συγγραφέα", "PE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Προσθήκη Κειμένου", @@ -1886,6 +1901,7 @@ "PE.Views.Toolbar.textTabHome": "Αρχική", "PE.Views.Toolbar.textTabInsert": "Εισαγωγή", "PE.Views.Toolbar.textTabProtect": "Προστασία", + "PE.Views.Toolbar.textTabTransitions": "Μεταβάσεις", "PE.Views.Toolbar.textTitleError": "Σφάλμα", "PE.Views.Toolbar.textUnderline": "Υπογράμμιση", "PE.Views.Toolbar.tipAddSlide": "Προσθήκη διαφάνειας", @@ -1967,6 +1983,7 @@ "PE.Views.Toolbar.txtUngroup": "Κατάργηση ομαδοποίησης", "PE.Views.Transitions.strDelay": "Καθυστέρηση", "PE.Views.Transitions.strDuration": "Διάρκεια", + "PE.Views.Transitions.strStartOnClick": "Έναρξη Με Κλικ", "PE.Views.Transitions.textBlack": "Μέσω του Μαύρου", "PE.Views.Transitions.textBottom": "Κάτω", "PE.Views.Transitions.textBottomLeft": "Κάτω-αριστερά", @@ -1979,6 +1996,7 @@ "PE.Views.Transitions.textHorizontalIn": "Οριζόντιο εσωτερικό", "PE.Views.Transitions.textHorizontalOut": "Οριζόντιο εξωτερικό", "PE.Views.Transitions.textLeft": "Αριστερά", + "PE.Views.Transitions.textNone": "Κανένα", "PE.Views.Transitions.textPush": "Ώθηση", "PE.Views.Transitions.textRight": "Δεξιά", "PE.Views.Transitions.textSmoothly": "Ομαλή μετάβαση", @@ -1989,6 +2007,7 @@ "PE.Views.Transitions.textUnCover": "Αποκάλυψη", "PE.Views.Transitions.textVerticalIn": "Κάθετο εσωτερικό", "PE.Views.Transitions.textVerticalOut": "Κάθετο εξωτερικό", + "PE.Views.Transitions.textWedge": "Σύζευξη", "PE.Views.Transitions.textWipe": "Εκκαθάριση", "PE.Views.Transitions.textZoom": "Εστίαση", "PE.Views.Transitions.textZoomIn": "Μεγέθυνση", diff --git a/apps/presentationeditor/main/locale/ko.json b/apps/presentationeditor/main/locale/ko.json index b350bada1..b404f33ba 100644 --- a/apps/presentationeditor/main/locale/ko.json +++ b/apps/presentationeditor/main/locale/ko.json @@ -5,6 +5,53 @@ "Common.Controllers.ExternalDiagramEditor.textClose": "닫기", "Common.Controllers.ExternalDiagramEditor.warningText": "다른 사용자가 편집 중이므로 개체를 사용할 수 없습니다.", "Common.Controllers.ExternalDiagramEditor.warningTitle": "경고", + "Common.define.chartData.textArea": "영역", + "Common.define.chartData.textAreaStacked": "누적 영역형", + "Common.define.chartData.textAreaStackedPer": "100% 누적 영역형", + "Common.define.chartData.textBar": "막대", + "Common.define.chartData.textBarNormal": "묶은 세로 막대형", + "Common.define.chartData.textBarNormal3d": "3차원 묶은 세로 막대", + "Common.define.chartData.textBarNormal3dPerspective": "3차원 세로 막대", + "Common.define.chartData.textBarStacked": "누적 세로 막대형", + "Common.define.chartData.textBarStacked3d": "3차원 누적 세로 막대형", + "Common.define.chartData.textBarStackedPer": "100% 누적 세로 막대형", + "Common.define.chartData.textBarStackedPer3d": "3차원 100 % 누적 세로 막 대형", + "Common.define.chartData.textCharts": "차트", + "Common.define.chartData.textColumn": "열", + "Common.define.chartData.textCombo": "콤보", + "Common.define.chartData.textComboAreaBar": "누적 영역형 - 묶은 세로 막대형", + "Common.define.chartData.textComboBarLine": "묶은 세로 막대형 - 꺾은선형", + "Common.define.chartData.textComboBarLineSecondary": "묶은 세로 막대형 - 꺾은선형,보조 축", + "Common.define.chartData.textComboCustom": "맞춤 조합", + "Common.define.chartData.textDoughnut": "도넛", + "Common.define.chartData.textHBarNormal": "묶은 가로 막대형", + "Common.define.chartData.textHBarNormal3d": "3차원 집합 막대", + "Common.define.chartData.textHBarStacked": "누적 가로 막대형", + "Common.define.chartData.textHBarStacked3d": "3차원 누적 가로 막대형", + "Common.define.chartData.textHBarStackedPer": "100% 누적 막대형", + "Common.define.chartData.textHBarStackedPer3d": "3차원 100 % 기준 누적 가로 막 대형", + "Common.define.chartData.textLine": "선", + "Common.define.chartData.textLine3d": "3차원 꺾은 선형", + "Common.define.chartData.textLineMarker": "마커 라인", + "Common.define.chartData.textLineStacked": "누적 꺾은 선형", + "Common.define.chartData.textLineStackedMarker": "표식이 있는 누적 꺾은 선형", + "Common.define.chartData.textLineStackedPer": "100 % 기준 누적 꺾은 선형", + "Common.define.chartData.textLineStackedPerMarker": "표식이 있는 100 % 기준 누적 꺾은 선형", + "Common.define.chartData.textPie": "부분 원형", + "Common.define.chartData.textPie3d": "3차원 원형", + "Common.define.chartData.textPoint": "XY (분산형)", + "Common.define.chartData.textScatter": "분산형", + "Common.define.chartData.textScatterLine": "직선이 있는 분산형", + "Common.define.chartData.textScatterLineMarker": "직선 및 표식이 있는 분산형", + "Common.define.chartData.textScatterSmooth": "곡선이 있는 분산형", + "Common.define.chartData.textScatterSmoothMarker": "곡선 및 표식이 있는 분산형", + "Common.define.chartData.textStock": "주식형", + "Common.define.chartData.textSurface": "표면", + "Common.Translation.warnFileLocked": "파일이 다른 응용 프로그램에서 편집 중입니다. 편집을 계속하고 사본으로 저장할 수 있습니다.", + "Common.Translation.warnFileLockedBtnEdit": "복사본 만들기", + "Common.Translation.warnFileLockedBtnView": "미리보기", + "Common.UI.ButtonColored.textAutoColor": "자동", + "Common.UI.ButtonColored.textNewColor": "사용자 정의 색상 추가", "Common.UI.ComboBorderSize.txtNoBorders": "테두리 없음", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "테두리 없음", "Common.UI.ComboDataView.emptyComboText": "스타일 없음", @@ -28,6 +75,9 @@ "Common.UI.SynchronizeTip.textSynchronize": "다른 사용자가 문서를 변경했습니다.
클릭하여 변경 사항을 저장하고 업데이트를 다시로드하십시오.", "Common.UI.ThemeColorPalette.textStandartColors": "표준 색상", "Common.UI.ThemeColorPalette.textThemeColors": "테마 색", + "Common.UI.Themes.txtThemeClassicLight": "전통적인 밝은 색상", + "Common.UI.Themes.txtThemeDark": "어두운", + "Common.UI.Themes.txtThemeLight": "밝은", "Common.UI.Window.cancelButtonText": "취소", "Common.UI.Window.closeButtonText": "닫기", "Common.UI.Window.noButtonText": "No", @@ -47,7 +97,40 @@ "Common.Views.About.txtPoweredBy": "Powered by", "Common.Views.About.txtTel": "tel .:", "Common.Views.About.txtVersion": "버전", + "Common.Views.AutoCorrectDialog.textAdd": "추가", + "Common.Views.AutoCorrectDialog.textApplyText": "입력과 동시에 적용", + "Common.Views.AutoCorrectDialog.textAutoCorrect": "자동 고침", + "Common.Views.AutoCorrectDialog.textAutoFormat": "입력 할 때 자동 서식", + "Common.Views.AutoCorrectDialog.textBulleted": "자동 글머리 기호 목록", + "Common.Views.AutoCorrectDialog.textBy": "작성", + "Common.Views.AutoCorrectDialog.textDelete": "삭제", + "Common.Views.AutoCorrectDialog.textFLSentence": "영어 문장의 첫 글자를 대문자로", + "Common.Views.AutoCorrectDialog.textHyperlink": "네트워크 경로 하이퍼링크", + "Common.Views.AutoCorrectDialog.textHyphens": "하이픈(--)과 대시(—)", + "Common.Views.AutoCorrectDialog.textMathCorrect": "수식 자동 고침", + "Common.Views.AutoCorrectDialog.textNumbered": "자동 번호 매기기 목록", + "Common.Views.AutoCorrectDialog.textQuotes": "\"직선 따옴표\" 및 \"곱게 따옴표\"", + "Common.Views.AutoCorrectDialog.textRecognized": "인식된 함수", + "Common.Views.AutoCorrectDialog.textRecognizedDesc": "다음 표현식은 인식 된 수식입니다. 자동으로 이탤릭체로 될 수는 없습니다.", + "Common.Views.AutoCorrectDialog.textReplace": "바꾸기", + "Common.Views.AutoCorrectDialog.textReplaceText": "입력시 바꿈", + "Common.Views.AutoCorrectDialog.textReplaceType": "입력시 텍스트 바꿈", + "Common.Views.AutoCorrectDialog.textReset": "재설정", + "Common.Views.AutoCorrectDialog.textResetAll": "기본값으로 재설정", + "Common.Views.AutoCorrectDialog.textRestore": "복구", + "Common.Views.AutoCorrectDialog.textTitle": "자동 고침", + "Common.Views.AutoCorrectDialog.textWarnAddRec": "인식되는 함수는 대소 A ~ Z까지의 문자만을 포함해야합니다.", + "Common.Views.AutoCorrectDialog.textWarnResetRec": "추가한 모든 표현식이 삭제되고 삭제된 표현식이 복원됩니다. 계속하시겠습니까?", + "Common.Views.AutoCorrectDialog.warnReplace": "%1에 대한 자동 고침 항목이 이미 있습니다. 교체하시겠습니까?", + "Common.Views.AutoCorrectDialog.warnReset": "추가한 모든 자동 고침이 삭제되고 변경된 자동 수정이 원래 값으로 복원됩니다. 계속하시겠습니까?", + "Common.Views.AutoCorrectDialog.warnRestore": "%1의 자동 고침 항목이 원래 값으로 재설정됩니다. 계속하시겠습니까?", "Common.Views.Chat.textSend": "보내기", + "Common.Views.Comments.mniAuthorAsc": "A에서 Z까지 작성자", + "Common.Views.Comments.mniAuthorDesc": "Z에서 A까지 작성자", + "Common.Views.Comments.mniDateAsc": "가장 오래된", + "Common.Views.Comments.mniDateDesc": "최신", + "Common.Views.Comments.mniPositionAsc": "위에서 부터", + "Common.Views.Comments.mniPositionDesc": "아래로 부터", "Common.Views.Comments.textAdd": "추가", "Common.Views.Comments.textAddComment": "덧글 추가", "Common.Views.Comments.textAddCommentToDoc": "문서에 설명 추가", @@ -55,6 +138,7 @@ "Common.Views.Comments.textAnonym": "손님", "Common.Views.Comments.textCancel": "취소", "Common.Views.Comments.textClose": "닫기", + "Common.Views.Comments.textClosePanel": "코멘트 닫기", "Common.Views.Comments.textComments": "Comments", "Common.Views.Comments.textEdit": "OK", "Common.Views.Comments.textEnterCommentHint": "여기에 의견을 입력하십시오", @@ -63,6 +147,7 @@ "Common.Views.Comments.textReply": "Reply", "Common.Views.Comments.textResolve": "해결", "Common.Views.Comments.textResolved": "해결됨", + "Common.Views.Comments.textSort": "코멘트 분류", "Common.Views.CopyWarningDialog.textDontShow": "이 메시지를 다시 표시하지 않음", "Common.Views.CopyWarningDialog.textMsg": "편집기 도구 모음 단추 및 컨텍스트 메뉴 작업을 사용하여 복사, 잘라 내기 및 붙여 넣기 작업은이 편집기 탭 내에서만 수행됩니다.

외부 응용 프로그램으로 복사하거나 붙여 넣으려면 편집기 탭은 다음과 같은 키보드 조합을 사용합니다 : ", "Common.Views.CopyWarningDialog.textTitle": "작업 복사, 잘라 내기 및 붙여 넣기", @@ -74,17 +159,20 @@ "Common.Views.ExternalDiagramEditor.textClose": "닫기", "Common.Views.ExternalDiagramEditor.textSave": "저장 및 종료", "Common.Views.ExternalDiagramEditor.textTitle": "차트 편집기", - "Common.Views.Header.labelCoUsersDescr": "문서는 현재 여러 사용자가 편집하고 있습니다.", + "Common.Views.Header.labelCoUsersDescr": "파일을 편집 중인 사용자:", + "Common.Views.Header.textAddFavorite": "즐겨찾기에 추가", "Common.Views.Header.textAdvSettings": "고급 설정", - "Common.Views.Header.textBack": "문서로 이동", + "Common.Views.Header.textBack": "파일 위치 열기", "Common.Views.Header.textCompactView": "보기 컴팩트 도구 모음", "Common.Views.Header.textHideLines": "눈금자 숨기기", + "Common.Views.Header.textHideNotes": "메모 숨기기", "Common.Views.Header.textHideStatusBar": "상태 표시 줄 숨기기", + "Common.Views.Header.textRemoveFavorite": "즐겨찾기에서 제거", "Common.Views.Header.textSaveBegin": "저장 중 ...", "Common.Views.Header.textSaveChanged": "수정된", "Common.Views.Header.textSaveEnd": "모든 변경 사항이 저장되었습니다", "Common.Views.Header.textSaveExpander": "모든 변경 사항이 저장되었습니다", - "Common.Views.Header.textZoom": "확대 / 축소", + "Common.Views.Header.textZoom": "확대/축소", "Common.Views.Header.tipAccessRights": "문서 액세스 권한 관리", "Common.Views.Header.tipDownload": "파일을 다운로드", "Common.Views.Header.tipGoEdit": "현재 파일 편집", @@ -92,10 +180,18 @@ "Common.Views.Header.tipRedo": "다시 실행", "Common.Views.Header.tipSave": "저장", "Common.Views.Header.tipUndo": "실행 취소", + "Common.Views.Header.tipUndock": "별도 창으로 이동", "Common.Views.Header.tipViewSettings": "보기 설정", "Common.Views.Header.tipViewUsers": "사용자보기 및 문서 액세스 권한 관리", "Common.Views.Header.txtAccessRights": "액세스 권한 변경", "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": "ver. ", "Common.Views.ImageFromUrlDialog.textUrl": "이미지 URL 붙여 넣기 :", "Common.Views.ImageFromUrlDialog.txtEmpty": "이 입력란은 필수 항목", "Common.Views.ImageFromUrlDialog.txtNotUrl": "이 필드는 \"http://www.example.com\"형식의 URL이어야합니다.", @@ -107,11 +203,25 @@ "Common.Views.InsertTableDialog.txtTitle": "표 크기", "Common.Views.InsertTableDialog.txtTitleSplit": "셀 분할", "Common.Views.LanguageDialog.labelSelect": "문서 언어 선택", + "Common.Views.ListSettingsDialog.textBulleted": "글머리 기호", + "Common.Views.ListSettingsDialog.textNumbering": "매겨진 번호", + "Common.Views.ListSettingsDialog.tipChange": "글 머리 기호 변경", + "Common.Views.ListSettingsDialog.txtBullet": "글머리 기호", + "Common.Views.ListSettingsDialog.txtColor": "색상", + "Common.Views.ListSettingsDialog.txtNewBullet": "새로운 글머리 기호", + "Common.Views.ListSettingsDialog.txtNone": "없음", + "Common.Views.ListSettingsDialog.txtOfText": "전체의 %", + "Common.Views.ListSettingsDialog.txtSize": "크기", + "Common.Views.ListSettingsDialog.txtStart": "시작", + "Common.Views.ListSettingsDialog.txtSymbol": "기호", + "Common.Views.ListSettingsDialog.txtTitle": "목록설정", + "Common.Views.ListSettingsDialog.txtType": "유형", "Common.Views.OpenDialog.closeButtonText": "파일 닫기", "Common.Views.OpenDialog.txtEncoding": "인코딩", "Common.Views.OpenDialog.txtIncorrectPwd": "비밀번호가 맞지 않음", "Common.Views.OpenDialog.txtOpenFile": "파일을 열려면 암호를 입력하십시오.", "Common.Views.OpenDialog.txtPassword": "비밀번호", + "Common.Views.OpenDialog.txtProtected": "암호를 입력하고 파일을 열면 파일의 현재 암호가 재설정됩니다.", "Common.Views.OpenDialog.txtTitle": "% 1 옵션 선택", "Common.Views.OpenDialog.txtTitleProtected": "보호 된 파일", "Common.Views.PasswordDialog.txtDescription": "문서 보호용 비밀번호를 세팅하세요", @@ -135,7 +245,7 @@ "Common.Views.Protection.txtEncrypt": "암호화", "Common.Views.Protection.txtInvisibleSignature": "디지털 서명을 추가", "Common.Views.Protection.txtSignature": "서명", - "Common.Views.Protection.txtSignatureLine": "서명 라인", + "Common.Views.Protection.txtSignatureLine": "서명란 추가", "Common.Views.RenameDialog.textName": "파일 이름", "Common.Views.RenameDialog.txtInvalidName": "파일 이름에 다음 문자를 포함 할 수 없습니다 :", "Common.Views.ReviewChanges.hintNext": "다음 변경 사항", @@ -146,6 +256,10 @@ "Common.Views.ReviewChanges.strStrictDesc": "귀하와 다른 사람이 변경사항을 동기화 하려면 '저장'버튼을 사용하세요.", "Common.Views.ReviewChanges.tipAcceptCurrent": "현재 변경 내용 적용", "Common.Views.ReviewChanges.tipCoAuthMode": "협력 편집 모드 세팅", + "Common.Views.ReviewChanges.tipCommentRem": "코멘트 삭제", + "Common.Views.ReviewChanges.tipCommentRemCurrent": "현재 코멘트 삭제", + "Common.Views.ReviewChanges.tipCommentResolve": "코멘트를 해결된 것으로 표시", + "Common.Views.ReviewChanges.tipCommentResolveCurrent": "현 코멘트를 해결된 것으로 표시", "Common.Views.ReviewChanges.tipHistory": "버전 표시", "Common.Views.ReviewChanges.tipRejectCurrent": "현재 변경 거부", "Common.Views.ReviewChanges.tipReview": "변경 내역 추적", @@ -160,6 +274,16 @@ "Common.Views.ReviewChanges.txtChat": "채팅", "Common.Views.ReviewChanges.txtClose": "완료", "Common.Views.ReviewChanges.txtCoAuthMode": "공동 편집 모드", + "Common.Views.ReviewChanges.txtCommentRemAll": "모든 코멘트 삭제", + "Common.Views.ReviewChanges.txtCommentRemCurrent": "현재 코멘트 삭제", + "Common.Views.ReviewChanges.txtCommentRemMy": "내 코멘트 삭제", + "Common.Views.ReviewChanges.txtCommentRemMyCurrent": "내 현재 댓글 삭제", + "Common.Views.ReviewChanges.txtCommentRemove": "삭제", + "Common.Views.ReviewChanges.txtCommentResolve": "해결", + "Common.Views.ReviewChanges.txtCommentResolveAll": "모든 코멘트를 해결된 것으로 표시", + "Common.Views.ReviewChanges.txtCommentResolveCurrent": "현 코멘트를 해결된 것으로 표시", + "Common.Views.ReviewChanges.txtCommentResolveMy": "내 코멘트를 해결된 것을 표시", + "Common.Views.ReviewChanges.txtCommentResolveMyCurrent": "내 코멘트를 해결된 것으로 표시", "Common.Views.ReviewChanges.txtDocLang": "언어", "Common.Views.ReviewChanges.txtFinal": "모든 변경 접수됨 (미리보기)", "Common.Views.ReviewChanges.txtFinalCap": "최종", @@ -178,11 +302,26 @@ "Common.Views.ReviewChanges.txtSpelling": "맞춤법 검사", "Common.Views.ReviewChanges.txtTurnon": "변경 내역 추적", "Common.Views.ReviewChanges.txtView": "디스플레이 모드", + "Common.Views.ReviewPopover.textAdd": "추가", + "Common.Views.ReviewPopover.textAddReply": "댓글추가", + "Common.Views.ReviewPopover.textCancel": "취소", + "Common.Views.ReviewPopover.textClose": "닫기", + "Common.Views.ReviewPopover.textEdit": "확인", + "Common.Views.ReviewPopover.textMention": "+이 내용은 이 문서에 접근시 이메일을 통해 전달됩니다.", + "Common.Views.ReviewPopover.textMentionNotify": "+이 내용은 사용자에게 이메일을 통해서 알려집니다.", + "Common.Views.ReviewPopover.textOpenAgain": "다시 열기", + "Common.Views.ReviewPopover.textReply": "댓글", + "Common.Views.ReviewPopover.textResolve": "해결", + "Common.Views.SaveAsDlg.textLoading": "로드 중", + "Common.Views.SaveAsDlg.textTitle": "저장 폴더", + "Common.Views.SelectFileDlg.textLoading": "로드 중", + "Common.Views.SelectFileDlg.textTitle": "데이터 소스 선택", "Common.Views.SignDialog.textBold": "볼드체", "Common.Views.SignDialog.textCertificate": "인증", "Common.Views.SignDialog.textChange": "변경", "Common.Views.SignDialog.textInputName": "서명자 성함을 입력하세요", "Common.Views.SignDialog.textItalic": "이탤릭", + "Common.Views.SignDialog.textNameError": "서명자의 이름은 비워둘 수 없습니다.", "Common.Views.SignDialog.textPurpose": "이 문서에 서명하는 목적", "Common.Views.SignDialog.textSelect": "선택", "Common.Views.SignDialog.textSelectImage": "이미지 선택", @@ -201,10 +340,45 @@ "Common.Views.SignSettingsDialog.textShowDate": "서명라인에 서명 날짜를 보여주세요", "Common.Views.SignSettingsDialog.textTitle": "서명 셋업", "Common.Views.SignSettingsDialog.txtEmpty": "이 입력란은 필수 항목", + "Common.Views.SymbolTableDialog.textCharacter": "문자", "Common.Views.SymbolTableDialog.textCode": "유니코드 HEX 값", + "Common.Views.SymbolTableDialog.textCopyright": "저작권 표시", + "Common.Views.SymbolTableDialog.textDCQuote": "큰 따옴표 닫기", + "Common.Views.SymbolTableDialog.textDOQuote": "二重の引用符(左)", + "Common.Views.SymbolTableDialog.textEllipsis": "수평 타원", + "Common.Views.SymbolTableDialog.textEmDash": "Em 대시", + "Common.Views.SymbolTableDialog.textEmSpace": "Em 공백", + "Common.Views.SymbolTableDialog.textEnDash": "En 대시", + "Common.Views.SymbolTableDialog.textEnSpace": "En 공백", + "Common.Views.SymbolTableDialog.textFont": "글꼴", + "Common.Views.SymbolTableDialog.textNBHyphen": "줄 바꿈없는 하이픈", + "Common.Views.SymbolTableDialog.textNBSpace": "줄 바꿈 없는 공백", + "Common.Views.SymbolTableDialog.textPilcrow": "단락기호", + "Common.Views.SymbolTableDialog.textQEmSpace": "1/4 칸", + "Common.Views.SymbolTableDialog.textRange": "범위", + "Common.Views.SymbolTableDialog.textRecent": "최근 사용한 기호", + "Common.Views.SymbolTableDialog.textRegistered": "등록된 서명", + "Common.Views.SymbolTableDialog.textSCQuote": "작은 따옴표 닫기", + "Common.Views.SymbolTableDialog.textSection": "섹션 기호", + "Common.Views.SymbolTableDialog.textShortcut": "단축키", + "Common.Views.SymbolTableDialog.textSHyphen": "소프트 하이픈", + "Common.Views.SymbolTableDialog.textSOQuote": "작은 따옴표 (왼쪽)", + "Common.Views.SymbolTableDialog.textSpecial": "특수 문자", + "Common.Views.SymbolTableDialog.textSymbols": "기호", + "Common.Views.SymbolTableDialog.textTitle": "기호", + "Common.Views.SymbolTableDialog.textTradeMark": "로고기호", + "Common.Views.UserNameDialog.textDontShow": "다시 표시하지 않음", + "Common.Views.UserNameDialog.textLabel": "라벨:", + "Common.Views.UserNameDialog.textLabelError": "라벨은 비워 둘 수 없습니다.", + "PE.Controllers.LeftMenu.leavePageText": "이 문서에 저장되지 않은 모든 변경 사항이 손실됩니다.
\"취소\"를 클릭한 다음 \"저장\"을 클릭하여 저장하십시오. 저장되지 않은 모든 변경 사항을 취소하려면 \"확인\"을 클릭하십시오.", "PE.Controllers.LeftMenu.newDocumentTitle": "명명되지 않은 프레젠테이션", + "PE.Controllers.LeftMenu.notcriticalErrorTitle": "경고", "PE.Controllers.LeftMenu.requestEditRightsText": "편집 권한 요청 중 ...", + "PE.Controllers.LeftMenu.textLoadHistory": "버전 기록로드 중 ...", "PE.Controllers.LeftMenu.textNoTextFound": "검색 한 데이터를 찾을 수 없습니다. 검색 옵션을 조정하십시오.", + "PE.Controllers.LeftMenu.textReplaceSkipped": "대체가 이루어졌습니다. {0} 건은 건너 뛰었습니다.", + "PE.Controllers.LeftMenu.textReplaceSuccess": "검색이 완료되었습니다. {0} 횟수가 대체되었습니다. ", + "PE.Controllers.LeftMenu.txtUntitled": "제목없음", "PE.Controllers.Main.applyChangesTextText": "데이터로드 중 ...", "PE.Controllers.Main.applyChangesTitleText": "데이터로드 중", "PE.Controllers.Main.convertationTimeoutText": "전환 시간 초과를 초과했습니다.", @@ -216,27 +390,37 @@ "PE.Controllers.Main.errorAccessDeny": "권한이없는 작업을 수행하려고합니다.
Document Server 관리자에게 문의하십시오.", "PE.Controllers.Main.errorBadImageUrl": "이미지 URL이 잘못되었습니다.", "PE.Controllers.Main.errorCoAuthoringDisconnect": "서버 연결이 끊어졌습니다. 지금 문서를 편집 할 수 없습니다.", + "PE.Controllers.Main.errorComboSeries": "혼합형 차트를 만들려면 최소 2 개의 데이터를 선택합니다.", "PE.Controllers.Main.errorConnectToServer": "문서를 저장할 수 없습니다. 연결 설정을 확인하거나 관리자에게 문의하십시오.
'확인'버튼을 클릭하면 문서를 다운로드하라는 메시지가 나타납니다.", "PE.Controllers.Main.errorDatabaseConnection": "외부 오류입니다.
데이터베이스 연결 오류입니다. 오류가 계속 발생하면 지원 담당자에게 문의하십시오.", - "PE.Controllers.Main.errorDataRange": "잘못된 데이터 범위입니다.", + "PE.Controllers.Main.errorDataEncrypted": "암호화 변경 사항이 수신되었으며 해독할 수 없습니다.", + "PE.Controllers.Main.errorDataRange": "잘못된 참조 대상 입니다.", "PE.Controllers.Main.errorDefaultMessage": "오류 코드 : % 1", + "PE.Controllers.Main.errorEditingDownloadas": " 문서 작업 중에 알수 없는 장애가 발생했습니다.
\"다른 이름으로 다운로드...\"를 선택하여 파일을 현재 사용 중인 컴퓨터 하드 디스크에 저장하시기 바랍니다.", + "PE.Controllers.Main.errorEditingSaveas": " 문서 작업 중에 알수 없는 장애가 발생하였습니다.
\"다른 이름으로 저장...\"을 선택하여 현재 사용 중인 컴퓨터의 하드 디스크에 저장하시기 바랍니다.", + "PE.Controllers.Main.errorEmailClient": "이메일 클라이언트를 찾을 수 없습니다.", "PE.Controllers.Main.errorFilePassProtect": "문서가 암호로 보호되어 있습니다.", + "PE.Controllers.Main.errorFileSizeExceed": "파일의 크기가 서버에서 정해진 범위를 초과 했습니다. 문서 서버 관리자에게 해당 내용에 대한 자세한 안내를 받아 보시기 바랍니다.", "PE.Controllers.Main.errorForceSave": "파일 저장중 문제 발생됨. 컴퓨터 하드 드라이브에 파일을 저장하려면 '로 다운로드' 옵션을 사용 또는 나중에 다시 시도하세요.", "PE.Controllers.Main.errorKeyEncrypt": "알 수없는 키 설명자", "PE.Controllers.Main.errorKeyExpire": "키 설명자가 만료되었습니다", + "PE.Controllers.Main.errorLoadingFont": "글꼴이 로드되지 않았습니다.
문서 관리 관리자에게 문의하십시오.", "PE.Controllers.Main.errorProcessSaveResult": "저장하지 못했습니다.", "PE.Controllers.Main.errorServerVersion": "에디터 버전이 업데이트되었습니다. 페이지가 다시로드되어 변경 사항이 적용됩니다.", "PE.Controllers.Main.errorSessionAbsolute": "문서 편집 세션이 만료되었습니다. 페이지를 새로 고침하십시오.", "PE.Controllers.Main.errorSessionIdle": "문서가 오랫동안 편집되지 않았습니다. 페이지를 새로 고침하십시오.", "PE.Controllers.Main.errorSessionToken": "서버 연결이 중단되었습니다. 페이지를 새로 고침하십시오.", + "PE.Controllers.Main.errorSetPassword": "비밀번호를 재설정할 수 없습니다.", "PE.Controllers.Main.errorStockChart": "잘못된 행 순서. 주식형 차트를 작성하려면 시트에 데이터를 다음과 같은 순서로 배치하십시오 :
개시 가격, 최대 가격, 최소 가격, 마감 가격.", "PE.Controllers.Main.errorToken": "문서 보안 토큰이 올바르게 구성되지 않았습니다.
Document Server 관리자에게 문의하십시오.", "PE.Controllers.Main.errorTokenExpire": "문서 보안 토큰이 만료되었습니다.
Document Server 관리자에게 문의하십시오.", "PE.Controllers.Main.errorUpdateVersion": "파일 버전이 변경되었습니다. 페이지가 다시로드됩니다.", + "PE.Controllers.Main.errorUpdateVersionOnDisconnect": "네트워크 연결이 복원되었으며 파일 버전이 변경되었습니다.
계속 작업하기 전에 데이터 손실을 방지하기 위해 파일을 다운로드하거나 내용을 복사한 다음 이 페이지를 새로 고쳐야 합니다.", "PE.Controllers.Main.errorUserDrop": "파일에 지금 액세스 할 수 없습니다.", "PE.Controllers.Main.errorUsersExceed": "가격 책정 계획에서 허용 한 사용자 수가 초과되었습니다.", "PE.Controllers.Main.errorViewerDisconnect": "연결이 끊어졌습니다. 문서를 볼 수는

하지만 연결이 복원 될 때까지 다운로드하거나 인쇄 할 수 없습니다.", "PE.Controllers.Main.leavePageText": "이 프레젠테이션에서 변경 사항을 저장하지 않았습니다.이 페이지에 머물러서 \"저장 \"을 클릭하여 저장하십시오. \"이 페이지를 남겨두기 \"를 클릭하여 모두 버리십시오. 저장되지 않은 변경 사항. ", + "PE.Controllers.Main.leavePageTextOnClose": "이 문서에 저장되지 않은 모든 변경 사항이 손실됩니다.
\"취소\"를 클릭한 다음 \"저장\"을 클릭하여 저장하십시오. 저장되지 않은 모든 변경 사항을 취소하려면 \"확인\"을 클릭하십시오.", "PE.Controllers.Main.loadFontsTextText": "데이터로드 중 ...", "PE.Controllers.Main.loadFontsTitleText": "데이터로드 중", "PE.Controllers.Main.loadFontTextText": "데이터로드 중 ...", @@ -250,7 +434,7 @@ "PE.Controllers.Main.loadThemeTextText": "테마로드 중 ...", "PE.Controllers.Main.loadThemeTitleText": "테마로드 중", "PE.Controllers.Main.notcriticalErrorTitle": "경고", - "PE.Controllers.Main.openErrorText": "파일을 여는 동안 오류가 발생했습니다.", + "PE.Controllers.Main.openErrorText": "파일을 여는 동안 오류가 발생했습니다", "PE.Controllers.Main.openTextText": "프레젠테이션 열기 ...", "PE.Controllers.Main.openTitleText": "프레젠테이션 열기", "PE.Controllers.Main.printTextText": "프레젠테이션 인쇄 중 ...", @@ -259,23 +443,39 @@ "PE.Controllers.Main.requestEditFailedMessageText": "누군가이 프레젠테이션을 지금 편집 중입니다. 나중에 다시 시도하십시오.", "PE.Controllers.Main.requestEditFailedTitleText": "액세스가 거부되었습니다", "PE.Controllers.Main.saveErrorText": "파일을 저장하는 동안 오류가 발생했습니다.", + "PE.Controllers.Main.saveErrorTextDesktop": "이 파일을 저장하거나 생성할 수 없습니다.
가능한 이유는 다음과 같습니다.
1. 파일이 읽기 전용입니다.
2. 다른 사용자가 파일을 편집 중입니다.
3. 디스크가 가득 찼거나 손상되었습니다.", "PE.Controllers.Main.savePreparingText": "저장 준비 중", "PE.Controllers.Main.savePreparingTitle": "저장 준비 중입니다. 잠시 기다려주십시오 ...", "PE.Controllers.Main.saveTextText": "프레젠테이션 저장 중 ...", "PE.Controllers.Main.saveTitleText": "프리젠 테이션 저장 중", + "PE.Controllers.Main.scriptLoadError": "연결 속도가 느려, 일부 요소들이 로드되지 않았습니다. 페이지를 다시 새로 고침해주세요.", "PE.Controllers.Main.splitDividerErrorText": "행 수는 % 1의 제수이어야합니다.", "PE.Controllers.Main.splitMaxColsErrorText": "열 수가 % 1보다 작아야합니다.", "PE.Controllers.Main.splitMaxRowsErrorText": "행 수는 % 1보다 적어야합니다.", "PE.Controllers.Main.textAnonymous": "익명", + "PE.Controllers.Main.textApplyAll": "모든 방정식에 적용", "PE.Controllers.Main.textBuyNow": "웹 사이트 방문", "PE.Controllers.Main.textChangesSaved": "모든 변경 사항이 저장되었습니다", + "PE.Controllers.Main.textClose": "닫기", "PE.Controllers.Main.textCloseTip": "도움말을 닫으려면 클릭하십시오", "PE.Controllers.Main.textContactUs": "영업 담당자에게 문의", + "PE.Controllers.Main.textConvertEquation": "방정식은 더 이상 지원되지 않는 이전 버전의 방정식 편집기를 사용하여 생성되었습니다. 편집하려면 수식을 Office Math ML 형식으로 변환하세요.
지금 변환하시겠습니까?", + "PE.Controllers.Main.textCustomLoader": "라이센스 조건에 따라 교체할 권한이 없습니다.
견적은 당사 영업부에 문의해 주십시오.", + "PE.Controllers.Main.textDisconnect": "네트워크 연결 끊김", + "PE.Controllers.Main.textGuest": "게스트", + "PE.Controllers.Main.textHasMacros": "파일에 자동 매크로가 포함되어 있습니다.
매크로를 실행 하시겠습니까?", + "PE.Controllers.Main.textLearnMore": "자세히", "PE.Controllers.Main.textLoadingDocument": "프레젠테이션로드 중", - "PE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE 연결 제한", - "PE.Controllers.Main.textShape": "Shape", + "PE.Controllers.Main.textLongName": "128자 미만의 이름을 입력하세요.", + "PE.Controllers.Main.textNoLicenseTitle": "라이센스 수를 제한했습니다.", + "PE.Controllers.Main.textPaidFeature": "유료기능", + "PE.Controllers.Main.textRemember": "모든 파일에 대한 선택 사항을 기억하기", + "PE.Controllers.Main.textRenameError": "사용자 이름은 비워둘 수 없습니다.", + "PE.Controllers.Main.textRenameLabel": "협업에 사용할 이름을 입력합니다", + "PE.Controllers.Main.textShape": "도형", "PE.Controllers.Main.textStrict": "엄격 모드", "PE.Controllers.Main.textTryUndoRedo": "빠른 편집 편집 모드에서는 실행 취소 / 다시 실행 기능이 비활성화됩니다.
\"엄격 모드 \"버튼을 클릭하면 Strict 동시 편집 모드로 전환되어 파일을 편집 할 수 있습니다. 다른 사용자가 방해를해서 저장 한 후에 만 ​​변경 사항을 보내십시오. 편집자 고급 설정을 사용하여 공동 편집 모드간에 전환 할 수 있습니다. ", + "PE.Controllers.Main.textTryUndoRedoWarn": "빠른 공동 편집 모드에서 실행 취소 / 다시 실행 기능을 사용할 수 없습니다.", "PE.Controllers.Main.titleLicenseExp": "라이센스 만료", "PE.Controllers.Main.titleServerVersion": "편집기가 업데이트되었습니다", "PE.Controllers.Main.txtAddFirstSlide": "첫번째 슬라이드를 추가하려면 클릭", @@ -283,31 +483,198 @@ "PE.Controllers.Main.txtArt": "여기에 귀하의 텍스트", "PE.Controllers.Main.txtBasicShapes": "기본 도형", "PE.Controllers.Main.txtButtons": "버튼", - "PE.Controllers.Main.txtCallouts": "콜 아웃", + "PE.Controllers.Main.txtCallouts": "설명선", "PE.Controllers.Main.txtCharts": "차트", "PE.Controllers.Main.txtClipArt": "클립 아트", "PE.Controllers.Main.txtDateTime": "날짜 및 시간", "PE.Controllers.Main.txtDiagram": "SmartArt", "PE.Controllers.Main.txtDiagramTitle": "차트 제목", "PE.Controllers.Main.txtEditingMode": "편집 모드 설정 ...", + "PE.Controllers.Main.txtErrorLoadHistory": "이력을 로드하지 못했습니다.", "PE.Controllers.Main.txtFiguredArrows": "블록 화살표", "PE.Controllers.Main.txtFooter": "Footer", "PE.Controllers.Main.txtHeader": "머리글", "PE.Controllers.Main.txtImage": "이미지", - "PE.Controllers.Main.txtLines": "Lines", + "PE.Controllers.Main.txtLines": "선형 테마", "PE.Controllers.Main.txtLoading": "로딩중...", "PE.Controllers.Main.txtMath": "수학", "PE.Controllers.Main.txtMedia": "Media", "PE.Controllers.Main.txtNeedSynchronize": "업데이트가 있습니다.", + "PE.Controllers.Main.txtNone": "없음", "PE.Controllers.Main.txtPicture": "그림", "PE.Controllers.Main.txtRectangles": "직사각형", "PE.Controllers.Main.txtSeries": "Series", + "PE.Controllers.Main.txtShape_accentBorderCallout1": "설명선 1 (테두리 강조)", + "PE.Controllers.Main.txtShape_accentBorderCallout2": "설명선 2 (테두리 강조)", + "PE.Controllers.Main.txtShape_accentBorderCallout3": "설명선 3 (테두리 강조)", + "PE.Controllers.Main.txtShape_accentCallout1": "설명선 1 (강조선)", + "PE.Controllers.Main.txtShape_accentCallout2": "설명선 2 (강조선)", + "PE.Controllers.Main.txtShape_accentCallout3": "설명선 3 (강조선)", + "PE.Controllers.Main.txtShape_actionButtonBackPrevious": "되돌리기 또는 이전 버튼", + "PE.Controllers.Main.txtShape_actionButtonBeginning": "시작 버튼", + "PE.Controllers.Main.txtShape_actionButtonBlank": "공백 버튼", + "PE.Controllers.Main.txtShape_actionButtonDocument": "문서버튼", + "PE.Controllers.Main.txtShape_actionButtonEnd": "종료버튼", + "PE.Controllers.Main.txtShape_actionButtonForwardNext": "다음 버튼", + "PE.Controllers.Main.txtShape_actionButtonHelp": "도움말 버튼", + "PE.Controllers.Main.txtShape_actionButtonHome": "홈 버튼", + "PE.Controllers.Main.txtShape_actionButtonInformation": "상세정보 버튼", + "PE.Controllers.Main.txtShape_actionButtonMovie": "동영상 버튼", + "PE.Controllers.Main.txtShape_actionButtonReturn": "뒤로가기 버튼", + "PE.Controllers.Main.txtShape_actionButtonSound": "소리 버튼", + "PE.Controllers.Main.txtShape_arc": "원호", + "PE.Controllers.Main.txtShape_bentArrow": "화살표: 굽음", "PE.Controllers.Main.txtShape_bentConnector5": "연결선: 꺾임", "PE.Controllers.Main.txtShape_bentConnector5WithArrow": "연결선: 꺾인 화살표", "PE.Controllers.Main.txtShape_bentConnector5WithTwoArrows": "연결선: 꺾인 양쪽 화살표", + "PE.Controllers.Main.txtShape_bentUpArrow": "화살표: 위로 굽음", + "PE.Controllers.Main.txtShape_bevel": "액자", + "PE.Controllers.Main.txtShape_blockArc": "막힌 원호", + "PE.Controllers.Main.txtShape_borderCallout1": "설명선 1", + "PE.Controllers.Main.txtShape_borderCallout2": "설명선 2", + "PE.Controllers.Main.txtShape_borderCallout3": "설명선 3", + "PE.Controllers.Main.txtShape_bracePair": "양쪽 중괄호", + "PE.Controllers.Main.txtShape_callout1": "설명선 1 (테두리없음)", + "PE.Controllers.Main.txtShape_callout2": "설명선 2 (테두리없음)", + "PE.Controllers.Main.txtShape_callout3": "설명선 3 (테두리없음)", + "PE.Controllers.Main.txtShape_can": "원통형", + "PE.Controllers.Main.txtShape_chevron": "쉐브론", + "PE.Controllers.Main.txtShape_chord": "현", + "PE.Controllers.Main.txtShape_circularArrow": "화살표: 원형", + "PE.Controllers.Main.txtShape_cloud": "클라우드", + "PE.Controllers.Main.txtShape_cloudCallout": "생각풍선: 구름 모양", + "PE.Controllers.Main.txtShape_corner": "L도형", + "PE.Controllers.Main.txtShape_cube": "정육면체", "PE.Controllers.Main.txtShape_curvedConnector3": "연결선: 구부러짐", "PE.Controllers.Main.txtShape_curvedConnector3WithArrow": "연결선: 구부러진 화살표", "PE.Controllers.Main.txtShape_curvedConnector3WithTwoArrows": "연결선: 구부러진 양쪽 화살표", + "PE.Controllers.Main.txtShape_curvedDownArrow": "화살표: 아래로 구불어 짐", + "PE.Controllers.Main.txtShape_curvedLeftArrow": "화살표: 왼쪽으로 구불어 짐", + "PE.Controllers.Main.txtShape_curvedRightArrow": "화살표: 오른쪽으로 구불어 짐", + "PE.Controllers.Main.txtShape_curvedUpArrow": "화살표: 위로 구불어 짐", + "PE.Controllers.Main.txtShape_decagon": "십각형", + "PE.Controllers.Main.txtShape_diagStripe": "대각선 줄무늬", + "PE.Controllers.Main.txtShape_diamond": "다이아몬드", + "PE.Controllers.Main.txtShape_dodecagon": "십이각형", + "PE.Controllers.Main.txtShape_donut": "도넛", + "PE.Controllers.Main.txtShape_doubleWave": "이중 물결", + "PE.Controllers.Main.txtShape_downArrow": "화살표: 아래쪽", + "PE.Controllers.Main.txtShape_downArrowCallout": "설명선: 아래쪽 화살표", + "PE.Controllers.Main.txtShape_ellipse": "타원형", + "PE.Controllers.Main.txtShape_ellipseRibbon": "리본: 아래로 구불어지고 기울어짐 ", + "PE.Controllers.Main.txtShape_ellipseRibbon2": "리본: 위로 구불어지고 기울어짐 ", + "PE.Controllers.Main.txtShape_flowChartAlternateProcess": "순서도: 대체 프로세스", + "PE.Controllers.Main.txtShape_flowChartCollate": "순서도: 일치", + "PE.Controllers.Main.txtShape_flowChartConnector": "순서도: 연결 연산자", + "PE.Controllers.Main.txtShape_flowChartDecision": "순서도: 결정", + "PE.Controllers.Main.txtShape_flowChartDelay": "순서도: 지연", + "PE.Controllers.Main.txtShape_flowChartDisplay": "순서도: 표시", + "PE.Controllers.Main.txtShape_flowChartDocument": "순서도: 문서", + "PE.Controllers.Main.txtShape_flowChartExtract": "순서도: 추출", + "PE.Controllers.Main.txtShape_flowChartInputOutput": "순서도: 데이터", + "PE.Controllers.Main.txtShape_flowChartInternalStorage": "순서도: 내부 스토리지", + "PE.Controllers.Main.txtShape_flowChartMagneticDisk": "순서도: 디스크", + "PE.Controllers.Main.txtShape_flowChartMagneticDrum": "순서도: 스토리지에 직접 접근", + "PE.Controllers.Main.txtShape_flowChartMagneticTape": "순서도: 순차 접근 스토리지", + "PE.Controllers.Main.txtShape_flowChartManualInput": "순서도: 수동 입력", + "PE.Controllers.Main.txtShape_flowChartManualOperation": "순서도: 수동조작", + "PE.Controllers.Main.txtShape_flowChartMerge": "순서도: 병합", + "PE.Controllers.Main.txtShape_flowChartMultidocument": "순서도: 다중문서", + "PE.Controllers.Main.txtShape_flowChartOffpageConnector": "순서도: 페이지 외부 커넥터", + "PE.Controllers.Main.txtShape_flowChartOnlineStorage": "순서도: 저장된 데이터", + "PE.Controllers.Main.txtShape_flowChartOr": "순서도: 또는", + "PE.Controllers.Main.txtShape_flowChartPredefinedProcess": "순서도: 미리 정의된 흐름", + "PE.Controllers.Main.txtShape_flowChartPreparation": "순서도: 준비", + "PE.Controllers.Main.txtShape_flowChartProcess": "순서도: 프로세스", + "PE.Controllers.Main.txtShape_flowChartPunchedCard": "순서도: 카드", + "PE.Controllers.Main.txtShape_flowChartPunchedTape": "순서도: 천공된 종이 테이프", + "PE.Controllers.Main.txtShape_flowChartSort": "순서도: 정렬", + "PE.Controllers.Main.txtShape_flowChartSummingJunction": "순서도: 합계 노드", + "PE.Controllers.Main.txtShape_flowChartTerminator": "순서도: 종료", + "PE.Controllers.Main.txtShape_foldedCorner": "접힌 모서리", + "PE.Controllers.Main.txtShape_frame": "프레임", + "PE.Controllers.Main.txtShape_halfFrame": "1/2 액자", + "PE.Controllers.Main.txtShape_heart": "하트모양", + "PE.Controllers.Main.txtShape_heptagon": "칠각형", + "PE.Controllers.Main.txtShape_hexagon": "육각형", + "PE.Controllers.Main.txtShape_homePlate": "오각형", + "PE.Controllers.Main.txtShape_horizontalScroll": "두루마리 모양: 가로로 말림", + "PE.Controllers.Main.txtShape_irregularSeal1": "폭발: 8pt", + "PE.Controllers.Main.txtShape_irregularSeal2": "폭발: 14pt", + "PE.Controllers.Main.txtShape_leftArrow": "화살표: 왼쪽", + "PE.Controllers.Main.txtShape_leftArrowCallout": "설명선: 왼쪽 화살표", + "PE.Controllers.Main.txtShape_leftBrace": "왼쪽 중괄호", + "PE.Controllers.Main.txtShape_leftBracket": "왼쪽 대괄호", + "PE.Controllers.Main.txtShape_leftRightArrow": "선 화살표 : 양방향", + "PE.Controllers.Main.txtShape_leftRightArrowCallout": "설명선: 왼쪽 및 오른쪽 화살표", + "PE.Controllers.Main.txtShape_leftRightUpArrow": "화살표: 왼쪽/위쪽", + "PE.Controllers.Main.txtShape_leftUpArrow": "화살표: 왼쪽", + "PE.Controllers.Main.txtShape_lightningBolt": "번개", + "PE.Controllers.Main.txtShape_line": "선", + "PE.Controllers.Main.txtShape_lineWithArrow": "화살표", + "PE.Controllers.Main.txtShape_lineWithTwoArrows": "선 화살표: 양방향", + "PE.Controllers.Main.txtShape_mathDivide": "분할", + "PE.Controllers.Main.txtShape_mathEqual": "등호", + "PE.Controllers.Main.txtShape_mathMinus": "마이너스", + "PE.Controllers.Main.txtShape_mathMultiply": "곱셈", + "PE.Controllers.Main.txtShape_mathNotEqual": "부등호", + "PE.Controllers.Main.txtShape_mathPlus": "덧셈", + "PE.Controllers.Main.txtShape_moon": "달모양", + "PE.Controllers.Main.txtShape_noSmoking": "\"없음\" 기호", + "PE.Controllers.Main.txtShape_notchedRightArrow": "화살표: 오른쪽 톱니 모양", + "PE.Controllers.Main.txtShape_octagon": "팔각형", + "PE.Controllers.Main.txtShape_parallelogram": "평행 사변형", + "PE.Controllers.Main.txtShape_pentagon": "오각형", + "PE.Controllers.Main.txtShape_pie": "부분 원형", + "PE.Controllers.Main.txtShape_plaque": "배지", + "PE.Controllers.Main.txtShape_plus": "덧셈", + "PE.Controllers.Main.txtShape_polyline1": "자유형: 자유 곡선", + "PE.Controllers.Main.txtShape_polyline2": "자유형: 도형", + "PE.Controllers.Main.txtShape_quadArrow": "화살표: 왼쪽/오른쪽/위쪽/아래쪽", + "PE.Controllers.Main.txtShape_quadArrowCallout": "설명선: 왼쪽/오른쪽/위쪽/아래쪽", + "PE.Controllers.Main.txtShape_rect": "사각형", + "PE.Controllers.Main.txtShape_ribbon": "리본: 아래로 기울어짐", + "PE.Controllers.Main.txtShape_ribbon2": "리본: 위로 구불어짐", + "PE.Controllers.Main.txtShape_rightArrow": "화살표: 오른쪽", + "PE.Controllers.Main.txtShape_rightArrowCallout": "설명선: 오른쪽 화살표", + "PE.Controllers.Main.txtShape_rightBrace": "오른쪽 중괄호", + "PE.Controllers.Main.txtShape_rightBracket": "오른쪽 대괄호", + "PE.Controllers.Main.txtShape_round1Rect": "사각형: 둥근 한쪽 모서리", + "PE.Controllers.Main.txtShape_round2DiagRect": "사각형: 둥근 대각선 방향 모서리", + "PE.Controllers.Main.txtShape_round2SameRect": "사각형: 둥근 위쪽 모서리", + "PE.Controllers.Main.txtShape_roundRect": "사각형: 둥근 모서리", + "PE.Controllers.Main.txtShape_rtTriangle": "직각 삼각형", + "PE.Controllers.Main.txtShape_smileyFace": "웃는 얼굴", + "PE.Controllers.Main.txtShape_snip1Rect": "사각형: 잘린 한쪽 모서리", + "PE.Controllers.Main.txtShape_snip2DiagRect": "사각형: 잘린 대각선 방향 모서리", + "PE.Controllers.Main.txtShape_snip2SameRect": "사각형: 잘린 양쪽 모서리", + "PE.Controllers.Main.txtShape_snipRoundRect": "사각형: 한쪽은 둥글고 한쪽은 짤린 모서리", + "PE.Controllers.Main.txtShape_spline": "곡선", + "PE.Controllers.Main.txtShape_star10": "별: 꼭짓점 10개", + "PE.Controllers.Main.txtShape_star12": "별: 꼭짓점 12개", + "PE.Controllers.Main.txtShape_star16": "별: 꼭짓점 16개", + "PE.Controllers.Main.txtShape_star24": "별: 꼭짓점 24개", + "PE.Controllers.Main.txtShape_star32": "별: 꼭짓점 32개", + "PE.Controllers.Main.txtShape_star4": "별: 꼭짓점 4개", + "PE.Controllers.Main.txtShape_star5": "별: 꼭짓점 5개", + "PE.Controllers.Main.txtShape_star6": "별: 꼭짓점 6개", + "PE.Controllers.Main.txtShape_star7": "별: 꼭짓점 7개", + "PE.Controllers.Main.txtShape_star8": "별: 꼭짓점 8개", + "PE.Controllers.Main.txtShape_stripedRightArrow": "줄무늬 오른쪽 화살표", + "PE.Controllers.Main.txtShape_sun": "해모양", + "PE.Controllers.Main.txtShape_teardrop": "눈물 방울", + "PE.Controllers.Main.txtShape_textRect": "텍스트 상자", + "PE.Controllers.Main.txtShape_trapezoid": "사다리꼴", + "PE.Controllers.Main.txtShape_triangle": "삼각형", + "PE.Controllers.Main.txtShape_upArrow": "화살표: 위쪽", + "PE.Controllers.Main.txtShape_upArrowCallout": "설명선: 위쪽 화살표", + "PE.Controllers.Main.txtShape_upDownArrow": "화살표: 위쪽/아래쪽", + "PE.Controllers.Main.txtShape_uturnArrow": "화살표: U자형", + "PE.Controllers.Main.txtShape_verticalScroll": "두루마리 모양: 세로로 말림", + "PE.Controllers.Main.txtShape_wave": "물결", + "PE.Controllers.Main.txtShape_wedgeEllipseCallout": "말풍선: 타원형", + "PE.Controllers.Main.txtShape_wedgeRectCallout": "말풍선: 사각형", + "PE.Controllers.Main.txtShape_wedgeRoundRectCallout": "말풍선: 모서리가 둥근 사각형", "PE.Controllers.Main.txtSldLtTBlank": "공백", "PE.Controllers.Main.txtSldLtTChart": "차트", "PE.Controllers.Main.txtSldLtTChartAndTx": "차트 및 텍스트", @@ -324,7 +691,7 @@ "PE.Controllers.Main.txtSldLtTObjOverTx": "텍스트 위에 개체", "PE.Controllers.Main.txtSldLtTObjTx": "제목, 개체 및 캡션", "PE.Controllers.Main.txtSldLtTPicTx": "그림 및 캡션", - "PE.Controllers.Main.txtSldLtTSecHead": "섹션 헤더", + "PE.Controllers.Main.txtSldLtTSecHead": "구역 헤더", "PE.Controllers.Main.txtSldLtTTbl": "테이블", "PE.Controllers.Main.txtSldLtTTitle": "제목", "PE.Controllers.Main.txtSldLtTTitleOnly": "Title Only", @@ -348,28 +715,42 @@ "PE.Controllers.Main.txtSlideSubtitle": "슬라이드 부제목", "PE.Controllers.Main.txtSlideText": "슬라이드 텍스트", "PE.Controllers.Main.txtSlideTitle": "슬라이드 제목", - "PE.Controllers.Main.txtStarsRibbons": "별 & 리본", - "PE.Controllers.Main.txtTheme_blank": "공백", - "PE.Controllers.Main.txtTheme_classic": "클래식", + "PE.Controllers.Main.txtStarsRibbons": "별 및 현수막", + "PE.Controllers.Main.txtTheme_basic": "심플 테마", + "PE.Controllers.Main.txtTheme_blank": "일반", + "PE.Controllers.Main.txtTheme_classic": "클래식 테마", + "PE.Controllers.Main.txtTheme_corner": "L형 테마", + "PE.Controllers.Main.txtTheme_dotted": "점형 테마", "PE.Controllers.Main.txtTheme_green": "녹색", - "PE.Controllers.Main.txtTheme_lines": "선", - "PE.Controllers.Main.txtTheme_office": "사무실", + "PE.Controllers.Main.txtTheme_green_leaf": "녹차 테마", + "PE.Controllers.Main.txtTheme_lines": "선형 테마", + "PE.Controllers.Main.txtTheme_office": "사무실 테마", + "PE.Controllers.Main.txtTheme_office_theme": "Office 테마", + "PE.Controllers.Main.txtTheme_official": "업무적 테마", + "PE.Controllers.Main.txtTheme_pixel": "픽셀", + "PE.Controllers.Main.txtTheme_safari": "사파리 테마", + "PE.Controllers.Main.txtTheme_turtle": "거북이 테마", "PE.Controllers.Main.txtXAxis": "X 축", "PE.Controllers.Main.txtYAxis": "Y 축", "PE.Controllers.Main.unknownErrorText": "알 수없는 오류.", "PE.Controllers.Main.unsupportedBrowserErrorText": "사용중인 브라우저가 지원되지 않습니다.", "PE.Controllers.Main.uploadImageExtMessage": "알 수없는 이미지 형식입니다.", "PE.Controllers.Main.uploadImageFileCountMessage": "이미지가 업로드되지 않았습니다.", - "PE.Controllers.Main.uploadImageSizeMessage": "최대 이미지 크기 제한을 초과했습니다.", + "PE.Controllers.Main.uploadImageSizeMessage": "이미지 크기 제한을 초과했습니다.", "PE.Controllers.Main.uploadImageTextText": "이미지 업로드 중 ...", "PE.Controllers.Main.uploadImageTitleText": "이미지 업로드 중", + "PE.Controllers.Main.waitText": "잠시만 기다려주세요...", "PE.Controllers.Main.warnBrowserIE9": "응용 프로그램의 기능이 IE9에서 부족합니다. IE10 이상을 사용하십시오.", - "PE.Controllers.Main.warnBrowserZoom": "브라우저의 현재 확대 / 축소 설정이 완전히 지원되지 않습니다. Ctrl + 0을 눌러 기본 확대 / 축소로 재설정하십시오.", + "PE.Controllers.Main.warnBrowserZoom": "브라우저의 현재 확대/축소 설정이 완전히 지원되지 않습니다. Ctrl + 0을 눌러 기본 확대 / 축소로 재설정하십시오.", + "PE.Controllers.Main.warnLicenseExceeded": "귀하의 시스템은 동시에 연결을 편집하는 %1명의 편집자에게 도달했습니다. 이 문서는 보기 모드에서만 열 수 있습니다.
자세한 내용은 관리자에게 문의하십시오.", "PE.Controllers.Main.warnLicenseExp": "귀하의 라이센스가 만료되었습니다.
라이센스를 업데이트하고 페이지를 새로 고침하십시오.", + "PE.Controllers.Main.warnLicenseLimitedNoAccess": "라이센스가 만료되었습니다.
더 이상 파일을 수정할 수 있는 권한이 없습니다.
관리자에게 문의하세요.", + "PE.Controllers.Main.warnLicenseLimitedRenewed": "라이센스를 갱신해야합니다.
문서 편집 기능에 대한 액세스가 제한되어 있습니다.
전체 액세스 권한을 얻으려면 관리자에게 문의하십시오", + "PE.Controllers.Main.warnLicenseUsersExceeded": "편집자 사용자 한도인 %1명에 도달했습니다. 자세한 내용은 관리자에게 문의하십시오.", "PE.Controllers.Main.warnNoLicense": "이 버전의 %1 편집자는 문서 서버에 대한 동시 연결에 특정 제한 사항이 있습니다.
더 많은 정보가 필요하면 현재 라이센스를 업그레이드하거나 상업용 라이센스를 구입하십시오.", - "PE.Controllers.Main.warnNoLicenseUsers": "이 버전의 %1 편집자에게는 동시 사용자에게 특정 제한 사항이 있습니다.
더 필요한 것이 있으면 현재 라이센스를 업그레이드하거나 상업용 라이센스를 구입하십시오.", + "PE.Controllers.Main.warnNoLicenseUsers": "편집자 사용자 한도인 %1명에 도달했습니다. 개인 업그레이드 조건은 %1 영업 팀에 문의하십시오.", "PE.Controllers.Main.warnProcessRightsChange": "파일 편집 권한이 거부되었습니다.", - "PE.Controllers.Statusbar.zoomText": "확대 / 축소 {0} %", + "PE.Controllers.Statusbar.zoomText": "확대/축소 {0} %", "PE.Controllers.Toolbar.confirmAddFontName": "저장하려는 글꼴을 현재 장치에서 사용할 수 없습니다.
시스템 글꼴 중 하나를 사용하여 텍스트 스타일을 표시하고 저장된 글꼴을 사용하면 글꼴이 사용됩니다 사용할 수 있습니다.
계속 하시겠습니까? ", "PE.Controllers.Toolbar.textAccent": "Accents", "PE.Controllers.Toolbar.textBracket": "대괄호", @@ -377,6 +758,7 @@ "PE.Controllers.Toolbar.textFontSizeErr": "입력 한 값이 잘못되었습니다.
1에서 300 사이의 숫자 값을 입력하십시오.", "PE.Controllers.Toolbar.textFraction": "Fractions", "PE.Controllers.Toolbar.textFunction": "Functions", + "PE.Controllers.Toolbar.textInsert": "삽입", "PE.Controllers.Toolbar.textIntegral": "Integrals", "PE.Controllers.Toolbar.textLargeOperator": "Large Operators", "PE.Controllers.Toolbar.textLimitAndLog": "한계 및 로그 수", @@ -396,8 +778,8 @@ "PE.Controllers.Toolbar.txtAccent_BorderBox": "상자가있는 수식 (자리 표시 자 포함)", "PE.Controllers.Toolbar.txtAccent_BorderBoxCustom": "상자화 된 수식 (예)", "PE.Controllers.Toolbar.txtAccent_Check": "확인", - "PE.Controllers.Toolbar.txtAccent_CurveBracketBot": "Underbrace", - "PE.Controllers.Toolbar.txtAccent_CurveBracketTop": "Overbrace", + "PE.Controllers.Toolbar.txtAccent_CurveBracketBot": "아래쪽 중괄호", + "PE.Controllers.Toolbar.txtAccent_CurveBracketTop": "위쪽 중괄호", "PE.Controllers.Toolbar.txtAccent_Custom_1": "벡터 A", "PE.Controllers.Toolbar.txtAccent_Custom_2": "ABC with Overbar", "PE.Controllers.Toolbar.txtAccent_Custom_3": "x XOR y Overbar", @@ -573,7 +955,7 @@ "PE.Controllers.Toolbar.txtMatrix_3_3": "3x3 Empty Matrix", "PE.Controllers.Toolbar.txtMatrix_Dots_Baseline": "기준점", "PE.Controllers.Toolbar.txtMatrix_Dots_Center": "Midline Dots", - "PE.Controllers.Toolbar.txtMatrix_Dots_Diagonal": "Diagonal Dots", + "PE.Controllers.Toolbar.txtMatrix_Dots_Diagonal": "대각선 점", "PE.Controllers.Toolbar.txtMatrix_Dots_Vertical": "수직 점", "PE.Controllers.Toolbar.txtMatrix_Flat_Round": "스파 스 매트릭스", "PE.Controllers.Toolbar.txtMatrix_Flat_Square": "스파 스 매트릭스", @@ -636,7 +1018,7 @@ "PE.Controllers.Toolbar.txtSymbol_degree": "도", "PE.Controllers.Toolbar.txtSymbol_delta": "Delta", "PE.Controllers.Toolbar.txtSymbol_div": "Division Sign", - "PE.Controllers.Toolbar.txtSymbol_downarrow": "아래쪽 화살표", + "PE.Controllers.Toolbar.txtSymbol_downarrow": "화살표: 아래쪽", "PE.Controllers.Toolbar.txtSymbol_emptyset": "빈 세트", "PE.Controllers.Toolbar.txtSymbol_epsilon": "엡실론", "PE.Controllers.Toolbar.txtSymbol_equals": "Equal", @@ -656,7 +1038,7 @@ "PE.Controllers.Toolbar.txtSymbol_iota": "Iota", "PE.Controllers.Toolbar.txtSymbol_kappa": "Kappa", "PE.Controllers.Toolbar.txtSymbol_lambda": "Lambda", - "PE.Controllers.Toolbar.txtSymbol_leftarrow": "왼쪽 화살표", + "PE.Controllers.Toolbar.txtSymbol_leftarrow": "화살표: 왼쪽", "PE.Controllers.Toolbar.txtSymbol_leftrightarrow": "왼쪽 / 오른쪽 화살표", "PE.Controllers.Toolbar.txtSymbol_leq": "보다 작거나 같음", "PE.Controllers.Toolbar.txtSymbol_less": "Less Than", @@ -684,14 +1066,14 @@ "PE.Controllers.Toolbar.txtSymbol_qed": "End of Proof", "PE.Controllers.Toolbar.txtSymbol_rddots": "오른쪽 위 대각선 줄임표", "PE.Controllers.Toolbar.txtSymbol_rho": "Rho", - "PE.Controllers.Toolbar.txtSymbol_rightarrow": "오른쪽 화살표", + "PE.Controllers.Toolbar.txtSymbol_rightarrow": "화살표: 오른쪽", "PE.Controllers.Toolbar.txtSymbol_sigma": "Sigma", "PE.Controllers.Toolbar.txtSymbol_sqrt": "Radical Sign", "PE.Controllers.Toolbar.txtSymbol_tau": "Tau", "PE.Controllers.Toolbar.txtSymbol_therefore": "그러므로", "PE.Controllers.Toolbar.txtSymbol_theta": "Theta", "PE.Controllers.Toolbar.txtSymbol_times": "곱셈 기호", - "PE.Controllers.Toolbar.txtSymbol_uparrow": "위쪽 화살표", + "PE.Controllers.Toolbar.txtSymbol_uparrow": "화살표: 위쪽", "PE.Controllers.Toolbar.txtSymbol_upsilon": "Upsilon", "PE.Controllers.Toolbar.txtSymbol_varepsilon": "Epsilon Variant", "PE.Controllers.Toolbar.txtSymbol_varphi": "Phi Variant", @@ -714,13 +1096,20 @@ "PE.Views.ChartSettings.textWidth": "너비", "PE.Views.ChartSettingsAdvanced.textAlt": "대체 텍스트", "PE.Views.ChartSettingsAdvanced.textAltDescription": "설명", - "PE.Views.ChartSettingsAdvanced.textAltTip": "시력이나인지 장애가있는 사람들에게 읽을 수있는 시각적 객체 정보의 대체 텍스트 기반 표현으로 이미지에있는 정보를 더 잘 이해할 수 있도록 도와줍니다. 차트 또는 표. ", + "PE.Views.ChartSettingsAdvanced.textAltTip": "시각적 개체 정보의 교체는 텍스트 표현을 기반으로 하며 시각 또는 인지 장애가 있는 사람들이 이미지, 자동 모양, 차트 또는 표에 포함된 정보를 더 잘 이해할 수 있도록 읽어줍니다.", "PE.Views.ChartSettingsAdvanced.textAltTitle": "제목", "PE.Views.ChartSettingsAdvanced.textTitle": "차트 - 고급 설정", + "PE.Views.DateTimeDialog.confirmDefault": "{0} 기본 형식을 설정 : \"{1}\"", + "PE.Views.DateTimeDialog.textDefault": "기본값으로 설정", + "PE.Views.DateTimeDialog.textFormat": "형식", + "PE.Views.DateTimeDialog.textLang": "언어", + "PE.Views.DateTimeDialog.textUpdate": "자동 업데이트", + "PE.Views.DateTimeDialog.txtTitle": "날짜 및 시간", "PE.Views.DocumentHolder.aboveText": "위", "PE.Views.DocumentHolder.addCommentText": "주석 추가", + "PE.Views.DocumentHolder.addToLayoutText": "레이아웃추가", "PE.Views.DocumentHolder.advancedImageText": "이미지 고급 설정", - "PE.Views.DocumentHolder.advancedParagraphText": "텍스트 고급 설정", + "PE.Views.DocumentHolder.advancedParagraphText": "단락 고급 설정", "PE.Views.DocumentHolder.advancedShapeText": "모양 고급 설정", "PE.Views.DocumentHolder.advancedTableText": "표 고급 설정", "PE.Views.DocumentHolder.alignmentText": "정렬", @@ -753,9 +1142,10 @@ "PE.Views.DocumentHolder.leftText": "왼쪽", "PE.Views.DocumentHolder.loadSpellText": "로드 변형 ...", "PE.Views.DocumentHolder.mergeCellsText": "셀 병합", + "PE.Views.DocumentHolder.mniCustomTable": "사용자 정의 테이블 삽입", "PE.Views.DocumentHolder.moreText": "다양한 변형 ...", "PE.Views.DocumentHolder.noSpellVariantsText": "변형 없음", - "PE.Views.DocumentHolder.originalSizeText": "기본 크기", + "PE.Views.DocumentHolder.originalSizeText": "실제 크기", "PE.Views.DocumentHolder.removeHyperlinkText": "하이퍼 링크 제거", "PE.Views.DocumentHolder.rightText": "오른쪽", "PE.Views.DocumentHolder.rowText": "Row", @@ -764,20 +1154,29 @@ "PE.Views.DocumentHolder.splitCellsText": "셀 분할 ...", "PE.Views.DocumentHolder.splitCellTitleText": "셀 분할", "PE.Views.DocumentHolder.tableText": "테이블", - "PE.Views.DocumentHolder.textArrangeBack": "배경에 보내기", + "PE.Views.DocumentHolder.textArrangeBack": "맨 뒤로 보내기", "PE.Views.DocumentHolder.textArrangeBackward": "뒤로 이동", "PE.Views.DocumentHolder.textArrangeForward": "앞으로 이동", "PE.Views.DocumentHolder.textArrangeFront": "전경으로 가져 오기", "PE.Views.DocumentHolder.textCopy": "복사", + "PE.Views.DocumentHolder.textCrop": "자르기", + "PE.Views.DocumentHolder.textCropFill": "채우기", + "PE.Views.DocumentHolder.textCropFit": "맞춤", "PE.Views.DocumentHolder.textCut": "잘라 내기", "PE.Views.DocumentHolder.textDistributeCols": "컬럼 배포", "PE.Views.DocumentHolder.textDistributeRows": "행 배포", + "PE.Views.DocumentHolder.textFlipH": "좌우대칭", + "PE.Views.DocumentHolder.textFlipV": "상하대칭", "PE.Views.DocumentHolder.textFromFile": "파일로부터", + "PE.Views.DocumentHolder.textFromStorage": "스토리지로 부터", "PE.Views.DocumentHolder.textFromUrl": "URL로부터", "PE.Views.DocumentHolder.textNextPage": "다음 슬라이드", "PE.Views.DocumentHolder.textPaste": "붙여 넣기", "PE.Views.DocumentHolder.textPrevPage": "이전 슬라이드", "PE.Views.DocumentHolder.textReplace": "이미지 바꾸기", + "PE.Views.DocumentHolder.textRotate": "회전", + "PE.Views.DocumentHolder.textRotate270": "왼쪽으로 90도 회전", + "PE.Views.DocumentHolder.textRotate90": "오른쪽으로 90도 회전", "PE.Views.DocumentHolder.textShapeAlignBottom": "아래쪽 정렬", "PE.Views.DocumentHolder.textShapeAlignCenter": "가운데 맞춤", "PE.Views.DocumentHolder.textShapeAlignLeft": "왼쪽 정렬", @@ -787,6 +1186,7 @@ "PE.Views.DocumentHolder.textSlideSettings": "슬라이드 설정", "PE.Views.DocumentHolder.textUndo": "실행 취소", "PE.Views.DocumentHolder.tipIsLocked": "이 요소는 현재 다른 사용자가 편집하고 있습니다.", + "PE.Views.DocumentHolder.toDictionaryText": "사용자 정의 사전에 추가", "PE.Views.DocumentHolder.txtAddBottom": "아래쪽 테두리 추가", "PE.Views.DocumentHolder.txtAddFractionBar": "분수 막대 추가", "PE.Views.DocumentHolder.txtAddHor": "가로선 추가", @@ -854,8 +1254,9 @@ "PE.Views.DocumentHolder.txtPasteDestFormat": "목적 테마를 사용하기", "PE.Views.DocumentHolder.txtPastePicture": "그림", "PE.Views.DocumentHolder.txtPasteSourceFormat": "소스 포맷을 유지하세요", - "PE.Views.DocumentHolder.txtPressLink": "CTRL 키를 누른 상태에서 링크 클릭", + "PE.Views.DocumentHolder.txtPressLink": "Ctrl 키를 누르고 링크를 클릭합니다.", "PE.Views.DocumentHolder.txtPreview": "슬라이드 쇼 시작", + "PE.Views.DocumentHolder.txtPrintSelection": "선택 항목 인쇄", "PE.Views.DocumentHolder.txtRemFractionBar": "분수 막대 제거", "PE.Views.DocumentHolder.txtRemLimit": "제한 제거", "PE.Views.DocumentHolder.txtRemoveAccentChar": "액센트 문자 제거", @@ -863,6 +1264,7 @@ "PE.Views.DocumentHolder.txtRemScripts": "스크립트 제거", "PE.Views.DocumentHolder.txtRemSubscript": "아래 첨자 제거", "PE.Views.DocumentHolder.txtRemSuperscript": "위 첨자 제거", + "PE.Views.DocumentHolder.txtResetLayout": "슬라이드 재설정", "PE.Views.DocumentHolder.txtScriptsAfter": "텍스트 뒤의 스크립트", "PE.Views.DocumentHolder.txtScriptsBefore": "텍스트 앞의 스크립트", "PE.Views.DocumentHolder.txtSelectAll": "모두 선택", @@ -878,6 +1280,7 @@ "PE.Views.DocumentHolder.txtTop": "Top", "PE.Views.DocumentHolder.txtUnderbar": "텍스트 아래에 바", "PE.Views.DocumentHolder.txtUngroup": "그룹 해제", + "PE.Views.DocumentHolder.txtWarnUrl": "이 링크는 장치와 데이터에 손상을 줄 수 있습니다.
계속하시겠습니까?", "PE.Views.DocumentHolder.vertAlignText": "세로 맞춤", "PE.Views.DocumentPreview.goToSlideText": "슬라이드로 이동", "PE.Views.DocumentPreview.slideIndexText": "{1} 중 {0} 슬라이드", @@ -893,11 +1296,12 @@ "PE.Views.DocumentPreview.txtPrev": "이전 슬라이드", "PE.Views.DocumentPreview.txtReset": "재설정", "PE.Views.FileMenu.btnAboutCaption": "정보", - "PE.Views.FileMenu.btnBackCaption": "문서로 이동", + "PE.Views.FileMenu.btnBackCaption": "파일 위치 열기", "PE.Views.FileMenu.btnCloseMenuCaption": "메뉴 닫기", "PE.Views.FileMenu.btnCreateNewCaption": "새로 만들기", "PE.Views.FileMenu.btnDownloadCaption": "다운로드 방법 ...", "PE.Views.FileMenu.btnHelpCaption": "Help ...", + "PE.Views.FileMenu.btnHistoryCaption": "버전 기록", "PE.Views.FileMenu.btnInfoCaption": "프레젠테이션 정보 ...", "PE.Views.FileMenu.btnPrintCaption": "인쇄", "PE.Views.FileMenu.btnProtectCaption": "보호", @@ -907,13 +1311,27 @@ "PE.Views.FileMenu.btnRightsCaption": "액세스 권한 ...", "PE.Views.FileMenu.btnSaveAsCaption": "다른 이름으로 저장", "PE.Views.FileMenu.btnSaveCaption": "저장", + "PE.Views.FileMenu.btnSaveCopyAsCaption": "다른 이름으로 저장...", "PE.Views.FileMenu.btnSettingsCaption": "고급 설정 ...", "PE.Views.FileMenu.btnToEditCaption": "프리젠 테이션 편집", + "PE.Views.FileMenuPanels.CreateNew.txtBlank": "새 프리젠테이션", + "PE.Views.FileMenuPanels.CreateNew.txtCreateNew": "새로 만들기", + "PE.Views.FileMenuPanels.DocumentInfo.okButtonText": "적용", + "PE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "작성자추가", + "PE.Views.FileMenuPanels.DocumentInfo.txtAddText": "텍스트추가", + "PE.Views.FileMenuPanels.DocumentInfo.txtAppName": "어플리케이션", "PE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "작성자", "PE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "액세스 권한 변경", + "PE.Views.FileMenuPanels.DocumentInfo.txtComment": "코멘트", + "PE.Views.FileMenuPanels.DocumentInfo.txtCreated": "생성되었습니다", + "PE.Views.FileMenuPanels.DocumentInfo.txtModifyBy": "최종 편집자", + "PE.Views.FileMenuPanels.DocumentInfo.txtModifyDate": "최종 편집", + "PE.Views.FileMenuPanels.DocumentInfo.txtOwner": "소유자", "PE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "위치", "PE.Views.FileMenuPanels.DocumentInfo.txtRights": "권한이있는 사람", + "PE.Views.FileMenuPanels.DocumentInfo.txtSubject": "제목", "PE.Views.FileMenuPanels.DocumentInfo.txtTitle": "프레젠테이션 제목", + "PE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "업로드 되었습니다", "PE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "액세스 권한 변경", "PE.Views.FileMenuPanels.DocumentRights.txtRights": "권한이있는 사람", "PE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "경고", @@ -921,7 +1339,7 @@ "PE.Views.FileMenuPanels.ProtectDoc.strProtect": "프리젠테이션 보호", "PE.Views.FileMenuPanels.ProtectDoc.strSignature": "서명으로", "PE.Views.FileMenuPanels.ProtectDoc.txtEdit": "프리젠 테이션 편집", - "PE.Views.FileMenuPanels.ProtectDoc.txtEditWarning": "편집은 프리젠테이션에서 서명을 삭제할 것입니다.
계속하시겠습니까?", + "PE.Views.FileMenuPanels.ProtectDoc.txtEditWarning": "수정하면 프레젠테이션의 서명이 삭제됩니다.
계속하시겠습니까?", "PE.Views.FileMenuPanels.ProtectDoc.txtEncrypted": "이 프리젠테이션은 비밀번호로 보호되었슴.", "PE.Views.FileMenuPanels.ProtectDoc.txtSigned": "유효 서명자가 프리젠테이션에 추가되었슴. 이 프리젠테이션은 편집할 수 없도록 보호됨.", "PE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "프리젠테이션내 몇가지 디지털 서명이 유효하지 않거나 확인되지 않음. 이 프리젠테이션은 편집할 수 없도록 보호됨.", @@ -934,13 +1352,18 @@ "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "다른 사용자가 변경 사항을 한 번에 보게됩니다", "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "변경 사항을 적용하기 전에 변경 사항을 수락해야합니다", "PE.Views.FileMenuPanels.Settings.strFast": "Fast", - "PE.Views.FileMenuPanels.Settings.strForcesave": "항상 서버에 저장 (그렇지 않으면 문서에 서버에 저장)", + "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": "측정 단위", - "PE.Views.FileMenuPanels.Settings.strZoom": "기본 확대 / 축소 값", + "PE.Views.FileMenuPanels.Settings.strZoom": "기본 확대/축소 값", "PE.Views.FileMenuPanels.Settings.text10Minutes": "매 10 분마다", "PE.Views.FileMenuPanels.Settings.text30Minutes": "매 30 분마다", "PE.Views.FileMenuPanels.Settings.text5Minutes": "매 5 분마다", @@ -949,17 +1372,43 @@ "PE.Views.FileMenuPanels.Settings.textAutoRecover": "자동 복구", "PE.Views.FileMenuPanels.Settings.textAutoSave": "자동 저장", "PE.Views.FileMenuPanels.Settings.textDisabled": "사용 안 함", - "PE.Views.FileMenuPanels.Settings.textForceSave": "서버에 저장", + "PE.Views.FileMenuPanels.Settings.textForceSave": "모든 기록 버전을 서버에 저장", "PE.Views.FileMenuPanels.Settings.textMinute": "Every Minute", "PE.Views.FileMenuPanels.Settings.txtAll": "모두보기", + "PE.Views.FileMenuPanels.Settings.txtAutoCorrect": "자동 고침 옵션...", + "PE.Views.FileMenuPanels.Settings.txtCacheMode": "사전 설정 캐시 모드", "PE.Views.FileMenuPanels.Settings.txtCm": "센티미터", "PE.Views.FileMenuPanels.Settings.txtFitSlide": "Fit to Slide", "PE.Views.FileMenuPanels.Settings.txtFitWidth": "너비에 맞춤", "PE.Views.FileMenuPanels.Settings.txtInch": "인치", "PE.Views.FileMenuPanels.Settings.txtInput": "대체 입력", "PE.Views.FileMenuPanels.Settings.txtLast": "마지막보기", + "PE.Views.FileMenuPanels.Settings.txtMac": "OS X", + "PE.Views.FileMenuPanels.Settings.txtNative": "기본", + "PE.Views.FileMenuPanels.Settings.txtProofing": "보정", "PE.Views.FileMenuPanels.Settings.txtPt": "Point", + "PE.Views.FileMenuPanels.Settings.txtRunMacros": "모두 활성화", + "PE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "알림 없이 모든 매크로 활성화", "PE.Views.FileMenuPanels.Settings.txtSpellCheck": "맞춤법 검사", + "PE.Views.FileMenuPanels.Settings.txtStopMacros": "모두 비활성화", + "PE.Views.FileMenuPanels.Settings.txtStopMacrosDesc": "알림없이 모든 매크로를 비활성화", + "PE.Views.FileMenuPanels.Settings.txtWarnMacros": "알림 표시", + "PE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "모든 매크로를 비활성화로 알림", + "PE.Views.FileMenuPanels.Settings.txtWin": "Windows", + "PE.Views.HeaderFooterDialog.applyAllText": "모두에 적용", + "PE.Views.HeaderFooterDialog.applyText": "적용", + "PE.Views.HeaderFooterDialog.diffLanguage": "슬라이드 마스터와 다른 날짜 형식은 사용할 수 없습니다.
마스터를 변경하려면 \"적용\" 대신 \"모두 적용\"을 클릭하십시오.", + "PE.Views.HeaderFooterDialog.notcriticalErrorTitle": "경고", + "PE.Views.HeaderFooterDialog.textDateTime": "날짜 및 시간", + "PE.Views.HeaderFooterDialog.textFixed": "고정", + "PE.Views.HeaderFooterDialog.textFooter": "바닥글 텍스트", + "PE.Views.HeaderFooterDialog.textFormat": "형식", + "PE.Views.HeaderFooterDialog.textLang": "언어", + "PE.Views.HeaderFooterDialog.textNotTitle": "제목 슬라이드에 표시되지 않음", + "PE.Views.HeaderFooterDialog.textPreview": "미리보기", + "PE.Views.HeaderFooterDialog.textSlideNum": "슬라이드 번호", + "PE.Views.HeaderFooterDialog.textTitle": "꼬리말 설정", + "PE.Views.HeaderFooterDialog.textUpdate": "자동 업데이트", "PE.Views.HyperlinkSettingsDialog.strDisplay": "표시", "PE.Views.HyperlinkSettingsDialog.strLinkTo": "링크 대상", "PE.Views.HyperlinkSettingsDialog.textDefault": "선택한 텍스트 조각", @@ -968,6 +1417,7 @@ "PE.Views.HyperlinkSettingsDialog.textEmptyTooltip": "여기에 툴팁 입력", "PE.Views.HyperlinkSettingsDialog.textExternalLink": "외부 링크", "PE.Views.HyperlinkSettingsDialog.textInternalLink": "이 프리젠 테이션에서 슬라이드", + "PE.Views.HyperlinkSettingsDialog.textSlides": "슬라이드", "PE.Views.HyperlinkSettingsDialog.textTipText": "스크린 팁 텍스트", "PE.Views.HyperlinkSettingsDialog.textTitle": "하이퍼 링크 설정", "PE.Views.HyperlinkSettingsDialog.txtEmpty": "이 입력란은 필수 항목", @@ -976,28 +1426,46 @@ "PE.Views.HyperlinkSettingsDialog.txtNext": "다음 슬라이드", "PE.Views.HyperlinkSettingsDialog.txtNotUrl": "이 필드는 \"http://www.example.com\"형식의 URL이어야합니다.", "PE.Views.HyperlinkSettingsDialog.txtPrev": "이전 슬라이드", + "PE.Views.HyperlinkSettingsDialog.txtSizeLimit": "이 필드는 2083 자로 제한되어 있습니다", "PE.Views.HyperlinkSettingsDialog.txtSlide": "슬라이드", "PE.Views.ImageSettings.textAdvanced": "고급 설정 표시", + "PE.Views.ImageSettings.textCrop": "자르기", + "PE.Views.ImageSettings.textCropFill": "채우기", + "PE.Views.ImageSettings.textCropFit": "맞춤", "PE.Views.ImageSettings.textEdit": "편집", "PE.Views.ImageSettings.textEditObject": "개체 편집", + "PE.Views.ImageSettings.textFitSlide": "슬라이드에 맞추기", + "PE.Views.ImageSettings.textFlip": "대칭", "PE.Views.ImageSettings.textFromFile": "파일로부터", + "PE.Views.ImageSettings.textFromStorage": "스토리지로 부터", "PE.Views.ImageSettings.textFromUrl": "URL로부터", "PE.Views.ImageSettings.textHeight": "높이", + "PE.Views.ImageSettings.textHint270": "왼쪽으로 90도 회전", + "PE.Views.ImageSettings.textHint90": "오른쪽으로 90도 회전", + "PE.Views.ImageSettings.textHintFlipH": "좌우대칭", + "PE.Views.ImageSettings.textHintFlipV": "상하대칭", "PE.Views.ImageSettings.textInsert": "이미지 바꾸기", - "PE.Views.ImageSettings.textOriginalSize": "기본 크기", + "PE.Views.ImageSettings.textOriginalSize": "실제 크기", + "PE.Views.ImageSettings.textRotate90": "90도 회전", + "PE.Views.ImageSettings.textRotation": "회전", "PE.Views.ImageSettings.textSize": "크기", "PE.Views.ImageSettings.textWidth": "너비", "PE.Views.ImageSettingsAdvanced.textAlt": "대체 텍스트", "PE.Views.ImageSettingsAdvanced.textAltDescription": "설명", - "PE.Views.ImageSettingsAdvanced.textAltTip": "시력이나인지 장애가있는 사람들에게 읽을 수있는 시각적 객체 정보의 대안적인 텍스트 기반 표현으로 이미지에있는 정보를 더 잘 이해할 수 있도록 돕고, 차트 또는 표. ", + "PE.Views.ImageSettingsAdvanced.textAltTip": "시각적 개체 정보의 교체는 텍스트 표현을 기반으로 하며 시각 또는 인지 장애가 있는 사람들이 이미지, 자동 모양, 차트 또는 표에 포함된 정보를 더 잘 이해할 수 있도록 읽어줍니다.", "PE.Views.ImageSettingsAdvanced.textAltTitle": "Title", + "PE.Views.ImageSettingsAdvanced.textAngle": "각도", + "PE.Views.ImageSettingsAdvanced.textFlipped": "대칭됨", "PE.Views.ImageSettingsAdvanced.textHeight": "높이", + "PE.Views.ImageSettingsAdvanced.textHorizontally": "수평", "PE.Views.ImageSettingsAdvanced.textKeepRatio": "일정 비율", - "PE.Views.ImageSettingsAdvanced.textOriginalSize": "기본 크기", + "PE.Views.ImageSettingsAdvanced.textOriginalSize": "실제 크기", "PE.Views.ImageSettingsAdvanced.textPlacement": "게재 위치", "PE.Views.ImageSettingsAdvanced.textPosition": "위치", + "PE.Views.ImageSettingsAdvanced.textRotation": "회전", "PE.Views.ImageSettingsAdvanced.textSize": "크기", "PE.Views.ImageSettingsAdvanced.textTitle": "이미지 - 고급 설정", + "PE.Views.ImageSettingsAdvanced.textVertically": "세로", "PE.Views.ImageSettingsAdvanced.textWidth": "너비", "PE.Views.LeftMenu.tipAbout": "정보", "PE.Views.LeftMenu.tipChat": "채팅", @@ -1008,7 +1476,9 @@ "PE.Views.LeftMenu.tipSupport": "피드백 및 지원", "PE.Views.LeftMenu.tipTitles": "제목", "PE.Views.LeftMenu.txtDeveloper": "개발자 모드", + "PE.Views.LeftMenu.txtLimit": "접근 제한", "PE.Views.LeftMenu.txtTrial": "시험 모드", + "PE.Views.LeftMenu.txtTrialDev": "개발자 모드 시도", "PE.Views.ParagraphSettings.strLineHeight": "줄 간격", "PE.Views.ParagraphSettings.strParagraphSpacing": "단락 간격", "PE.Views.ParagraphSettings.strSpacingAfter": "이후", @@ -1016,26 +1486,38 @@ "PE.Views.ParagraphSettings.textAdvanced": "고급 설정 표시", "PE.Views.ParagraphSettings.textAt": "At", "PE.Views.ParagraphSettings.textAtLeast": "적어도", - "PE.Views.ParagraphSettings.textAuto": "Multiple", + "PE.Views.ParagraphSettings.textAuto": "배수", "PE.Views.ParagraphSettings.textExact": "정확히", "PE.Views.ParagraphSettings.txtAutoText": "자동", "PE.Views.ParagraphSettingsAdvanced.noTabs": "지정된 탭이이 필드에 나타납니다", "PE.Views.ParagraphSettingsAdvanced.strAllCaps": "모든 대문자", "PE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "이중 취소 선", + "PE.Views.ParagraphSettingsAdvanced.strIndent": "들여쓰기", "PE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Left", + "PE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing": "줄 간격", "PE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Right", + "PE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter": "후", + "PE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore": "이전", + "PE.Views.ParagraphSettingsAdvanced.strIndentsSpecial": "특별한", "PE.Views.ParagraphSettingsAdvanced.strParagraphFont": "글꼴", - "PE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "들여 쓰기 및 배치", + "PE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "들여쓰기 및 간격", "PE.Views.ParagraphSettingsAdvanced.strSmallCaps": "작은 대문자", - "PE.Views.ParagraphSettingsAdvanced.strStrike": "취소 선", + "PE.Views.ParagraphSettingsAdvanced.strSpacing": "간격", + "PE.Views.ParagraphSettingsAdvanced.strStrike": "취소선", "PE.Views.ParagraphSettingsAdvanced.strSubscript": "Subscript", "PE.Views.ParagraphSettingsAdvanced.strSuperscript": "Superscript", "PE.Views.ParagraphSettingsAdvanced.strTabs": "탭", "PE.Views.ParagraphSettingsAdvanced.textAlign": "정렬", + "PE.Views.ParagraphSettingsAdvanced.textAuto": "배수", "PE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "문자 간격", "PE.Views.ParagraphSettingsAdvanced.textDefault": "기본 탭", "PE.Views.ParagraphSettingsAdvanced.textEffects": "효과", - "PE.Views.ParagraphSettingsAdvanced.textRemove": "제거", + "PE.Views.ParagraphSettingsAdvanced.textExact": "고정", + "PE.Views.ParagraphSettingsAdvanced.textFirstLine": "머리글 행", + "PE.Views.ParagraphSettingsAdvanced.textHanging": "둘째 줄 이하", + "PE.Views.ParagraphSettingsAdvanced.textJustified": "균등분할", + "PE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(없음)", + "PE.Views.ParagraphSettingsAdvanced.textRemove": "삭제", "PE.Views.ParagraphSettingsAdvanced.textRemoveAll": "모두 제거", "PE.Views.ParagraphSettingsAdvanced.textSet": "지정", "PE.Views.ParagraphSettingsAdvanced.textTabCenter": "Center", @@ -1043,9 +1525,10 @@ "PE.Views.ParagraphSettingsAdvanced.textTabPosition": "탭 위치", "PE.Views.ParagraphSettingsAdvanced.textTabRight": "오른쪽", "PE.Views.ParagraphSettingsAdvanced.textTitle": "단락 - 고급 설정", + "PE.Views.ParagraphSettingsAdvanced.txtAutoText": "자동", "PE.Views.RightMenu.txtChartSettings": "차트 설정", "PE.Views.RightMenu.txtImageSettings": "이미지 설정", - "PE.Views.RightMenu.txtParagraphSettings": "텍스트 설정", + "PE.Views.RightMenu.txtParagraphSettings": "단락 설정", "PE.Views.RightMenu.txtShapeSettings": "도형 설정", "PE.Views.RightMenu.txtSignatureSettings": "서명 세팅", "PE.Views.RightMenu.txtSlideSettings": "슬라이드 설정", @@ -1057,29 +1540,43 @@ "PE.Views.ShapeSettings.strFill": "채우기", "PE.Views.ShapeSettings.strForeground": "전경색", "PE.Views.ShapeSettings.strPattern": "패턴", + "PE.Views.ShapeSettings.strShadow": "음영 표시", "PE.Views.ShapeSettings.strSize": "크기", - "PE.Views.ShapeSettings.strStroke": "획", - "PE.Views.ShapeSettings.strTransparency": "불투명도", + "PE.Views.ShapeSettings.strStroke": "선", + "PE.Views.ShapeSettings.strTransparency": "투명도", "PE.Views.ShapeSettings.strType": "유형", "PE.Views.ShapeSettings.textAdvanced": "고급 설정 표시", + "PE.Views.ShapeSettings.textAngle": "각도", "PE.Views.ShapeSettings.textBorderSizeErr": "입력 한 값이 잘못되었습니다.
0 ~ 1584 포인트 사이의 값을 입력하십시오.", "PE.Views.ShapeSettings.textColor": "색상 채우기", "PE.Views.ShapeSettings.textDirection": "Direction", "PE.Views.ShapeSettings.textEmptyPattern": "패턴 없음", + "PE.Views.ShapeSettings.textFlip": "대칭", "PE.Views.ShapeSettings.textFromFile": "파일에서", + "PE.Views.ShapeSettings.textFromStorage": "스토리지로 부터", "PE.Views.ShapeSettings.textFromUrl": "URL로부터", - "PE.Views.ShapeSettings.textGradient": "그라디언트", + "PE.Views.ShapeSettings.textGradient": "그라데이션 포인트", "PE.Views.ShapeSettings.textGradientFill": "그라데이션 채우기", + "PE.Views.ShapeSettings.textHint270": "왼쪽으로 90도 회전", + "PE.Views.ShapeSettings.textHint90": "오른쪽으로 90도 회전", + "PE.Views.ShapeSettings.textHintFlipH": "좌우대칭", + "PE.Views.ShapeSettings.textHintFlipV": "상하대칭", "PE.Views.ShapeSettings.textImageTexture": "그림 또는 질감", "PE.Views.ShapeSettings.textLinear": "선형", "PE.Views.ShapeSettings.textNoFill": "채우기 없음", "PE.Views.ShapeSettings.textPatternFill": "패턴", + "PE.Views.ShapeSettings.textPosition": "위치", "PE.Views.ShapeSettings.textRadial": "방사형", + "PE.Views.ShapeSettings.textRotate90": "90도 회전", + "PE.Views.ShapeSettings.textRotation": "회전", + "PE.Views.ShapeSettings.textSelectImage": "그림선택", "PE.Views.ShapeSettings.textSelectTexture": "선택", "PE.Views.ShapeSettings.textStretch": "늘이기", "PE.Views.ShapeSettings.textStyle": "스타일", "PE.Views.ShapeSettings.textTexture": "텍스처에서", "PE.Views.ShapeSettings.textTile": "타일", + "PE.Views.ShapeSettings.tipAddGradientPoint": "그라데이션 포인트 추가", + "PE.Views.ShapeSettings.tipRemoveGradientPoint": "그라데이션 포인트 제거", "PE.Views.ShapeSettings.txtBrownPaper": "갈색 종이", "PE.Views.ShapeSettings.txtCanvas": "Canvas", "PE.Views.ShapeSettings.txtCarton": "Carton", @@ -1096,9 +1593,11 @@ "PE.Views.ShapeSettingsAdvanced.strMargins": "텍스트 채우기", "PE.Views.ShapeSettingsAdvanced.textAlt": "대체 텍스트", "PE.Views.ShapeSettingsAdvanced.textAltDescription": "설명", - "PE.Views.ShapeSettingsAdvanced.textAltTip": "시력이나인지 장애가있는 사람들에게 읽을 수있는 시각적 개체 정보의 대체 텍스트 기반 표현으로 이미지에있는 정보를 더 잘 이해할 수 있도록 도와줍니다. 차트 또는 표. ", + "PE.Views.ShapeSettingsAdvanced.textAltTip": "시각적 개체 정보의 교체는 텍스트 표현을 기반으로 하며 시각 또는 인지 장애가 있는 사람들이 이미지, 자동 모양, 차트 또는 표에 포함된 정보를 더 잘 이해할 수 있도록 읽어줍니다.", "PE.Views.ShapeSettingsAdvanced.textAltTitle": "제목", + "PE.Views.ShapeSettingsAdvanced.textAngle": "각도", "PE.Views.ShapeSettingsAdvanced.textArrows": "화살표", + "PE.Views.ShapeSettingsAdvanced.textAutofit": "자동조정", "PE.Views.ShapeSettingsAdvanced.textBeginSize": "크기 시작", "PE.Views.ShapeSettingsAdvanced.textBeginStyle": "스타일 시작", "PE.Views.ShapeSettingsAdvanced.textBevel": "Bevel", @@ -1108,19 +1607,27 @@ "PE.Views.ShapeSettingsAdvanced.textEndSize": "끝 크기", "PE.Views.ShapeSettingsAdvanced.textEndStyle": "끝 스타일", "PE.Views.ShapeSettingsAdvanced.textFlat": "Flat", + "PE.Views.ShapeSettingsAdvanced.textFlipped": "대칭됨", "PE.Views.ShapeSettingsAdvanced.textHeight": "높이", + "PE.Views.ShapeSettingsAdvanced.textHorizontally": "수평", "PE.Views.ShapeSettingsAdvanced.textJoinType": "조인 유형", "PE.Views.ShapeSettingsAdvanced.textKeepRatio": "일정 비율", "PE.Views.ShapeSettingsAdvanced.textLeft": "왼쪽", "PE.Views.ShapeSettingsAdvanced.textLineStyle": "선 스타일", "PE.Views.ShapeSettingsAdvanced.textMiter": "연귀", + "PE.Views.ShapeSettingsAdvanced.textNofit": "자동으로 조정하지 않음", + "PE.Views.ShapeSettingsAdvanced.textResizeFit": "텍스트에 맞게 모양 조정", "PE.Views.ShapeSettingsAdvanced.textRight": "오른쪽", + "PE.Views.ShapeSettingsAdvanced.textRotation": "회전", "PE.Views.ShapeSettingsAdvanced.textRound": "Round", + "PE.Views.ShapeSettingsAdvanced.textShrink": "텍스트 초과시 자동 조정", "PE.Views.ShapeSettingsAdvanced.textSize": "크기", "PE.Views.ShapeSettingsAdvanced.textSpacing": "열 사이의 간격", "PE.Views.ShapeSettingsAdvanced.textSquare": "Square", + "PE.Views.ShapeSettingsAdvanced.textTextBox": "텍스트 상자", "PE.Views.ShapeSettingsAdvanced.textTitle": "도형 - 고급 설정", "PE.Views.ShapeSettingsAdvanced.textTop": "Top", + "PE.Views.ShapeSettingsAdvanced.textVertically": "세로", "PE.Views.ShapeSettingsAdvanced.textWeightArrows": "가중치 및 화살표", "PE.Views.ShapeSettingsAdvanced.textWidth": "너비", "PE.Views.ShapeSettingsAdvanced.txtNone": "없음", @@ -1132,33 +1639,43 @@ "PE.Views.SignatureSettings.strSignature": "서명", "PE.Views.SignatureSettings.strValid": "유효 서명", "PE.Views.SignatureSettings.txtContinueEditing": "무조건 편집", - "PE.Views.SignatureSettings.txtEditWarning": "편집은 프리젠테이션에서 서명을 삭제할 것입니다.
계속하시겠습니까?", + "PE.Views.SignatureSettings.txtEditWarning": "수정하면 프레젠테이션의 서명이 삭제됩니다.
계속하시겠습니까?", + "PE.Views.SignatureSettings.txtRemoveWarning": "이 서명을 삭제하시겠습니까?
이 작업은 취소할 수 없습니다.", "PE.Views.SignatureSettings.txtSigned": "유효 서명자가 프리젠테이션에 추가되었슴. 이 프리젠테이션은 편집할 수 없도록 보호됨.", "PE.Views.SignatureSettings.txtSignedInvalid": "프리젠테이션내 몇가지 디지털 서명이 유효하지 않거나 확인되지 않음. 이 프리젠테이션은 편집할 수 없도록 보호됨.", "PE.Views.SlideSettings.strBackground": "배경색", "PE.Views.SlideSettings.strColor": "Color", + "PE.Views.SlideSettings.strDateTime": "날짜 및 시간 표시", "PE.Views.SlideSettings.strFill": "배경", "PE.Views.SlideSettings.strForeground": "전경색", "PE.Views.SlideSettings.strPattern": "패턴", + "PE.Views.SlideSettings.strSlideNum": "슬라이드 번호 표시", + "PE.Views.SlideSettings.strTransparency": "투명도", "PE.Views.SlideSettings.textAdvanced": "고급 설정 표시", + "PE.Views.SlideSettings.textAngle": "각도", "PE.Views.SlideSettings.textColor": "색상 채우기", "PE.Views.SlideSettings.textDirection": "Direction", "PE.Views.SlideSettings.textEmptyPattern": "패턴 없음", "PE.Views.SlideSettings.textFromFile": "파일로부터", + "PE.Views.SlideSettings.textFromStorage": "스토리지로 부터", "PE.Views.SlideSettings.textFromUrl": "URL로부터", - "PE.Views.SlideSettings.textGradient": "Gradient", + "PE.Views.SlideSettings.textGradient": "그라데이션 포인트", "PE.Views.SlideSettings.textGradientFill": "그라데이션 채우기", "PE.Views.SlideSettings.textImageTexture": "그림 또는 질감", "PE.Views.SlideSettings.textLinear": "선형", "PE.Views.SlideSettings.textNoFill": "채우기 없음", "PE.Views.SlideSettings.textPatternFill": "패턴", + "PE.Views.SlideSettings.textPosition": "위치", "PE.Views.SlideSettings.textRadial": "방사형", "PE.Views.SlideSettings.textReset": "변경 사항 재설정", + "PE.Views.SlideSettings.textSelectImage": "그림선택", "PE.Views.SlideSettings.textSelectTexture": "선택", "PE.Views.SlideSettings.textStretch": "늘이기", "PE.Views.SlideSettings.textStyle": "스타일", "PE.Views.SlideSettings.textTexture": "텍스처에서", "PE.Views.SlideSettings.textTile": "타일", + "PE.Views.SlideSettings.tipAddGradientPoint": "그라데이션 포인트 추가", + "PE.Views.SlideSettings.tipRemoveGradientPoint": "그라데이션 포인트 제거", "PE.Views.SlideSettings.txtBrownPaper": "갈색 종이", "PE.Views.SlideSettings.txtCanvas": "Canvas", "PE.Views.SlideSettings.txtCarton": "Carton", @@ -1190,14 +1707,18 @@ "PE.Views.SlideSizeSettings.txtLetter": "레터 용지 (8.5x11 인치)", "PE.Views.SlideSizeSettings.txtOverhead": "오버 헤드", "PE.Views.SlideSizeSettings.txtStandard": "표준 (4 : 3)", + "PE.Views.SlideSizeSettings.txtWidescreen": "와이드스크린(16:9)", "PE.Views.Statusbar.goToPageText": "슬라이드로 이동", "PE.Views.Statusbar.pageIndexText": "{1} 중 {0} 슬라이드", + "PE.Views.Statusbar.textShowBegin": "처음부터 보여주기", + "PE.Views.Statusbar.textShowCurrent": "현재 슬라이드에서 보기", + "PE.Views.Statusbar.textShowPresenterView": "프리젠터뷰 표시", "PE.Views.Statusbar.tipAccessRights": "문서 액세스 권한 관리", "PE.Views.Statusbar.tipFitPage": "슬라이드에 맞추기", "PE.Views.Statusbar.tipFitWidth": "너비에 맞춤", "PE.Views.Statusbar.tipPreview": "슬라이드 쇼 시작", "PE.Views.Statusbar.tipSetLang": "텍스트 언어 설정", - "PE.Views.Statusbar.tipZoomFactor": "확대 / 축소", + "PE.Views.Statusbar.tipZoomFactor": "확대/축소", "PE.Views.Statusbar.tipZoomIn": "확대", "PE.Views.Statusbar.tipZoomOut": "축소", "PE.Views.Statusbar.txtPageNumInvalid": "유효하지 않은 슬라이드 번호", @@ -1233,22 +1754,30 @@ "PE.Views.TableSettings.textRows": "행", "PE.Views.TableSettings.textSelectBorders": "위에서 선택한 스타일 적용을 변경하려는 테두리 선택", "PE.Views.TableSettings.textTemplate": "템플릿에서 선택", - "PE.Views.TableSettings.textTotal": "합계", + "PE.Views.TableSettings.textTotal": "요약 행", "PE.Views.TableSettings.textWidth": "너비", - "PE.Views.TableSettings.tipAll": "바깥 쪽 테두리 및 모든 안쪽 선 설정", - "PE.Views.TableSettings.tipBottom": "바깥 쪽 테두리 만 설정", + "PE.Views.TableSettings.tipAll": "바깥쪽 테두리 및 안쪽 테두리", + "PE.Views.TableSettings.tipBottom": "바깥 아래쪽 테두리", "PE.Views.TableSettings.tipInner": "내부 라인 만 설정", - "PE.Views.TableSettings.tipInnerHor": "가로형 내부 선만 설정", + "PE.Views.TableSettings.tipInnerHor": "안쪽 가로 테두리", "PE.Views.TableSettings.tipInnerVert": "세로 내부 선만 설정", - "PE.Views.TableSettings.tipLeft": "바깥 쪽 테두리 만 설정", + "PE.Views.TableSettings.tipLeft": "바깥 왼쪽 테두리", "PE.Views.TableSettings.tipNone": "테두리 없음 설정", - "PE.Views.TableSettings.tipOuter": "외곽선 만 설정", - "PE.Views.TableSettings.tipRight": "바깥 쪽 테두리 만 설정", - "PE.Views.TableSettings.tipTop": "바깥 쪽 테두리 만 설정", + "PE.Views.TableSettings.tipOuter": "바깥쪽 테두리", + "PE.Views.TableSettings.tipRight": "바깥 오른쪽 테두리", + "PE.Views.TableSettings.tipTop": "바깥 위쪽 테두리", "PE.Views.TableSettings.txtNoBorders": "테두리 없음", + "PE.Views.TableSettings.txtTable_Accent": "강조", + "PE.Views.TableSettings.txtTable_DarkStyle": "어두운 스타일", + "PE.Views.TableSettings.txtTable_LightStyle": "밝은 스타일", + "PE.Views.TableSettings.txtTable_MediumStyle": "보통 스타일", + "PE.Views.TableSettings.txtTable_NoGrid": "그리드 없음", + "PE.Views.TableSettings.txtTable_NoStyle": "스타일 없음", + "PE.Views.TableSettings.txtTable_TableGrid": "테이블 그리드", + "PE.Views.TableSettings.txtTable_ThemedStyle": "테마 스타일", "PE.Views.TableSettingsAdvanced.textAlt": "대체 텍스트", "PE.Views.TableSettingsAdvanced.textAltDescription": "설명", - "PE.Views.TableSettingsAdvanced.textAltTip": "시력이나인지 장애가있는 사람들에게 읽을 수있는 시각적 개체 정보의 대안적인 텍스트 기반 표현으로 이미지에있는 정보를 더 잘 이해할 수 있도록 도와줍니다. 차트 또는 표. ", + "PE.Views.TableSettingsAdvanced.textAltTip": "시각적 개체 정보의 교체는 텍스트 표현을 기반으로 하며 시각 또는 인지 장애가 있는 사람들이 이미지, 자동 모양, 차트 또는 표에 포함된 정보를 더 잘 이해할 수 있도록 읽어줍니다.", "PE.Views.TableSettingsAdvanced.textAltTitle": "제목", "PE.Views.TableSettingsAdvanced.textBottom": "Bottom", "PE.Views.TableSettingsAdvanced.textCheckMargins": "기본 여백 사용", @@ -1265,21 +1794,23 @@ "PE.Views.TextArtSettings.strForeground": "전경색", "PE.Views.TextArtSettings.strPattern": "패턴", "PE.Views.TextArtSettings.strSize": "크기", - "PE.Views.TextArtSettings.strStroke": "Stroke", - "PE.Views.TextArtSettings.strTransparency": "불투명도", + "PE.Views.TextArtSettings.strStroke": "선", + "PE.Views.TextArtSettings.strTransparency": "투명도", "PE.Views.TextArtSettings.strType": "유형", + "PE.Views.TextArtSettings.textAngle": "각도", "PE.Views.TextArtSettings.textBorderSizeErr": "입력 한 값이 잘못되었습니다.
0pt ~ 1584pt 사이의 값을 입력하십시오.", "PE.Views.TextArtSettings.textColor": "색 채우기", "PE.Views.TextArtSettings.textDirection": "Direction", "PE.Views.TextArtSettings.textEmptyPattern": "패턴 없음", "PE.Views.TextArtSettings.textFromFile": "파일에서", "PE.Views.TextArtSettings.textFromUrl": "URL로부터", - "PE.Views.TextArtSettings.textGradient": "그라디언트", + "PE.Views.TextArtSettings.textGradient": "그라데이션 포인트", "PE.Views.TextArtSettings.textGradientFill": "그라데이션 채우기", "PE.Views.TextArtSettings.textImageTexture": "그림 또는 질감", "PE.Views.TextArtSettings.textLinear": "선형", "PE.Views.TextArtSettings.textNoFill": "채우기 없음", "PE.Views.TextArtSettings.textPatternFill": "패턴", + "PE.Views.TextArtSettings.textPosition": "위치", "PE.Views.TextArtSettings.textRadial": "방사형", "PE.Views.TextArtSettings.textSelectTexture": "선택", "PE.Views.TextArtSettings.textStretch": "늘이기", @@ -1288,6 +1819,8 @@ "PE.Views.TextArtSettings.textTexture": "텍스처에서", "PE.Views.TextArtSettings.textTile": "타일", "PE.Views.TextArtSettings.textTransform": "변형", + "PE.Views.TextArtSettings.tipAddGradientPoint": "그라데이션 포인트 추가", + "PE.Views.TextArtSettings.tipRemoveGradientPoint": "그라데이션 포인트 제거", "PE.Views.TextArtSettings.txtBrownPaper": "갈색 종이", "PE.Views.TextArtSettings.txtCanvas": "Canvas", "PE.Views.TextArtSettings.txtCarton": "Carton", @@ -1301,23 +1834,37 @@ "PE.Views.TextArtSettings.txtPapyrus": "파피루스", "PE.Views.TextArtSettings.txtWood": "Wood", "PE.Views.Toolbar.capAddSlide": "슬라이드 추가", + "PE.Views.Toolbar.capBtnAddComment": "코멘트 달기", "PE.Views.Toolbar.capBtnComment": "댓글", + "PE.Views.Toolbar.capBtnDateTime": "날짜 및 시간", + "PE.Views.Toolbar.capBtnInsHeader": "꼬리말", + "PE.Views.Toolbar.capBtnInsSymbol": "기호", + "PE.Views.Toolbar.capBtnSlideNum": "슬라이드 번호", + "PE.Views.Toolbar.capInsertAudio": "소리", "PE.Views.Toolbar.capInsertChart": "차트", "PE.Views.Toolbar.capInsertEquation": "수식", "PE.Views.Toolbar.capInsertHyperlink": "하이퍼 링크", "PE.Views.Toolbar.capInsertImage": "그림", "PE.Views.Toolbar.capInsertShape": "쉐이프", "PE.Views.Toolbar.capInsertTable": "테이블", - "PE.Views.Toolbar.capInsertText": "텍스트 박스", + "PE.Views.Toolbar.capInsertText": "텍스트 상자", + "PE.Views.Toolbar.capInsertVideo": "동영상", "PE.Views.Toolbar.capTabFile": "파일", "PE.Views.Toolbar.capTabHome": "집", "PE.Views.Toolbar.capTabInsert": "삽입", + "PE.Views.Toolbar.mniCapitalizeWords": "각 단어의 첫글자를 대문자로", "PE.Views.Toolbar.mniCustomTable": "사용자 정의 테이블 삽입", "PE.Views.Toolbar.mniImageFromFile": "그림 파일에서", + "PE.Views.Toolbar.mniImageFromStorage": "스토리지에서 불러오기", "PE.Views.Toolbar.mniImageFromUrl": "URL에서 그림", + "PE.Views.Toolbar.mniLowerCase": "소문자", + "PE.Views.Toolbar.mniSentenceCase": "문장의 첫 글자를 대문자로", "PE.Views.Toolbar.mniSlideAdvanced": "고급 설정", "PE.Views.Toolbar.mniSlideStandard": "표준 (4 : 3)", "PE.Views.Toolbar.mniSlideWide": "와이드 스크린 (16 : 9)", + "PE.Views.Toolbar.mniToggleCase": "대/소문자 전환", + "PE.Views.Toolbar.mniUpperCase": "대문자", + "PE.Views.Toolbar.strMenuNoFill": "채우기 없음", "PE.Views.Toolbar.textAlignBottom": "텍스트를 하단에 정렬", "PE.Views.Toolbar.textAlignCenter": "센터 텍스트", "PE.Views.Toolbar.textAlignJust": "Justify", @@ -1325,12 +1872,17 @@ "PE.Views.Toolbar.textAlignMiddle": "중간에 텍스트 정렬", "PE.Views.Toolbar.textAlignRight": "텍스트 정렬", "PE.Views.Toolbar.textAlignTop": "텍스트를 상단에 정렬", - "PE.Views.Toolbar.textArrangeBack": "배경에 보내기", + "PE.Views.Toolbar.textArrangeBack": "맨 뒤로 보내기", "PE.Views.Toolbar.textArrangeBackward": "뒤로 이동", "PE.Views.Toolbar.textArrangeForward": "앞으로 이동", "PE.Views.Toolbar.textArrangeFront": "전경으로 가져 오기", "PE.Views.Toolbar.textBold": "Bold", + "PE.Views.Toolbar.textColumnsCustom": "사용자 정의 열", + "PE.Views.Toolbar.textColumnsOne": "1열", + "PE.Views.Toolbar.textColumnsThree": "3열", + "PE.Views.Toolbar.textColumnsTwo": "2열", "PE.Views.Toolbar.textItalic": "Italic", + "PE.Views.Toolbar.textListSettings": "목록설정", "PE.Views.Toolbar.textShapeAlignBottom": "아래쪽 정렬", "PE.Views.Toolbar.textShapeAlignCenter": "정렬 중심", "PE.Views.Toolbar.textShapeAlignLeft": "왼쪽 정렬", @@ -1341,7 +1893,7 @@ "PE.Views.Toolbar.textShowCurrent": "현재 슬라이드에서보기", "PE.Views.Toolbar.textShowPresenterView": "프리젠터뷰를 보기", "PE.Views.Toolbar.textShowSettings": "설정 표시", - "PE.Views.Toolbar.textStrikeout": "Strikeout", + "PE.Views.Toolbar.textStrikeout": "취소선", "PE.Views.Toolbar.textSubscript": "아래 첨자", "PE.Views.Toolbar.textSuperscript": "위첨자", "PE.Views.Toolbar.textTabCollaboration": "합치기", @@ -1349,30 +1901,41 @@ "PE.Views.Toolbar.textTabHome": "홈", "PE.Views.Toolbar.textTabInsert": "삽입", "PE.Views.Toolbar.textTabProtect": "보호", + "PE.Views.Toolbar.textTabTransitions": "전환", "PE.Views.Toolbar.textTitleError": "오류", "PE.Views.Toolbar.textUnderline": "밑줄", "PE.Views.Toolbar.tipAddSlide": "슬라이드 추가", "PE.Views.Toolbar.tipBack": "뒤로", + "PE.Views.Toolbar.tipChangeCase": "대소문자 변경", "PE.Views.Toolbar.tipChangeChart": "차트 유형 변경", "PE.Views.Toolbar.tipChangeSlide": "슬라이드 레이아웃 변경", "PE.Views.Toolbar.tipClearStyle": "스타일 지우기", "PE.Views.Toolbar.tipColorSchemas": "Change Color Scheme", + "PE.Views.Toolbar.tipColumns": "열 삽입", "PE.Views.Toolbar.tipCopy": "복사", "PE.Views.Toolbar.tipCopyStyle": "스타일 복사", + "PE.Views.Toolbar.tipDateTime": "현재 날짜 시간 삽입", + "PE.Views.Toolbar.tipDecFont": "글꼴 크기 작게", "PE.Views.Toolbar.tipDecPrLeft": "들여 쓰기 감소", + "PE.Views.Toolbar.tipEditHeader": "바닥 글 편집", "PE.Views.Toolbar.tipFontColor": "글꼴 색", "PE.Views.Toolbar.tipFontName": "글꼴", "PE.Views.Toolbar.tipFontSize": "글꼴 크기", "PE.Views.Toolbar.tipHAligh": "수평 정렬", + "PE.Views.Toolbar.tipHighlightColor": "텍스트 강조 색", + "PE.Views.Toolbar.tipIncFont": "글꼴 크기 증가", "PE.Views.Toolbar.tipIncPrLeft": "들여 쓰기", + "PE.Views.Toolbar.tipInsertAudio": "소리 삽입", "PE.Views.Toolbar.tipInsertChart": "차트 삽입", "PE.Views.Toolbar.tipInsertEquation": "수식 삽입", "PE.Views.Toolbar.tipInsertHyperlink": "하이퍼 링크 추가", "PE.Views.Toolbar.tipInsertImage": "그림 삽입", "PE.Views.Toolbar.tipInsertShape": "도형 삽입", + "PE.Views.Toolbar.tipInsertSymbol": "기호 삽입", "PE.Views.Toolbar.tipInsertTable": "표 삽입", "PE.Views.Toolbar.tipInsertText": "텍스트 상자 삽입", "PE.Views.Toolbar.tipInsertTextArt": "텍스트 아트 삽입", + "PE.Views.Toolbar.tipInsertVideo": "동영상 삽입", "PE.Views.Toolbar.tipLineSpace": "줄 간격", "PE.Views.Toolbar.tipMarkers": "글 머리 기호", "PE.Views.Toolbar.tipNumbers": "번호 매기기", @@ -1384,6 +1947,7 @@ "PE.Views.Toolbar.tipSaveCoauth": "다른 사용자가 볼 수 있도록 변경 사항을 저장하십시오.", "PE.Views.Toolbar.tipShapeAlign": "도형 정렬", "PE.Views.Toolbar.tipShapeArrange": "도형 배열", + "PE.Views.Toolbar.tipSlideNum": "슬라이드 번호 삽입", "PE.Views.Toolbar.tipSlideSize": "슬라이드 크기 선택", "PE.Views.Toolbar.tipSlideTheme": "슬라이드 테마", "PE.Views.Toolbar.tipUndo": "실행 취소", @@ -1392,7 +1956,8 @@ "PE.Views.Toolbar.txtDistribHor": "가로로 배포", "PE.Views.Toolbar.txtDistribVert": "수직 분배", "PE.Views.Toolbar.txtGroup": "그룹", - "PE.Views.Toolbar.txtScheme1": "Office", + "PE.Views.Toolbar.txtObjectsAlign": "선택한 개체 정렬", + "PE.Views.Toolbar.txtScheme1": "사무실 테마", "PE.Views.Toolbar.txtScheme10": "중앙값", "PE.Views.Toolbar.txtScheme11": "Metro", "PE.Views.Toolbar.txtScheme12": "모듈", @@ -1406,6 +1971,7 @@ "PE.Views.Toolbar.txtScheme2": "Grayscale", "PE.Views.Toolbar.txtScheme20": "도시", "PE.Views.Toolbar.txtScheme21": "Verve", + "PE.Views.Toolbar.txtScheme22": "신규 오피스", "PE.Views.Toolbar.txtScheme3": "Apex", "PE.Views.Toolbar.txtScheme4": "Aspect", "PE.Views.Toolbar.txtScheme5": "Civic", @@ -1413,34 +1979,42 @@ "PE.Views.Toolbar.txtScheme7": "주식", "PE.Views.Toolbar.txtScheme8": "흐름", "PE.Views.Toolbar.txtScheme9": "Foundry", + "PE.Views.Toolbar.txtSlideAlign": "슬라이드 정렬", "PE.Views.Toolbar.txtUngroup": "그룹 해제", "PE.Views.Transitions.strDelay": "지연", "PE.Views.Transitions.strDuration": "재생 시간", "PE.Views.Transitions.strStartOnClick": "시작시 클릭", + "PE.Views.Transitions.textBlack": "검은 색을 사용", "PE.Views.Transitions.textBottom": "바닥", "PE.Views.Transitions.textBottomLeft": "왼쪽 하단", + "PE.Views.Transitions.textBottomRight": "오른쪽-하단", "PE.Views.Transitions.textClock": "시계", "PE.Views.Transitions.textClockwise": "시계 방향", "PE.Views.Transitions.textCounterclockwise": "반 시계 방향", - "PE.Views.Transitions.textCover": "표지", - "PE.Views.Transitions.textFade": "페이드", + "PE.Views.Transitions.textCover": "덮기", + "PE.Views.Transitions.textFade": "밝기변화", + "PE.Views.Transitions.textHorizontalIn": "수평 입력", "PE.Views.Transitions.textHorizontalOut": "수평 출력", "PE.Views.Transitions.textLeft": "왼쪽", - "PE.Views.Transitions.textPush": "푸시", + "PE.Views.Transitions.textNone": "없음", + "PE.Views.Transitions.textPush": "밀어내기", "PE.Views.Transitions.textRight": "오른쪽", "PE.Views.Transitions.textSmoothly": "부드럽게", + "PE.Views.Transitions.textSplit": "나누기", "PE.Views.Transitions.textTop": "상위", "PE.Views.Transitions.textTopLeft": "왼쪽 위", "PE.Views.Transitions.textTopRight": "오른쪽 상단", - "PE.Views.Transitions.textUnCover": "언 커버", + "PE.Views.Transitions.textUnCover": "당기기", "PE.Views.Transitions.textVerticalIn": "수직 인치", "PE.Views.Transitions.textVerticalOut": "수직 출력", "PE.Views.Transitions.textWedge": "쇄기꼴", - "PE.Views.Transitions.textZoom": "확대 / 축소", + "PE.Views.Transitions.textWipe": "닦아내기", + "PE.Views.Transitions.textZoom": "확대/축소", "PE.Views.Transitions.textZoomIn": "확대", "PE.Views.Transitions.textZoomOut": "축소", - "PE.Views.Transitions.textZoomRotate": "확대 / 축소 및 회전", + "PE.Views.Transitions.textZoomRotate": "확대/축소 및 회전", "PE.Views.Transitions.txtApplyToAll": "모든 슬라이드에 적용", "PE.Views.Transitions.txtParameters": "매개 변수", + "PE.Views.Transitions.txtPreview": "미리보기", "PE.Views.Transitions.txtSec": "s" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/zh.json b/apps/presentationeditor/main/locale/zh.json index fefae6a1a..47ce35cb2 100644 --- a/apps/presentationeditor/main/locale/zh.json +++ b/apps/presentationeditor/main/locale/zh.json @@ -9,8 +9,11 @@ "Common.define.chartData.textBar": "条", "Common.define.chartData.textCharts": "图表", "Common.define.chartData.textColumn": "列", + "Common.define.chartData.textCombo": "组合", "Common.define.chartData.textLine": "线", + "Common.define.chartData.textLine3d": "3-D 直线图", "Common.define.chartData.textPie": "派", + "Common.define.chartData.textPie3d": "3-D 圆饼图", "Common.define.chartData.textPoint": "XY(散射)", "Common.define.chartData.textScatter": "分散", "Common.define.chartData.textStock": "股票", @@ -41,6 +44,7 @@ "Common.UI.ThemeColorPalette.textStandartColors": "标准颜色", "Common.UI.ThemeColorPalette.textThemeColors": "主题颜色", "Common.UI.Themes.txtThemeDark": "暗色模式", + "Common.UI.Themes.txtThemeLight": "浅色主題", "Common.UI.Window.cancelButtonText": "取消", "Common.UI.Window.closeButtonText": "关闭", "Common.UI.Window.noButtonText": "否", @@ -62,10 +66,15 @@ "Common.Views.About.txtVersion": "版本", "Common.Views.AutoCorrectDialog.textAdd": "新增", "Common.Views.AutoCorrectDialog.textApplyText": "输入时自动应用", + "Common.Views.AutoCorrectDialog.textAutoCorrect": "自动修正", "Common.Views.AutoCorrectDialog.textAutoFormat": "输入时自动调整格式", + "Common.Views.AutoCorrectDialog.textBulleted": "自动项目符号列表", "Common.Views.AutoCorrectDialog.textBy": "依据", "Common.Views.AutoCorrectDialog.textDelete": "删除", + "Common.Views.AutoCorrectDialog.textHyperlink": "带超链接的互联网与网络路径", + "Common.Views.AutoCorrectDialog.textHyphens": "连带字符(-)改为破折号(-)", "Common.Views.AutoCorrectDialog.textMathCorrect": "数学自动修正", + "Common.Views.AutoCorrectDialog.textNumbered": "自动编号列表", "Common.Views.AutoCorrectDialog.textRecognized": "能被识别的函数", "Common.Views.AutoCorrectDialog.textRecognizedDesc": "以下表达式被识别为数学公式。这些表达式不会被自动设为斜体。", "Common.Views.AutoCorrectDialog.textReplace": "替换", @@ -81,6 +90,8 @@ "Common.Views.AutoCorrectDialog.warnReset": "即将移除对自动更正功能所做的自定义设置,并恢复默认值。是否继续?", "Common.Views.AutoCorrectDialog.warnRestore": "关于%1的自动更正条目将恢复默认值。确认继续?", "Common.Views.Chat.textSend": "发送", + "Common.Views.Comments.mniPositionAsc": "自上而下", + "Common.Views.Comments.mniPositionDesc": "自下而上", "Common.Views.Comments.textAdd": "添加", "Common.Views.Comments.textAddComment": "添加批注", "Common.Views.Comments.textAddCommentToDoc": "添加批注到文档", @@ -88,6 +99,7 @@ "Common.Views.Comments.textAnonym": "游客", "Common.Views.Comments.textCancel": "取消", "Common.Views.Comments.textClose": "关闭", + "Common.Views.Comments.textClosePanel": "关闭注释", "Common.Views.Comments.textComments": "批注", "Common.Views.Comments.textEdit": "确定", "Common.Views.Comments.textEnterCommentHint": "在此输入您的批注", @@ -132,6 +144,10 @@ "Common.Views.Header.tipViewUsers": "查看用户和管理文档访问权限", "Common.Views.Header.txtAccessRights": "更改访问权限", "Common.Views.Header.txtRename": "重命名", + "Common.Views.History.textCloseHistory": "关闭历史记录", + "Common.Views.History.textHideAll": "隐藏详细的更改", + "Common.Views.History.textRestore": "恢复", + "Common.Views.History.textVer": "版本", "Common.Views.ImageFromUrlDialog.textUrl": "粘贴图片网址:", "Common.Views.ImageFromUrlDialog.txtEmpty": "这是必填栏", "Common.Views.ImageFromUrlDialog.txtNotUrl": "该字段应该是“http://www.example.com”格式的URL", @@ -307,6 +323,8 @@ "Common.Views.SymbolTableDialog.textTitle": "符号", "Common.Views.SymbolTableDialog.textTradeMark": "商标标识", "Common.Views.UserNameDialog.textDontShow": "不要再问我", + "Common.Views.UserNameDialog.textLabel": "标签:", + "Common.Views.UserNameDialog.textLabelError": "标签不能空", "PE.Controllers.LeftMenu.newDocumentTitle": "未命名的演示", "PE.Controllers.LeftMenu.notcriticalErrorTitle": "警告", "PE.Controllers.LeftMenu.requestEditRightsText": "请求编辑权限..", @@ -340,6 +358,7 @@ "PE.Controllers.Main.errorForceSave": "保存文件时发生错误请使用“下载为”选项将文件保存到计算机硬盘中或稍后重试。", "PE.Controllers.Main.errorKeyEncrypt": "未知密钥描述", "PE.Controllers.Main.errorKeyExpire": "密钥过期", + "PE.Controllers.Main.errorLoadingFont": "字体未加载。
请与文档服务器管理员联系。", "PE.Controllers.Main.errorProcessSaveResult": "保存失败", "PE.Controllers.Main.errorServerVersion": "该编辑版本已经更新。该页面将被重新加载以应用更改。", "PE.Controllers.Main.errorSessionAbsolute": "文档编辑会话已过期。请重新加载页面。", @@ -355,6 +374,7 @@ "PE.Controllers.Main.errorUsersExceed": "超过了定价计划允许的用户数", "PE.Controllers.Main.errorViewerDisconnect": "连接丢失。您仍然可以查看文档
,但在连接恢复之前无法下载或打印。", "PE.Controllers.Main.leavePageText": "您在本演示文稿中有未保存的更改。点击“留在这个页面”,然后点击“保存”保存。点击“离开此页面”,放弃所有未保存的更改。", + "PE.Controllers.Main.leavePageTextOnClose": "此文档中所有未保存的更改都将丟失。
点击“取消”,然后点击“保存”以保存。点击“确定”,放弃所有未保存的更改。", "PE.Controllers.Main.loadFontsTextText": "数据加载中…", "PE.Controllers.Main.loadFontsTitleText": "数据加载中", "PE.Controllers.Main.loadFontTextText": "数据加载中…", @@ -387,13 +407,17 @@ "PE.Controllers.Main.splitMaxColsErrorText": "列数必须小于%1。", "PE.Controllers.Main.splitMaxRowsErrorText": "行数必须小于%1。", "PE.Controllers.Main.textAnonymous": "匿名", + "PE.Controllers.Main.textApplyAll": "应用到所有公式", "PE.Controllers.Main.textBuyNow": "访问网站", "PE.Controllers.Main.textChangesSaved": "所有更改已保存", "PE.Controllers.Main.textClose": "关闭", "PE.Controllers.Main.textCloseTip": "点击关闭提示", "PE.Controllers.Main.textContactUs": "联系销售", + "PE.Controllers.Main.textConvertEquation": "这个公式是由一个早期版本的公式编辑器创建的。这个版本现在不受支持了。要想编辑这个公式,你需要将其转换成 Office Math ML 格式.
现在转换吗?", "PE.Controllers.Main.textCustomLoader": "请注意,根据许可条款您无权更改加载程序。
请联系我们的销售部门获取报价。", + "PE.Controllers.Main.textDisconnect": "网络连接失败", "PE.Controllers.Main.textHasMacros": "这个文件带有自动宏。
是否要运行宏?", + "PE.Controllers.Main.textLearnMore": "了解更多", "PE.Controllers.Main.textLoadingDocument": "载入演示", "PE.Controllers.Main.textLongName": "输入名称,要求小于128字符。", "PE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE开源版本", @@ -419,6 +443,7 @@ "PE.Controllers.Main.txtDiagram": "SmartArt", "PE.Controllers.Main.txtDiagramTitle": "图表标题", "PE.Controllers.Main.txtEditingMode": "设置编辑模式..", + "PE.Controllers.Main.txtErrorLoadHistory": "历史记录加载失败", "PE.Controllers.Main.txtFiguredArrows": "图形箭头", "PE.Controllers.Main.txtFooter": "页脚", "PE.Controllers.Main.txtHeader": "页眉", @@ -1207,6 +1232,7 @@ "PE.Views.DocumentHolder.txtTop": "顶部", "PE.Views.DocumentHolder.txtUnderbar": "在文本栏", "PE.Views.DocumentHolder.txtUngroup": "取消组合", + "PE.Views.DocumentHolder.txtWarnUrl": "点击该链接可能会损害你的设备或数据。
你确定要继续吗?", "PE.Views.DocumentHolder.vertAlignText": "垂直对齐", "PE.Views.DocumentPreview.goToSlideText": "转到幻灯片", "PE.Views.DocumentPreview.slideIndexText": "{1}的幻灯片{0}", @@ -1227,6 +1253,7 @@ "PE.Views.FileMenu.btnCreateNewCaption": "新建", "PE.Views.FileMenu.btnDownloadCaption": "下载为...", "PE.Views.FileMenu.btnHelpCaption": "帮助", + "PE.Views.FileMenu.btnHistoryCaption": "版本历史", "PE.Views.FileMenu.btnInfoCaption": "演示信息...", "PE.Views.FileMenu.btnPrintCaption": "打印", "PE.Views.FileMenu.btnProtectCaption": "保护", @@ -1239,6 +1266,8 @@ "PE.Views.FileMenu.btnSaveCopyAsCaption": "将副本另存为...", "PE.Views.FileMenu.btnSettingsCaption": "高级设置…", "PE.Views.FileMenu.btnToEditCaption": "编辑演示文稿", + "PE.Views.FileMenuPanels.CreateNew.txtBlank": "空白演示文稿", + "PE.Views.FileMenuPanels.CreateNew.txtCreateNew": "新建", "PE.Views.FileMenuPanels.DocumentInfo.okButtonText": "应用", "PE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "添加作者", "PE.Views.FileMenuPanels.DocumentInfo.txtAddText": "添加文本", @@ -1284,6 +1313,7 @@ "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": "测量单位", "PE.Views.FileMenuPanels.Settings.strZoom": "默认缩放比率", "PE.Views.FileMenuPanels.Settings.text10Minutes": "每10分钟", @@ -1772,14 +1802,18 @@ "PE.Views.Toolbar.capTabFile": "文件", "PE.Views.Toolbar.capTabHome": "主页", "PE.Views.Toolbar.capTabInsert": "插入", + "PE.Views.Toolbar.mniCapitalizeWords": "首字母大写", "PE.Views.Toolbar.mniCustomTable": "插入自定义表", "PE.Views.Toolbar.mniImageFromFile": "图片文件", "PE.Views.Toolbar.mniImageFromStorage": "图片来自存储", "PE.Views.Toolbar.mniImageFromUrl": "图片来自网络", + "PE.Views.Toolbar.mniLowerCase": "小写", "PE.Views.Toolbar.mniSentenceCase": "句子大小写。", "PE.Views.Toolbar.mniSlideAdvanced": "高级设置", "PE.Views.Toolbar.mniSlideStandard": "标准(4:3)", "PE.Views.Toolbar.mniSlideWide": "宽屏(16:9)", + "PE.Views.Toolbar.mniToggleCase": "切换大小写", + "PE.Views.Toolbar.mniUpperCase": "大写", "PE.Views.Toolbar.textAlignBottom": "将文本对齐到底部", "PE.Views.Toolbar.textAlignCenter": "中心文字", "PE.Views.Toolbar.textAlignJust": "辩解", @@ -1792,6 +1826,7 @@ "PE.Views.Toolbar.textArrangeForward": "向前移动", "PE.Views.Toolbar.textArrangeFront": "放到最上面", "PE.Views.Toolbar.textBold": "加粗", + "PE.Views.Toolbar.textColumnsCustom": "自定义列", "PE.Views.Toolbar.textItalic": "斜体", "PE.Views.Toolbar.textListSettings": "列表设置", "PE.Views.Toolbar.textShapeAlignBottom": "底部对齐", @@ -1821,6 +1856,7 @@ "PE.Views.Toolbar.tipChangeSlide": "更改幻灯片布局", "PE.Views.Toolbar.tipClearStyle": "清除样式", "PE.Views.Toolbar.tipColorSchemas": "更改配色方案", + "PE.Views.Toolbar.tipColumns": "插入列", "PE.Views.Toolbar.tipCopy": "复制", "PE.Views.Toolbar.tipCopyStyle": "复制样式", "PE.Views.Toolbar.tipDateTime": "插入当前日期和时间", @@ -1831,6 +1867,7 @@ "PE.Views.Toolbar.tipFontName": "字体 ", "PE.Views.Toolbar.tipFontSize": "字体大小", "PE.Views.Toolbar.tipHAligh": "水平对齐", + "PE.Views.Toolbar.tipHighlightColor": "突出显示", "PE.Views.Toolbar.tipIncFont": "增大字号", "PE.Views.Toolbar.tipIncPrLeft": "增加缩进", "PE.Views.Toolbar.tipInsertAudio": "插入声音", @@ -1887,5 +1924,22 @@ "PE.Views.Toolbar.txtScheme8": "流动", "PE.Views.Toolbar.txtScheme9": "发现", "PE.Views.Toolbar.txtSlideAlign": "与幻灯片对齐", - "PE.Views.Toolbar.txtUngroup": "取消组合" + "PE.Views.Toolbar.txtUngroup": "取消组合", + "PE.Views.Transitions.strDelay": "延迟", + "PE.Views.Transitions.strDuration": "持续时间", + "PE.Views.Transitions.strStartOnClick": "开始点击", + "PE.Views.Transitions.textBottom": "底部", + "PE.Views.Transitions.textBottomLeft": "左下", + "PE.Views.Transitions.textBottomRight": "右下", + "PE.Views.Transitions.textClock": "时钟", + "PE.Views.Transitions.textClockwise": "顺时针", + "PE.Views.Transitions.textCounterclockwise": "逆时针", + "PE.Views.Transitions.textCover": "覆盖", + "PE.Views.Transitions.textLeft": "左", + "PE.Views.Transitions.textRight": "右", + "PE.Views.Transitions.textTop": "顶部", + "PE.Views.Transitions.textTopLeft": "左上", + "PE.Views.Transitions.textTopRight": "右上", + "PE.Views.Transitions.txtApplyToAll": "适用于所有幻灯片", + "PE.Views.Transitions.txtPreview": "预览" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/embed/locale/el.json b/apps/spreadsheeteditor/embed/locale/el.json index b096c0c70..1d68d8db8 100644 --- a/apps/spreadsheeteditor/embed/locale/el.json +++ b/apps/spreadsheeteditor/embed/locale/el.json @@ -13,6 +13,8 @@ "SSE.ApplicationController.errorDefaultMessage": "Κωδικός σφάλματος: %1", "SSE.ApplicationController.errorFilePassProtect": "Το αρχείο προστατεύεται με συνθηματικό και δεν μπορεί να ανοίξει.", "SSE.ApplicationController.errorFileSizeExceed": "Το μέγεθος του αρχείου υπερβαίνει το όριο που έχει οριστεί για τον διακομιστή σας.
Παρακαλούμε επικοινωνήστε με τον διαχειριστή του διακομιστή εγγράφων για λεπτομέρειες.", + "SSE.ApplicationController.errorForceSave": "Παρουσιάστηκε σφάλμα κατά την αποθήκευση του αρχείου. Χρησιμοποιήστε την επιλογή «Λήψη ως» για να αποθηκεύσετε το αρχείο στον σκληρό δίσκο του υπολογιστή σας ή δοκιμάστε ξανά αργότερα.", + "SSE.ApplicationController.errorLoadingFont": "Οι γραμματοσειρές δεν έχουν φορτωθεί.
Παρακαλούμε επικοινωνήστε με τον διαχειριστή του Εξυπηρετητή Εγγράφων σας.", "SSE.ApplicationController.errorUpdateVersionOnDisconnect": "Η σύνδεση στο Διαδίκτυο έχει αποκατασταθεί και η έκδοση του αρχείου έχει αλλάξει.
Προτού συνεχίσετε να εργάζεστε, πρέπει να κατεβάσετε το αρχείο ή να αντιγράψετε το περιεχόμενό του για να βεβαιωθείτε ότι δεν έχει χαθεί τίποτα και, στη συνέχεια, φορτώστε ξανά αυτήν τη σελίδα.", "SSE.ApplicationController.errorUserDrop": "Δεν είναι δυνατή η πρόσβαση στο αρχείο αυτήν τη στιγμή.", "SSE.ApplicationController.notcriticalErrorTitle": "Προειδοποίηση", diff --git a/apps/spreadsheeteditor/embed/locale/ko.json b/apps/spreadsheeteditor/embed/locale/ko.json index e657ed9bb..aac7d0479 100644 --- a/apps/spreadsheeteditor/embed/locale/ko.json +++ b/apps/spreadsheeteditor/embed/locale/ko.json @@ -13,10 +13,14 @@ "SSE.ApplicationController.errorDefaultMessage": "오류 코드 : %1", "SSE.ApplicationController.errorFilePassProtect": "이 문서는 암호로 보호되어 있어 열 수 없습니다.", "SSE.ApplicationController.errorFileSizeExceed": "파일의 크기가 서버에서 정해진 범위를 초과 했습니다. 문서 서버 관리자에게 해당 내용에 대한 자세한 안내를 받아 보시기 바랍니다.", + "SSE.ApplicationController.errorForceSave": "파일을 저장하는 동안 오류가 발생했습니다. \"다른 이름으로 다운로드\" 옵션을 사용하여 파일을 컴퓨터의 하드 드라이브에 저장하거나 나중에 다시 시도하십시오.", + "SSE.ApplicationController.errorLoadingFont": "글꼴이 로드되지 않았습니다.
문서 관리 관리자에게 문의하십시오.", "SSE.ApplicationController.errorUpdateVersionOnDisconnect": "인터넷 연결이 복구 되었으며 파일에 수정 사항이 발생되었습니다. 작업을 계속 하시기 전에 반드시 기존의 파일을 다운로드하거나 내용을 복사해서 작업 내용을 잃어 버리는 일이 없도록 한 후에 이 페이지를 새로 고침(reload) 해 주시기 바랍니다.", "SSE.ApplicationController.errorUserDrop": "파일에 지금 액세스 할 수 없습니다.", "SSE.ApplicationController.notcriticalErrorTitle": "경고", "SSE.ApplicationController.scriptLoadError": "연결 속도가 느려, 일부 요소들이 로드되지 않았습니다. 페이지를 다시 새로 고침해주세요.", + "SSE.ApplicationController.textAnonymous": "익명", + "SSE.ApplicationController.textGuest": "게스트", "SSE.ApplicationController.textLoadingDocument": "스프레드 시트 로드 중", "SSE.ApplicationController.textOf": "의", "SSE.ApplicationController.txtClose": "완료", @@ -25,6 +29,8 @@ "SSE.ApplicationController.waitText": "잠시만 기다려주세요...", "SSE.ApplicationView.txtDownload": "다운로드", "SSE.ApplicationView.txtEmbed": "퍼가기", + "SSE.ApplicationView.txtFileLocation": "파일 위치 열기", "SSE.ApplicationView.txtFullScreen": "전체 화면", + "SSE.ApplicationView.txtPrint": "인쇄", "SSE.ApplicationView.txtShare": "공유" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/embed/locale/tr.json b/apps/spreadsheeteditor/embed/locale/tr.json index f5107458c..6b6792368 100644 --- a/apps/spreadsheeteditor/embed/locale/tr.json +++ b/apps/spreadsheeteditor/embed/locale/tr.json @@ -16,6 +16,7 @@ "SSE.ApplicationController.errorUserDrop": "Belgeye şu an erişilemiyor.", "SSE.ApplicationController.notcriticalErrorTitle": "Uyarı", "SSE.ApplicationController.scriptLoadError": "Bağlantı çok yavaş, bileşenlerin bazıları yüklenemedi. Lütfen sayfayı yenileyin.", + "SSE.ApplicationController.textGuest": "Ziyaretçi", "SSE.ApplicationController.textLoadingDocument": "Spreadsheet yükleniyor", "SSE.ApplicationController.textOf": "'in", "SSE.ApplicationController.txtClose": "Kapat", diff --git a/apps/spreadsheeteditor/embed/locale/zh.json b/apps/spreadsheeteditor/embed/locale/zh.json index 62c409d83..7673381a7 100644 --- a/apps/spreadsheeteditor/embed/locale/zh.json +++ b/apps/spreadsheeteditor/embed/locale/zh.json @@ -13,6 +13,8 @@ "SSE.ApplicationController.errorDefaultMessage": "错误代码:%1", "SSE.ApplicationController.errorFilePassProtect": "该文档受密码保护,无法被打开。", "SSE.ApplicationController.errorFileSizeExceed": "文件大小超出了为服务器设置的限制.
有关详细信息,请与文档服务器管理员联系。", + "SSE.ApplicationController.errorForceSave": "保存文件时发生错误。请使用“下载为”选项将文件保存到计算机硬盘中或稍后重试。", + "SSE.ApplicationController.errorLoadingFont": "字体未加载。
请与文档服务器管理员联系。", "SSE.ApplicationController.errorUpdateVersionOnDisconnect": "网络连接已恢复,文件版本已变更。
在继续工作之前,需要下载文件或复制其内容以避免丢失数据,然后刷新此页。", "SSE.ApplicationController.errorUserDrop": "该文件现在无法访问。", "SSE.ApplicationController.notcriticalErrorTitle": "警告", diff --git a/apps/spreadsheeteditor/main/locale/ca.json b/apps/spreadsheeteditor/main/locale/ca.json index b7b31101f..c5891c77e 100644 --- a/apps/spreadsheeteditor/main/locale/ca.json +++ b/apps/spreadsheeteditor/main/locale/ca.json @@ -2,6 +2,7 @@ "cancelButtonText": "Cancel·la", "Common.Controllers.Chat.notcriticalErrorTitle": "Advertiment", "Common.Controllers.Chat.textEnterMessage": "Introdueix el teu missatge aquí", + "Common.Controllers.History.notcriticalErrorTitle": "Advertiment", "Common.define.chartData.textArea": "Àrea", "Common.define.chartData.textAreaStacked": "Àrea apilada", "Common.define.chartData.textAreaStackedPer": "Àrea apilada al 100%", @@ -102,6 +103,8 @@ "Common.Translation.warnFileLocked": "El document és obert en una altra aplicació. Podeu continuar editant i guardar-lo com a còpia.", "Common.Translation.warnFileLockedBtnEdit": "Crea una còpia", "Common.Translation.warnFileLockedBtnView": "Obre per a la seva visualització", + "Common.UI.ButtonColored.textAutoColor": "Automàtic", + "Common.UI.ButtonColored.textNewColor": "Afegeix un color personalitzat nou ", "Common.UI.ComboBorderSize.txtNoBorders": "Sense vores", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Sense vores", "Common.UI.ComboDataView.emptyComboText": "Sense estils", @@ -171,6 +174,12 @@ "Common.Views.AutoCorrectDialog.warnReset": "Qualsevol autocorrecció que hàgiu afegit se suprimirà i les modificades es restauraran als seus valors originals. Voleu continuar?", "Common.Views.AutoCorrectDialog.warnRestore": "L'entrada de correcció automàtica de %1 es restablirà al seu valor original. Vols continuar?", "Common.Views.Chat.textSend": "Envia", + "Common.Views.Comments.mniAuthorAsc": "Autor de la A a la Z", + "Common.Views.Comments.mniAuthorDesc": "Autor de la Z a la A", + "Common.Views.Comments.mniDateAsc": "Més antic", + "Common.Views.Comments.mniDateDesc": "Més recent", + "Common.Views.Comments.mniPositionAsc": "Des de dalt", + "Common.Views.Comments.mniPositionDesc": "Des de baix", "Common.Views.Comments.textAdd": "Afegeix", "Common.Views.Comments.textAddComment": "Afegeix un comentari", "Common.Views.Comments.textAddCommentToDoc": "Afegeix un comentari al document", @@ -178,6 +187,7 @@ "Common.Views.Comments.textAnonym": "Convidat", "Common.Views.Comments.textCancel": "Cancel·la", "Common.Views.Comments.textClose": "Tanca", + "Common.Views.Comments.textClosePanel": "Tanqueu els comentaris", "Common.Views.Comments.textComments": "Comentaris", "Common.Views.Comments.textEdit": "D'acord", "Common.Views.Comments.textEnterCommentHint": "Introdueix el teu comentari aquí", @@ -186,6 +196,7 @@ "Common.Views.Comments.textReply": "Respon", "Common.Views.Comments.textResolve": "Resol", "Common.Views.Comments.textResolved": "Resolt", + "Common.Views.Comments.textSort": "Ordena els comentaris", "Common.Views.CopyWarningDialog.textDontShow": "No tornis a mostrar aquest missatge", "Common.Views.CopyWarningDialog.textMsg": "Les accions de copiar, tallar i enganxar mitjançant els botons de la barra d’eines de l’editor i les accions del menú contextual només es realitzaran dins d’aquesta pestanya editor.

Per copiar o enganxar a o des d’aplicacions fora de la pestanya de l'editor, utilitzeu les combinacions de teclat següents:", "Common.Views.CopyWarningDialog.textTitle": "Accions de copia, talla i enganxa ", @@ -202,7 +213,7 @@ "Common.Views.Header.textBack": "Obre la ubicació del fitxer", "Common.Views.Header.textCompactView": "Amaga la barra d'eines", "Common.Views.Header.textHideLines": "Amaga els regles", - "Common.Views.Header.textHideStatusBar": "Amaga la barra d'estat", + "Common.Views.Header.textHideStatusBar": "Combineu fulls i barres d'estat", "Common.Views.Header.textRemoveFavorite": "Suprimeix de favorits", "Common.Views.Header.textSaveBegin": "S'està desant...", "Common.Views.Header.textSaveChanged": "Modificat", @@ -221,6 +232,13 @@ "Common.Views.Header.tipViewUsers": "Mostra els usuaris i gestiona els permisos d’accés als documents", "Common.Views.Header.txtAccessRights": "Canvia els drets d’accés", "Common.Views.Header.txtRename": "Canvia el nom", + "Common.Views.History.textCloseHistory": "Tanqueu l'historial", + "Common.Views.History.textHide": "Redueix", + "Common.Views.History.textHideAll": "Amaga els canvis detallats", + "Common.Views.History.textRestore": "Restaura", + "Common.Views.History.textShow": "Expandeix", + "Common.Views.History.textShowAll": "Mostra els canvis al detall", + "Common.Views.History.textVer": "ver.", "Common.Views.ImageFromUrlDialog.textUrl": "Enganxa una URL d'imatge:", "Common.Views.ImageFromUrlDialog.txtEmpty": "Aquest camp és necessari", "Common.Views.ImageFromUrlDialog.txtNotUrl": "Aquest camp hauria de ser una URL amb el format \"http://www.example.com\"", @@ -515,6 +533,7 @@ "SSE.Controllers.DocumentHolder.txtLimitChange": "Canvia els límits de la ubicació", "SSE.Controllers.DocumentHolder.txtLimitOver": "Límit sobre el text", "SSE.Controllers.DocumentHolder.txtLimitUnder": "Límit sota el text", + "SSE.Controllers.DocumentHolder.txtLockSort": "Les dades es troben al costat de la vostra selecció, però no teniu els permisos suficients per canviar aquestes cel·les.
Voleu continuar amb la selecció actual?", "SSE.Controllers.DocumentHolder.txtMatchBrackets": "Assigna els claudàtors a l'alçada de l'argument", "SSE.Controllers.DocumentHolder.txtMatrixAlign": "Alineació de la matriu", "SSE.Controllers.DocumentHolder.txtNoChoices": "No hi ha opcions per omplir la cel·la.
Només es poden seleccionar valors de text de la columna per substituir-los.", @@ -547,6 +566,7 @@ "SSE.Controllers.DocumentHolder.txtRemLimit": "Suprimeix el límit", "SSE.Controllers.DocumentHolder.txtRemoveAccentChar": "Suprimeix el caràcter d'accent", "SSE.Controllers.DocumentHolder.txtRemoveBar": "Suprimeix la barra", + "SSE.Controllers.DocumentHolder.txtRemoveWarning": "Voleu eliminar aquesta signatura?
No es podrà desfer.", "SSE.Controllers.DocumentHolder.txtRemScripts": "Suprimeix els scripts", "SSE.Controllers.DocumentHolder.txtRemSubscript": "Suprimeix el subíndex", "SSE.Controllers.DocumentHolder.txtRemSuperscript": "Suprimir el superíndex", @@ -566,6 +586,7 @@ "SSE.Controllers.DocumentHolder.txtUnderbar": "Barra sota el text", "SSE.Controllers.DocumentHolder.txtUndoExpansion": "Desfés l'expansió automàtica de la taula", "SSE.Controllers.DocumentHolder.txtUseTextImport": "Utilitza l'auxiliar d'importació de text", + "SSE.Controllers.DocumentHolder.txtWarnUrl": "Si feu clic en aquest enllaç pot perjudicar el dispositiu i les dades.
Esteu segur que voleu continuar?", "SSE.Controllers.DocumentHolder.txtWidth": "Amplada", "SSE.Controllers.FormulaDialog.sCategoryAll": "Tot", "SSE.Controllers.FormulaDialog.sCategoryCube": "Cub", @@ -585,6 +606,7 @@ "SSE.Controllers.LeftMenu.textByRows": "Per files", "SSE.Controllers.LeftMenu.textFormulas": "Fórmules", "SSE.Controllers.LeftMenu.textItemEntireCell": "Contingut de tota la cel·la", + "SSE.Controllers.LeftMenu.textLoadHistory": "S'està carregant l'historial de versions...", "SSE.Controllers.LeftMenu.textLookin": "Cerca", "SSE.Controllers.LeftMenu.textNoTextFound": "No s'han trobat les dades que heu cercat. Ajusteu les opcions de cerca.", "SSE.Controllers.LeftMenu.textReplaceSkipped": "S'ha realitzat la substitució. S'han omès {0} ocurrències.", @@ -617,6 +639,7 @@ "SSE.Controllers.Main.errorCannotUngroup": "No es pot desagrupar. Per iniciar un esquema, seleccioneu les files o columnes de detall i agrupeu-les.", "SSE.Controllers.Main.errorChangeArray": "No podeu canviar part d'una matriu.", "SSE.Controllers.Main.errorChangeFilteredRange": "Això canviarà un interval filtrat al full de càlcul.
Per completar aquesta tasca, suprimiu els filtres automàtics.", + "SSE.Controllers.Main.errorChangeOnProtectedSheet": "La cel·la o el gràfic que intenteu canviar es troba en un full protegit.
Per fer un canvi, desprotegiu el full. És possible que se us demani que introduïu una contrasenya.", "SSE.Controllers.Main.errorCoAuthoringDisconnect": "S'ha perdut la connexió amb el servidor. Ara no es pot editar el document.", "SSE.Controllers.Main.errorConnectToServer": "No s'ha pogut desar el document. Comproveu la configuració de la connexió o contacteu amb el vostre administrador.
Quan cliqueu el botó \"D'acord\", se us demanarà que descarregueu el document.", "SSE.Controllers.Main.errorCopyMultiselectArea": "Aquesta ordre no es pot utilitzar amb diverses seleccions.
Seleccioneu un interval únic i torneu-ho a provar.", @@ -628,6 +651,8 @@ "SSE.Controllers.Main.errorDataRange": "L'interval de dades no és correcte.", "SSE.Controllers.Main.errorDataValidate": "El valor que heu introduït no és vàlid.
Un usuari ha restringit els valors que es poden introduir en aquesta cel·la.", "SSE.Controllers.Main.errorDefaultMessage": "Codi d'error:%1", + "SSE.Controllers.Main.errorDeleteColumnContainsLockedCell": "Intenteu suprimir una columna que conté una cel·la blocada. Les cel·les blocades no es poden suprimir mentre el llibre estigui protegit.
Per suprimir una cel·la blocada desprotegiu el full. És possible que us demanin introduir una contrasenya.", + "SSE.Controllers.Main.errorDeleteRowContainsLockedCell": "Intenteu suprimir una fila que conté una cel·la blocada. Les cel·les blocades no es poden suprimir mentre el llibre estigui protegit.
Per suprimir una cel·la blocada desprotegiu el full. És possible que us demanin introduir una contrasenya.", "SSE.Controllers.Main.errorEditingDownloadas": "S'ha produït un error mentre es treballava amb el document.
Utilitzeu l'opció \"Baixa com a ...\" per desar la còpia de seguretat del fitxer al disc dur del vostre ordinador.", "SSE.Controllers.Main.errorEditingSaveas": "S'ha produït un error mentre es treballava amb el document.
Utilitzeu l'opció \"Desar com a ...\" per desar la còpia de seguretat del fitxer al disc dur de l’ordinador.", "SSE.Controllers.Main.errorEditView": "La visualització del full existent no es pot editar i no es poden crear de noves en aquest moment, ja que s’estan editant algunes d’elles.", @@ -650,6 +675,7 @@ "SSE.Controllers.Main.errorKeyEncrypt": "Descriptor de claus desconegut", "SSE.Controllers.Main.errorKeyExpire": "El descriptor de claus ha caducat", "SSE.Controllers.Main.errorLabledColumnsPivot": "Per crear una taula dinàmica, utilitzeu les dades que s’organitzen com una llista amb columnes etiquetades.", + "SSE.Controllers.Main.errorLoadingFont": "No s'han carregat els tipus de lletra.
Contacteu amb l'administrador del Servidor de Documents.", "SSE.Controllers.Main.errorLocationOrDataRangeError": "La referència per a la ubicació o l'interval de dades no és vàlida.", "SSE.Controllers.Main.errorLockedAll": "Aquesta operació no es pot fer perquè un altre usuari ha bloquejat el full.", "SSE.Controllers.Main.errorLockedCellPivot": "No podeu canviar les dades d'una taula dinàmica", @@ -661,6 +687,7 @@ "SSE.Controllers.Main.errorNoDataToParse": "No s'han seleccionat dades per analitzar.", "SSE.Controllers.Main.errorOpenWarning": "La longitud d'una de les fórmules del fitxer ha excedit el límit de 8192 caràcters permès.
La fórmula s'ha suprimit.", "SSE.Controllers.Main.errorOperandExpected": "La sintaxi de la funció introduïda no és correcta. Comproveu si us falta un dels parèntesis - '(' o ')'.", + "SSE.Controllers.Main.errorPasswordIsNotCorrect": "La contrasenya que heu introduït no és correcta.
Verifiqueu que la tecla Bloq Maj està desactivada i assegureu-vos que utilitzeu les majúscules correctes.", "SSE.Controllers.Main.errorPasteMaxRange": "L’àrea de còpia i enganxa no coincideix.
Seleccioneu una àrea amb la mateixa mida o cliqueu a la primera cel·la d’una fila per enganxar les cel·les copiades.", "SSE.Controllers.Main.errorPasteMultiSelect": "Aquesta acció no es pot fer en una selecció de diversos intervals.
Seleccioneu un sol interval i torneu-ho a provar.", "SSE.Controllers.Main.errorPasteSlicerError": "Els afinadors de la taula no es poden copiar d’un llibre a un altre.", @@ -686,6 +713,7 @@ "SSE.Controllers.Main.errorViewerDisconnect": "S'ha perdut la connexió. Encara podeu visualitzar el document,
però no podreu descarregar-lo ni imprimir-lo fins que no es restableixi la connexió i es torni a carregar la pàgina.", "SSE.Controllers.Main.errorWrongBracketsCount": "Un error a la fórmula introduïda.
S'utilitza un número incorrecte de claudàtors.", "SSE.Controllers.Main.errorWrongOperator": "S'ha produït un error en la fórmula que s'ha introduït perquè utilitza un operador que no és correcte.
Corregiu l'error.", + "SSE.Controllers.Main.errorWrongPassword": "La contrasenya que heu introduït no és correcta.", "SSE.Controllers.Main.errRemDuplicates": "S'han trobat i suprimit valors duplicats: {0}, resten valors únics: {1}.", "SSE.Controllers.Main.leavePageText": "Teniu canvis no desats en aquest full de càlcul. Cliqueu a \"Continua en aquesta pàgina\" i \"Desa\" per desar-les. Cliqueu a \"Deixa aquesta pàgina\" per descartar tots els canvis no desats.", "SSE.Controllers.Main.leavePageTextOnClose": "Es perdran tots els canvis no desats en aquest full de càlcul.
Cliqueu a «Cancel·la» i després a «Desa» per desar-los. Cliqueu a \"D'acord\" per descartar tots els canvis no desats.", @@ -716,16 +744,22 @@ "SSE.Controllers.Main.saveTitleText": "S'està desant el full de càlcul", "SSE.Controllers.Main.scriptLoadError": "La connexió és massa lenta, alguns dels components no s’han pogut carregar. Torneu a carregar la pàgina.", "SSE.Controllers.Main.textAnonymous": "Anònim", + "SSE.Controllers.Main.textApplyAll": "Aplica-ho a totes les equacions", "SSE.Controllers.Main.textBuyNow": "Visita el lloc web", + "SSE.Controllers.Main.textChangesSaved": "S'han desat tots els canvis", "SSE.Controllers.Main.textClose": "Tanca", "SSE.Controllers.Main.textCloseTip": "Clica per tancar el consell", "SSE.Controllers.Main.textConfirm": "Confirmació", "SSE.Controllers.Main.textContactUs": "Contacta amb vendes", + "SSE.Controllers.Main.textConvertEquation": "Aquesta equació es va crear amb una versió antiga de l'editor d'equacions que ja no és compatible. Per editar-la, convertiu l’equació al format d’Office Math ML.
Convertir ara?", "SSE.Controllers.Main.textCustomLoader": "Tingueu en compte que, segons els termes de la llicència, no teniu permís per canviar el carregador.
Consulteu el nostre departament de vendes per obtenir un pressupost.", + "SSE.Controllers.Main.textDisconnect": "S'ha perdut la connexió", "SSE.Controllers.Main.textGuest": "Convidat", "SSE.Controllers.Main.textHasMacros": "El fitxer conté macros automàtiques.
Voleu executar les macros?", + "SSE.Controllers.Main.textLearnMore": "Més informació", "SSE.Controllers.Main.textLoadingDocument": "S'està carregant el full de càlcul", "SSE.Controllers.Main.textLongName": "Escriviu un nom que tingui menys de 128 caràcters.", + "SSE.Controllers.Main.textNeedSynchronize": "Teniu actualitzacions", "SSE.Controllers.Main.textNo": "No", "SSE.Controllers.Main.textNoLicenseTitle": "S'ha assolit el límit de llicència", "SSE.Controllers.Main.textPaidFeature": "Funció de pagament", @@ -759,6 +793,7 @@ "SSE.Controllers.Main.txtDays": "Dies", "SSE.Controllers.Main.txtDiagramTitle": "Títol del gràfic", "SSE.Controllers.Main.txtEditingMode": "Estableix el mode d'edició ...", + "SSE.Controllers.Main.txtErrorLoadHistory": "No s'ha pogut carregar l'historial", "SSE.Controllers.Main.txtFiguredArrows": "Fletxes de figures", "SSE.Controllers.Main.txtFile": "Fitxer", "SSE.Controllers.Main.txtGrandTotal": "Total general", @@ -978,6 +1013,10 @@ "SSE.Controllers.Main.txtTab": "Tabulador", "SSE.Controllers.Main.txtTable": "Taula", "SSE.Controllers.Main.txtTime": "Hora", + "SSE.Controllers.Main.txtUnlock": "Desbloqueja", + "SSE.Controllers.Main.txtUnlockRange": "Desbloca l'intereval", + "SSE.Controllers.Main.txtUnlockRangeDescription": "Introduïu la contrasenya per canviar aquest interval:", + "SSE.Controllers.Main.txtUnlockRangeWarning": "Un interval que intenteu canviar està protegit amb contrasenya.", "SSE.Controllers.Main.txtValues": "Valors", "SSE.Controllers.Main.txtXAxis": "Eix X", "SSE.Controllers.Main.txtYAxis": "Eix Y", @@ -1225,6 +1264,7 @@ "SSE.Controllers.Toolbar.txtLimitLog_LogBase": "Logaritme", "SSE.Controllers.Toolbar.txtLimitLog_Max": "Màxim", "SSE.Controllers.Toolbar.txtLimitLog_Min": "Mínim", + "SSE.Controllers.Toolbar.txtLockSort": "Les dades es troben al costat de la vostra selecció, però no teniu els permisos suficients per canviar aquestes cel·les.
Voleu continuar amb la selecció actual?", "SSE.Controllers.Toolbar.txtMatrix_1_2": "Matriu buida 1x2", "SSE.Controllers.Toolbar.txtMatrix_1_3": "Matriu buida 1x3", "SSE.Controllers.Toolbar.txtMatrix_2_1": "Matriu buida 2x1", @@ -1689,9 +1729,9 @@ "SSE.Views.DataTab.capBtnTextRemDuplicates": "Suprimeix els duplicats", "SSE.Views.DataTab.capBtnTextToCol": "Text en columnes", "SSE.Views.DataTab.capBtnUngroup": "Desagrupa", - "SSE.Views.DataTab.capDataFromText": "Des de text/CSV", - "SSE.Views.DataTab.mniFromFile": "Obtén dades des del fitxer", - "SSE.Views.DataTab.mniFromUrl": "Obtén dades des de l'URL", + "SSE.Views.DataTab.capDataFromText": "Obteniu dades", + "SSE.Views.DataTab.mniFromFile": "Des de TXT / CSV local", + "SSE.Views.DataTab.mniFromUrl": "Des de l'adreça web TXT / CSV", "SSE.Views.DataTab.textBelow": "Files de resum a sota del detall", "SSE.Views.DataTab.textClear": "Esborra l'esquema", "SSE.Views.DataTab.textColumns": "Desagrupa les columnes", @@ -1958,6 +1998,7 @@ "SSE.Views.FileMenu.btnCreateNewCaption": "Crea'n un de nou", "SSE.Views.FileMenu.btnDownloadCaption": "Baixa-ho com a...", "SSE.Views.FileMenu.btnHelpCaption": "Ajuda...", + "SSE.Views.FileMenu.btnHistoryCaption": "Historial de versions", "SSE.Views.FileMenu.btnInfoCaption": "Informació del full de càlcul...", "SSE.Views.FileMenu.btnPrintCaption": "Imprimeix", "SSE.Views.FileMenu.btnProtectCaption": "Protegeix", @@ -1970,6 +2011,8 @@ "SSE.Views.FileMenu.btnSaveCopyAsCaption": "Desa còpia com a...", "SSE.Views.FileMenu.btnSettingsCaption": "Configuració avançada...", "SSE.Views.FileMenu.btnToEditCaption": "Edita el full de càlcul", + "SSE.Views.FileMenuPanels.CreateNew.txtBlank": "Full de càlcul en blanc", + "SSE.Views.FileMenuPanels.CreateNew.txtCreateNew": "Crea'n un de nou", "SSE.Views.FileMenuPanels.DocumentInfo.okButtonText": "Aplica", "SSE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Afegeix l'autor", "SSE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Afegeix text", @@ -2053,7 +2096,8 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNl": "Neerlandès", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPl": "Polonès", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPt": "Punt", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPtlang": "Portuguès", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPtbr": "Portuguès (Brasil)", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPtlang": "Portuguès (Portugal)", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRo": "Romanès", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRu": "Rus", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRunMacros": "Habilita-ho tot", @@ -2675,6 +2719,56 @@ "SSE.Views.PrintTitlesDialog.textSelectRange": "Selecciona un interval", "SSE.Views.PrintTitlesDialog.textTitle": "Imprimeix els títols", "SSE.Views.PrintTitlesDialog.textTop": "Repeteix les files a la part superior", + "SSE.Views.ProtectDialog.textExistName": "ERROR! L'interval amb aquest títol ja existeix", + "SSE.Views.ProtectDialog.textInvalidName": "El títol de l'interval ha de començar amb una lletra i només pot contenir lletres, números i espais.", + "SSE.Views.ProtectDialog.textInvalidRange": "ERROR! L'interval de cel·les no és vàlid", + "SSE.Views.ProtectDialog.textSelectData": "Selecciona dades", + "SSE.Views.ProtectDialog.txtAllow": "Permetre a tots els usuaris d'aquest full", + "SSE.Views.ProtectDialog.txtAutofilter": "Utilitzar Filtre automàtic", + "SSE.Views.ProtectDialog.txtDelCols": "Suprimeix les columnes", + "SSE.Views.ProtectDialog.txtDelRows": "Suprimeix les files", + "SSE.Views.ProtectDialog.txtEmpty": "Aquest camp és obligatori", + "SSE.Views.ProtectDialog.txtFormatCells": "Format de les cel·les", + "SSE.Views.ProtectDialog.txtFormatCols": "Format de les columnes", + "SSE.Views.ProtectDialog.txtFormatRows": "Format de les files", + "SSE.Views.ProtectDialog.txtIncorrectPwd": "La contrasenya de confirmació no és idèntica", + "SSE.Views.ProtectDialog.txtInsCols": "Insereix columnes", + "SSE.Views.ProtectDialog.txtInsHyper": "Insereix un enllaç", + "SSE.Views.ProtectDialog.txtInsRows": "Insereix files", + "SSE.Views.ProtectDialog.txtObjs": "Editar els objectes", + "SSE.Views.ProtectDialog.txtOptional": "opcional", + "SSE.Views.ProtectDialog.txtPassword": "Contrasenya", + "SSE.Views.ProtectDialog.txtPivot": "Utilitzeu la taula dinàmica i el gràfic dinàmic", + "SSE.Views.ProtectDialog.txtProtect": "Protegeix", + "SSE.Views.ProtectDialog.txtRange": "Interval", + "SSE.Views.ProtectDialog.txtRangeName": "Títol", + "SSE.Views.ProtectDialog.txtRepeat": "Repeteix la contrasenya", + "SSE.Views.ProtectDialog.txtScen": "Editar els escenaris", + "SSE.Views.ProtectDialog.txtSelLocked": "Seleccionar les cel·les blocades", + "SSE.Views.ProtectDialog.txtSelUnLocked": "Seleccionar les cel·les desblocades", + "SSE.Views.ProtectDialog.txtSheetDescription": "Podeu evitar els canvis no desitjats d'altres persones si limiteu la seva capacitat d'edició.", + "SSE.Views.ProtectDialog.txtSheetTitle": "Protecció del full", + "SSE.Views.ProtectDialog.txtSort": "Ordena", + "SSE.Views.ProtectDialog.txtWarning": "Advertiment: si perdeu o oblideu la contrasenya, no la podreu recuperar. Deseu-la en un lloc segur.", + "SSE.Views.ProtectDialog.txtWBDescription": "Per evitar que altres usuaris vegin fulls de càlcul amagats, afegeixin, moguin, eliminin o amaguin fulls de càlcul i els canviïn el nom, podeu protegir l'estructura del vostre llibre de treball amb una contrasenya.", + "SSE.Views.ProtectDialog.txtWBTitle": "Protegeix l'estructura de llibre de treball", + "SSE.Views.ProtectRangesDlg.guestText": "Convidat", + "SSE.Views.ProtectRangesDlg.textDelete": "Suprimeix", + "SSE.Views.ProtectRangesDlg.textEdit": "Edita", + "SSE.Views.ProtectRangesDlg.textEmpty": "No es permeten intervals per a l'edició.", + "SSE.Views.ProtectRangesDlg.textNew": "Nou", + "SSE.Views.ProtectRangesDlg.textProtect": "Protecció del full", + "SSE.Views.ProtectRangesDlg.textPwd": "Contrasenya", + "SSE.Views.ProtectRangesDlg.textRange": "Interval", + "SSE.Views.ProtectRangesDlg.textRangesDesc": "Intervals desbloquejats per una contrasenya quan el full està protegit (això només funciona per a cel·les bloquejades)", + "SSE.Views.ProtectRangesDlg.textTitle": "Títol", + "SSE.Views.ProtectRangesDlg.tipIsLocked": "Un altre usuari està editant aquest element.", + "SSE.Views.ProtectRangesDlg.txtEditRange": "Editar l'interval", + "SSE.Views.ProtectRangesDlg.txtNewRange": "Interval nou", + "SSE.Views.ProtectRangesDlg.txtNo": "No", + "SSE.Views.ProtectRangesDlg.txtTitle": "Permet als usuaris editar intervals", + "SSE.Views.ProtectRangesDlg.txtYes": "Sí", + "SSE.Views.ProtectRangesDlg.warnDelete": "Segur que vols suprimir el nom {0}?", "SSE.Views.RemoveDuplicatesDialog.textColumns": "Columnes", "SSE.Views.RemoveDuplicatesDialog.textDescription": "Per suprimir els valors duplicats, seleccioneu una o més columnes que continguin duplicats.", "SSE.Views.RemoveDuplicatesDialog.textHeaders": "Les meves dades tenen capçaleres", @@ -2978,13 +3072,17 @@ "SSE.Views.Statusbar.itemMaximum": "Màxim", "SSE.Views.Statusbar.itemMinimum": "Mínim", "SSE.Views.Statusbar.itemMove": "Desplaça't", + "SSE.Views.Statusbar.itemProtect": "Protegeix", "SSE.Views.Statusbar.itemRename": "Canvia el nom", + "SSE.Views.Statusbar.itemStatus": "S'està desant l'estat", "SSE.Views.Statusbar.itemSum": "Suma", "SSE.Views.Statusbar.itemTabColor": "Color de la pestanya", + "SSE.Views.Statusbar.itemUnProtect": "Desprotegeix", "SSE.Views.Statusbar.RenameDialog.errNameExists": "Ja existeix un llibre de treball amb aquest nom.", "SSE.Views.Statusbar.RenameDialog.errNameWrongChar": "Un nom de full no pot contenir els caràcters següents: \\ / *? []:", "SSE.Views.Statusbar.RenameDialog.labelSheetName": "Nom del full", "SSE.Views.Statusbar.selectAllSheets": "Selecciona tots els fulls", + "SSE.Views.Statusbar.sheetIndexText": "Full {0} de {1}", "SSE.Views.Statusbar.textAverage": "Mitjana", "SSE.Views.Statusbar.textCount": "Recompte", "SSE.Views.Statusbar.textMax": "Màx", @@ -3420,5 +3518,19 @@ "SSE.Views.ViewTab.tipClose": "Tanca la visualització dels fulls", "SSE.Views.ViewTab.tipCreate": "Crea una visualització de fulls", "SSE.Views.ViewTab.tipFreeze": "Immobilitza les subfinestres", - "SSE.Views.ViewTab.tipSheetView": "Visualització del full" + "SSE.Views.ViewTab.tipSheetView": "Visualització del full", + "SSE.Views.WBProtection.hintAllowRanges": "Permet editar intervals", + "SSE.Views.WBProtection.hintProtectSheet": "Protecció del full", + "SSE.Views.WBProtection.hintProtectWB": "Protecció del llibre de treball", + "SSE.Views.WBProtection.txtAllowRanges": "Permet editar intervals", + "SSE.Views.WBProtection.txtHiddenFormula": "Fórmules amagades", + "SSE.Views.WBProtection.txtLockedCell": "Cel·la bloquejada", + "SSE.Views.WBProtection.txtLockedShape": "Forma blocada", + "SSE.Views.WBProtection.txtLockedText": "Bloca text", + "SSE.Views.WBProtection.txtProtectSheet": "Protecció del full", + "SSE.Views.WBProtection.txtProtectWB": "Protecció del llibre de treball", + "SSE.Views.WBProtection.txtSheetUnlockDescription": "Introduïu una contrasenya per desprotegir el full", + "SSE.Views.WBProtection.txtSheetUnlockTitle": "Desprotegeix el full", + "SSE.Views.WBProtection.txtWBUnlockDescription": "Introduïu una contrasenya per desprotegir el llibre", + "SSE.Views.WBProtection.txtWBUnlockTitle": "Desprotegeix el llibre de treball" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/cs.json b/apps/spreadsheeteditor/main/locale/cs.json index 35e0ff6a9..8b049fc95 100644 --- a/apps/spreadsheeteditor/main/locale/cs.json +++ b/apps/spreadsheeteditor/main/locale/cs.json @@ -3,18 +3,36 @@ "Common.Controllers.Chat.notcriticalErrorTitle": "Varování", "Common.Controllers.Chat.textEnterMessage": "Sem napište svou zprávu", "Common.define.chartData.textArea": "Plošný graf", + "Common.define.chartData.textAreaStackedPer": "100% skládaný plošný", "Common.define.chartData.textBar": "Pruhový graf", + "Common.define.chartData.textBarNormal3d": "3D skupinový sloupcový", + "Common.define.chartData.textBarNormal3dPerspective": "3D sloupcový", + "Common.define.chartData.textBarStacked3d": "3D skládaný sloupcový", + "Common.define.chartData.textBarStackedPer": "100% skládaný sloupcový", + "Common.define.chartData.textBarStackedPer3d": "3D 100% skládaný sloupcový", "Common.define.chartData.textCharts": "Grafy", "Common.define.chartData.textColumn": "Sloupcový graf", "Common.define.chartData.textColumnSpark": "Sloupec", + "Common.define.chartData.textHBarNormal3d": "3D Skupinový pruhový", + "Common.define.chartData.textHBarStacked3d": "3D skládaný sloupcový", + "Common.define.chartData.textHBarStackedPer": "100% skládaný sloupcový", + "Common.define.chartData.textHBarStackedPer3d": "3D 100% skládaný sloupcový", "Common.define.chartData.textLine": "Liniový graf", + "Common.define.chartData.textLine3d": "3D spojnicový", "Common.define.chartData.textLineSpark": "Čára", + "Common.define.chartData.textLineStackedPer": "100% skládaný spojnicový", + "Common.define.chartData.textLineStackedPerMarker": "100% skládaný spojnicový se značkami", "Common.define.chartData.textPie": "Kruhový diagram", + "Common.define.chartData.textPie3d": "3D výsečový", "Common.define.chartData.textPoint": "Bodový graf", "Common.define.chartData.textSparks": "Mikrografy", "Common.define.chartData.textStock": "Burzovní graf", "Common.define.chartData.textSurface": "Povrch", "Common.define.chartData.textWinLossSpark": "Zisk/Ztráta ", + "Common.define.conditionalData.exampleText": "AaBbCcYyZz", + "Common.define.conditionalData.textAbove": "Nad", + "Common.define.conditionalData.textBlank": "Prázdný", + "Common.UI.ButtonColored.textNewColor": "Přidat novou vlastní barvu", "Common.UI.ComboBorderSize.txtNoBorders": "Bez ohraničení", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Bez ohraničení", "Common.UI.ComboDataView.emptyComboText": "Žádné styly", @@ -58,10 +76,18 @@ "Common.Views.About.txtTel": "tel.:", "Common.Views.About.txtVersion": "Verze", "Common.Views.AutoCorrectDialog.textAdd": "Přidat", + "Common.Views.AutoCorrectDialog.textAutoCorrect": "Autokorekce", "Common.Views.AutoCorrectDialog.textDelete": "Smazat", + "Common.Views.AutoCorrectDialog.textMathCorrect": "Autokorekce pro matematiku", "Common.Views.AutoCorrectDialog.textReset": "Obnovit", "Common.Views.AutoCorrectDialog.textRestore": "Obnovit", + "Common.Views.AutoCorrectDialog.textTitle": "Autokorekce", + "Common.Views.AutoCorrectDialog.warnReplace": "Hodnota pro automatické opravy %1 již existuje. Opravdu ji chcete nahradit?", + "Common.Views.AutoCorrectDialog.warnReset": "Vámi přidané autokorekce budou odstraněny a změněné budou obnoveny do výchozích hodnot. Opravdu chcete pokračovat? ", + "Common.Views.AutoCorrectDialog.warnRestore": "Hodnota pro automatické opravy %1 bude nastavena na původní hodnotu. Opravdu chcete pokračovat?", "Common.Views.Chat.textSend": "Poslat", + "Common.Views.Comments.mniAuthorAsc": "Autor A až Z", + "Common.Views.Comments.mniAuthorDesc": "Autor Z až A", "Common.Views.Comments.textAdd": "Přidat", "Common.Views.Comments.textAddComment": "Přidat", "Common.Views.Comments.textAddCommentToDoc": "Přidat komentář k dokumentu", @@ -121,6 +147,7 @@ "Common.Views.ListSettingsDialog.txtTitle": "Nastavení seznamu", "Common.Views.ListSettingsDialog.txtType": "Typ", "Common.Views.OpenDialog.closeButtonText": "Zavřít soubor", + "Common.Views.OpenDialog.txtAdvanced": "Pokročilé", "Common.Views.OpenDialog.txtColon": "Dvojtečka", "Common.Views.OpenDialog.txtComma": "Čárka", "Common.Views.OpenDialog.txtDelimiter": "Oddělovač", @@ -247,6 +274,7 @@ "Common.Views.SymbolTableDialog.textCode": "Unicode HEX hodnota", "Common.Views.SymbolTableDialog.textCopyright": "Znak autorských práv", "Common.Views.SymbolTableDialog.textFont": "Písmo", + "Common.Views.SymbolTableDialog.textQEmSpace": "1/4 em mezera", "Common.Views.SymbolTableDialog.textRange": "Rozsah", "Common.Views.SymbolTableDialog.textRecent": "Nedávno použité symboly", "Common.Views.SymbolTableDialog.textTitle": "Symbol", @@ -268,6 +296,7 @@ "SSE.Controllers.DocumentHolder.leftText": "Vlevo", "SSE.Controllers.DocumentHolder.notcriticalErrorTitle": "Varování", "SSE.Controllers.DocumentHolder.rightText": "Vpravo", + "SSE.Controllers.DocumentHolder.textAutoCorrectSettings": "Autokorekce možnosti", "SSE.Controllers.DocumentHolder.textChangeColumnWidth": "Šířka sloupce {0} symboly ({1} pixelů)", "SSE.Controllers.DocumentHolder.textChangeRowHeight": "Výška řádku {0} bodů ({1} pixelů)", "SSE.Controllers.DocumentHolder.textCtrlClick": "Buď klikněte a otevřete odkaz nebo klikněte a podržte a pro označení buňky.", @@ -529,6 +558,7 @@ "SSE.Controllers.Main.scriptLoadError": "Připojení je příliš pomalé, některé součásti se nepodařilo načíst. Načtěte stránku znovu.", "SSE.Controllers.Main.textAnonymous": "Anonymní", "SSE.Controllers.Main.textBuyNow": "Navštívit webovou stránku", + "SSE.Controllers.Main.textChangesSaved": "Všechny změny uloženy", "SSE.Controllers.Main.textClose": "Zavřít", "SSE.Controllers.Main.textCloseTip": "Tip zavřete kliknutím", "SSE.Controllers.Main.textConfirm": "Potvrzení", @@ -548,8 +578,10 @@ "SSE.Controllers.Main.titleRecalcFormulas": "Výpočet…", "SSE.Controllers.Main.titleServerVersion": "Editor byl aktualizován", "SSE.Controllers.Main.txtAccent": "Zvýraznění", + "SSE.Controllers.Main.txtAll": "(vše)", "SSE.Controllers.Main.txtArt": "Sem napište text", "SSE.Controllers.Main.txtBasicShapes": "Základní tvary", + "SSE.Controllers.Main.txtBlank": "(prázdný)", "SSE.Controllers.Main.txtButtons": "Tlačítka", "SSE.Controllers.Main.txtCallouts": "Bubliny", "SSE.Controllers.Main.txtCharts": "Grafy", @@ -1145,6 +1177,7 @@ "SSE.Controllers.Viewport.textHideGridlines": "Skrýt mřížku", "SSE.Controllers.Viewport.textHideHeadings": "Skrýt záhlaví", "SSE.Views.AdvancedSeparatorDialog.strDecimalSeparator": "Oddělovač desetinných míst", + "SSE.Views.AdvancedSeparatorDialog.textTitle": "Pokročilé nastavení", "SSE.Views.AutoFilterDialog.btnCustomFilter": "Uživatelsky určený filtr", "SSE.Views.AutoFilterDialog.textAddSelection": "Přidat aktuální výběr k filtrování", "SSE.Views.AutoFilterDialog.textEmptyItem": "{Blanks}", @@ -1206,6 +1239,7 @@ "SSE.Views.CellSettings.textPatternFill": "Vzor", "SSE.Views.CellSettings.textRadial": "Kruhový", "SSE.Views.CellSettings.textSelectBorders": "Vyberte ohraničení, na které chcete použít výše vybraný styl.", + "SSE.Views.CellSettings.tipAddGradientPoint": "Přidat stínování", "SSE.Views.CellSettings.tipAll": "Nastavit vnější ohraničení a všechny vnitřní čáry", "SSE.Views.CellSettings.tipBottom": "Nastavit pouze vnější ohraničení dole", "SSE.Views.CellSettings.tipDiagD": "Nastavit úhlopříčný okraj dolů", @@ -1376,6 +1410,8 @@ "SSE.Views.DataTab.tipGroup": "Seskupit rozsah buněk", "SSE.Views.DataTab.tipToColumns": "Rozdělit text buňky do sloupců", "SSE.Views.DataTab.tipUngroup": "Zrušit seskupení rozsahu buněk", + "SSE.Views.DataValidationDialog.textAlert": "Upozornění", + "SSE.Views.DataValidationDialog.textAllow": "Povolit", "SSE.Views.DigitalFilterDialog.capAnd": "A", "SSE.Views.DigitalFilterDialog.capCondition1": "rovná se", "SSE.Views.DigitalFilterDialog.capCondition10": "nekončí na", @@ -1610,6 +1646,7 @@ "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.ProtectDoc.notcriticalErrorTitle": "Varování", "SSE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "Heslem", "SSE.Views.FileMenuPanels.ProtectDoc.strProtect": "Ochránit sešit", @@ -1624,6 +1661,10 @@ "SSE.Views.FileMenuPanels.Settings.txtGeneral": "Obecný", "SSE.Views.FileMenuPanels.Settings.txtPageSettings": "Nastavení stránky", "SSE.Views.FileMenuPanels.Settings.txtSpellChecking": "Kontrola pravopisu", + "SSE.Views.FormatRulesEditDlg.textAllBorders": "Všechna ohraničení", + "SSE.Views.FormatRulesEditDlg.textNewColor": "Přidat novou vlastní barvu", + "SSE.Views.FormatRulesEditDlg.txtAccounting": "Účetnictví", + "SSE.Views.FormatRulesManagerDlg.textAbove": "Nadprůměrný", "SSE.Views.FormatSettingsDialog.textCategory": "Kategorie", "SSE.Views.FormatSettingsDialog.textDecimal": "Desetinných míst", "SSE.Views.FormatSettingsDialog.textFormat": "Formát", @@ -1881,6 +1922,7 @@ "SSE.Views.PivotDigitalFilterDialog.capCondition4": "je vetší než nebo rovno", "SSE.Views.PivotDigitalFilterDialog.capCondition5": "je menší než", "SSE.Views.PivotDigitalFilterDialog.capCondition6": "je menší než nebo rovno", + "SSE.Views.PivotGroupDialog.textAuto": "Automaticky", "SSE.Views.PivotSettings.textAdvanced": "Zobrazit pokročilá nastavení", "SSE.Views.PivotSettings.textColumns": "Sloupce", "SSE.Views.PivotSettings.textFields": "Vybrat kolonky", @@ -2005,6 +2047,7 @@ "SSE.Views.ShapeSettings.strTransparency": "Průhlednost", "SSE.Views.ShapeSettings.strType": "Typ", "SSE.Views.ShapeSettings.textAdvanced": "Zobrazit pokročilá nastavení", + "SSE.Views.ShapeSettings.textAngle": "Úhel", "SSE.Views.ShapeSettings.textBorderSizeErr": "Zadaná hodnota není správná.
Zadejte hodnotu z rozmezí 0 až 1584 pt.", "SSE.Views.ShapeSettings.textColor": "Vyplnit barvou", "SSE.Views.ShapeSettings.textDirection": "Směr", @@ -2031,6 +2074,7 @@ "SSE.Views.ShapeSettings.textStyle": "Styl", "SSE.Views.ShapeSettings.textTexture": "Z textury", "SSE.Views.ShapeSettings.textTile": "Dlaždice", + "SSE.Views.ShapeSettings.tipAddGradientPoint": "Přidat stínování", "SSE.Views.ShapeSettings.txtBrownPaper": "Hnědý papír", "SSE.Views.ShapeSettings.txtCanvas": "Plátno", "SSE.Views.ShapeSettings.txtCarton": "Karton", @@ -2099,6 +2143,8 @@ "SSE.Views.SignatureSettings.txtSigned": "Do sešitu byly přidány platné podpisy. Je tím chráněn před úpravami.", "SSE.Views.SignatureSettings.txtSignedInvalid": "Některé z digitálních podpisů v listu nejsou platné nebo je není možné ověřit. List je chráněn před úpravami.", "SSE.Views.SlicerAddDialog.textColumns": "Sloupce", + "SSE.Views.SlicerSettings.textAsc": "Vzestupně", + "SSE.Views.SlicerSettings.textAZ": "A po Z", "SSE.Views.SlicerSettings.textColumns": "Sloupce", "SSE.Views.SlicerSettings.textDesc": "Sestupně", "SSE.Views.SlicerSettings.textHeight": "Výška", @@ -2112,6 +2158,8 @@ "SSE.Views.SlicerSettingsAdvanced.strSize": "Velikost", "SSE.Views.SlicerSettingsAdvanced.strWidth": "Šířka", "SSE.Views.SlicerSettingsAdvanced.textAltDescription": "Popis", + "SSE.Views.SlicerSettingsAdvanced.textAsc": "Vzestupně", + "SSE.Views.SlicerSettingsAdvanced.textAZ": "A po Z", "SSE.Views.SlicerSettingsAdvanced.textDesc": "Sestupně", "SSE.Views.SlicerSettingsAdvanced.textHeader": "Záhlaví", "SSE.Views.SlicerSettingsAdvanced.textZA": "Z po A", @@ -2151,6 +2199,7 @@ "SSE.Views.SortDialog.textZA": "Z po A", "SSE.Views.SortDialog.txtInvalidRange": "Neplatný rozsah buněk.", "SSE.Views.SortDialog.txtTitle": "Seřadit", + "SSE.Views.SortFilterDialog.textAsc": "Vzestupně (A do Z) od", "SSE.Views.SortOptionsDialog.textCase": "Rozlišovat malá a velká písmena", "SSE.Views.SortOptionsDialog.textHeaders": "Data mají záhlaví", "SSE.Views.SortOptionsDialog.textLeftRight": "Seřadit zleva doprava", @@ -2261,6 +2310,7 @@ "SSE.Views.TextArtSettings.strStroke": "Obrys", "SSE.Views.TextArtSettings.strTransparency": "Průhlednost", "SSE.Views.TextArtSettings.strType": "Typ", + "SSE.Views.TextArtSettings.textAngle": "Úhel", "SSE.Views.TextArtSettings.textBorderSizeErr": "Zadaná hodnota není správná.
Zadejte hodnotu z rozmezí 0 až 1584 pt.", "SSE.Views.TextArtSettings.textColor": "Vyplnit barvou", "SSE.Views.TextArtSettings.textDirection": "Směr", @@ -2281,6 +2331,7 @@ "SSE.Views.TextArtSettings.textTexture": "Z textury", "SSE.Views.TextArtSettings.textTile": "Dlaždice", "SSE.Views.TextArtSettings.textTransform": "Transformovat", + "SSE.Views.TextArtSettings.tipAddGradientPoint": "Přidat stínování", "SSE.Views.TextArtSettings.txtBrownPaper": "Hnědý papír", "SSE.Views.TextArtSettings.txtCanvas": "Plátno", "SSE.Views.TextArtSettings.txtCarton": "Karton", diff --git a/apps/spreadsheeteditor/main/locale/el.json b/apps/spreadsheeteditor/main/locale/el.json index f17e70980..66fde6af5 100644 --- a/apps/spreadsheeteditor/main/locale/el.json +++ b/apps/spreadsheeteditor/main/locale/el.json @@ -56,6 +56,13 @@ "Common.define.conditionalData.text3Above": "3 τυπική απόκλιση πάνω", "Common.define.conditionalData.text3Below": "3 τυπική απόκλιση κάτω", "Common.define.conditionalData.textAbove": "Πάνω από", + "Common.define.conditionalData.textAverage": "Μέσος Όρος", + "Common.define.conditionalData.textBegins": "Αρχίζει με", + "Common.define.conditionalData.textBelow": "Κάτω από", + "Common.define.conditionalData.textBetween": "Μεταξύ", + "Common.define.conditionalData.textBlank": "Κενό", + "Common.define.conditionalData.textBottom": "Κάτω", + "Common.define.conditionalData.textDataBar": "Μπάρα δεδομένων", "Common.define.conditionalData.textDate": "Ημερομηνία", "Common.define.conditionalData.textFormula": "Τύπος", "Common.define.conditionalData.textText": "Κείμενο", @@ -67,6 +74,8 @@ "Common.Translation.warnFileLocked": "Το αρχείο τελεί υπό επεξεργασία σε άλλη εφαρμογή. Μπορείτε να συνεχίσετε την επεξεργασία και να το αποθηκεύσετε ως αντίγραφo.", "Common.Translation.warnFileLockedBtnEdit": "Δημιουργία αντιγράφου", "Common.Translation.warnFileLockedBtnView": "Άνοιγμα για προβολή", + "Common.UI.ButtonColored.textAutoColor": "Αυτόματα", + "Common.UI.ButtonColored.textNewColor": "Προσθήκη Νέου Προσαρμοσμένου Χρώματος", "Common.UI.ComboBorderSize.txtNoBorders": "Χωρίς περιγράμματα", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Χωρίς περιγράμματα", "Common.UI.ComboDataView.emptyComboText": "Χωρίς τεχνοτροπίες", @@ -114,6 +123,7 @@ "Common.Views.About.txtVersion": "Έκδοση ", "Common.Views.AutoCorrectDialog.textAdd": "Προσθήκη", "Common.Views.AutoCorrectDialog.textApplyAsWork": "Εφαρμογή κατά την εργασία", + "Common.Views.AutoCorrectDialog.textAutoCorrect": "Αυτόματη Διόρθωση", "Common.Views.AutoCorrectDialog.textAutoFormat": "Αυτόματη Μορφοποίηση Κατά Την Πληκτρολόγηση", "Common.Views.AutoCorrectDialog.textBy": "Από", "Common.Views.AutoCorrectDialog.textDelete": "Διαγραφή", @@ -133,6 +143,8 @@ "Common.Views.AutoCorrectDialog.warnReset": "Κάθε αυτόματη διόρθωση που προσθέσατε θα αφαιρεθεί και ό,τι τροποποιήθηκε θα αποκατασταθεί στην αρχική του τιμή. Θέλετε να συνεχίσετε;", "Common.Views.AutoCorrectDialog.warnRestore": "Η καταχώρηση αυτόματης διόρθωσης για %1 θα τεθεί στην αρχική τιμή της. Θέλετε να συνεχίσετε;", "Common.Views.Chat.textSend": "Αποστολή", + "Common.Views.Comments.mniAuthorAsc": "Συγγραφέας Α έως Ω", + "Common.Views.Comments.mniAuthorDesc": "Συγγραφέας Ω έως Α", "Common.Views.Comments.textAdd": "Προσθήκη", "Common.Views.Comments.textAddComment": "Προσθήκη Σχολίου", "Common.Views.Comments.textAddCommentToDoc": "Προσθήκη Σχολίου στο Έγγραφο", @@ -634,6 +646,7 @@ "SSE.Controllers.Main.errorWrongOperator": "Υπάρχει σφάλμα στον καταχωρημένο τύπο. Χρησιμοποιείται λανθασμένος τελεστής.
Παρακαλούμε διορθώστε το σφάλμα.", "SSE.Controllers.Main.errRemDuplicates": "Διπλότυπες τιμές που βρέθηκαν και διαγράφηκαν: {0}, μοναδικές τιμές που απέμειναν: {1}.", "SSE.Controllers.Main.leavePageText": "Έχετε μη αποθηκευμένες αλλαγές στο λογιστικό φύλλο. Πατήστε 'Παραμονή στη Σελίδα' και μετά 'Αποθήκευση' για να τις αποθηκεύσετε. Πατήστε 'Έξοδος από τη Σελίδα' για να απορρίψετε όλες τις μη αποθηκευμένες αλλαγές.", + "SSE.Controllers.Main.leavePageTextOnClose": "Όλες οι μη αποθηκευμένες αλλαγές στο λογιστικό φύλλο θα χαθούν.
Πατήστε \"Ακύρωση\" και μετά \"Αποθήκευση\" για να τις αποθηκεύσετε. Πατήστε \"Εντάξει\" για να τις απορρίψετε.", "SSE.Controllers.Main.loadFontsTextText": "Φόρτωση δεδομένων...", "SSE.Controllers.Main.loadFontsTitleText": "Φόρτωση Δεδομένων", "SSE.Controllers.Main.loadFontTextText": "Φόρτωση δεδομένων...", @@ -661,7 +674,9 @@ "SSE.Controllers.Main.saveTitleText": "Αποθήκευση Λογιστικού Φύλλου", "SSE.Controllers.Main.scriptLoadError": "Η σύνδεση είναι πολύ αργή, δεν ήταν δυνατή η φόρτωση ορισμένων στοιχείων. Παρακαλούμε φορτώστε ξανά τη σελίδα.", "SSE.Controllers.Main.textAnonymous": "Ανώνυμος", + "SSE.Controllers.Main.textApplyAll": "Εφαρμογή σε όλες τις εξισώσεις", "SSE.Controllers.Main.textBuyNow": "Επισκεφθείτε την ιστοσελίδα", + "SSE.Controllers.Main.textChangesSaved": "Όλες οι αλλαγές αποθηκεύτηκαν", "SSE.Controllers.Main.textClose": "Κλείσιμο", "SSE.Controllers.Main.textCloseTip": "Κάντε κλικ για να κλείσει η υπόδειξη", "SSE.Controllers.Main.textConfirm": "Επιβεβαίωση", @@ -922,6 +937,7 @@ "SSE.Controllers.Main.txtTab": "Καρτέλα", "SSE.Controllers.Main.txtTable": "Πίνακας", "SSE.Controllers.Main.txtTime": "Ώρα", + "SSE.Controllers.Main.txtUnlockRangeWarning": "Ένα εύρος που προσπαθείτε να τροποποιήσετε προστατεύεται με συνθηματικό.", "SSE.Controllers.Main.txtValues": "Τιμές", "SSE.Controllers.Main.txtXAxis": "Άξονας Χ", "SSE.Controllers.Main.txtYAxis": "Άξονας Υ", @@ -1377,6 +1393,7 @@ "SSE.Views.CellSettings.textBorders": "Τεχνοτροπία Περιγραμμάτων", "SSE.Views.CellSettings.textColor": "Γέμισμα με Χρώμα", "SSE.Views.CellSettings.textControl": "Έλεγχος Κειμένου", + "SSE.Views.CellSettings.textDataBars": "Μπάρες Δεδομένων", "SSE.Views.CellSettings.textDirection": "Κατεύθυνση", "SSE.Views.CellSettings.textFill": "Γέμισμα", "SSE.Views.CellSettings.textForeground": "Χρώμα προσκηνίου", @@ -1740,6 +1757,7 @@ "SSE.Views.DocumentHolder.textArrangeForward": "Μεταφορά Προς τα Εμπρός", "SSE.Views.DocumentHolder.textArrangeFront": "Μεταφορά στο Προσκήνιο", "SSE.Views.DocumentHolder.textAverage": "Μέσος Όρος", + "SSE.Views.DocumentHolder.textBullets": "Κουκκίδες", "SSE.Views.DocumentHolder.textCount": "Μέτρηση", "SSE.Views.DocumentHolder.textCrop": "Περικοπή", "SSE.Views.DocumentHolder.textCropFill": "Γέμισμα", @@ -1752,6 +1770,7 @@ "SSE.Views.DocumentHolder.textFromStorage": "Από Αποθηκευτικό Χώρο", "SSE.Views.DocumentHolder.textFromUrl": "Από διεύθυνση URL", "SSE.Views.DocumentHolder.textListSettings": "Ρυθμίσεις Λίστας", + "SSE.Views.DocumentHolder.textMacro": "Ανάθεση Μακροεντολής", "SSE.Views.DocumentHolder.textMax": "Μέγιστο", "SSE.Views.DocumentHolder.textMin": "Ελάχιστο", "SSE.Views.DocumentHolder.textMore": "Περισσότερες συναρτήσεις", @@ -1882,6 +1901,7 @@ "SSE.Views.FileMenu.btnSaveCopyAsCaption": "Αποθήκευση Αντιγράφου ως...", "SSE.Views.FileMenu.btnSettingsCaption": "Προηγμένες Ρυθμίσεις...", "SSE.Views.FileMenu.btnToEditCaption": "Επεξεργασία Λογιστικού Φύλλου", + "SSE.Views.FileMenuPanels.CreateNew.txtBlank": "Κενό Φύλλο Εργασίας", "SSE.Views.FileMenuPanels.DocumentInfo.okButtonText": "Εφαρμογή", "SSE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Προσθήκη Συγγραφέα", "SSE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Προσθήκη Κειμένου", @@ -1937,6 +1957,9 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.textForceSave": "Αποθήκευση στον Διακομιστή", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textMinute": "Κάθε Λεπτό", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textRefStyle": "Τεχνοτροπία Παραπομπών", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtBe": "Λευκορωσικά", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtBg": "Βουλγάρικα", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCa": "Καταλανικά", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCacheMode": "Προεπιλεγμένη κατάσταση λανθάνουσας μνήμης", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCm": "Εκατοστό", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtDe": "Γερμανικά", @@ -1959,6 +1982,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacros": "Εμφάνιση Ειδοποίησης", "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": "Αγνόηση λέξεων με ΚΕΦΑΛΑΙΑ", @@ -1983,15 +2007,33 @@ "SSE.Views.FormatRulesEditDlg.text2Scales": "Δίχρωμη κλίμακα", "SSE.Views.FormatRulesEditDlg.text3Scales": "Τρίχρωμη κλίμακα", "SSE.Views.FormatRulesEditDlg.textAllBorders": "Όλα τα περιγράμματα", + "SSE.Views.FormatRulesEditDlg.textAppearance": "Μορφή Μπάρας", + "SSE.Views.FormatRulesEditDlg.textApply": "Εφαρμογή σε Εύρος", + "SSE.Views.FormatRulesEditDlg.textAutomatic": "Αυτόματα", + "SSE.Views.FormatRulesEditDlg.textAxis": "Άξονας", + "SSE.Views.FormatRulesEditDlg.textBarDirection": "Κατεύθυνση Μπάρας", + "SSE.Views.FormatRulesEditDlg.textBold": "Έντονα", + "SSE.Views.FormatRulesEditDlg.textBorder": "Περίγραμμα", + "SSE.Views.FormatRulesEditDlg.textBordersColor": "Χρώμα Περιγραμμάτων", + "SSE.Views.FormatRulesEditDlg.textBordersStyle": "Τεχνοτροπία Περιγράμματος", + "SSE.Views.FormatRulesEditDlg.textBottomBorders": "Κάτω Περιγράμματα", + "SSE.Views.FormatRulesEditDlg.textCannotAddCF": "Δεν είναι δυνατή η προσθήκη της μορφοποίησης υπό όρους.", + "SSE.Views.FormatRulesEditDlg.textCellMidpoint": "Μέσον κελιού", "SSE.Views.FormatRulesEditDlg.textColor": "Χρώμα κειμένου", "SSE.Views.FormatRulesEditDlg.textFill": "Γέμισμα", "SSE.Views.FormatRulesEditDlg.textFormat": "Μορφή", "SSE.Views.FormatRulesEditDlg.textFormula": "Τύπος", + "SSE.Views.FormatRulesEditDlg.textLongBar": "μακρύτερη μπάρα", "SSE.Views.FormatRulesEditDlg.textNewColor": "Προσθήκη Νέου Προσαρμοσμένου Χρώματος", + "SSE.Views.FormatRulesEditDlg.textRelativeRef": "Δεν μπορείτε να χρησιμοποιήσετε σχετικές αναφορές στα κριτήρια μορφοποίησης υπό όρους για χρωματικές κλίμακες, μπάρες δεδομένων και σύνολα εικονιδίων.", + "SSE.Views.FormatRulesEditDlg.textShortBar": "κοντύτερη μπάρα", + "SSE.Views.FormatRulesEditDlg.textShowBar": "Εμφάνιση μπάρας μόνο", "SSE.Views.FormatRulesEditDlg.textStrikeout": "Διαγραφή", "SSE.Views.FormatRulesEditDlg.textSubscript": "Δείκτης", "SSE.Views.FormatRulesEditDlg.textSuperscript": "Εκθέτης", "SSE.Views.FormatRulesEditDlg.textUnderline": "Υπογράμμιση", + "SSE.Views.FormatRulesEditDlg.tipBorders": "Περιγράμματα", + "SSE.Views.FormatRulesEditDlg.txtAccounting": "Λογιστική", "SSE.Views.FormatRulesEditDlg.txtDate": "Ημερομηνία", "SSE.Views.FormatRulesEditDlg.txtFraction": "Κλάσμα", "SSE.Views.FormatRulesEditDlg.txtText": "Κείμενο", @@ -2003,9 +2045,20 @@ "SSE.Views.FormatRulesManagerDlg.text3Above": "3 τυπική απόκλιση πάνω από το μέσο όρο", "SSE.Views.FormatRulesManagerDlg.text3Below": "3 τυπική απόκλιση κάτω από το μέσο όρο", "SSE.Views.FormatRulesManagerDlg.textAbove": "Πάνω από τον μέσο όρο", + "SSE.Views.FormatRulesManagerDlg.textApply": "Εφαρμογή σε", + "SSE.Views.FormatRulesManagerDlg.textBeginsWith": "Η τιμή του κελιού ξεκινά με", + "SSE.Views.FormatRulesManagerDlg.textBelow": "Κάτω από τον μέσο όρο", + "SSE.Views.FormatRulesManagerDlg.textCellValue": "Τιμή κελιού", + "SSE.Views.FormatRulesManagerDlg.textContains": "Η τιμή του κελιού περιέχει", + "SSE.Views.FormatRulesManagerDlg.textContainsBlank": "Το κελί περιέχει μια κενή τιμή", + "SSE.Views.FormatRulesManagerDlg.textContainsError": "Το κελί περιέχει σφάλμα", "SSE.Views.FormatRulesManagerDlg.textDelete": "Διαγραφή", "SSE.Views.FormatRulesManagerDlg.textEdit": "Επεξεργασία", + "SSE.Views.FormatRulesManagerDlg.textEnds": "Η τιμή του κελιού τελειώνει με", "SSE.Views.FormatRulesManagerDlg.textFormat": "Μορφή", + "SSE.Views.FormatRulesManagerDlg.textNotContains": "Η τιμή του κελιού δεν περιέχει", + "SSE.Views.FormatRulesManagerDlg.textNotContainsBlank": "Το κελί δεν περιέχει μια κενή τιμή", + "SSE.Views.FormatRulesManagerDlg.textNotContainsError": "Το κελί δεν περιέχει σφάλμα", "SSE.Views.FormatSettingsDialog.textCategory": "Κατηγορία", "SSE.Views.FormatSettingsDialog.textDecimal": "Δεκαδικός", "SSE.Views.FormatSettingsDialog.textFormat": "Μορφή", @@ -2170,6 +2223,7 @@ "SSE.Views.LeftMenu.txtLimit": "Περιορισμός Πρόσβασης", "SSE.Views.LeftMenu.txtTrial": "ΚΑΤΑΣΤΑΣΗ ΔΟΚΙΜΑΣΤΙΚΗΣ ΛΕΙΤΟΥΡΓΙΑΣ", "SSE.Views.LeftMenu.txtTrialDev": "Δοκιμαστική Λειτουργία για Προγραμματιστές", + "SSE.Views.MacroDialog.textTitle": "Ανάθεση Μακροεντολής", "SSE.Views.MainSettingsPrint.okButtonText": "Αποθήκευση", "SSE.Views.MainSettingsPrint.strBottom": "Κάτω", "SSE.Views.MainSettingsPrint.strLandscape": "Οριζόντιος", @@ -2446,6 +2500,9 @@ "SSE.Views.PrintTitlesDialog.textSelectRange": "Επιλογή εύρους", "SSE.Views.PrintTitlesDialog.textTitle": "Εκτύπωση Τίτλων", "SSE.Views.PrintTitlesDialog.textTop": "Επανάληψη γραμμών στην κορυφή", + "SSE.Views.ProtectDialog.txtAllow": "Επιτρέπεται σε όλους τους χρήστες του φύλλου να", + "SSE.Views.ProtectRangesDlg.txtTitle": "Επιτρέπεται στους Χρήστες Επεξεργασία Ευρών", + "SSE.Views.ProtectRangesDlg.warnDelete": "Θέλετε σίγουρα να διαγράψετε το όνομα {0};", "SSE.Views.RemoveDuplicatesDialog.textColumns": "Στήλες", "SSE.Views.RemoveDuplicatesDialog.textDescription": "Για να διαγράψετε διπλότυπες τιμές, επιλέξτε μία ή περισσότερες στήλες που περιέχουν διπλότυπα.", "SSE.Views.RemoveDuplicatesDialog.textHeaders": "Τα δεδομένα μου έχουν κεφαλίδες", @@ -2916,6 +2973,7 @@ "SSE.Views.Toolbar.textClearPrintArea": "Εκκαθάριση Περιοχής Εκτύπωσης", "SSE.Views.Toolbar.textClockwise": "Γωνία Δεξιόστροφα", "SSE.Views.Toolbar.textCounterCw": "Γωνία Αριστερόστροφα", + "SSE.Views.Toolbar.textDataBars": "Μπάρες Δεδομένων", "SSE.Views.Toolbar.textDelLeft": "Ολίσθηση Κελιών Αριστερά", "SSE.Views.Toolbar.textDelUp": "Ολίσθηση Κελιών Πάνω", "SSE.Views.Toolbar.textDiagDownBorder": "Διαγώνιο Κάτω Περίγραμμα", @@ -3173,5 +3231,7 @@ "SSE.Views.ViewTab.tipClose": "Κλείσιμο προβολής φύλλου εργασίας", "SSE.Views.ViewTab.tipCreate": "Δημιουργία όψης φύλλου", "SSE.Views.ViewTab.tipFreeze": "Πάγωμα παραθύρων", - "SSE.Views.ViewTab.tipSheetView": "Όψη φύλλου" + "SSE.Views.ViewTab.tipSheetView": "Όψη φύλλου", + "SSE.Views.WBProtection.hintAllowRanges": "Επιτρέπεται η επεξεργασία ευρών", + "SSE.Views.WBProtection.txtAllowRanges": "Επιτρέπεται Επεξεργασία Ευρών" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/ko.json b/apps/spreadsheeteditor/main/locale/ko.json index 35e9aad49..9db5ddb41 100644 --- a/apps/spreadsheeteditor/main/locale/ko.json +++ b/apps/spreadsheeteditor/main/locale/ko.json @@ -3,7 +3,87 @@ "Common.Controllers.Chat.notcriticalErrorTitle": "경고", "Common.Controllers.Chat.textEnterMessage": "여기에 메시지를 입력하십시오", "Common.define.chartData.textArea": "영역", + "Common.define.chartData.textAreaStackedPer": "100% 누적 영역형", "Common.define.chartData.textBar": "막대", + "Common.define.chartData.textBarNormal": "묶은 세로 막대형", + "Common.define.chartData.textBarNormal3d": "3차원 묶은 세로 막대", + "Common.define.chartData.textBarNormal3dPerspective": "3차원 세로 막대", + "Common.define.chartData.textBarStacked3d": "3차원 누적 세로 막대형", + "Common.define.chartData.textBarStackedPer": "100% 누적 세로 막대형", + "Common.define.chartData.textBarStackedPer3d": "3차원 100 % 누적 세로 막 대형", + "Common.define.chartData.textCharts": "차트", + "Common.define.chartData.textColumn": "열", + "Common.define.chartData.textColumnSpark": "열", + "Common.define.chartData.textCombo": "콤보", + "Common.define.chartData.textComboAreaBar": "누적 영역형 - 묶은 세로 막대형", + "Common.define.chartData.textComboBarLine": "묶은 세로 막대형 - 꺾은선형", + "Common.define.chartData.textComboBarLineSecondary": "묶은 세로 막대형 - 꺾은선형,보조 축", + "Common.define.chartData.textComboCustom": "맞춤 조합", + "Common.define.chartData.textDoughnut": "도넛", + "Common.define.chartData.textHBarNormal": "묶은 가로 막대형", + "Common.define.chartData.textHBarNormal3d": "3차원 집합 막대", + "Common.define.chartData.textHBarStacked3d": "3차원 누적 가로 막대형", + "Common.define.chartData.textHBarStackedPer": "100% 누적 막대형", + "Common.define.chartData.textHBarStackedPer3d": "3차원 100 % 기준 누적 가로 막 대형", + "Common.define.chartData.textLine": "선", + "Common.define.chartData.textLine3d": "3차원 꺾은 선형", + "Common.define.chartData.textLineMarker": "마커 라인", + "Common.define.chartData.textLineSpark": "선", + "Common.define.chartData.textLineStackedPer": "100 % 기준 누적 꺾은 선형", + "Common.define.chartData.textLineStackedPerMarker": "표식이 있는 100 % 기준 누적 꺾은 선형", + "Common.define.chartData.textPie": "부분 원형", + "Common.define.chartData.textPie3d": "3차원 원형", + "Common.define.chartData.textPoint": "XY (분산형)", + "Common.define.chartData.textScatter": "분산형", + "Common.define.chartData.textScatterLine": "직선이 있는 분산형", + "Common.define.chartData.textScatterLineMarker": "직선 및 표식이 있는 분산형", + "Common.define.chartData.textScatterSmooth": "곡선이 있는 분산형", + "Common.define.chartData.textScatterSmoothMarker": "곡선 및 표식이 있는 분산형", + "Common.define.chartData.textSparks": "스파크라인", + "Common.define.chartData.textStock": "주식형", + "Common.define.conditionalData.exampleText": "AaBbCcYyZz", + "Common.define.conditionalData.noFormatText": "형식 없음", + "Common.define.conditionalData.text1Above": "1 이상의 표준편차", + "Common.define.conditionalData.textAbove": "이상", + "Common.define.conditionalData.textAverage": "평균", + "Common.define.conditionalData.textBegins": "시작", + "Common.define.conditionalData.textBelow": "이하", + "Common.define.conditionalData.textBetween": "해당 범위", + "Common.define.conditionalData.textBlank": "공백", + "Common.define.conditionalData.textBlanks": "공백 포함", + "Common.define.conditionalData.textBottom": "하단", + "Common.define.conditionalData.textContains": "포함", + "Common.define.conditionalData.textDataBar": "데이터 막대", + "Common.define.conditionalData.textDate": "날짜", + "Common.define.conditionalData.textDuplicate": "중복", + "Common.define.conditionalData.textEnds": "종료", + "Common.define.conditionalData.textEqAbove": "다음의 값과 동일한 또는 이상", + "Common.define.conditionalData.textEqBelow": "다음의 값과 동일한 이하", + "Common.define.conditionalData.textEqual": "동일한", + "Common.define.conditionalData.textError": "오류", + "Common.define.conditionalData.textErrors": "오류 포함", + "Common.define.conditionalData.textFormula": "수식", + "Common.define.conditionalData.textGreater": "보다 큼", + "Common.define.conditionalData.textGreaterEq": "크거나 같음", + "Common.define.conditionalData.textIconSets": "아이콘 셋", + "Common.define.conditionalData.textLast7days": "지난 7일 동안", + "Common.define.conditionalData.textLastMonth": "지난 달", + "Common.define.conditionalData.textLastWeek": "지난 주", + "Common.define.conditionalData.textLess": "보다 작음", + "Common.define.conditionalData.textLessEq": "작거나 같음", + "Common.define.conditionalData.textNextMonth": "다음 달", + "Common.define.conditionalData.textNextWeek": "다음 주", + "Common.define.conditionalData.textNotBetween": "제외 범위", + "Common.define.conditionalData.textNotBlanks": "공백을 포함하지 않음", + "Common.define.conditionalData.textNotContains": "포함하지 않음", + "Common.define.conditionalData.textNotEqual": "같지 않음", + "Common.define.conditionalData.textNotErrors": "오류를 포함하지 않음", + "Common.define.conditionalData.textTomorrow": "내일", + "Common.Translation.warnFileLocked": "파일이 다른 응용 프로그램에서 편집 중입니다. 편집을 계속하고 사본으로 저장할 수 있습니다.", + "Common.Translation.warnFileLockedBtnEdit": "복사본 만들기", + "Common.Translation.warnFileLockedBtnView": "미리보기", + "Common.UI.ButtonColored.textAutoColor": "자동", + "Common.UI.ButtonColored.textNewColor": "새로운 사용자 정의 색 추가", "Common.UI.ComboBorderSize.txtNoBorders": "테두리 없음", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "테두리 없음", "Common.UI.ComboDataView.emptyComboText": "스타일 없음", @@ -27,6 +107,9 @@ "Common.UI.SynchronizeTip.textSynchronize": "다른 사용자가 문서를 변경했습니다.
클릭하여 변경 사항을 저장하고 업데이트를 다시로드하십시오.", "Common.UI.ThemeColorPalette.textStandartColors": "표준 색상", "Common.UI.ThemeColorPalette.textThemeColors": "테마 색", + "Common.UI.Themes.txtThemeClassicLight": "전통적인 밝은 색상", + "Common.UI.Themes.txtThemeDark": "어두운", + "Common.UI.Themes.txtThemeLight": "밝은", "Common.UI.Window.cancelButtonText": "취소", "Common.UI.Window.closeButtonText": "닫기", "Common.UI.Window.noButtonText": "No", @@ -46,9 +129,33 @@ "Common.Views.About.txtPoweredBy": "Powered by", "Common.Views.About.txtTel": "tel .:", "Common.Views.About.txtVersion": "버전", + "Common.Views.AutoCorrectDialog.textAdd": "추가", + "Common.Views.AutoCorrectDialog.textApplyAsWork": "작업하는 동안 적용", + "Common.Views.AutoCorrectDialog.textAutoCorrect": "자동 고침", + "Common.Views.AutoCorrectDialog.textAutoFormat": "입력 할 때 자동 서식", "Common.Views.AutoCorrectDialog.textBy": "~로", - "Common.Views.AutoCorrectDialog.textTitle": "자동 수정", + "Common.Views.AutoCorrectDialog.textDelete": "삭제", + "Common.Views.AutoCorrectDialog.textHyperlink": "인터넷과 네트워크 경로를 하이퍼 링크로 설정", + "Common.Views.AutoCorrectDialog.textMathCorrect": "수식 자동 고침", + "Common.Views.AutoCorrectDialog.textNewRowCol": "테이블에 새 행과 열을 포함", + "Common.Views.AutoCorrectDialog.textRecognized": "인식된 함수", + "Common.Views.AutoCorrectDialog.textReplace": "반복", + "Common.Views.AutoCorrectDialog.textReplaceText": "입력시 바꿈", + "Common.Views.AutoCorrectDialog.textReplaceType": "입력시 텍스트 바꿈", + "Common.Views.AutoCorrectDialog.textReset": "재설정", + "Common.Views.AutoCorrectDialog.textResetAll": "기본값으로 재설정", + "Common.Views.AutoCorrectDialog.textRestore": "복구", + "Common.Views.AutoCorrectDialog.textTitle": "자동 고침", + "Common.Views.AutoCorrectDialog.textWarnAddRec": "인식되는 함수는 대소 A ~ Z까지의 문자만을 포함해야합니다.", + "Common.Views.AutoCorrectDialog.textWarnResetRec": "추가한 모든 표현식이 삭제되고 삭제된 표현식이 복원됩니다. 계속하시겠습니까?", + "Common.Views.AutoCorrectDialog.warnReset": "추가한 모든 자동 고침이 삭제되고 변경된 자동 수정이 원래 값으로 복원됩니다. 계속하시겠습니까?", "Common.Views.Chat.textSend": "보내기", + "Common.Views.Comments.mniAuthorAsc": "작성자 A > Z", + "Common.Views.Comments.mniAuthorDesc": "작성자 Z > A", + "Common.Views.Comments.mniDateAsc": "가장 오래된", + "Common.Views.Comments.mniDateDesc": "최신", + "Common.Views.Comments.mniPositionAsc": "위에서 부터", + "Common.Views.Comments.mniPositionDesc": "아래로 부터", "Common.Views.Comments.textAdd": "추가", "Common.Views.Comments.textAddComment": "덧글 추가", "Common.Views.Comments.textAddCommentToDoc": "문서에 설명 추가", @@ -56,6 +163,7 @@ "Common.Views.Comments.textAnonym": "손님", "Common.Views.Comments.textCancel": "취소", "Common.Views.Comments.textClose": "닫기", + "Common.Views.Comments.textClosePanel": "코멘트 닫기", "Common.Views.Comments.textComments": "Comments", "Common.Views.Comments.textEdit": "OK", "Common.Views.Comments.textEnterCommentHint": "여기에 의견을 입력하십시오", @@ -72,17 +180,21 @@ "Common.Views.CopyWarningDialog.textToPaste": "붙여 넣기", "Common.Views.DocumentAccessDialog.textLoading": "로드 중 ...", "Common.Views.DocumentAccessDialog.textTitle": "공유 설정", + "Common.Views.EditNameDialog.textLabel": "라벨:", + "Common.Views.EditNameDialog.textLabelError": "라벨은 비워 둘 수 없습니다.", "Common.Views.Header.labelCoUsersDescr": "문서는 현재 여러 사용자가 편집하고 있습니다.", + "Common.Views.Header.textAddFavorite": "즐겨찾기에 추가", "Common.Views.Header.textAdvSettings": "고급 설정", - "Common.Views.Header.textBack": "문서로 이동", + "Common.Views.Header.textBack": "파일 위치 열기", "Common.Views.Header.textCompactView": "보기 컴팩트 도구 모음", "Common.Views.Header.textHideLines": "눈금자 숨기기", "Common.Views.Header.textHideStatusBar": "상태 표시 줄 숨기기", + "Common.Views.Header.textRemoveFavorite": "즐겨찾기에서 제거", "Common.Views.Header.textSaveBegin": "저장 중 ...", "Common.Views.Header.textSaveChanged": "수정된", "Common.Views.Header.textSaveEnd": "모든 변경 사항이 저장되었습니다", "Common.Views.Header.textSaveExpander": "모든 변경 사항이 저장되었습니다", - "Common.Views.Header.textZoom": "확대 / 축소", + "Common.Views.Header.textZoom": "확대/축소", "Common.Views.Header.tipAccessRights": "문서 액세스 권한 관리", "Common.Views.Header.tipDownload": "파일을 다운로드", "Common.Views.Header.tipGoEdit": "현재 파일 편집", @@ -94,23 +206,42 @@ "Common.Views.Header.tipViewUsers": "사용자보기 및 문서 액세스 권한 관리", "Common.Views.Header.txtAccessRights": "액세스 권한 변경", "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.ImageFromUrlDialog.textUrl": "이미지 URL 붙여 넣기 :", "Common.Views.ImageFromUrlDialog.txtEmpty": "이 입력란은 필수 항목", "Common.Views.ImageFromUrlDialog.txtNotUrl": "이 필드는 \"http://www.example.com\"형식의 URL이어야합니다.", "Common.Views.ListSettingsDialog.textBulleted": "단추", + "Common.Views.ListSettingsDialog.textNumbering": "번호 매기기", + "Common.Views.ListSettingsDialog.tipChange": "글 머리 기호 변경", "Common.Views.ListSettingsDialog.txtBullet": "단추", + "Common.Views.ListSettingsDialog.txtColor": "색상", + "Common.Views.ListSettingsDialog.txtNewBullet": "새로운 글머리 기호", + "Common.Views.ListSettingsDialog.txtNone": "없음", "Common.Views.ListSettingsDialog.txtOfText": "전체의 %", + "Common.Views.ListSettingsDialog.txtSize": "크기", + "Common.Views.ListSettingsDialog.txtSymbol": "기호", + "Common.Views.ListSettingsDialog.txtTitle": "목록 설정", "Common.Views.OpenDialog.closeButtonText": "파일 닫기", + "Common.Views.OpenDialog.textInvalidRange": "유효하지 않은 셀 범위", + "Common.Views.OpenDialog.textSelectData": "데이터 선택", "Common.Views.OpenDialog.txtAdvanced": "고급", "Common.Views.OpenDialog.txtColon": "콜론", "Common.Views.OpenDialog.txtComma": "쉼표", "Common.Views.OpenDialog.txtDelimiter": "구분 기호", + "Common.Views.OpenDialog.txtDestData": "데이터 배치 선택", + "Common.Views.OpenDialog.txtEmpty": "이 입력란은 필수 항목입니다.", "Common.Views.OpenDialog.txtEncoding": "인코딩", "Common.Views.OpenDialog.txtIncorrectPwd": "비밀번호가 맞지 않음", "Common.Views.OpenDialog.txtOpenFile": "파일을 열려면 암호를 입력하십시오.", "Common.Views.OpenDialog.txtOther": "기타", "Common.Views.OpenDialog.txtPassword": "비밀번호", "Common.Views.OpenDialog.txtPreview": "미리보기", + "Common.Views.OpenDialog.txtProtected": "암호를 입력하고 파일을 열면 파일의 현재 암호가 재설정됩니다.", "Common.Views.OpenDialog.txtSemicolon": "세미콜론", "Common.Views.OpenDialog.txtSpace": "공간", "Common.Views.OpenDialog.txtTab": "탭", @@ -145,9 +276,13 @@ "Common.Views.ReviewChanges.strFast": "빠르게", "Common.Views.ReviewChanges.strFastDesc": "실시간 협력 편집. 모든 변경사항들은 자동적으로 저장됨.", "Common.Views.ReviewChanges.strStrict": "엄격한", - "Common.Views.ReviewChanges.strStrictDesc": "귀하와 다른 사람이 변경사항을 동기화 하려면 '저장'버튼을 사용하세요.", + "Common.Views.ReviewChanges.strStrictDesc": "\"저장\" 버튼을 사용하여 귀하와 다른 사람들이 변경한 사항을 동기화하십시오.", "Common.Views.ReviewChanges.tipAcceptCurrent": "현재 변경 내용 적용", "Common.Views.ReviewChanges.tipCoAuthMode": "협력 편집 모드 세팅", + "Common.Views.ReviewChanges.tipCommentRem": "코멘트 삭제", + "Common.Views.ReviewChanges.tipCommentRemCurrent": "현재 코멘트 삭제", + "Common.Views.ReviewChanges.tipCommentResolve": "코멘트를 해결된 것으로 표시", + "Common.Views.ReviewChanges.tipCommentResolveCurrent": "현 코멘트를 해결된 것으로 표시", "Common.Views.ReviewChanges.tipHistory": "버전 표시", "Common.Views.ReviewChanges.tipRejectCurrent": "현재 변경 거부", "Common.Views.ReviewChanges.tipReview": "변경 내역 추적", @@ -162,6 +297,16 @@ "Common.Views.ReviewChanges.txtChat": "채팅", "Common.Views.ReviewChanges.txtClose": "완료", "Common.Views.ReviewChanges.txtCoAuthMode": "공동 편집 모드", + "Common.Views.ReviewChanges.txtCommentRemAll": "모든 코멘트 삭제", + "Common.Views.ReviewChanges.txtCommentRemCurrent": "현재 코멘트 삭제", + "Common.Views.ReviewChanges.txtCommentRemMy": "내 코멘트 삭제", + "Common.Views.ReviewChanges.txtCommentRemMyCurrent": "내 현재 댓글 삭제", + "Common.Views.ReviewChanges.txtCommentRemove": "삭제", + "Common.Views.ReviewChanges.txtCommentResolve": "해결", + "Common.Views.ReviewChanges.txtCommentResolveAll": "모든 코멘트를 해결된 것으로 표시", + "Common.Views.ReviewChanges.txtCommentResolveCurrent": "현 코멘트를 해결된 것으로 표시", + "Common.Views.ReviewChanges.txtCommentResolveMy": "내 코멘트를 해결된 것을 표시", + "Common.Views.ReviewChanges.txtCommentResolveMyCurrent": "내 코멘트를 해결된 것으로 표시", "Common.Views.ReviewChanges.txtDocLang": "언어", "Common.Views.ReviewChanges.txtFinal": "모든 변경 접수됨 (미리보기)", "Common.Views.ReviewChanges.txtFinalCap": "최종", @@ -183,13 +328,23 @@ "Common.Views.ReviewPopover.textAdd": "추가", "Common.Views.ReviewPopover.textAddReply": "답장 추가", "Common.Views.ReviewPopover.textCancel": "취소", + "Common.Views.ReviewPopover.textClose": "닫기", + "Common.Views.ReviewPopover.textEdit": "확인", "Common.Views.ReviewPopover.textMention": "+이 내용은 이 문서에 접근할 시 이메일을 통해 전해 질 것입니다.", "Common.Views.ReviewPopover.textMentionNotify": "+이 내용은 이메일을 통해 사용자에게 알려 줄 것 입니다.", + "Common.Views.ReviewPopover.textOpenAgain": "다시 열기", + "Common.Views.ReviewPopover.textReply": "답변", + "Common.Views.ReviewPopover.textResolve": "해결", + "Common.Views.SaveAsDlg.textLoading": "로드 중", + "Common.Views.SaveAsDlg.textTitle": "저장 폴더", + "Common.Views.SelectFileDlg.textLoading": "로드 중", + "Common.Views.SelectFileDlg.textTitle": "데이터 소스 선택", "Common.Views.SignDialog.textBold": "볼드체", "Common.Views.SignDialog.textCertificate": "인증", "Common.Views.SignDialog.textChange": "변경", "Common.Views.SignDialog.textInputName": "서명자 성함을 입력하세요", "Common.Views.SignDialog.textItalic": "이탤릭", + "Common.Views.SignDialog.textNameError": "서명자의 이름은 비워둘 수 없습니다.", "Common.Views.SignDialog.textPurpose": "이 문서에 서명하는 목적", "Common.Views.SignDialog.textSelect": "선택", "Common.Views.SignDialog.textSelectImage": "이미지 선택", @@ -208,7 +363,45 @@ "Common.Views.SignSettingsDialog.textShowDate": "서명라인에 서명 날짜를 보여주세요", "Common.Views.SignSettingsDialog.textTitle": "서명 셋업", "Common.Views.SignSettingsDialog.txtEmpty": "이 입력란은 필수 항목", + "Common.Views.SymbolTableDialog.textCharacter": "문자", "Common.Views.SymbolTableDialog.textCode": "유니코드 HEX 값", + "Common.Views.SymbolTableDialog.textCopyright": "저작권 표시", + "Common.Views.SymbolTableDialog.textDCQuote": "큰 따옴표 닫기", + "Common.Views.SymbolTableDialog.textDOQuote": "큰 따옴표 (왼쪽)", + "Common.Views.SymbolTableDialog.textEmDash": "Em 대시", + "Common.Views.SymbolTableDialog.textEmSpace": "Em 공백", + "Common.Views.SymbolTableDialog.textEnDash": "En 대시", + "Common.Views.SymbolTableDialog.textEnSpace": "En 공백", + "Common.Views.SymbolTableDialog.textFont": "글꼴", + "Common.Views.SymbolTableDialog.textNBHyphen": "줄 바꿈없는 하이픈", + "Common.Views.SymbolTableDialog.textNBSpace": "줄 바꿈 없는 공백", + "Common.Views.SymbolTableDialog.textPilcrow": "단락기호", + "Common.Views.SymbolTableDialog.textQEmSpace": "1/4 칸", + "Common.Views.SymbolTableDialog.textRange": "범위", + "Common.Views.SymbolTableDialog.textRecent": "최근 사용한 기호", + "Common.Views.SymbolTableDialog.textRegistered": "등록된 서명", + "Common.Views.SymbolTableDialog.textSCQuote": "작은 따옴표 닫기", + "Common.Views.SymbolTableDialog.textSection": "섹션 기호", + "Common.Views.SymbolTableDialog.textShortcut": "단축키", + "Common.Views.SymbolTableDialog.textSOQuote": "작은 따옴표 (왼쪽)", + "Common.Views.SymbolTableDialog.textSpecial": "특수 문자", + "Common.Views.SymbolTableDialog.textSymbols": "기호", + "Common.Views.SymbolTableDialog.textTitle": "기호", + "Common.Views.SymbolTableDialog.textTradeMark": "로고기호", + "Common.Views.UserNameDialog.textDontShow": "다시 표시하지 않음", + "Common.Views.UserNameDialog.textLabel": "라벨:", + "Common.Views.UserNameDialog.textLabelError": "라벨은 비워 둘 수 없습니다.", + "SSE.Controllers.DataTab.textColumns": "열", + "SSE.Controllers.DataTab.textRows": "행", + "SSE.Controllers.DataTab.textWizard": "텍스트 나누기", + "SSE.Controllers.DataTab.txtDataValidation": "데이터 유효성", + "SSE.Controllers.DataTab.txtExpand": "확장", + "SSE.Controllers.DataTab.txtExpandRemDuplicates": "선택한 콘텐츠 옆의 데이터는 삭제되지 않습니다. 인접 데이터를 포함하도록 선택 영역을 확장하시겠습니까, 아니면 현재 선택한 셀을 계속 사용하시겠습니까?", + "SSE.Controllers.DataTab.txtExtendDataValidation": "이 선택에는 데이터 확인 설정이 없는 데이터가 포함되어 있습니다.
데이터 유효성 체크를 이 장치로 하시겠습니까?", + "SSE.Controllers.DataTab.txtRemDuplicates": "중복된 항목 제거", + "SSE.Controllers.DataTab.txtRemoveDataValidation": "이 선택에는 여러 확인 유형이 포함됩니다.
현재 설정을 지우고 계속하시겠습니까?", + "SSE.Controllers.DataTab.txtRemSelected": "선택한 위치에서 삭제", + "SSE.Controllers.DataTab.txtUrlTitle": "데이터 URL 붙여넣기", "SSE.Controllers.DocumentHolder.alignmentText": "정렬", "SSE.Controllers.DocumentHolder.centerText": "Center", "SSE.Controllers.DocumentHolder.deleteColumnText": "열 삭제", @@ -224,11 +417,13 @@ "SSE.Controllers.DocumentHolder.leftText": "Left", "SSE.Controllers.DocumentHolder.notcriticalErrorTitle": "경고", "SSE.Controllers.DocumentHolder.rightText": "Right", + "SSE.Controllers.DocumentHolder.textAutoCorrectSettings": "자동 고침 옵션", "SSE.Controllers.DocumentHolder.textChangeColumnWidth": "열 너비 {0} 기호 ({1} 픽셀)", "SSE.Controllers.DocumentHolder.textChangeRowHeight": "행 높이 {0} 점 ({1} 픽셀)", "SSE.Controllers.DocumentHolder.textCtrlClick": "CTRL 키를 누른 상태에서 링크 클릭", "SSE.Controllers.DocumentHolder.textInsertLeft": "왼쪽에 삽입", "SSE.Controllers.DocumentHolder.textInsertTop": "Insert Top", + "SSE.Controllers.DocumentHolder.textPasteSpecial": "특수기호 붙이기", "SSE.Controllers.DocumentHolder.textSym": "sym", "SSE.Controllers.DocumentHolder.tipIsLocked": "이 요소는 다른 사용자가 편집하고 있습니다.", "SSE.Controllers.DocumentHolder.txtAboveAve": "평균 이상", @@ -249,7 +444,9 @@ "SSE.Controllers.DocumentHolder.txtBlanks": "(빈칸들)", "SSE.Controllers.DocumentHolder.txtBorderProps": "테두리 속성", "SSE.Controllers.DocumentHolder.txtBottom": "Bottom", + "SSE.Controllers.DocumentHolder.txtColumn": "열", "SSE.Controllers.DocumentHolder.txtColumnAlign": "열 정렬", + "SSE.Controllers.DocumentHolder.txtContains": "포함", "SSE.Controllers.DocumentHolder.txtDecreaseArg": "인수 크기 감소", "SSE.Controllers.DocumentHolder.txtDeleteArg": "인수 삭제", "SSE.Controllers.DocumentHolder.txtDeleteBreak": "수동 브레이크 삭제", @@ -258,12 +455,18 @@ "SSE.Controllers.DocumentHolder.txtDeleteEq": "수식 삭제", "SSE.Controllers.DocumentHolder.txtDeleteGroupChar": "문자 삭제", "SSE.Controllers.DocumentHolder.txtDeleteRadical": "래디 칼 삭제", + "SSE.Controllers.DocumentHolder.txtEnds": "종료", + "SSE.Controllers.DocumentHolder.txtEquals": "같음", + "SSE.Controllers.DocumentHolder.txtEqualsToCellColor": "셀의 색상에 등호", + "SSE.Controllers.DocumentHolder.txtEqualsToFontColor": "글꼴 색상 등호", "SSE.Controllers.DocumentHolder.txtExpand": "확장 및 정렬", "SSE.Controllers.DocumentHolder.txtExpandSort": "선택 영역 옆의 데이터는 정렬되지 않습니다. 인접한 데이터를 포함하도록 선택 영역을 확장 하시겠습니까, 아니면 현재 선택된 셀만 정렬할까요?", "SSE.Controllers.DocumentHolder.txtFilterBottom": "바닥", "SSE.Controllers.DocumentHolder.txtFractionLinear": "선형 분수로 변경", "SSE.Controllers.DocumentHolder.txtFractionSkewed": "기울어 진 분수로 변경", "SSE.Controllers.DocumentHolder.txtFractionStacked": "누적 분율로 변경", + "SSE.Controllers.DocumentHolder.txtGreater": "보다 큼", + "SSE.Controllers.DocumentHolder.txtGreaterEquals": "크거나 같음", "SSE.Controllers.DocumentHolder.txtGroupCharOver": "텍스트를 덮는 문자", "SSE.Controllers.DocumentHolder.txtGroupCharUnder": "문자 아래의 문자", "SSE.Controllers.DocumentHolder.txtHeight": "높이", @@ -287,12 +490,22 @@ "SSE.Controllers.DocumentHolder.txtInsertBreak": "수동 중단 삽입", "SSE.Controllers.DocumentHolder.txtInsertEqAfter": "이후 수식 삽입", "SSE.Controllers.DocumentHolder.txtInsertEqBefore": "이전에 수식 삽입", + "SSE.Controllers.DocumentHolder.txtItems": "아이템", + "SSE.Controllers.DocumentHolder.txtKeepTextOnly": "텍스트 만 유지", + "SSE.Controllers.DocumentHolder.txtLess": "보다 작음", + "SSE.Controllers.DocumentHolder.txtLessEquals": "작거나 같음", "SSE.Controllers.DocumentHolder.txtLimitChange": "제한 위치 변경", "SSE.Controllers.DocumentHolder.txtLimitOver": "텍스트 제한", "SSE.Controllers.DocumentHolder.txtLimitUnder": "텍스트에서 제한", + "SSE.Controllers.DocumentHolder.txtLockSort": "선택의 범위 근처에 데이터가 존재 하지만이 셀을 변경하려면 충분한 권한이 없습니다.
선택의 범위를 계속 하시겠습니까?", "SSE.Controllers.DocumentHolder.txtMatchBrackets": "인수 높이에 대괄호 일치", "SSE.Controllers.DocumentHolder.txtMatrixAlign": "매트릭스 정렬", "SSE.Controllers.DocumentHolder.txtNoChoices": "셀을 채울 선택이 없습니다.
열의 텍스트 값만 대체 할 수 있습니다.", + "SSE.Controllers.DocumentHolder.txtNotBegins": "다음 문자에서 시작하기", + "SSE.Controllers.DocumentHolder.txtNotContains": "포함하지 않음", + "SSE.Controllers.DocumentHolder.txtNotEnds": "다음 문자열로 끝나지 않음", + "SSE.Controllers.DocumentHolder.txtNotEquals": "같지 않음", + "SSE.Controllers.DocumentHolder.txtOr": "또는", "SSE.Controllers.DocumentHolder.txtOverbar": "텍스트 위에 바", "SSE.Controllers.DocumentHolder.txtPaste": "붙여 넣기", "SSE.Controllers.DocumentHolder.txtPasteBorders": "테두리없는 수식", @@ -311,11 +524,13 @@ "SSE.Controllers.DocumentHolder.txtPasteValFormat": "값 + 모든 서식 지정", "SSE.Controllers.DocumentHolder.txtPasteValNumFormat": "값 + 숫자 형식", "SSE.Controllers.DocumentHolder.txtPasteValues": "값만 붙여 넣기", + "SSE.Controllers.DocumentHolder.txtPercent": "백분율", "SSE.Controllers.DocumentHolder.txtRedoExpansion": "리두 테이블 자동확장", "SSE.Controllers.DocumentHolder.txtRemFractionBar": "분수 막대 제거", "SSE.Controllers.DocumentHolder.txtRemLimit": "제한 제거", "SSE.Controllers.DocumentHolder.txtRemoveAccentChar": "액센트 문자 제거", "SSE.Controllers.DocumentHolder.txtRemoveBar": "막대 제거", + "SSE.Controllers.DocumentHolder.txtRemoveWarning": "이 서명을 삭제하시겠습니까?
이 작업은 취소할 수 없습니다.", "SSE.Controllers.DocumentHolder.txtRemScripts": "스크립트 제거", "SSE.Controllers.DocumentHolder.txtRemSubscript": "아래 첨자 제거", "SSE.Controllers.DocumentHolder.txtRemSuperscript": "위 첨자 제거", @@ -334,41 +549,57 @@ "SSE.Controllers.DocumentHolder.txtTop": "Top", "SSE.Controllers.DocumentHolder.txtUnderbar": "텍스트 아래에 바", "SSE.Controllers.DocumentHolder.txtUndoExpansion": "테이블 자동확장 하지 않기", + "SSE.Controllers.DocumentHolder.txtWarnUrl": "이 링크는 장치와 데이터에 손상을 줄 수 있습니다.
계속하시겠습니까?", "SSE.Controllers.DocumentHolder.txtWidth": "너비", "SSE.Controllers.FormulaDialog.sCategoryAll": "모든", + "SSE.Controllers.FormulaDialog.sCategoryCube": "정육면체", + "SSE.Controllers.FormulaDialog.sCategoryDatabase": "데이터베이스", + "SSE.Controllers.FormulaDialog.sCategoryDateAndTime": "날짜 및 시간", + "SSE.Controllers.FormulaDialog.sCategoryEngineering": "엔지니어링", + "SSE.Controllers.FormulaDialog.sCategoryFinancial": "재무", + "SSE.Controllers.FormulaDialog.sCategoryInformation": "정보", "SSE.Controllers.FormulaDialog.sCategoryLast10": "지난 10가지 되살리기 목록", + "SSE.Controllers.FormulaDialog.sCategoryLogical": "논리적", + "SSE.Controllers.FormulaDialog.sCategoryLookupAndReference": "조회 및 참조", + "SSE.Controllers.FormulaDialog.sCategoryMathematic": "수학 및 삼각법", + "SSE.Controllers.FormulaDialog.sCategoryTextAndData": "텍스트 및 데이터", "SSE.Controllers.LeftMenu.newDocumentTitle": "이름없는 스프레드 시트", "SSE.Controllers.LeftMenu.textByColumns": "열 기준", "SSE.Controllers.LeftMenu.textByRows": "행 기준", "SSE.Controllers.LeftMenu.textFormulas": "수식", "SSE.Controllers.LeftMenu.textItemEntireCell": "전체 셀 내용", + "SSE.Controllers.LeftMenu.textLoadHistory": "버전 기록 로드 중...", "SSE.Controllers.LeftMenu.textLookin": "Look in", "SSE.Controllers.LeftMenu.textNoTextFound": "검색 한 데이터를 찾을 수 없습니다. 검색 옵션을 조정하십시오.", "SSE.Controllers.LeftMenu.textReplaceSkipped": "대체가 이루어졌습니다. {0} 건은 건너 뛰었습니다.", "SSE.Controllers.LeftMenu.textReplaceSuccess": "검색이 완료되었습니다. 발생 횟수가 대체되었습니다 : {0}", "SSE.Controllers.LeftMenu.textSearch": "Search", "SSE.Controllers.LeftMenu.textSheet": "시트", - "SSE.Controllers.LeftMenu.textValues": "Values", + "SSE.Controllers.LeftMenu.textValues": "값", "SSE.Controllers.LeftMenu.textWarning": "경고", "SSE.Controllers.LeftMenu.textWithin": "within", "SSE.Controllers.LeftMenu.textWorkbook": "통합 문서", "SSE.Controllers.LeftMenu.warnDownloadAs": "이 형식으로 저장을 계속하면 텍스트를 제외한 모든 기능이 손실됩니다. 계속 하시겠습니까?", "SSE.Controllers.Main.confirmMoveCellRange": "대상 셀 범위에 데이터가 포함될 수 있습니다. 작업을 계속 하시겠습니까?", "SSE.Controllers.Main.confirmPutMergeRange": "원본 데이터에 병합 된 셀이 있습니다.
테이블에 붙여 넣기 전에 병합되지 않았습니다.", + "SSE.Controllers.Main.confirmReplaceFormulaInTable": "머리글 행의 수식이 삭제되고 정적 텍스트로 변환됩니다.
계속하시겠습니까?", "SSE.Controllers.Main.convertationTimeoutText": "전환 시간 초과를 초과했습니다.", "SSE.Controllers.Main.criticalErrorExtText": "문서 목록으로 돌아가려면 \"OK\"를 누르십시오.", "SSE.Controllers.Main.criticalErrorTitle": "오류", "SSE.Controllers.Main.downloadErrorText": "다운로드하지 못했습니다.", "SSE.Controllers.Main.downloadTextText": "스프레드 시트 다운로드 중 ...", "SSE.Controllers.Main.downloadTitleText": "스프레드 시트 다운로드 중", + "SSE.Controllers.Main.errNoDuplicates": "중복 값이 ​​없습니다.", "SSE.Controllers.Main.errorAccessDeny": "권한이없는 작업을 수행하려고합니다. \n문서 서버 관리자에게 보다 자세한 내용을 안내 받으시기 바랍니다.", "SSE.Controllers.Main.errorArgsRange": "입력 된 수식에 오류가 있습니다.
잘못된 인수 범위가 사용되었습니다.", - "SSE.Controllers.Main.errorAutoFilterChange": "작업은 워크 시트의 표에서 셀을 이동하려고 시도하므로 허용되지 않습니다.", + "SSE.Controllers.Main.errorAutoFilterChange": "이 작업은 워크시트의 테이블에 있는 셀을 이동하려고 하기 때문에 허용되지 않습니다.", "SSE.Controllers.Main.errorAutoFilterChangeFormatTable": "테이블의 일부를 이동할 수 없으므로 선택한 셀에 대해 작업을 수행 할 수 없습니다.
전체 데이터를 이동하여 다시 시도하도록 다른 데이터 범위를 선택하십시오.", "SSE.Controllers.Main.errorAutoFilterDataRange": "선택한 셀 범위에서 작업을 수행 할 수 없습니다.
기존 데이터 범위와 다른 데이터 범위를 선택하고 다시 시도하십시오.", "SSE.Controllers.Main.errorAutoFilterHiddenRange": "영역에 필터링 된 셀이 포함되어있어 작업을 수행 할 수 없습니다.
필터링 된 요소를 숨김 해제하고 다시 시도하십시오.", "SSE.Controllers.Main.errorBadImageUrl": "이미지 URL이 잘못되었습니다.", - "SSE.Controllers.Main.errorCannotUngroup": "그룹 지정 취소가 되지 않습니다. 특정 열 또는 줄을 지정해서 그룹 지정을 하시기 바랍니다.", + "SSE.Controllers.Main.errorCannotUngroup": "그룹 지정 해제가 되지 않습니다. 특정 열 또는 줄을 지정해서 그룹 지정을 다시 하시기 바랍니다.", + "SSE.Controllers.Main.errorChangeFilteredRange": "이렇게 하면 워크시트의 필터 범위가 변경됩니다.
이 작업을 완료하려면 \"자동 필터\"를 삭제하십시오.", + "SSE.Controllers.Main.errorChangeOnProtectedSheet": "변경하려는 셀 또는 차트가 보호된 워크시트에 있습니다.
변경하려면 워크시트의 잠금을 해제하세요. 입력한 비밀번호를 수정해야 할 수도 있습니다.", "SSE.Controllers.Main.errorCoAuthoringDisconnect": "서버 연결이 끊어졌습니다. 문서를 지금 편집 할 수 없습니다.", "SSE.Controllers.Main.errorConnectToServer": "문서를 저장할 수 없습니다. 연결 설정을 확인하거나 관리자에게 문의하십시오.
'확인'버튼을 클릭하면 문서를 다운로드하라는 메시지가 나타납니다.", "SSE.Controllers.Main.errorCopyMultiselectArea": "이 명령은 여러 선택 항목과 함께 사용할 수 없습니다.
단일 범위를 선택하고 다시 시도하십시오.", @@ -376,47 +607,75 @@ "SSE.Controllers.Main.errorCountArgExceed": "입력 된 수식에 오류가 있습니다.
인수 수가 초과되었습니다.", "SSE.Controllers.Main.errorCreateDefName": "기존 명명 된 범위를 편집 할 수 없으며 일부는 편집 중임에 따라 현재 명명 된 범위를 만들 수 없습니다.", "SSE.Controllers.Main.errorDatabaseConnection": "외부 오류.
데이터베이스 연결 오류입니다. 오류가 계속 발생하면 지원 담당자에게 문의하십시오.", + "SSE.Controllers.Main.errorDataEncrypted": "암호화 변경 사항이 수신되었으며 해독할 수 없습니다.", "SSE.Controllers.Main.errorDataRange": "잘못된 데이터 범위입니다.", + "SSE.Controllers.Main.errorDataValidate": "입력한 값이 잘못되었습니다.
사용자는 이 셀에 입력할 수 있는 제한 값이 있습니다.", "SSE.Controllers.Main.errorDefaultMessage": "오류 코드 : % 1", + "SSE.Controllers.Main.errorDeleteColumnContainsLockedCell": "잠긴 셀이 포함된 열을 삭제하려고 합니다. 워크시트가 보호된 경우 잠긴 셀은 삭제할 수 없습니다.
잠긴 셀을 삭제하려면 워크시트의 잠금을 해제하세요. 입력한 비밀번호를 수정해야 할 수도 있습니다.", + "SSE.Controllers.Main.errorDeleteRowContainsLockedCell": "잠긴 셀이 포함된 행을 삭제하려고 합니다. 워크시트가 보호된 경우 잠긴 셀은 삭제할 수 없습니다.
잠긴 셀을 삭제하려면 워크시트의 잠금을 해제하세요. 입력한 비밀번호를 수정해야 할 수도 있습니다.", "SSE.Controllers.Main.errorEditingDownloadas": " 문서 작업 중에 알수 없는 장애가 발생했습니다.
\"다른 이름으로 다운로드...\"를 선택하여 파일을 현재 사용 중인 컴퓨터 하드 디스크에 저장하시기 바랍니다.", "SSE.Controllers.Main.errorEditingSaveas": " 문서 작업 중에 알수 없는 장애가 발생하였습니다.
\"다른 이름으로 저장...\"을 선택하여 현재 사용 중인 컴퓨터의 하드 디스크에 저장하시기 바랍니다.", + "SSE.Controllers.Main.errorEditView": "그 중 일부가 편집 중이기 때문에 현재 기존 도면 뷰를 편집하거나 새 도면 뷰를 생성할 수 없습니다.", + "SSE.Controllers.Main.errorEmailClient": "이메일 클라이언트를 찾을 수 없습니다.", "SSE.Controllers.Main.errorFilePassProtect": "문서가 암호로 보호되어 있습니다.", "SSE.Controllers.Main.errorFileRequest": "외부 오류.
파일 요청 오류입니다. 오류가 지속될 경우 지원 담당자에게 문의하십시오.", + "SSE.Controllers.Main.errorFileSizeExceed": "이 파일은 이 호스트의 크기 제한을 초과합니다.
자세한 내용은 파일 서비스 호스트의 관리자에게 문의하십시오.", "SSE.Controllers.Main.errorFileVKey": "외부 오류.
잘못된 보안 키입니다. 오류가 계속 발생하면 지원 부서에 문의하십시오.", "SSE.Controllers.Main.errorFillRange": "선택한 셀 범위를 채울 수 없습니다.
병합 된 모든 셀이 같은 크기 여야합니다.", "SSE.Controllers.Main.errorForceSave": "파일 저장중 문제 발생됨. 컴퓨터 하드 드라이브에 파일을 저장하려면 '로 다운로드' 옵션을 사용 또는 나중에 다시 시도하세요.", "SSE.Controllers.Main.errorFormulaName": "입력 한 수식에 오류가 있습니다.
잘못된 수식 이름이 사용되었습니다.", "SSE.Controllers.Main.errorFormulaParsing": "수식을 분석하는 동안 내부 오류가 발생했습니다.", + "SSE.Controllers.Main.errorFrmlMaxLength": "수식의 길이가 8192자 제한을 초과합니다.
수정하고 다시 시도하십시오.", + "SSE.Controllers.Main.errorFrmlMaxReference": "값, 셀 참조 및/또는 이름이 너무 많기 때문에 이 수식을 입력할 수 없습니다.", + "SSE.Controllers.Main.errorFrmlMaxTextLength": "수식의 텍스트 값은 255자로 제한됩니다.
CONCATENATE 함수 또는 연결 연산자(&)를 사용합니다.", "SSE.Controllers.Main.errorFrmlWrongReferences": "이 함수는 존재하지 않는 시트를 참조합니다.
데이터를 확인한 후 다시 시도하십시오.", + "SSE.Controllers.Main.errorFTChangeTableRangeError": "선택한 셀 범위에 대해 작업을 완료 할 수 없습니다.
첫 번째 테이블 행이 같은 행에 있고 결과 테이블이 현재 테이블과 겹치도록 범위를 선택하십시오. . ", + "SSE.Controllers.Main.errorFTRangeIncludedOtherTables": "선택한 셀 범위에 대해 작업을 완료 할 수 없습니다.
다른 테이블을 포함하지 않는 범위를 선택하십시오.", "SSE.Controllers.Main.errorInvalidRef": "선택 항목의 정확한 이름을 입력하거나 이동할 참조를 입력하십시오.", "SSE.Controllers.Main.errorKeyEncrypt": "알 수없는 키 설명자", "SSE.Controllers.Main.errorKeyExpire": "키 설명자가 만료되었습니다", + "SSE.Controllers.Main.errorLabledColumnsPivot": "피벗 테이블을 만들려면 레이블이 지정된 열이 있는 목록으로 구성된 데이터를 사용합니다.", + "SSE.Controllers.Main.errorLoadingFont": "글꼴이 로드되지 않았습니다.
문서 관리 관리자에게 문의하십시오.", + "SSE.Controllers.Main.errorLocationOrDataRangeError": "위치 또는 데이터 범위에 대한 참조가 잘못되었습니다.", "SSE.Controllers.Main.errorLockedAll": "다른 사용자가 시트를 잠근 상태에서 작업을 수행 할 수 없습니다.", "SSE.Controllers.Main.errorLockedCellPivot": "피벗 테이블에서 데이터를 변경할 수 없습니다.", "SSE.Controllers.Main.errorLockedWorksheetRename": "시트의 이름을 다른 사용자가 바꾸면 이름을 바꿀 수 없습니다.", "SSE.Controllers.Main.errorMaxPoints": "차트당 시리즈내 포인트의 최대값은 4096임", "SSE.Controllers.Main.errorMoveRange": "병합 된 셀의 일부를 변경할 수 없습니다", - "SSE.Controllers.Main.errorOpenWarning": "파일에있는 수식 중 하나의 길이가 허용 된 문자 수를 초과하여 제거되었습니다.", + "SSE.Controllers.Main.errorMoveSlicerError": "한 통합 문서에서 다른 통합 문서로 테이블 슬라이서를 복사할 수 없습니다.
전체 테이블과 슬라이서를 선택하여 다시 시도하세요.", + "SSE.Controllers.Main.errorMultiCellFormula": "다중 셀 배열 수식은 테이블에서 허용되지 않습니다.", + "SSE.Controllers.Main.errorNoDataToParse": "선택한 행에는 구문 분석을 위한 데이터가 없습니다.", + "SSE.Controllers.Main.errorOpenWarning": "파일 수식 중 하나가 8192자 제한을 초과합니다.
공식이 삭제되었습니다.", "SSE.Controllers.Main.errorOperandExpected": "입력 한 함수 구문이 올바르지 않습니다. 괄호 중 하나가 누락되어 있는지 확인하십시오 ( '('또는 ')').", - "SSE.Controllers.Main.errorPasteMaxRange": "복사 및 붙여 넣기 영역이 일치하지 않습니다.
복사 된 셀을 붙여 넣으려면 동일한 크기의 영역을 선택하거나 행의 첫 번째 셀을 클릭하십시오.", + "SSE.Controllers.Main.errorPasswordIsNotCorrect": "잘못된 비밀번호.
캡 잠금 버튼이 꺼져 있는지 확인하고 올바른 대문자를 사용해야 합니다.", + "SSE.Controllers.Main.errorPasteMaxRange": "복사 및 붙여넣기 영역이 일치하지 않습니다.
같은 크기의 영역을 선택하거나 행의 첫 번째 셀을 클릭하여 복사한 셀을 붙여넣으세요.", + "SSE.Controllers.Main.errorPasteSlicerError": "테이블 슬라이서는 한 통합 문서에서 다른 통합 문서로 복사할 수 없습니다.", + "SSE.Controllers.Main.errorPivotGroup": "그룹화할 수 없음", "SSE.Controllers.Main.errorPivotOverlap": "피봇 보고서가 정해진 범위를 벗어났습니다.", + "SSE.Controllers.Main.errorPivotWithoutUnderlying": "피벗 테이블은 기본 데이터와 함께 저장되지 않습니다.
보고서를 업데이트하려면 \"업데이트\" 버튼을 사용하십시오.", "SSE.Controllers.Main.errorPrintMaxPagesCount": "유감스럽게도 현재 프로그램 버전에서 한 번에 1500 페이지 이상을 인쇄 할 수 없습니다.
이 제한 사항은 다음 릴리스에서 제거 될 예정입니다.", "SSE.Controllers.Main.errorProcessSaveResult": "저장 실패", "SSE.Controllers.Main.errorServerVersion": "편집기 버전이 업데이트되었습니다. 페이지가 다시로드되어 변경 사항이 적용됩니다.", "SSE.Controllers.Main.errorSessionAbsolute": "문서 편집 세션이 만료되었습니다. 페이지를 새로 고침하십시오.", "SSE.Controllers.Main.errorSessionIdle": "문서가 오랫동안 편집되지 않았습니다. 페이지를 새로 고침하십시오.", "SSE.Controllers.Main.errorSessionToken": "서버 연결이 중단되었습니다. 페이지를 새로 고침하십시오.", + "SSE.Controllers.Main.errorSetPassword": "비밀번호를 재설정할 수 없습니다.", + "SSE.Controllers.Main.errorSingleColumnOrRowError": "셀이 모두 같은 열이나 행에 있지 않기 때문에 위치 참조가 잘못되었습니다.
같은 열이나 행에서 셀을 선택하십시오.", "SSE.Controllers.Main.errorStockChart": "잘못된 행 순서. 주식형 차트를 작성하려면 시트의 데이터를 다음과 같은 순서로 배치하십시오 :
개시 가격, 최대 가격, 최소 가격, 마감 가격.", "SSE.Controllers.Main.errorToken": "문서 보안 토큰이 올바르게 구성되지 않았습니다.
Document Server 관리자에게 문의하십시오.", "SSE.Controllers.Main.errorTokenExpire": "문서 보안 토큰이 만료되었습니다.
Document Server 관리자에게 문의하십시오.", "SSE.Controllers.Main.errorUnexpectedGuid": "외부 오류입니다.
예기치 않은 GUID 오류가 계속 발생하면 지원 담당자에게 문의하십시오.", "SSE.Controllers.Main.errorUpdateVersion": "파일 버전이 변경되었습니다. 페이지가 다시로드됩니다.", + "SSE.Controllers.Main.errorUpdateVersionOnDisconnect": "네트워크 연결이 복원되었으며 파일 버전이 변경되었습니다.
계속 작업하기 전에 데이터 손실을 방지하기 위해 파일을 다운로드하거나 내용을 복사한 다음 이 페이지를 새로 고쳐야 합니다.", "SSE.Controllers.Main.errorUserDrop": "파일에 지금 액세스 할 수 없습니다.", - "SSE.Controllers.Main.errorUsersExceed": "가격 책정 계획에서 허용 한 사용자 수가 초과되었습니다.", + "SSE.Controllers.Main.errorUsersExceed": "요금제에서 허용하는 사용자 수 초과", "SSE.Controllers.Main.errorViewerDisconnect": "연결이 끊어졌습니다. 문서를 볼 수는

하지만 연결이 복원 될 때까지 다운로드하거나 인쇄 할 수 없습니다.", "SSE.Controllers.Main.errorWrongBracketsCount": "입력 된 수식에 오류가 있습니다.
괄호가 잘못 사용되었습니다.", "SSE.Controllers.Main.errorWrongOperator": "입력 한 수식에 오류가 있습니다. 잘못된 연산자가 사용되었습니다.
오류를 수정하십시오.", + "SSE.Controllers.Main.errorWrongPassword": "잘못된 비밀번호", + "SSE.Controllers.Main.errRemDuplicates": "중복 값이 ​​발견 및 삭제됨: {0}, 남은 고유 값: {1}.", "SSE.Controllers.Main.leavePageText": "이 스프레드 시트에 변경 사항을 저장하지 않았습니다.'이 페이지에 머물기\"를 누르고 '저장'으로 저장하십시오. 저장하지 않은 모든 변경 사항을 무시하려면 '이 페이지 벗어나기'를 클릭하십시오.", + "SSE.Controllers.Main.leavePageTextOnClose": "이 문서에 저장되지 않은 모든 변경 사항이 손실됩니다.
\"취소\"를 클릭한 다음 \"저장\"을 클릭하여 저장하십시오. 저장되지 않은 모든 변경 사항을 취소하려면 \"확인\"을 클릭하십시오.", "SSE.Controllers.Main.loadFontsTextText": "데이터로드 중 ...", "SSE.Controllers.Main.loadFontsTitleText": "데이터로드 중", "SSE.Controllers.Main.loadFontTextText": "데이터로드 중 ...", @@ -437,23 +696,39 @@ "SSE.Controllers.Main.requestEditFailedMessageText": "누군가이 문서를 지금 편집하고 있습니다. 나중에 다시 시도하십시오.", "SSE.Controllers.Main.requestEditFailedTitleText": "액세스가 거부되었습니다", "SSE.Controllers.Main.saveErrorText": "파일을 저장하는 동안 오류가 발생했습니다.", + "SSE.Controllers.Main.saveErrorTextDesktop": "이 파일을 저장하거나 생성할 수 없습니다.
가능한 이유는 다음과 같습니다.
1. 파일이 읽기 전용입니다.
2. 다른 사용자가 파일을 편집 중입니다.
3. 디스크가 가득 찼거나 손상되었습니다.", "SSE.Controllers.Main.savePreparingText": "저장 준비 중", "SSE.Controllers.Main.savePreparingTitle": "저장 준비 중입니다. 잠시 기다려주십시오 ...", "SSE.Controllers.Main.saveTextText": "스프레드 시트 저장 중 ...", "SSE.Controllers.Main.saveTitleText": "스프레드 시트 저장 중", + "SSE.Controllers.Main.scriptLoadError": "연결 속도가 느려, 일부 요소들이 로드되지 않았습니다. 페이지를 다시 새로 고침해주세요.", "SSE.Controllers.Main.textAnonymous": "익명", + "SSE.Controllers.Main.textApplyAll": "모든 방정식에 적용", "SSE.Controllers.Main.textBuyNow": "웹 사이트 방문", + "SSE.Controllers.Main.textChangesSaved": "모든 변경 사항이 저장되었습니다", + "SSE.Controllers.Main.textClose": "닫기", "SSE.Controllers.Main.textCloseTip": "도움말을 닫으려면 클릭하십시오", "SSE.Controllers.Main.textConfirm": "확인", "SSE.Controllers.Main.textContactUs": "영업 담당자에게 문의", + "SSE.Controllers.Main.textConvertEquation": "방정식은 더 이상 지원되지 않는 이전 버전의 방정식 편집기를 사용하여 생성되었습니다. 편집하려면 수식을 Office Math ML 형식으로 변환하세요.
지금 변환하시겠습니까?", + "SSE.Controllers.Main.textCustomLoader": "라이센스 조건에 따라 교체할 권한이 없습니다.
견적은 당사 영업부에 문의해 주십시오.", + "SSE.Controllers.Main.textDisconnect": "네트워크 연결 끊김", + "SSE.Controllers.Main.textGuest": "게스트", + "SSE.Controllers.Main.textLearnMore": "자세히", "SSE.Controllers.Main.textLoadingDocument": "스프레드 시트로드 중", + "SSE.Controllers.Main.textLongName": "128자 미만의 이름을 입력하세요.", "SSE.Controllers.Main.textNo": "No", "SSE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE 연결 제한", + "SSE.Controllers.Main.textPaidFeature": "유료기능", "SSE.Controllers.Main.textPleaseWait": "작업이 예상보다 많은 시간이 걸릴 수 있습니다. 잠시 기다려주십시오 ...", "SSE.Controllers.Main.textRecalcFormulas": "수식 계산 중 ...", - "SSE.Controllers.Main.textShape": "Shape", + "SSE.Controllers.Main.textRemember": "모든 파일에 대한 선택 사항을 기억하기", + "SSE.Controllers.Main.textRenameError": "사용자 이름은 비워둘 수 없습니다.", + "SSE.Controllers.Main.textRenameLabel": "협업에 사용할 이름을 입력합니다", + "SSE.Controllers.Main.textShape": "도형", "SSE.Controllers.Main.textStrict": "엄격 모드", - "SSE.Controllers.Main.textTryUndoRedo": "빠른 공동 편집 모드에서는 실행 취소 / 다시 실행 기능이 비활성화됩니다.
\"엄격 모드 \"버튼을 클릭하면 엄격한 공동 편집 모드로 전환되어 파일을 편집하지 않고 다른 사용자가 방해를해서 저장 한 후에 만 ​​변경 사항을 보내십시오. 편집자 고급 설정을 사용하여 공동 편집 모드간에 전환 할 수 있습니다. ", + "SSE.Controllers.Main.textTryUndoRedo": "빠른 공동 편집 모드에서는 실행 취소 / 다시 실행 기능이 비활성화됩니다.
\"엄격 모드 \"버튼을 클릭하면 엄격한 공동 편집 모드로 전환되어 파일을 편집 할 수 있습니다. 다른 사용자가 방해를해서 저장 한 후에 만 ​​변경 사항을 보내면됩니다. 편집자 고급 설정을 사용하여 공동 편집 모드간에 전환 할 수 있습니다. ", + "SSE.Controllers.Main.textTryUndoRedoWarn": "빠른 공동 편집 모드에서 실행 취소 / 다시 실행 기능을 사용할 수 없습니다.", "SSE.Controllers.Main.textYes": "예", "SSE.Controllers.Main.titleLicenseExp": "라이센스 만료", "SSE.Controllers.Main.titleRecalcFormulas": "계산 중 ...", @@ -465,18 +740,53 @@ "SSE.Controllers.Main.txtBlank": "(빈칸)", "SSE.Controllers.Main.txtButtons": "Buttons", "SSE.Controllers.Main.txtByField": "%2의 %1", - "SSE.Controllers.Main.txtCallouts": "콜 아웃", + "SSE.Controllers.Main.txtCallouts": "설명선", "SSE.Controllers.Main.txtCharts": "차트", + "SSE.Controllers.Main.txtClearFilter": "필터 지우기 (Alt + C)", + "SSE.Controllers.Main.txtColLbls": "열 라벨", + "SSE.Controllers.Main.txtColumn": "열", + "SSE.Controllers.Main.txtConfidential": "비밀", + "SSE.Controllers.Main.txtDate": "날짜", + "SSE.Controllers.Main.txtDays": "일", "SSE.Controllers.Main.txtDiagramTitle": "차트 제목", "SSE.Controllers.Main.txtEditingMode": "편집 모드 설정 ...", + "SSE.Controllers.Main.txtErrorLoadHistory": "이력을 로드하지 못했습니다.", "SSE.Controllers.Main.txtFiguredArrows": "블록 화살표", + "SSE.Controllers.Main.txtFile": "파일", + "SSE.Controllers.Main.txtGrandTotal": "총합계", + "SSE.Controllers.Main.txtGroup": "그룹", + "SSE.Controllers.Main.txtHours": "시간", "SSE.Controllers.Main.txtLines": "Lines", "SSE.Controllers.Main.txtMath": "수학", + "SSE.Controllers.Main.txtMinutes": "분", + "SSE.Controllers.Main.txtMonths": "월", + "SSE.Controllers.Main.txtMultiSelect": "다중 선택(Alt + S)", + "SSE.Controllers.Main.txtOr": "1% 또는 2%", + "SSE.Controllers.Main.txtPage": "페이지", + "SSE.Controllers.Main.txtPages": "페이지", + "SSE.Controllers.Main.txtPreparedBy": "편집자", + "SSE.Controllers.Main.txtPrintArea": "인쇄 영역", + "SSE.Controllers.Main.txtQuarters": "분기", "SSE.Controllers.Main.txtRectangles": "Rectangles", + "SSE.Controllers.Main.txtRow": "행", "SSE.Controllers.Main.txtSeries": "Series", + "SSE.Controllers.Main.txtShape_accentBorderCallout1": "설명선 1 (테두리 강조)", + "SSE.Controllers.Main.txtShape_accentBorderCallout2": "설명선 2 (테두리 강조)", + "SSE.Controllers.Main.txtShape_accentBorderCallout3": "설명선 3 (테두리 강조)", + "SSE.Controllers.Main.txtShape_accentCallout1": "설명선 1 (강조선)", + "SSE.Controllers.Main.txtShape_accentCallout2": "설명선 2 (강조선)", + "SSE.Controllers.Main.txtShape_accentCallout3": "설명선 3 (강조선)", "SSE.Controllers.Main.txtShape_actionButtonBackPrevious": "되돌리기 또는 이전 버튼", "SSE.Controllers.Main.txtShape_actionButtonBeginning": "시작 버튼", "SSE.Controllers.Main.txtShape_actionButtonBlank": "공백 버튼", + "SSE.Controllers.Main.txtShape_actionButtonDocument": "문서 버튼", + "SSE.Controllers.Main.txtShape_actionButtonEnd": "종료 버튼", + "SSE.Controllers.Main.txtShape_actionButtonForwardNext": "다음 버튼", + "SSE.Controllers.Main.txtShape_actionButtonHelp": "도움말 버튼", + "SSE.Controllers.Main.txtShape_actionButtonHome": "홈 버튼", + "SSE.Controllers.Main.txtShape_actionButtonInformation": "상세정보 버튼", + "SSE.Controllers.Main.txtShape_actionButtonMovie": "동영상 버튼", + "SSE.Controllers.Main.txtShape_actionButtonReturn": "뒤로가기 버튼", "SSE.Controllers.Main.txtShape_arc": "호", "SSE.Controllers.Main.txtShape_bentArrow": "구부러진 화살", "SSE.Controllers.Main.txtShape_bentConnector5": "연결선: 꺾임", @@ -485,28 +795,152 @@ "SSE.Controllers.Main.txtShape_bentUpArrow": "위로 구부러진 화살", "SSE.Controllers.Main.txtShape_bevel": "사선", "SSE.Controllers.Main.txtShape_blockArc": "닫힌 호", - "SSE.Controllers.Main.txtShape_can": "할 수 있다\n캔(음식을 담는)", + "SSE.Controllers.Main.txtShape_borderCallout1": "설명선 1", + "SSE.Controllers.Main.txtShape_borderCallout2": "설명선 2", + "SSE.Controllers.Main.txtShape_borderCallout3": "설명선 3", + "SSE.Controllers.Main.txtShape_bracePair": "양쪽 중괄호", + "SSE.Controllers.Main.txtShape_callout1": "설명선 1 (테두리없음)", + "SSE.Controllers.Main.txtShape_callout2": "설명선 2 (테두리없음)", + "SSE.Controllers.Main.txtShape_callout3": "설명선 3 (테두리없음)", + "SSE.Controllers.Main.txtShape_can": "원통형", + "SSE.Controllers.Main.txtShape_chevron": "쉐브론", + "SSE.Controllers.Main.txtShape_chord": "현", + "SSE.Controllers.Main.txtShape_circularArrow": "화살표: 원형", + "SSE.Controllers.Main.txtShape_cloud": "클라우드", + "SSE.Controllers.Main.txtShape_cloudCallout": "생각풍선: 구름 모양", + "SSE.Controllers.Main.txtShape_corner": "L도형", + "SSE.Controllers.Main.txtShape_cube": "정육면체", "SSE.Controllers.Main.txtShape_curvedConnector3": "연결선: 구부러짐", "SSE.Controllers.Main.txtShape_curvedConnector3WithArrow": "연결선: 구부러진 화살표", "SSE.Controllers.Main.txtShape_curvedConnector3WithTwoArrows": "연결선: 구부러진 양쪽 화살표", - "SSE.Controllers.Main.txtShape_lineWithArrow": "화살", - "SSE.Controllers.Main.txtShape_noSmoking": "\"No\" 표시", - "SSE.Controllers.Main.txtShape_star10": "10-포인트 크기 별", - "SSE.Controllers.Main.txtShape_star12": "12-포인트 크기 별", - "SSE.Controllers.Main.txtShape_star16": "16-포인트 크기 별", - "SSE.Controllers.Main.txtShape_star24": "24-포인트 크기 별", - "SSE.Controllers.Main.txtShape_star32": "32-포인트 크기 별", - "SSE.Controllers.Main.txtShape_star4": "4-포인트 크기 별", - "SSE.Controllers.Main.txtShape_star5": "5-포인트 크기 별", - "SSE.Controllers.Main.txtShape_star6": "6-포인트 크기 별", - "SSE.Controllers.Main.txtShape_star7": "7-포인트 크기 별", + "SSE.Controllers.Main.txtShape_curvedDownArrow": "화살표: 아래로 구불어 짐", + "SSE.Controllers.Main.txtShape_curvedLeftArrow": "화살표: 왼쪽으로 구불어 짐", + "SSE.Controllers.Main.txtShape_curvedRightArrow": "화살표: 오른쪽으로 구불어 짐", + "SSE.Controllers.Main.txtShape_curvedUpArrow": "화살표: 위로 구불어 짐", + "SSE.Controllers.Main.txtShape_decagon": "십각형", + "SSE.Controllers.Main.txtShape_diagStripe": "대각선 줄무늬", + "SSE.Controllers.Main.txtShape_diamond": "다이아몬드", + "SSE.Controllers.Main.txtShape_dodecagon": "십이각형", + "SSE.Controllers.Main.txtShape_donut": "도넛", + "SSE.Controllers.Main.txtShape_doubleWave": "이중 물결", + "SSE.Controllers.Main.txtShape_downArrow": "화살표: 아래쪽", + "SSE.Controllers.Main.txtShape_downArrowCallout": "설명선: 아래쪽 화살표", + "SSE.Controllers.Main.txtShape_ellipse": "타원형", + "SSE.Controllers.Main.txtShape_ellipseRibbon": "리본: 아래로 구불어지고 기울어짐 ", + "SSE.Controllers.Main.txtShape_ellipseRibbon2": "리본: 위로 구불어지고 기울어짐 ", + "SSE.Controllers.Main.txtShape_flowChartAlternateProcess": "순서도: 대체 프로세스", + "SSE.Controllers.Main.txtShape_flowChartCollate": "순서도: 일치", + "SSE.Controllers.Main.txtShape_flowChartConnector": "순서도: 연결 연산자", + "SSE.Controllers.Main.txtShape_flowChartDecision": "순서도: 결정", + "SSE.Controllers.Main.txtShape_flowChartDelay": "순서도: 지연", + "SSE.Controllers.Main.txtShape_flowChartDisplay": "순서도: 표시", + "SSE.Controllers.Main.txtShape_flowChartDocument": "순서도: 문서", + "SSE.Controllers.Main.txtShape_flowChartExtract": "순서도: 추출", + "SSE.Controllers.Main.txtShape_flowChartInputOutput": "순서도: 데이터", + "SSE.Controllers.Main.txtShape_flowChartInternalStorage": "순서도: 내부 스토리지", + "SSE.Controllers.Main.txtShape_flowChartMagneticDisk": "순서도: 디스크", + "SSE.Controllers.Main.txtShape_flowChartMagneticDrum": "순서도: 스토리지에 직접 접근", + "SSE.Controllers.Main.txtShape_flowChartMagneticTape": "순서도: 순차 접근 스토리지", + "SSE.Controllers.Main.txtShape_flowChartManualInput": "순서도: 수동 입력", + "SSE.Controllers.Main.txtShape_flowChartManualOperation": "순서도: 수동조작", + "SSE.Controllers.Main.txtShape_flowChartMerge": "순서도: 병합", + "SSE.Controllers.Main.txtShape_flowChartMultidocument": "순서도: 다중문서", + "SSE.Controllers.Main.txtShape_flowChartOffpageConnector": "순서도: 페이지 외부 커넥터", + "SSE.Controllers.Main.txtShape_flowChartOnlineStorage": "순서도: 저장된 데이터", + "SSE.Controllers.Main.txtShape_flowChartOr": "순서도: 또는", + "SSE.Controllers.Main.txtShape_flowChartPredefinedProcess": "순서도: 미리 정의된 흐름", + "SSE.Controllers.Main.txtShape_flowChartPreparation": "순서도: 준비", + "SSE.Controllers.Main.txtShape_flowChartProcess": "순서도: 프로세스", + "SSE.Controllers.Main.txtShape_flowChartPunchedCard": "순서도: 카드", + "SSE.Controllers.Main.txtShape_flowChartPunchedTape": "순서도: 천공된 종이 테이프", + "SSE.Controllers.Main.txtShape_flowChartSort": "순서도: 정렬", + "SSE.Controllers.Main.txtShape_flowChartSummingJunction": "순서도: 합계 노드", + "SSE.Controllers.Main.txtShape_flowChartTerminator": "순서도: 종료", + "SSE.Controllers.Main.txtShape_foldedCorner": "접힌 모서리", + "SSE.Controllers.Main.txtShape_frame": "프레임", + "SSE.Controllers.Main.txtShape_halfFrame": "1/2 액자", + "SSE.Controllers.Main.txtShape_heart": "하트모양", + "SSE.Controllers.Main.txtShape_heptagon": "칠각형", + "SSE.Controllers.Main.txtShape_hexagon": "육각형", + "SSE.Controllers.Main.txtShape_homePlate": "오각형", + "SSE.Controllers.Main.txtShape_horizontalScroll": "두루마리 모양: 가로로 말림", + "SSE.Controllers.Main.txtShape_irregularSeal1": "폭발: 8pt", + "SSE.Controllers.Main.txtShape_irregularSeal2": "폭발: 14pt", + "SSE.Controllers.Main.txtShape_leftArrow": "화살표: 왼쪽", + "SSE.Controllers.Main.txtShape_leftArrowCallout": "설명선: 왼쪽 화살표", + "SSE.Controllers.Main.txtShape_leftBrace": "왼쪽 중괄호", + "SSE.Controllers.Main.txtShape_leftBracket": "왼쪽 대괄호", + "SSE.Controllers.Main.txtShape_leftRightArrow": "선 화살표 : 양방향", + "SSE.Controllers.Main.txtShape_leftRightArrowCallout": "설명선: 왼쪽 및 오른쪽 화살표", + "SSE.Controllers.Main.txtShape_leftRightUpArrow": "화살표: 왼쪽/위쪽", + "SSE.Controllers.Main.txtShape_leftUpArrow": "화살표: 왼쪽", + "SSE.Controllers.Main.txtShape_lightningBolt": "번개", + "SSE.Controllers.Main.txtShape_line": "선", + "SSE.Controllers.Main.txtShape_lineWithArrow": "화살표", + "SSE.Controllers.Main.txtShape_lineWithTwoArrows": "선 화살표: 양방향", + "SSE.Controllers.Main.txtShape_mathDivide": "배분", + "SSE.Controllers.Main.txtShape_mathEqual": "등호", + "SSE.Controllers.Main.txtShape_mathMinus": "뺄셈", + "SSE.Controllers.Main.txtShape_mathMultiply": "곱셈", + "SSE.Controllers.Main.txtShape_mathNotEqual": "부등호", + "SSE.Controllers.Main.txtShape_mathPlus": "덧셈", + "SSE.Controllers.Main.txtShape_moon": "달모양", + "SSE.Controllers.Main.txtShape_noSmoking": "\"없음\" 기호", + "SSE.Controllers.Main.txtShape_notchedRightArrow": "화살표: 오른쪽 톱니 모양", + "SSE.Controllers.Main.txtShape_octagon": "팔각형", + "SSE.Controllers.Main.txtShape_parallelogram": "평행 사변형", + "SSE.Controllers.Main.txtShape_pentagon": "오각형", + "SSE.Controllers.Main.txtShape_pie": "부분 원형", + "SSE.Controllers.Main.txtShape_plaque": "배지", + "SSE.Controllers.Main.txtShape_plus": "덧셈", + "SSE.Controllers.Main.txtShape_polyline1": "자유형: 자유 곡선", + "SSE.Controllers.Main.txtShape_polyline2": "자유형: 도형", + "SSE.Controllers.Main.txtShape_quadArrow": "화살표: 왼쪽/오른쪽/위쪽/아래쪽", + "SSE.Controllers.Main.txtShape_quadArrowCallout": "설명선: 왼쪽/오른쪽/위쪽/아래쪽", + "SSE.Controllers.Main.txtShape_rect": "사각형", + "SSE.Controllers.Main.txtShape_ribbon": "리본: 아래로 기울어짐", + "SSE.Controllers.Main.txtShape_ribbon2": "리본: 위로 구불어짐", + "SSE.Controllers.Main.txtShape_rightArrow": "화살표: 오른쪽", + "SSE.Controllers.Main.txtShape_rightArrowCallout": "설명선: 오른쪽 화살표", + "SSE.Controllers.Main.txtShape_rightBrace": "오른쪽 중괄호", + "SSE.Controllers.Main.txtShape_rightBracket": "오른쪽 대괄호", + "SSE.Controllers.Main.txtShape_round1Rect": "사각형: 둥근 한쪽 모서리", + "SSE.Controllers.Main.txtShape_round2DiagRect": "사각형: 둥근 대각선 방향 모서리", + "SSE.Controllers.Main.txtShape_round2SameRect": "사각형: 둥근 위쪽 모서리", + "SSE.Controllers.Main.txtShape_roundRect": "사각형: 둥근 모서리", + "SSE.Controllers.Main.txtShape_rtTriangle": "직각 삼각형", + "SSE.Controllers.Main.txtShape_smileyFace": "웃는 얼굴", + "SSE.Controllers.Main.txtShape_snip2DiagRect": "사각형: 잘린 대각선 방향 모서리", + "SSE.Controllers.Main.txtShape_spline": "곡선", + "SSE.Controllers.Main.txtShape_star10": "별: 꼭짓점 10개", + "SSE.Controllers.Main.txtShape_star12": "별: 꼭짓점 12개", + "SSE.Controllers.Main.txtShape_star16": "별: 꼭짓점 16개", + "SSE.Controllers.Main.txtShape_star24": "별: 꼭짓점 24개", + "SSE.Controllers.Main.txtShape_star32": "별: 꼭짓점 32개", + "SSE.Controllers.Main.txtShape_star4": "별: 꼭짓점 4개", + "SSE.Controllers.Main.txtShape_star5": "별: 꼭짓점 5개", + "SSE.Controllers.Main.txtShape_star6": "별: 꼭짓점 6개", + "SSE.Controllers.Main.txtShape_star7": "별: 꼭짓점 7개", "SSE.Controllers.Main.txtShape_star8": "8-포인트 크기 별", - "SSE.Controllers.Main.txtStarsRibbons": "Stars & Ribbons", + "SSE.Controllers.Main.txtShape_stripedRightArrow": "줄무늬 오른쪽 화살표", + "SSE.Controllers.Main.txtShape_sun": "해모양", + "SSE.Controllers.Main.txtShape_textRect": "텍스트 상자", + "SSE.Controllers.Main.txtShape_trapezoid": "사다리꼴", + "SSE.Controllers.Main.txtShape_triangle": "삼각형", + "SSE.Controllers.Main.txtShape_upArrow": "화살표: 위쪽", + "SSE.Controllers.Main.txtShape_upArrowCallout": "설명선: 위쪽 화살표", + "SSE.Controllers.Main.txtShape_upDownArrow": "화살표: 위쪽/아래쪽", + "SSE.Controllers.Main.txtShape_uturnArrow": "화살표: U자형", + "SSE.Controllers.Main.txtShape_verticalScroll": "두루마리 모양: 세로로 말림", + "SSE.Controllers.Main.txtShape_wedgeEllipseCallout": "말풍선: 타원형", + "SSE.Controllers.Main.txtShape_wedgeRectCallout": "말풍선: 사각형", + "SSE.Controllers.Main.txtShape_wedgeRoundRectCallout": "말풍선: 모서리가 둥근 사각형", + "SSE.Controllers.Main.txtStarsRibbons": "별 및 현수막", "SSE.Controllers.Main.txtStyle_Bad": "Bad", "SSE.Controllers.Main.txtStyle_Calculation": "계산", "SSE.Controllers.Main.txtStyle_Check_Cell": "셀 검사", "SSE.Controllers.Main.txtStyle_Comma": "쉼표", - "SSE.Controllers.Main.txtStyle_Currency": "Currency", + "SSE.Controllers.Main.txtStyle_Currency": "통화", "SSE.Controllers.Main.txtStyle_Explanatory_Text": "설명 텍스트", "SSE.Controllers.Main.txtStyle_Good": "Good", "SSE.Controllers.Main.txtStyle_Heading_1": "제목 1", @@ -521,39 +955,61 @@ "SSE.Controllers.Main.txtStyle_Output": "출력", "SSE.Controllers.Main.txtStyle_Percent": "Percent", "SSE.Controllers.Main.txtStyle_Title": "제목", - "SSE.Controllers.Main.txtStyle_Total": "Total", + "SSE.Controllers.Main.txtStyle_Total": "합계", "SSE.Controllers.Main.txtStyle_Warning_Text": "경고문", + "SSE.Controllers.Main.txtTab": "탭", + "SSE.Controllers.Main.txtUnlockRangeDescription": "범위를 변경하려면 비밀번호를 입력하세요 :", + "SSE.Controllers.Main.txtUnlockRangeWarning": "변경하려는 범위는 암호로 보호됩니다.", + "SSE.Controllers.Main.txtValues": "값", "SSE.Controllers.Main.txtXAxis": "X 축", "SSE.Controllers.Main.txtYAxis": "Y 축", "SSE.Controllers.Main.unknownErrorText": "알 수없는 오류.", "SSE.Controllers.Main.unsupportedBrowserErrorText": "사용중인 브라우저가 지원되지 않습니다.", + "SSE.Controllers.Main.uploadDocFileCountMessage": "업로드 된 문서가 없습니다.", + "SSE.Controllers.Main.uploadDocSizeMessage": "최대 문서 크기 제한을 초과했습니다.", "SSE.Controllers.Main.uploadImageExtMessage": "알 수없는 이미지 형식입니다.", "SSE.Controllers.Main.uploadImageFileCountMessage": "이미지가 업로드되지 않았습니다.", "SSE.Controllers.Main.uploadImageSizeMessage": "Maximium 이미지 크기 제한을 초과했습니다.", "SSE.Controllers.Main.uploadImageTextText": "이미지 업로드 중 ...", "SSE.Controllers.Main.uploadImageTitleText": "이미지 업로드 중", + "SSE.Controllers.Main.waitText": "잠시만 기다려주세요...", "SSE.Controllers.Main.warnBrowserIE9": "응용 프로그램의 기능이 IE9에서 부족합니다. IE10 이상을 사용하십시오.", - "SSE.Controllers.Main.warnBrowserZoom": "브라우저의 현재 확대 / 축소 설정이 완전히 지원되지 않습니다. Ctrl + 0을 눌러 기본 확대 / 축소로 재설정하십시오.", + "SSE.Controllers.Main.warnBrowserZoom": "브라우저의 현재 확대/축소 설정이 완전히 지원되지 않습니다. Ctrl + 0을 눌러 기본 확대 / 축소로 재설정하십시오.", "SSE.Controllers.Main.warnLicenseExp": "귀하의 라이센스가 만료되었습니다.
라이센스를 갱신하고 페이지를 새로 고침하십시오.", + "SSE.Controllers.Main.warnLicenseLimitedNoAccess": "라이센스가 만료되었습니다.
더 이상 파일을 수정할 수 있는 권한이 없습니다.
관리자에게 문의하세요.", + "SSE.Controllers.Main.warnLicenseLimitedRenewed": "라이센스를 갱신해야합니다.
문서 편집 기능에 대한 액세스가 제한되어 있습니다.
전체 액세스 권한을 얻으려면 관리자에게 문의하십시오", "SSE.Controllers.Main.warnNoLicense": "이 버전의 %1 편집자에게는 문서 서버에 대한 동시 연결에 대한 특정 제한 사항이 있습니다.
더 많은 정보가 필요하면 현재 라이센스를 업그레이드하거나 상용 소프트웨어를 구입하십시오.", - "SSE.Controllers.Main.warnNoLicenseUsers": "이 버전의 %1 편집자에게는 동시 사용자에게 특정 제한 사항이 있습니다.
더 많은 정보가 필요하면 현재 라이센스를 업그레이드하거나 상업용 라이센스를 구입하십시오.", + "SSE.Controllers.Main.warnNoLicenseUsers": "이 버전의 %1 편집자에게는 동시 사용자에게 특정 제한 사항이 있습니다.
더 필요한 것이 있으면 현재 라이센스를 업그레이드하거나 상업용 라이센스를 구입하십시오.", "SSE.Controllers.Main.warnProcessRightsChange": "파일 편집 권한이 거부되었습니다.", "SSE.Controllers.Print.strAllSheets": "모든 시트", + "SSE.Controllers.Print.textFirstCol": "첫째 열", + "SSE.Controllers.Print.textFirstRow": "머리글 행", + "SSE.Controllers.Print.textFrozenCols": "고정 된 열", + "SSE.Controllers.Print.textFrozenRows": "고정된 행", + "SSE.Controllers.Print.textInvalidRange": "오류! 셀 범위가 잘못되었습니다.", + "SSE.Controllers.Print.textNoRepeat": "반복 없음", + "SSE.Controllers.Print.textRepeat": "반복...", + "SSE.Controllers.Print.textSelectRange": "범위 선택", "SSE.Controllers.Print.textWarning": "경고", + "SSE.Controllers.Print.txtCustom": "사용자 정의", "SSE.Controllers.Print.warnCheckMargings": "여백이 잘못되었습니다.", "SSE.Controllers.Statusbar.errorLastSheet": "통합 문서에는 최소한 하나의 보이는 워크 시트가 있어야합니다.", "SSE.Controllers.Statusbar.errorRemoveSheet": "워크 시트를 삭제할 수 없습니다.", "SSE.Controllers.Statusbar.strSheet": "시트", "SSE.Controllers.Statusbar.warnDeleteSheet": "워크 시트에 데이터가 들어있을 수 있습니다. 계속 하시겠습니까?", - "SSE.Controllers.Statusbar.zoomText": "확대 / 축소 {0} %", + "SSE.Controllers.Statusbar.zoomText": "확대/축소 {0} %", "SSE.Controllers.Toolbar.confirmAddFontName": "저장하려는 글꼴을 현재 장치에서 사용할 수 없습니다.
시스템 글꼴 중 하나를 사용하여 텍스트 스타일이 표시되고 저장된 글꼴은 사용할 수 있습니다.
계속 하시겠습니까? ", + "SSE.Controllers.Toolbar.errorComboSeries": "혼합형 차트를 만들려면 최소 2 개의 데이터를 선택합니다.", "SSE.Controllers.Toolbar.errorMaxRows": "오류! 차트 당 최대 데이터 시리즈 수는 255입니다.", "SSE.Controllers.Toolbar.errorStockChart": "잘못된 행 순서. 주식형 차트를 작성하려면 시트에 데이터를 다음과 같은 순서로 배치하십시오 :
개시 가격, 최대 가격, 최소 가격, 마감 가격.", "SSE.Controllers.Toolbar.textAccent": "Accents", "SSE.Controllers.Toolbar.textBracket": "대괄호", + "SSE.Controllers.Toolbar.textDirectional": "방향", "SSE.Controllers.Toolbar.textFontSizeErr": "입력 한 값이 잘못되었습니다.
1 ~ 409 사이의 숫자 값을 입력하십시오.", - "SSE.Controllers.Toolbar.textFraction": "Fractions", + "SSE.Controllers.Toolbar.textFraction": "분수", "SSE.Controllers.Toolbar.textFunction": "Functions", + "SSE.Controllers.Toolbar.textIndicator": "지표", + "SSE.Controllers.Toolbar.textInsert": "삽입", "SSE.Controllers.Toolbar.textIntegral": "Integrals", "SSE.Controllers.Toolbar.textLargeOperator": "Large Operators", "SSE.Controllers.Toolbar.textLimitAndLog": "한계 및 로그 수", @@ -563,6 +1019,7 @@ "SSE.Controllers.Toolbar.textPivot": "피봇 테이블", "SSE.Controllers.Toolbar.textRadical": "Radicals", "SSE.Controllers.Toolbar.textScript": "Scripts", + "SSE.Controllers.Toolbar.textShapes": "도형", "SSE.Controllers.Toolbar.textSymbols": "Symbols", "SSE.Controllers.Toolbar.textWarning": "경고", "SSE.Controllers.Toolbar.txtAccent_Accent": "급성", @@ -575,8 +1032,8 @@ "SSE.Controllers.Toolbar.txtAccent_BorderBox": "박스형 수식 (자리 표시 자 포함)", "SSE.Controllers.Toolbar.txtAccent_BorderBoxCustom": "상자화 된 수식 (예)", "SSE.Controllers.Toolbar.txtAccent_Check": "확인", - "SSE.Controllers.Toolbar.txtAccent_CurveBracketBot": "Underbrace", - "SSE.Controllers.Toolbar.txtAccent_CurveBracketTop": "Overbrace", + "SSE.Controllers.Toolbar.txtAccent_CurveBracketBot": "아래쪽 중괄호", + "SSE.Controllers.Toolbar.txtAccent_CurveBracketTop": "위쪽 중괄호", "SSE.Controllers.Toolbar.txtAccent_Custom_1": "벡터 A", "SSE.Controllers.Toolbar.txtAccent_Custom_2": "ABC with Overbar", "SSE.Controllers.Toolbar.txtAccent_Custom_3": "x XOR y Overbar", @@ -633,6 +1090,7 @@ "SSE.Controllers.Toolbar.txtBracket_UppLim": "대괄호", "SSE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen": "단일 대괄호", "SSE.Controllers.Toolbar.txtBracket_UppLim_OpenNone": "단일 대괄호", + "SSE.Controllers.Toolbar.txtDeleteCells": "셀 삭제", "SSE.Controllers.Toolbar.txtExpand": "확장 및 정렬", "SSE.Controllers.Toolbar.txtExpandSort": "선택 영역 옆의 데이터는 정렬되지 않습니다. 인접한 데이터를 포함하도록 선택 영역을 확장 하시겠습니까? 아니면 현재 선택된 셀만 정렬할까요?", "SSE.Controllers.Toolbar.txtFractionDiagonal": "Skewed Fraction", @@ -643,7 +1101,7 @@ "SSE.Controllers.Toolbar.txtFractionHorizontal": "선형 분수", "SSE.Controllers.Toolbar.txtFractionPi_2": "Pi Over 2", "SSE.Controllers.Toolbar.txtFractionSmall": "Small Fraction", - "SSE.Controllers.Toolbar.txtFractionVertical": "Stacked Fraction", + "SSE.Controllers.Toolbar.txtFractionVertical": "누적분수", "SSE.Controllers.Toolbar.txtFunction_1_Cos": "역 코사인 함수", "SSE.Controllers.Toolbar.txtFunction_1_Cosh": "쌍곡선 역 코사인 함수", "SSE.Controllers.Toolbar.txtFunction_1_Cot": "역 코탄젠트 함수", @@ -671,6 +1129,7 @@ "SSE.Controllers.Toolbar.txtFunction_Sinh": "쌍곡선 사인 함수", "SSE.Controllers.Toolbar.txtFunction_Tan": "Tangent Function", "SSE.Controllers.Toolbar.txtFunction_Tanh": "쌍곡선 탄젠트 함수", + "SSE.Controllers.Toolbar.txtInsertCells": "셀 삽입", "SSE.Controllers.Toolbar.txtIntegral": "Integral", "SSE.Controllers.Toolbar.txtIntegral_dtheta": "Differential theta", "SSE.Controllers.Toolbar.txtIntegral_dx": "Differential x", @@ -734,13 +1193,14 @@ "SSE.Controllers.Toolbar.txtLargeOperator_Union_Sub": "Union", "SSE.Controllers.Toolbar.txtLargeOperator_Union_SubSup": "Union", "SSE.Controllers.Toolbar.txtLimitLog_Custom_1": "Limit Example", - "SSE.Controllers.Toolbar.txtLimitLog_Custom_2": "최대 예제", + "SSE.Controllers.Toolbar.txtLimitLog_Custom_2": "최대 예", "SSE.Controllers.Toolbar.txtLimitLog_Lim": "제한", "SSE.Controllers.Toolbar.txtLimitLog_Ln": "자연 로그", "SSE.Controllers.Toolbar.txtLimitLog_Log": "로그", "SSE.Controllers.Toolbar.txtLimitLog_LogBase": "로그", - "SSE.Controllers.Toolbar.txtLimitLog_Max": "Maximum", - "SSE.Controllers.Toolbar.txtLimitLog_Min": "Minimum", + "SSE.Controllers.Toolbar.txtLimitLog_Max": "최대값", + "SSE.Controllers.Toolbar.txtLimitLog_Min": "최소값", + "SSE.Controllers.Toolbar.txtLockSort": "선택의 범위 근처에 데이터가 존재 하지만이 셀을 변경하려면 충분한 권한이 없습니다.
선택의 범위를 계속 하시겠습니까?", "SSE.Controllers.Toolbar.txtMatrix_1_2": "1x2 Empty Matrix", "SSE.Controllers.Toolbar.txtMatrix_1_3": "1x3 Empty Matrix", "SSE.Controllers.Toolbar.txtMatrix_2_1": "2x1 빈 행렬", @@ -755,7 +1215,7 @@ "SSE.Controllers.Toolbar.txtMatrix_3_3": "3x3 빈 행렬", "SSE.Controllers.Toolbar.txtMatrix_Dots_Baseline": "Baseline Dots", "SSE.Controllers.Toolbar.txtMatrix_Dots_Center": "Midline Dots", - "SSE.Controllers.Toolbar.txtMatrix_Dots_Diagonal": "Diagonal Dots", + "SSE.Controllers.Toolbar.txtMatrix_Dots_Diagonal": "대각선 점", "SSE.Controllers.Toolbar.txtMatrix_Dots_Vertical": "수직 점", "SSE.Controllers.Toolbar.txtMatrix_Flat_Round": "스파 스 매트릭스", "SSE.Controllers.Toolbar.txtMatrix_Flat_Square": "Sparse Matrix", @@ -820,10 +1280,10 @@ "SSE.Controllers.Toolbar.txtSymbol_degree": "도", "SSE.Controllers.Toolbar.txtSymbol_delta": "Delta", "SSE.Controllers.Toolbar.txtSymbol_div": "Division Sign", - "SSE.Controllers.Toolbar.txtSymbol_downarrow": "아래쪽 화살표", + "SSE.Controllers.Toolbar.txtSymbol_downarrow": "화살표: 아래쪽", "SSE.Controllers.Toolbar.txtSymbol_emptyset": "빈 세트", "SSE.Controllers.Toolbar.txtSymbol_epsilon": "Epsilon", - "SSE.Controllers.Toolbar.txtSymbol_equals": "Equal", + "SSE.Controllers.Toolbar.txtSymbol_equals": "등호", "SSE.Controllers.Toolbar.txtSymbol_equiv": "동일 함", "SSE.Controllers.Toolbar.txtSymbol_eta": "Eta", "SSE.Controllers.Toolbar.txtSymbol_exists": "존재 함", @@ -833,17 +1293,17 @@ "SSE.Controllers.Toolbar.txtSymbol_gamma": "감마", "SSE.Controllers.Toolbar.txtSymbol_geq": "크거나 같음", "SSE.Controllers.Toolbar.txtSymbol_gg": "훨씬 더 큼", - "SSE.Controllers.Toolbar.txtSymbol_greater": "Greater Than", + "SSE.Controllers.Toolbar.txtSymbol_greater": "보다 큼", "SSE.Controllers.Toolbar.txtSymbol_in": "Element Of", "SSE.Controllers.Toolbar.txtSymbol_inc": "Increment", "SSE.Controllers.Toolbar.txtSymbol_infinity": "Infinity", "SSE.Controllers.Toolbar.txtSymbol_iota": "Iota", "SSE.Controllers.Toolbar.txtSymbol_kappa": "Kappa", "SSE.Controllers.Toolbar.txtSymbol_lambda": "Lambda", - "SSE.Controllers.Toolbar.txtSymbol_leftarrow": "왼쪽 화살표", - "SSE.Controllers.Toolbar.txtSymbol_leftrightarrow": "왼쪽 / 오른쪽 화살표", - "SSE.Controllers.Toolbar.txtSymbol_leq": "보다 작거나 같음", - "SSE.Controllers.Toolbar.txtSymbol_less": "Less Than", + "SSE.Controllers.Toolbar.txtSymbol_leftarrow": "화살표: 왼쪽", + "SSE.Controllers.Toolbar.txtSymbol_leftrightarrow": "화살표: 왼쪽/오른쪽", + "SSE.Controllers.Toolbar.txtSymbol_leq": "작거나 같음", + "SSE.Controllers.Toolbar.txtSymbol_less": "보다 작음", "SSE.Controllers.Toolbar.txtSymbol_ll": "훨씬 적습니다", "SSE.Controllers.Toolbar.txtSymbol_minus": "Minus", "SSE.Controllers.Toolbar.txtSymbol_mp": "Minus Plus", @@ -868,14 +1328,14 @@ "SSE.Controllers.Toolbar.txtSymbol_qed": "End of Proof", "SSE.Controllers.Toolbar.txtSymbol_rddots": "오른쪽 위 대각선 줄임표", "SSE.Controllers.Toolbar.txtSymbol_rho": "Rho", - "SSE.Controllers.Toolbar.txtSymbol_rightarrow": "오른쪽 화살표", + "SSE.Controllers.Toolbar.txtSymbol_rightarrow": "화살표: 오른쪽", "SSE.Controllers.Toolbar.txtSymbol_sigma": "Sigma", "SSE.Controllers.Toolbar.txtSymbol_sqrt": "Radical Sign", "SSE.Controllers.Toolbar.txtSymbol_tau": "Tau", "SSE.Controllers.Toolbar.txtSymbol_therefore": "그러므로", "SSE.Controllers.Toolbar.txtSymbol_theta": "Theta", "SSE.Controllers.Toolbar.txtSymbol_times": "곱셈 기호", - "SSE.Controllers.Toolbar.txtSymbol_uparrow": "위쪽 화살표", + "SSE.Controllers.Toolbar.txtSymbol_uparrow": "화살표: 위쪽", "SSE.Controllers.Toolbar.txtSymbol_upsilon": "Upsilon", "SSE.Controllers.Toolbar.txtSymbol_varepsilon": "Epsilon Variant", "SSE.Controllers.Toolbar.txtSymbol_varphi": "Phi Variant", @@ -889,44 +1349,50 @@ "SSE.Controllers.Toolbar.warnLongOperation": "수행하려는 작업이 완료하는 데 시간이 오래 걸릴 수 있습니다. 계속 하시겠습니까?", "SSE.Controllers.Toolbar.warnMergeLostData": "왼쪽 위 셀의 데이터 만 병합 된 셀에 남아 있습니다.
계속 하시겠습니까?", "SSE.Controllers.Viewport.textFreezePanes": "창 고정", - "SSE.Controllers.Viewport.textHideFBar": "수식 표시 줄 숨기기", + "SSE.Controllers.Viewport.textHideFBar": "수식 입력줄 감추기", "SSE.Controllers.Viewport.textHideGridlines": "눈금 선 숨기기", "SSE.Controllers.Viewport.textHideHeadings": "제목 숨기기", + "SSE.Views.AdvancedSeparatorDialog.strDecimalSeparator": "소수점 구분 기호", + "SSE.Views.AdvancedSeparatorDialog.textLabel": "디지털 데이터 식별을 위한 설정", "SSE.Views.AdvancedSeparatorDialog.textTitle": "고급 설정", - "SSE.Views.AutoFilterDialog.btnCustomFilter": "사용자 정의 필터", + "SSE.Views.AutoFilterDialog.btnCustomFilter": "사용자 지정 자동 필터", "SSE.Views.AutoFilterDialog.textAddSelection": "현재 선택을 필터에 추가", "SSE.Views.AutoFilterDialog.textEmptyItem": "{공백}", - "SSE.Views.AutoFilterDialog.textSelectAll": "모두 선택", + "SSE.Views.AutoFilterDialog.textSelectAll": "(모두 선택)", "SSE.Views.AutoFilterDialog.textSelectAllResults": "모든 검색 결과 선택", "SSE.Views.AutoFilterDialog.textWarning": "경고", "SSE.Views.AutoFilterDialog.txtAboveAve": "평균 이상", "SSE.Views.AutoFilterDialog.txtBegins": "다음으로 시작 ...", "SSE.Views.AutoFilterDialog.txtBelowAve": "평균 이하", - "SSE.Views.AutoFilterDialog.txtBetween": "사이 ...", + "SSE.Views.AutoFilterDialog.txtBetween": "해당 범위...", "SSE.Views.AutoFilterDialog.txtClear": "지우기", "SSE.Views.AutoFilterDialog.txtContains": "포함 ...", - "SSE.Views.AutoFilterDialog.txtEmpty": "셀 필터 입력", + "SSE.Views.AutoFilterDialog.txtEmpty": "검색", "SSE.Views.AutoFilterDialog.txtEnds": "끝내기 ...", "SSE.Views.AutoFilterDialog.txtEquals": "같음 ...", "SSE.Views.AutoFilterDialog.txtFilterCellColor": "셀 색상별로 필터링", "SSE.Views.AutoFilterDialog.txtFilterFontColor": "글꼴 색으로 필터링", "SSE.Views.AutoFilterDialog.txtGreater": "보다 큼 ...", "SSE.Views.AutoFilterDialog.txtGreaterEquals": "크거나 같음 ...", - "SSE.Views.AutoFilterDialog.txtLess": "미만 ...", + "SSE.Views.AutoFilterDialog.txtLabelFilter": "라벨 필터", + "SSE.Views.AutoFilterDialog.txtLess": "작음 ...", "SSE.Views.AutoFilterDialog.txtLessEquals": "작거나 같음 ...", "SSE.Views.AutoFilterDialog.txtNotBegins": "...로 시작하지 않습니다 ...", + "SSE.Views.AutoFilterDialog.txtNotBetween": "제외 범위...", "SSE.Views.AutoFilterDialog.txtNotContains": "포함하지 않음 ...", "SSE.Views.AutoFilterDialog.txtNotEnds": "끝내지 않습니다 ...", "SSE.Views.AutoFilterDialog.txtNotEquals": "같지 않습니다 ...", "SSE.Views.AutoFilterDialog.txtNumFilter": "숫자 필터", "SSE.Views.AutoFilterDialog.txtReapply": "재 적용", - "SSE.Views.AutoFilterDialog.txtSortCellColor": "셀 색상별로 정렬", - "SSE.Views.AutoFilterDialog.txtSortFontColor": "글꼴 색상별로 정렬", - "SSE.Views.AutoFilterDialog.txtSortHigh2Low": "가장 높은 것부터 가장 낮은 것부터 정렬", - "SSE.Views.AutoFilterDialog.txtSortLow2High": "최저에서 최고까지 정렬", + "SSE.Views.AutoFilterDialog.txtSortCellColor": "셀 색", + "SSE.Views.AutoFilterDialog.txtSortFontColor": "글꼴 색", + "SSE.Views.AutoFilterDialog.txtSortHigh2Low": "내림차순 정렬", + "SSE.Views.AutoFilterDialog.txtSortLow2High": "오름차순 정렬", + "SSE.Views.AutoFilterDialog.txtSortOption": "더 많은 옵션...", "SSE.Views.AutoFilterDialog.txtTextFilter": "텍스트 필터", "SSE.Views.AutoFilterDialog.txtTitle": "필터", "SSE.Views.AutoFilterDialog.txtTop10": "Top 10", + "SSE.Views.AutoFilterDialog.warnFilterError": "값 필터를 적용하려면 \"값\" 영역에 하나 이상의 필드가 있어야 합니다.", "SSE.Views.AutoFilterDialog.warnNoSelected": "하나 이상의 값을 선택해야합니다.", "SSE.Views.CellEditor.textManager": "이름 관리자", "SSE.Views.CellEditor.tipFormula": "함수 삽입", @@ -934,16 +1400,90 @@ "SSE.Views.CellRangeDialog.errorStockChart": "잘못된 행 순서. 주식형 차트를 작성하려면 시트에 데이터를 다음과 같은 순서로 배치하십시오 :
개시 가격, 최대 가격, 최소 가격, 마감 가격.", "SSE.Views.CellRangeDialog.txtEmpty": "이 입력란은 필수 항목", "SSE.Views.CellRangeDialog.txtInvalidRange": "오류! 셀 범위가 잘못되었습니다.", - "SSE.Views.CellRangeDialog.txtTitle": "데이터 범위 선택", + "SSE.Views.CellRangeDialog.txtTitle": "참조 대상 선택", "SSE.Views.CellSettings.textAngle": "각도", "SSE.Views.CellSettings.textBackColor": "배경색", "SSE.Views.CellSettings.textBackground": "배경색", + "SSE.Views.CellSettings.textBorderColor": "색상", "SSE.Views.CellSettings.textBorders": "테두리 스타일", + "SSE.Views.CellSettings.textClearRule": "규칙 제거", + "SSE.Views.CellSettings.textColor": "색상 채우기", + "SSE.Views.CellSettings.textColorScales": "색상 코드", + "SSE.Views.CellSettings.textCondFormat": "조건부 서식", + "SSE.Views.CellSettings.textDataBars": "데이터 막대", + "SSE.Views.CellSettings.textDirection": "방향", + "SSE.Views.CellSettings.textFill": "채우기", + "SSE.Views.CellSettings.textForeground": "전경색", + "SSE.Views.CellSettings.textGradient": "그라데이션 포인트", + "SSE.Views.CellSettings.textGradientColor": "색상", + "SSE.Views.CellSettings.textGradientFill": "그라데이션 채우기", + "SSE.Views.CellSettings.textIndent": "톱니 모양", + "SSE.Views.CellSettings.textItems": "아이템", + "SSE.Views.CellSettings.textLinear": "선형", + "SSE.Views.CellSettings.textManageRule": "관리 규칙", + "SSE.Views.CellSettings.textNewRule": "새로운 규칙", + "SSE.Views.CellSettings.textNoFill": "채우기 없음", + "SSE.Views.CellSettings.textPattern": "패턴", + "SSE.Views.CellSettings.textPatternFill": "패턴", + "SSE.Views.CellSettings.textPosition": "위치", + "SSE.Views.CellSettings.textRadial": "방사형", + "SSE.Views.CellSettings.textSelectBorders": "위에서 선택한 스타일 적용을 변경하려는 테두리 선택", + "SSE.Views.CellSettings.textSelection": "현재 선택 고정", + "SSE.Views.CellSettings.textThisPivot": "피벗 테이블로 부터", + "SSE.Views.CellSettings.textThisSheet": "워크시트로 부터", + "SSE.Views.CellSettings.textThisTable": "표로 부터", + "SSE.Views.CellSettings.tipAddGradientPoint": "그라데이션 포인트 추가", + "SSE.Views.CellSettings.tipAll": "바깥쪽 테두리 및 안쪽 테두리", + "SSE.Views.CellSettings.tipBottom": "바깥 아래쪽 테두리", + "SSE.Views.CellSettings.tipDiagD": "대각선 테두리 (오른쪽 아래)을 설정", + "SSE.Views.CellSettings.tipDiagU": "대각선 테두리 (오른쪽 위쪽)을 설정", + "SSE.Views.CellSettings.tipInner": "내부 라인 만 설정", + "SSE.Views.CellSettings.tipInnerHor": "안쪽 가로 테두리", + "SSE.Views.CellSettings.tipInnerVert": "세로 내부 선만 설정", + "SSE.Views.CellSettings.tipLeft": "바깥 왼쪽 테두리", + "SSE.Views.CellSettings.tipNone": "테두리 없음 설정", + "SSE.Views.CellSettings.tipOuter": "바깥쪽 테두리", + "SSE.Views.CellSettings.tipRemoveGradientPoint": "그라데이션 포인트 제거", + "SSE.Views.CellSettings.tipRight": "바깥 오른쪽 테두리", + "SSE.Views.CellSettings.tipTop": "바깥 위쪽 테두리", + "SSE.Views.ChartDataDialog.errorInFormula": "입력한 공식이 잘못되었습니다.", + "SSE.Views.ChartDataDialog.errorMaxPoints": "차트당 시리즈내 포인트의 최대값은 4096임", + "SSE.Views.ChartDataDialog.errorMaxRows": "각 차트의 최대 데이터 계열 수는 255개입니다.", + "SSE.Views.ChartDataDialog.errorNoSingleRowCol": "참조가 잘못되었습니다. 제목, 값, 크기 또는 데이터 레이블에 대한 참조는 단일 셀, 행 또는 열이어야 합니다.", + "SSE.Views.ChartDataDialog.errorNoValues": "차트를 만들려면 계열에 값이 하나 이상 있어야 합니다.", + "SSE.Views.ChartDataDialog.errorStockChart": "잘못된 행 순서. 주식형 차트를 작성하려면 다음 순서로 시트에 데이터를 배치하십시오 :
개시 가격, 최대 가격, 최소 가격, 마감 가격.", + "SSE.Views.ChartDataDialog.textAdd": "추가", + "SSE.Views.ChartDataDialog.textCategory": "가로 (범주) 축 레이블", + "SSE.Views.ChartDataDialog.textData": "차트 참조 대상", + "SSE.Views.ChartDataDialog.textDelete": "삭제", + "SSE.Views.ChartDataDialog.textDown": "아래로", + "SSE.Views.ChartDataDialog.textEdit": "편집", + "SSE.Views.ChartDataDialog.textInvalidRange": "유효하지 않은 셀 범위", + "SSE.Views.ChartDataDialog.textSelectData": "데이터 선택", + "SSE.Views.ChartDataDialog.textSeries": "범례 항목(시리즈)", + "SSE.Views.ChartDataDialog.textTitle": "차트 데이터", + "SSE.Views.ChartDataRangeDialog.errorInFormula": "입력한 공식이 잘못되었습니다.", + "SSE.Views.ChartDataRangeDialog.errorMaxPoints": "차트당 시리즈내 포인트의 최대값은 4096임", + "SSE.Views.ChartDataRangeDialog.errorMaxRows": "각 차트의 최대 데이터 계열 수는 255개입니다.", + "SSE.Views.ChartDataRangeDialog.errorNoSingleRowCol": "참조가 잘못되었습니다. 제목, 값, 크기 또는 데이터 레이블에 대한 참조는 단일 셀, 행 또는 열이어야 합니다.", + "SSE.Views.ChartDataRangeDialog.errorNoValues": "차트를 만들려면 계열에 값이 하나 이상 있어야 합니다.", + "SSE.Views.ChartDataRangeDialog.errorStockChart": "잘못된 행 순서. 주식형 차트를 작성하려면 다음 순서로 시트에 데이터를 배치하십시오 :
개시 가격, 최대 가격, 최소 가격, 마감 가격.", + "SSE.Views.ChartDataRangeDialog.textInvalidRange": "유효하지 않은 셀 범위", + "SSE.Views.ChartDataRangeDialog.textSelectData": "데이터 선택", + "SSE.Views.ChartDataRangeDialog.txtAxisLabel": "축 표준 범위", + "SSE.Views.ChartDataRangeDialog.txtChoose": "범위 선택", + "SSE.Views.ChartDataRangeDialog.txtSeriesName": "시리즈 이름", + "SSE.Views.ChartDataRangeDialog.txtTitleCategory": "축 라벨", + "SSE.Views.ChartDataRangeDialog.txtTitleSeries": "시리즈 편집", + "SSE.Views.ChartDataRangeDialog.txtValues": "값", + "SSE.Views.ChartDataRangeDialog.txtXValues": "X값", + "SSE.Views.ChartDataRangeDialog.txtYValues": "Y값", "SSE.Views.ChartSettings.strLineWeight": "선 두께", "SSE.Views.ChartSettings.strSparkColor": "Color", "SSE.Views.ChartSettings.strTemplate": "템플릿", "SSE.Views.ChartSettings.textAdvanced": "고급 설정 표시", - "SSE.Views.ChartSettings.textBorderSizeErr": "입력 한 값이 잘못되었습니다.
0pt ~ 1584pt 사이의 값을 입력하십시오.", + "SSE.Views.ChartSettings.textBorderSizeErr": "입력 한 값이 잘못되었습니다.
0 ~ 1584pt 사이의 값을 입력하십시오.", + "SSE.Views.ChartSettings.textChangeType": "유형 변경", "SSE.Views.ChartSettings.textChartType": "차트 유형 변경", "SSE.Views.ChartSettings.textEditData": "데이터 및 위치 편집", "SSE.Views.ChartSettings.textFirstPoint": "첫 번째 지점", @@ -954,16 +1494,17 @@ "SSE.Views.ChartSettings.textLowPoint": "Low Point", "SSE.Views.ChartSettings.textMarkers": "마커", "SSE.Views.ChartSettings.textNegativePoint": "Negative Point", - "SSE.Views.ChartSettings.textRanges": "데이터 범위", + "SSE.Views.ChartSettings.textRanges": "참조 대상", "SSE.Views.ChartSettings.textSelectData": "데이터 선택", "SSE.Views.ChartSettings.textShow": "표시", "SSE.Views.ChartSettings.textSize": "크기", "SSE.Views.ChartSettings.textStyle": "스타일", "SSE.Views.ChartSettings.textType": "유형", "SSE.Views.ChartSettings.textWidth": "너비", - "SSE.Views.ChartSettingsDlg.errorMaxPoints": "문제발생! 차트당 시리즈내 포인트의 최대값은 4096임", + "SSE.Views.ChartSettingsDlg.errorMaxPoints": "오류! 차트당 시리즈내 포인트의 최대값은 4096임", "SSE.Views.ChartSettingsDlg.errorMaxRows": "오류! 차트 당 최대 데이터 시리즈 수는 255입니다.", "SSE.Views.ChartSettingsDlg.errorStockChart": "잘못된 행 순서. 주식형 차트를 작성하려면 시트의 데이터를 다음 순서로 배치하십시오 :
개시 가격, 최대 가격, 최소 가격, 마감 가격.", + "SSE.Views.ChartSettingsDlg.textAbsolute": "셀을 이동하거나 크기를 조정하지 마십시오.", "SSE.Views.ChartSettingsDlg.textAlt": "대체 텍스트", "SSE.Views.ChartSettingsDlg.textAltDescription": "설명", "SSE.Views.ChartSettingsDlg.textAltTip": "시력이나인지 장애가있는 사람들에게 읽혀지는 시각적 객체 정보의 대체 텍스트 기반 표현으로 이미지에 어떤 정보가 있는지 더 잘 이해할 수 있도록 도와줍니다. 차트 또는 표. ", @@ -991,10 +1532,12 @@ "SSE.Views.ChartSettingsDlg.textEmptyLine": "데이터 요소를 선으로 연결", "SSE.Views.ChartSettingsDlg.textFit": "너비에 맞춤", "SSE.Views.ChartSettingsDlg.textFixed": "고정", + "SSE.Views.ChartSettingsDlg.textFormat": "라벨 형식", "SSE.Views.ChartSettingsDlg.textGaps": "Gaps", "SSE.Views.ChartSettingsDlg.textGridLines": "눈금 선", - "SSE.Views.ChartSettingsDlg.textGroup": "그룹 스파크 라인", + "SSE.Views.ChartSettingsDlg.textGroup": "스파크라인 그룹", "SSE.Views.ChartSettingsDlg.textHide": "숨기기", + "SSE.Views.ChartSettingsDlg.textHideAxis": "축 감추기", "SSE.Views.ChartSettingsDlg.textHigh": "높음", "SSE.Views.ChartSettingsDlg.textHorAxis": "가로 축", "SSE.Views.ChartSettingsDlg.textHorizontal": "Horizontal", @@ -1026,7 +1569,7 @@ "SSE.Views.ChartSettingsDlg.textManual": "수동", "SSE.Views.ChartSettingsDlg.textMarkers": "마커", "SSE.Views.ChartSettingsDlg.textMarksInterval": "마크 간 간격", - "SSE.Views.ChartSettingsDlg.textMaxValue": "최대 값", + "SSE.Views.ChartSettingsDlg.textMaxValue": "최대값", "SSE.Views.ChartSettingsDlg.textMillions": "Millions", "SSE.Views.ChartSettingsDlg.textMinor": "Minor", "SSE.Views.ChartSettingsDlg.textMinorType": "Minor Type", @@ -1034,6 +1577,7 @@ "SSE.Views.ChartSettingsDlg.textNextToAxis": "축 옆", "SSE.Views.ChartSettingsDlg.textNone": "없음", "SSE.Views.ChartSettingsDlg.textNoOverlay": "오버레이 없음", + "SSE.Views.ChartSettingsDlg.textOneCell": "이동하지만 셀별로 크기 조정되지 않음", "SSE.Views.ChartSettingsDlg.textOnTickMarks": "눈금 표시", "SSE.Views.ChartSettingsDlg.textOut": "Out", "SSE.Views.ChartSettingsDlg.textOuterTop": "외부 상단", @@ -1053,10 +1597,10 @@ "SSE.Views.ChartSettingsDlg.textShowEmptyCells": "빈 셀을 다음으로 표시", "SSE.Views.ChartSettingsDlg.textShowSparkAxis": "축 표시", "SSE.Views.ChartSettingsDlg.textShowValues": "차트 값 표시", - "SSE.Views.ChartSettingsDlg.textSingle": "단일 스파크 라인", + "SSE.Views.ChartSettingsDlg.textSingle": "단일 스파크라인", "SSE.Views.ChartSettingsDlg.textSmooth": "부드럽게", "SSE.Views.ChartSettingsDlg.textSnap": "셀 잠그기", - "SSE.Views.ChartSettingsDlg.textSparkRanges": "스파크 라인 범위", + "SSE.Views.ChartSettingsDlg.textSparkRanges": "스파크라인 범위", "SSE.Views.ChartSettingsDlg.textStraight": "직선", "SSE.Views.ChartSettingsDlg.textStyle": "스타일", "SSE.Views.ChartSettingsDlg.textTenMillions": "10 000 000", @@ -1064,9 +1608,10 @@ "SSE.Views.ChartSettingsDlg.textThousands": "수천", "SSE.Views.ChartSettingsDlg.textTickOptions": "눈금 옵션", "SSE.Views.ChartSettingsDlg.textTitle": "차트 - 고급 설정", - "SSE.Views.ChartSettingsDlg.textTitleSparkline": "스파크 라인 - 고급 설정", + "SSE.Views.ChartSettingsDlg.textTitleSparkline": "스파크라인 - 고급 설정", "SSE.Views.ChartSettingsDlg.textTop": "Top", "SSE.Views.ChartSettingsDlg.textTrillions": "수조", + "SSE.Views.ChartSettingsDlg.textTwoCell": "셀 이동 및 크기 조정", "SSE.Views.ChartSettingsDlg.textType": "유형", "SSE.Views.ChartSettingsDlg.textTypeData": "유형 및 데이터", "SSE.Views.ChartSettingsDlg.textUnits": "표시 단위", @@ -1076,12 +1621,105 @@ "SSE.Views.ChartSettingsDlg.textYAxisTitle": "Y 축 제목", "SSE.Views.ChartSettingsDlg.textZero": "Zero", "SSE.Views.ChartSettingsDlg.txtEmpty": "이 입력란은 필수 항목", - "SSE.Views.DigitalFilterDialog.capAnd": "And", - "SSE.Views.DigitalFilterDialog.capCondition1": "같음", + "SSE.Views.ChartTypeDialog.errorComboSeries": "혼합형 차트를 만들려면 최소 2 개의 데이터를 선택합니다.", + "SSE.Views.ChartTypeDialog.errorSecondaryAxis": "선택한 차트 유형에는 기존 차트에서 사용하는 보조 축이 필요합니다. 다른 차트 유형을 선택하세요.", + "SSE.Views.ChartTypeDialog.textSeries": "시리즈", + "SSE.Views.ChartTypeDialog.textStyle": "스타일", + "SSE.Views.ChartTypeDialog.textTitle": "차트 유형", + "SSE.Views.CreatePivotDialog.textDataRange": "소스 데이터 범위", + "SSE.Views.CreatePivotDialog.textDestination": "표를 놓을 위치 선택", + "SSE.Views.CreatePivotDialog.textExist": "존재하는 워크시트", + "SSE.Views.CreatePivotDialog.textInvalidRange": "유효하지 않은 셀 범위", + "SSE.Views.CreatePivotDialog.textNew": "신규 워크시트", + "SSE.Views.CreatePivotDialog.textSelectData": "데이터 선택", + "SSE.Views.CreatePivotDialog.textTitle": "피벗 테이블 만들기", + "SSE.Views.CreatePivotDialog.txtEmpty": "이 입력란은 필수 항목입니다.", + "SSE.Views.CreateSparklineDialog.textDataRange": "소스 데이터 범위", + "SSE.Views.CreateSparklineDialog.textDestination": "스파크라인의 넣을 위치를 선택하십시오", + "SSE.Views.CreateSparklineDialog.textInvalidRange": "유효하지 않은 셀 범위", + "SSE.Views.CreateSparklineDialog.textSelectData": "데이터 선택", + "SSE.Views.CreateSparklineDialog.textTitle": "스파크라인 만들기", + "SSE.Views.CreateSparklineDialog.txtEmpty": "이 입력란은 필수 항목입니다.", + "SSE.Views.DataTab.capBtnGroup": "그룹", + "SSE.Views.DataTab.capBtnTextCustomSort": "정렬", + "SSE.Views.DataTab.capBtnTextDataValidation": "데이터 유효성", + "SSE.Views.DataTab.capBtnTextRemDuplicates": "중복된 항목 제거", + "SSE.Views.DataTab.capBtnTextToCol": "텍스트 나누기", + "SSE.Views.DataTab.capBtnUngroup": "그룹 해제", + "SSE.Views.DataTab.capDataFromText": "데이터 검색", + "SSE.Views.DataTab.mniFromFile": "로컬 시스템의 TXT/CSV", + "SSE.Views.DataTab.mniFromUrl": "Web 주소에서 TXT/CSV", + "SSE.Views.DataTab.textBelow": "요약 행 아래에 설명 위치", + "SSE.Views.DataTab.textClear": "윤곽 지우기", + "SSE.Views.DataTab.textColumns": "열 그룹 해제", + "SSE.Views.DataTab.textGroupColumns": "열 그룹", + "SSE.Views.DataTab.textGroupRows": "행 그룹", + "SSE.Views.DataTab.textRightOf": "요약 열 오른쪽에 설명 위치", + "SSE.Views.DataTab.textRows": "행 그룹 해제", + "SSE.Views.DataTab.tipCustomSort": "정렬", + "SSE.Views.DataTab.tipDataFromText": "TXT/CSV 파일에서 데이터 가져오기", + "SSE.Views.DataTab.tipDataValidation": "데이터 유효성", + "SSE.Views.DataTab.tipGroup": "셀 범위를 그룹화", + "SSE.Views.DataTab.tipRemDuplicates": "시트에서 중복된 행을 삭제합니다", + "SSE.Views.DataTab.tipToColumns": "텍스트가 있는 한 열을 여러 열로 나눕니다", + "SSE.Views.DataTab.tipUngroup": "셀 범위 그룹 해제", + "SSE.Views.DataValidationDialog.errorInvalid": "\"{0}\" 필드에 입력한 값이 잘못되었습니다.", + "SSE.Views.DataValidationDialog.errorInvalidDate": "\"{0}\" 필드에 입력한 날짜가 잘못되었습니다.", + "SSE.Views.DataValidationDialog.errorInvalidTime": "\"{0}\" 필드에 입력한 시간이 잘못되었습니다.", + "SSE.Views.DataValidationDialog.errorMinGreaterMax": "\"{1}\" 필드는 \"{0}\" 필드보다 크거나 같아야 합니다.", + "SSE.Views.DataValidationDialog.errorNamedRange": "지정한 명명된 범위를 찾을 수 없습니다.", + "SSE.Views.DataValidationDialog.errorNegativeTextLength": "\"{0}\" 조건에서는 음수 값을 사용할 수 없습니다.", + "SSE.Views.DataValidationDialog.strError": "오류 메시지", + "SSE.Views.DataValidationDialog.strInput": "설명 메시지", + "SSE.Views.DataValidationDialog.strSettings": "설정", + "SSE.Views.DataValidationDialog.textAlert": "경고", + "SSE.Views.DataValidationDialog.textAllow": "제한 대상", + "SSE.Views.DataValidationDialog.textApply": "변경 내용을 설정이 같은 모든 셀에 적용", + "SSE.Views.DataValidationDialog.textCellSelected": "셀을 선택하면 이 설명 메시지가 표시됩니다.", + "SSE.Views.DataValidationDialog.textCompare": "비교", + "SSE.Views.DataValidationDialog.textData": "제한 방법", + "SSE.Views.DataValidationDialog.textEndDate": "종료 일", + "SSE.Views.DataValidationDialog.textEndTime": "종료 시간", + "SSE.Views.DataValidationDialog.textError": "오류 메시지", + "SSE.Views.DataValidationDialog.textFormula": "수식", + "SSE.Views.DataValidationDialog.textIgnore": "공백 무시", + "SSE.Views.DataValidationDialog.textInput": "설명 메시지", + "SSE.Views.DataValidationDialog.textMax": "최대값", + "SSE.Views.DataValidationDialog.textMessage": "메시지", + "SSE.Views.DataValidationDialog.textMin": "최소값", + "SSE.Views.DataValidationDialog.textSelectData": "데이터 선택", + "SSE.Views.DataValidationDialog.textShowError": "잘못된 데이터 입력 시 오류 메시지 표시", + "SSE.Views.DataValidationDialog.textShowInput": "셀 선택 시 설명 메시지 표시", + "SSE.Views.DataValidationDialog.textStartDate": "시작일", + "SSE.Views.DataValidationDialog.textStop": "정지", + "SSE.Views.DataValidationDialog.textStyle": "스타일", + "SSE.Views.DataValidationDialog.textUserEnters": "사용자가 잘못된 데이터를 입력하면 이 오류 메시지가 표시됩니다.", + "SSE.Views.DataValidationDialog.txtAny": "모든 값", + "SSE.Views.DataValidationDialog.txtBetween": "해당 범위", + "SSE.Views.DataValidationDialog.txtDate": "날짜", + "SSE.Views.DataValidationDialog.txtDecimal": "소수 자릿수", + "SSE.Views.DataValidationDialog.txtElTime": "경과 시간", + "SSE.Views.DataValidationDialog.txtEndDate": "종료 일", + "SSE.Views.DataValidationDialog.txtEndTime": "종료 시간", + "SSE.Views.DataValidationDialog.txtEqual": "=", + "SSE.Views.DataValidationDialog.txtGreaterThan": ">", + "SSE.Views.DataValidationDialog.txtGreaterThanOrEqual": "> =", + "SSE.Views.DataValidationDialog.txtLength": "길이", + "SSE.Views.DataValidationDialog.txtLessThan": "<", + "SSE.Views.DataValidationDialog.txtLessThanOrEqual": "< =", + "SSE.Views.DataValidationDialog.txtList": "목록", + "SSE.Views.DataValidationDialog.txtNotBetween": "제외 범위", + "SSE.Views.DataValidationDialog.txtNotEqual": "< >", + "SSE.Views.DataValidationDialog.txtOther": "사용자 지정", + "SSE.Views.DataValidationDialog.txtStartDate": "시작일", + "SSE.Views.DataValidationDialog.txtTextLength": "텍스트 길이", + "SSE.Views.DataValidationDialog.txtWhole": "정수", + "SSE.Views.DigitalFilterDialog.capAnd": "그리고", + "SSE.Views.DigitalFilterDialog.capCondition1": "=", "SSE.Views.DigitalFilterDialog.capCondition10": "끝나지 않습니다", "SSE.Views.DigitalFilterDialog.capCondition11": "포함", "SSE.Views.DigitalFilterDialog.capCondition12": "포함하지 않음", - "SSE.Views.DigitalFilterDialog.capCondition2": "같지 않음", + "SSE.Views.DigitalFilterDialog.capCondition2": "< >", "SSE.Views.DigitalFilterDialog.capCondition3": "보다 큼", "SSE.Views.DigitalFilterDialog.capCondition4": "크거나 같음", "SSE.Views.DigitalFilterDialog.capCondition5": "미만", @@ -1089,14 +1727,15 @@ "SSE.Views.DigitalFilterDialog.capCondition7": "시작 문자", "SSE.Views.DigitalFilterDialog.capCondition8": "로 시작하지 않습니다", "SSE.Views.DigitalFilterDialog.capCondition9": "로 끝남", - "SSE.Views.DigitalFilterDialog.capOr": "Or", + "SSE.Views.DigitalFilterDialog.capOr": "또는", "SSE.Views.DigitalFilterDialog.textNoFilter": "필터 없음", "SSE.Views.DigitalFilterDialog.textShowRows": "Show rows where", "SSE.Views.DigitalFilterDialog.textUse1": "한 문자 만 표시하려면?", "SSE.Views.DigitalFilterDialog.textUse2": "모든 문자를 표시하려면 *를 사용하십시오.", - "SSE.Views.DigitalFilterDialog.txtTitle": "사용자 정의 필터", + "SSE.Views.DigitalFilterDialog.txtTitle": "사용자 지정 자동 필터", "SSE.Views.DocumentHolder.advancedImgText": "이미지 고급 설정", "SSE.Views.DocumentHolder.advancedShapeText": "모양 고급 설정", + "SSE.Views.DocumentHolder.advancedSlicerText": "슬라이서 고급 설정", "SSE.Views.DocumentHolder.bottomCellText": "아래쪽 정렬", "SSE.Views.DocumentHolder.bulletsText": "글 머리 기호 및 번호 매기기", "SSE.Views.DocumentHolder.centerCellText": "가운데 맞춤", @@ -1126,24 +1765,42 @@ "SSE.Views.DocumentHolder.strSign": "서명", "SSE.Views.DocumentHolder.textAlign": "정렬", "SSE.Views.DocumentHolder.textArrange": "배치", - "SSE.Views.DocumentHolder.textArrangeBack": "배경으로 보내기", + "SSE.Views.DocumentHolder.textArrangeBack": "맨 뒤로 보내기", "SSE.Views.DocumentHolder.textArrangeBackward": "뒤로 이동", "SSE.Views.DocumentHolder.textArrangeForward": "앞으로 이동", "SSE.Views.DocumentHolder.textArrangeFront": "포 그라운드로 가져 오기", "SSE.Views.DocumentHolder.textAverage": "평균", + "SSE.Views.DocumentHolder.textBullets": "글 머리 기호", + "SSE.Views.DocumentHolder.textCount": "계산", + "SSE.Views.DocumentHolder.textCrop": "자르기", + "SSE.Views.DocumentHolder.textCropFill": "채우기", + "SSE.Views.DocumentHolder.textCropFit": "맞춤", "SSE.Views.DocumentHolder.textEntriesList": "드롭 다운 목록에서 선택", + "SSE.Views.DocumentHolder.textFlipH": "좌우대칭", + "SSE.Views.DocumentHolder.textFlipV": "상하대칭", "SSE.Views.DocumentHolder.textFreezePanes": "창 고정", "SSE.Views.DocumentHolder.textFromFile": "파일로부터", + "SSE.Views.DocumentHolder.textFromStorage": "스토리지로 부터", "SSE.Views.DocumentHolder.textFromUrl": "URL로부터", + "SSE.Views.DocumentHolder.textListSettings": "목록 설정", + "SSE.Views.DocumentHolder.textMacro": "매크로 지정", + "SSE.Views.DocumentHolder.textMax": "최대", + "SSE.Views.DocumentHolder.textMin": "최소", + "SSE.Views.DocumentHolder.textMore": "더 많은 기능", "SSE.Views.DocumentHolder.textMoreFormats": "기타 형식", "SSE.Views.DocumentHolder.textNone": "없음", + "SSE.Views.DocumentHolder.textNumbering": "번호 매기기", "SSE.Views.DocumentHolder.textReplace": "이미지 바꾸기", + "SSE.Views.DocumentHolder.textRotate": "회전", + "SSE.Views.DocumentHolder.textRotate270": "왼쪽으로 90도 회전", + "SSE.Views.DocumentHolder.textRotate90": "오른쪽으로 90도 회전", "SSE.Views.DocumentHolder.textShapeAlignBottom": "아래쪽 정렬", "SSE.Views.DocumentHolder.textShapeAlignCenter": "가운데 정렬", "SSE.Views.DocumentHolder.textShapeAlignLeft": "왼쪽 정렬", "SSE.Views.DocumentHolder.textShapeAlignMiddle": "중간 정렬", "SSE.Views.DocumentHolder.textShapeAlignRight": "오른쪽 정렬", "SSE.Views.DocumentHolder.textShapeAlignTop": "상단 정렬", + "SSE.Views.DocumentHolder.textSum": "합계", "SSE.Views.DocumentHolder.textUndo": "실행 취소", "SSE.Views.DocumentHolder.textUnFreezePanes": "창 고정 취소", "SSE.Views.DocumentHolder.topCellText": "정렬 위쪽", @@ -1159,25 +1816,30 @@ "SSE.Views.DocumentHolder.txtClearComments": "Comments", "SSE.Views.DocumentHolder.txtClearFormat": "형식", "SSE.Views.DocumentHolder.txtClearHyper": "하이퍼 링크", - "SSE.Views.DocumentHolder.txtClearSparklineGroups": "선택한 스파크 라인 그룹 지우기", - "SSE.Views.DocumentHolder.txtClearSparklines": "선택한 스파크 라인 지우기", + "SSE.Views.DocumentHolder.txtClearSparklineGroups": "선택한 스파크라인 그룹 지우기", + "SSE.Views.DocumentHolder.txtClearSparklines": "선택한 스파크라인 지우기", "SSE.Views.DocumentHolder.txtClearText": "텍스트", "SSE.Views.DocumentHolder.txtColumn": "전체 열", "SSE.Views.DocumentHolder.txtColumnWidth": "열 너비 설정", + "SSE.Views.DocumentHolder.txtCondFormat": "조건부 서식", "SSE.Views.DocumentHolder.txtCopy": "복사", "SSE.Views.DocumentHolder.txtCurrency": "통화", "SSE.Views.DocumentHolder.txtCustomColumnWidth": "사용자 정의 열 너비", "SSE.Views.DocumentHolder.txtCustomRowHeight": "사용자 정의 행 높이", + "SSE.Views.DocumentHolder.txtCustomSort": "정렬", "SSE.Views.DocumentHolder.txtCut": "잘라 내기", "SSE.Views.DocumentHolder.txtDate": "날짜", "SSE.Views.DocumentHolder.txtDelete": "삭제", "SSE.Views.DocumentHolder.txtDescending": "내림차순", + "SSE.Views.DocumentHolder.txtDistribHor": "수평 분포", + "SSE.Views.DocumentHolder.txtDistribVert": "수직 분포", "SSE.Views.DocumentHolder.txtEditComment": "주석 편집", "SSE.Views.DocumentHolder.txtFilter": "필터", "SSE.Views.DocumentHolder.txtFilterCellColor": "셀의 색상별로 필터링", "SSE.Views.DocumentHolder.txtFilterFontColor": "글꼴 색으로 필터링", "SSE.Views.DocumentHolder.txtFilterValue": "선택한 셀의 값으로 필터링", "SSE.Views.DocumentHolder.txtFormula": "함수 삽입", + "SSE.Views.DocumentHolder.txtFraction": "분수", "SSE.Views.DocumentHolder.txtGeneral": "일반", "SSE.Views.DocumentHolder.txtGroup": "그룹", "SSE.Views.DocumentHolder.txtHide": "숨기기", @@ -1190,6 +1852,7 @@ "SSE.Views.DocumentHolder.txtReapply": "재 적용", "SSE.Views.DocumentHolder.txtRow": "전체 행", "SSE.Views.DocumentHolder.txtRowHeight": "행 높이 설정", + "SSE.Views.DocumentHolder.txtScientific": "지수", "SSE.Views.DocumentHolder.txtSelect": "선택", "SSE.Views.DocumentHolder.txtShiftDown": "셀을 아래로 이동", "SSE.Views.DocumentHolder.txtShiftLeft": "셀을 왼쪽으로 시프트", @@ -1200,19 +1863,36 @@ "SSE.Views.DocumentHolder.txtSort": "정렬", "SSE.Views.DocumentHolder.txtSortCellColor": "위에 셀 색상 선택", "SSE.Views.DocumentHolder.txtSortFontColor": "선택한 글꼴 색을 맨 위에 표시", - "SSE.Views.DocumentHolder.txtSparklines": "스파크 라인", + "SSE.Views.DocumentHolder.txtSparklines": "스파크라인", "SSE.Views.DocumentHolder.txtText": "텍스트", - "SSE.Views.DocumentHolder.txtTextAdvanced": "텍스트 고급 설정", + "SSE.Views.DocumentHolder.txtTextAdvanced": "단락 고급 설정", "SSE.Views.DocumentHolder.txtTime": "시간", "SSE.Views.DocumentHolder.txtUngroup": "그룹 해제", "SSE.Views.DocumentHolder.txtWidth": "폭", "SSE.Views.DocumentHolder.vertAlignText": "Vertical Alignment", + "SSE.Views.FieldSettingsDialog.strLayout": "레이아웃", + "SSE.Views.FieldSettingsDialog.strSubtotals": "소계", + "SSE.Views.FieldSettingsDialog.textTitle": "필드 세팅", "SSE.Views.FieldSettingsDialog.txtAverage": "평균", - "SSE.Views.FileMenu.btnBackCaption": "문서로 이동", + "SSE.Views.FieldSettingsDialog.txtBlank": "각 항목 다음에 빈 줄을 삽입", + "SSE.Views.FieldSettingsDialog.txtCompact": "요약", + "SSE.Views.FieldSettingsDialog.txtCount": "계산", + "SSE.Views.FieldSettingsDialog.txtCountNums": "수를 집계", + "SSE.Views.FieldSettingsDialog.txtCustomName": "사용자 정의 이름", + "SSE.Views.FieldSettingsDialog.txtEmpty": "데이터가 없는 항목 표시", + "SSE.Views.FieldSettingsDialog.txtMax": "최대", + "SSE.Views.FieldSettingsDialog.txtMin": "최소", + "SSE.Views.FieldSettingsDialog.txtOutline": "개요", + "SSE.Views.FieldSettingsDialog.txtProduct": "제품", + "SSE.Views.FieldSettingsDialog.txtSourceName": "소스 이름:", + "SSE.Views.FieldSettingsDialog.txtSum": "합계", + "SSE.Views.FieldSettingsDialog.txtSummarize": "부분합 함수", + "SSE.Views.FileMenu.btnBackCaption": "파일 위치 열기", "SSE.Views.FileMenu.btnCloseMenuCaption": "메뉴 닫기", "SSE.Views.FileMenu.btnCreateNewCaption": "새로 만들기", "SSE.Views.FileMenu.btnDownloadCaption": "다운로드 방법 ...", "SSE.Views.FileMenu.btnHelpCaption": "Help ...", + "SSE.Views.FileMenu.btnHistoryCaption": "버전 기록", "SSE.Views.FileMenu.btnInfoCaption": "스프레드 시트 정보 ...", "SSE.Views.FileMenu.btnPrintCaption": "인쇄", "SSE.Views.FileMenu.btnProtectCaption": "보호", @@ -1222,16 +1902,25 @@ "SSE.Views.FileMenu.btnRightsCaption": "액세스 권한 ...", "SSE.Views.FileMenu.btnSaveAsCaption": "다른 이름으로 저장", "SSE.Views.FileMenu.btnSaveCaption": "저장", + "SSE.Views.FileMenu.btnSaveCopyAsCaption": "다른 이름으로 저장...", "SSE.Views.FileMenu.btnSettingsCaption": "고급 설정 ...", "SSE.Views.FileMenu.btnToEditCaption": "스프레드 시트 편집", + "SSE.Views.FileMenuPanels.CreateNew.txtBlank": "빈 스프레드시트", + "SSE.Views.FileMenuPanels.CreateNew.txtCreateNew": "새로 만들기", "SSE.Views.FileMenuPanels.DocumentInfo.okButtonText": "적용", "SSE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "저자 추가", "SSE.Views.FileMenuPanels.DocumentInfo.txtAddText": "문장 추가", "SSE.Views.FileMenuPanels.DocumentInfo.txtAppName": "어플리케이션", "SSE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "작성자", "SSE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "액세스 권한 변경", + "SSE.Views.FileMenuPanels.DocumentInfo.txtComment": "코멘트", + "SSE.Views.FileMenuPanels.DocumentInfo.txtCreated": "생성됨", + "SSE.Views.FileMenuPanels.DocumentInfo.txtModifyBy": "최종 편집자", + "SSE.Views.FileMenuPanels.DocumentInfo.txtModifyDate": "최종 편집", + "SSE.Views.FileMenuPanels.DocumentInfo.txtOwner": "소유자", "SSE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "위치", "SSE.Views.FileMenuPanels.DocumentInfo.txtRights": "권한이있는 사람", + "SSE.Views.FileMenuPanels.DocumentInfo.txtSubject": "제목", "SSE.Views.FileMenuPanels.DocumentInfo.txtTitle": "스프레드 시트 제목", "SSE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "액세스 권한 변경", "SSE.Views.FileMenuPanels.DocumentRights.txtRights": "권한이있는 사람", @@ -1241,18 +1930,25 @@ "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.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.strUnit": "측정 단위", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strZoom": "기본 확대 / 축소 값", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strUseSeparatorsBasedOnRegionalSettings": "지역 설정에 따라 구분 기호 사용", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strZoom": "기본 확대/축소 값", "SSE.Views.FileMenuPanels.MainSettingsGeneral.text10Minutes": "매 10 분마다", "SSE.Views.FileMenuPanels.MainSettingsGeneral.text30Minutes": "30 분마다", "SSE.Views.FileMenuPanels.MainSettingsGeneral.text5Minutes": "매 5 분마다", @@ -1262,21 +1958,55 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.textDisabled": "사용 안 함", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textForceSave": "서버에 저장", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textMinute": "Every Minute", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtBe": "벨라루스어", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtBg": "불가리아어", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCa": "캐나다어", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCacheMode": "사전 설정 캐시 모드", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCm": "센티미터", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCs": "체코어", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtDa": "덴마크어", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtDe": "Deutsch", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEl": "그리스어", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEn": "영어", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEs": "스페인어", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtFi": "끝", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtFr": "프랑스 국민", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtHu": "헝가리어", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtId": "인도네시아어", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtInch": "인치", + "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", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNative": "Native", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNb": "노르웨이어", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNl": "네델란드어", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPl": "폴란드어", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPt": "Point", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPtbr": "브라질어", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPtlang": "포르투갈어", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRo": "루마니아어", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRu": "러시아어", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRunMacros": "모두 활성화", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRunMacrosDesc": "알림 없이 모든 매크로 활성화", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSk": "슬로바키아어", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSl": "슬로베이나어", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStopMacros": "모두 비활성화", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStopMacrosDesc": "알림없이 모든 매크로를 비활성화", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtVi": "베트남어", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacros": "알림 표시", + "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.txtAutoCorrect": "자동 수정 설정...", + "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": "스프레드시트 보호", @@ -1290,85 +2020,264 @@ "SSE.Views.FileMenuPanels.ProtectDoc.txtView": "서명 보기", "SSE.Views.FileMenuPanels.Settings.txtGeneral": "일반", "SSE.Views.FileMenuPanels.Settings.txtPageSettings": "페이지 설정", + "SSE.Views.FormatRulesEditDlg.fillColor": "채우기 색", + "SSE.Views.FormatRulesEditDlg.text2Scales": "2색 눈금", + "SSE.Views.FormatRulesEditDlg.text3Scales": "3색 눈금", + "SSE.Views.FormatRulesEditDlg.textAllBorders": "모든 테두리", + "SSE.Views.FormatRulesEditDlg.textAppearance": "막대 모양", + "SSE.Views.FormatRulesEditDlg.textApply": "범위에 적용", + "SSE.Views.FormatRulesEditDlg.textAutomatic": "자동", + "SSE.Views.FormatRulesEditDlg.textAxis": "축", + "SSE.Views.FormatRulesEditDlg.textBarDirection": "막대 방향", + "SSE.Views.FormatRulesEditDlg.textBold": "굵게", + "SSE.Views.FormatRulesEditDlg.textBorder": "테두리", + "SSE.Views.FormatRulesEditDlg.textBordersColor": "테두리 색상", + "SSE.Views.FormatRulesEditDlg.textBordersStyle": "테두리 스타일", + "SSE.Views.FormatRulesEditDlg.textBottomBorders": "아래쪽 테두리", + "SSE.Views.FormatRulesEditDlg.textCannotAddCF": "조건부 형식을 설정할 수 없습니다.", + "SSE.Views.FormatRulesEditDlg.textCellMidpoint": "셀 중간점", + "SSE.Views.FormatRulesEditDlg.textCenterBorders": "내부 세로 테두리", + "SSE.Views.FormatRulesEditDlg.textClear": "지우기", + "SSE.Views.FormatRulesEditDlg.textContext": "문맥", + "SSE.Views.FormatRulesEditDlg.textCustom": "사용자 정의", + "SSE.Views.FormatRulesEditDlg.textDiagDownBorder": "대각선 아래쪽 테두리", + "SSE.Views.FormatRulesEditDlg.textDiagUpBorder": "대각선 위쪽 테두리", + "SSE.Views.FormatRulesEditDlg.textEmptyFormula": "유효한 공식을 입력하세요.", + "SSE.Views.FormatRulesEditDlg.textEmptyFormulaExt": "입력한 수식은 숫자, 날짜, 시간 또는 문자열로 계산되지 않습니다.", + "SSE.Views.FormatRulesEditDlg.textEmptyText": "고정 값을 입력합니다.", + "SSE.Views.FormatRulesEditDlg.textEmptyValue": "입력 값이 숫자, 날짜, 시간 또는 문자열이 아닙니다.", + "SSE.Views.FormatRulesEditDlg.textErrorGreater": "{0} 고정 값은 {1} 고정 값보다 커야 합니다.", + "SSE.Views.FormatRulesEditDlg.textErrorTop10Between": "{0}에서 {1} 사이의 숫자를 입력합니다.", + "SSE.Views.FormatRulesEditDlg.textFill": "채우기", + "SSE.Views.FormatRulesEditDlg.textFormat": "서식", + "SSE.Views.FormatRulesEditDlg.textFormula": "수식", + "SSE.Views.FormatRulesEditDlg.textGradient": "그라디언트", + "SSE.Views.FormatRulesEditDlg.textIconsOverlap": "하나 이상의 아이콘 범위가 겹칩니다.
범위가 겹치지 않도록 아이콘 참조 대상 값을 조정합니다.", + "SSE.Views.FormatRulesEditDlg.textIconStyle": "아이콘 스타일", + "SSE.Views.FormatRulesEditDlg.textInsideBorders": "테두리 안쪽", + "SSE.Views.FormatRulesEditDlg.textInvalid": "유효하지 않은 참조 대상", + "SSE.Views.FormatRulesEditDlg.textInvalidRange": "오류! 셀 범위가 잘못되었습니다.", + "SSE.Views.FormatRulesEditDlg.textItalic": "기울림꼴", + "SSE.Views.FormatRulesEditDlg.textItem": "아이템", + "SSE.Views.FormatRulesEditDlg.textLeft2Right": "왼쪽에서 오른쪽으로", + "SSE.Views.FormatRulesEditDlg.textLeftBorders": "왼쪽 테두리", + "SSE.Views.FormatRulesEditDlg.textLongBar": "가장 긴 막대", + "SSE.Views.FormatRulesEditDlg.textMaximum": "최대값", + "SSE.Views.FormatRulesEditDlg.textMaxpoint": "최고점", + "SSE.Views.FormatRulesEditDlg.textMiddleBorders": "내부 수평 테두리", + "SSE.Views.FormatRulesEditDlg.textMidpoint": "중간점", + "SSE.Views.FormatRulesEditDlg.textMinimum": "최소값", + "SSE.Views.FormatRulesEditDlg.textMinpoint": "최저점", + "SSE.Views.FormatRulesEditDlg.textNegative": "음수", + "SSE.Views.FormatRulesEditDlg.textNewColor": "새로운 사용자 정의 색 추가", + "SSE.Views.FormatRulesEditDlg.textNoBorders": "테두리 없음", + "SSE.Views.FormatRulesEditDlg.textNone": "없음", + "SSE.Views.FormatRulesEditDlg.textNotValidPercentage": "하나 이상의 지정된 고정 값이 유효한 백분율이 아닙니다.", + "SSE.Views.FormatRulesEditDlg.textNotValidPercentageExt": "{0} 지정된 값은 유효한 백분율이 아닙니다.", + "SSE.Views.FormatRulesEditDlg.textNotValidPercentile": "하나 이상의 지정된 고정 값이 유효한 백분위수가 아닙니다.", + "SSE.Views.FormatRulesEditDlg.textNotValidPercentileExt": "{0} 지정된 값은 유효한 백분위수가 아닙니다.", + "SSE.Views.FormatRulesEditDlg.textOutBorders": "테두리 밖", + "SSE.Views.FormatRulesEditDlg.textPercent": "백분율", + "SSE.Views.FormatRulesEditDlg.textPercentile": "백분위수", + "SSE.Views.FormatRulesEditDlg.textPosition": "위치", + "SSE.Views.FormatRulesEditDlg.textPositive": "정수", + "SSE.Views.FormatRulesEditDlg.textPresets": "기본값", + "SSE.Views.FormatRulesEditDlg.textPreview": "미리보기", + "SSE.Views.FormatRulesEditDlg.textRelativeRef": "색상 레이블, 데이터 열 및 아이콘 집합에 대한 조건부 서식 표준을 설정하기 위해 상대 참조를 사용할 수 없습니다.", + "SSE.Views.FormatRulesEditDlg.textRightBorders": "오른쪽 테두리", + "SSE.Views.FormatRulesEditDlg.textRule": "규칙", + "SSE.Views.FormatRulesEditDlg.textSelectData": "데이터 선택", + "SSE.Views.FormatRulesEditDlg.textSingleRef": "이 유형의 참조는 조건부 형식 수식에서 사용할 수 없습니다.
참조를 단일 셀로 변경하거나 =SUM(A1:B5)와 같은 워크시트 수식으로 설정하십시오.", + "SSE.Views.FormatRulesEditDlg.textStrikeout": "취소선", + "SSE.Views.FormatRulesEditDlg.textSubscript": "아래 첨자", + "SSE.Views.FormatRulesEditDlg.textTopBorders": "위쪽 테두리", + "SSE.Views.FormatRulesEditDlg.tipBorders": "테두리", + "SSE.Views.FormatRulesEditDlg.tipNumFormat": "숫자 형식", + "SSE.Views.FormatRulesEditDlg.txtAccounting": "회계", + "SSE.Views.FormatRulesEditDlg.txtCurrency": "통화", + "SSE.Views.FormatRulesEditDlg.txtDate": "날짜", + "SSE.Views.FormatRulesEditDlg.txtEmpty": "이 입력란은 필수 항목입니다.", + "SSE.Views.FormatRulesEditDlg.txtFraction": "분수", + "SSE.Views.FormatRulesEditDlg.txtGeneral": "일반", + "SSE.Views.FormatRulesEditDlg.txtNoCellIcon": "아이콘 없음", + "SSE.Views.FormatRulesEditDlg.txtNumber": "숫자", + "SSE.Views.FormatRulesEditDlg.txtPercentage": "백분율", + "SSE.Views.FormatRulesEditDlg.txtScientific": "지수", + "SSE.Views.FormatRulesEditDlg.txtTitleEdit": "포맷 규칙을 편집", + "SSE.Views.FormatRulesEditDlg.txtTitleNew": "새로운 형식 규칙", + "SSE.Views.FormatRulesManagerDlg.guestText": "게스트", + "SSE.Views.FormatRulesManagerDlg.textAbove": "평균 이상", + "SSE.Views.FormatRulesManagerDlg.textApply": "적용", + "SSE.Views.FormatRulesManagerDlg.textBeginsWith": "셀 시작 값", + "SSE.Views.FormatRulesManagerDlg.textBelow": "평균 이하", + "SSE.Views.FormatRulesManagerDlg.textBetween": "{0} 과 {1} 사이", + "SSE.Views.FormatRulesManagerDlg.textCellValue": "셀 값", + "SSE.Views.FormatRulesManagerDlg.textColorScale": "그라데이션 색상 스케일", + "SSE.Views.FormatRulesManagerDlg.textContains": "셀 설정 값 포함", + "SSE.Views.FormatRulesManagerDlg.textContainsBlank": "셀 값이 비어 있습니다", + "SSE.Views.FormatRulesManagerDlg.textContainsError": "셀에 오류가 있습니다", + "SSE.Views.FormatRulesManagerDlg.textDelete": "삭제", + "SSE.Views.FormatRulesManagerDlg.textDown": "규칙을 아래로 이동", + "SSE.Views.FormatRulesManagerDlg.textDuplicate": "중복 값", + "SSE.Views.FormatRulesManagerDlg.textEdit": "편집", + "SSE.Views.FormatRulesManagerDlg.textEnds": "셀 설정은 다음으로 끝납니다.", + "SSE.Views.FormatRulesManagerDlg.textEqAbove": "다음의 값과 동일한 또는 평균 이상", + "SSE.Views.FormatRulesManagerDlg.textEqBelow": "평균 이하", + "SSE.Views.FormatRulesManagerDlg.textFormat": "서식", + "SSE.Views.FormatRulesManagerDlg.textIconSet": "아이콘 셋", + "SSE.Views.FormatRulesManagerDlg.textNew": "새로만들기", + "SSE.Views.FormatRulesManagerDlg.textNotBetween": "{0} 과 {1} 사이를 제외", + "SSE.Views.FormatRulesManagerDlg.textNotContains": "셀 설정 값에 포함되지 않음", + "SSE.Views.FormatRulesManagerDlg.textNotContainsBlank": "셀 값이 비어 있지 않습니다", + "SSE.Views.FormatRulesManagerDlg.textNotContainsError": "셀에 오류가 없습니다", + "SSE.Views.FormatRulesManagerDlg.textRules": "규칙", + "SSE.Views.FormatRulesManagerDlg.textSelectData": "데이터 선택", + "SSE.Views.FormatRulesManagerDlg.textSelection": "현재 섹션", + "SSE.Views.FormatRulesManagerDlg.textUnique": "고유값", + "SSE.Views.FormatRulesManagerDlg.textUp": "규칙을 위로 이동", + "SSE.Views.FormatRulesManagerDlg.tipIsLocked": "이 요소는 다른 사용자가 편집하고 있습니다.", + "SSE.Views.FormatRulesManagerDlg.txtTitle": "조건부 서식", "SSE.Views.FormatSettingsDialog.textCategory": "Category", - "SSE.Views.FormatSettingsDialog.textDecimal": "Decimal", + "SSE.Views.FormatSettingsDialog.textDecimal": "소수 자릿수", "SSE.Views.FormatSettingsDialog.textFormat": "형식", - "SSE.Views.FormatSettingsDialog.textSeparator": "1000 구분 기호 사용", + "SSE.Views.FormatSettingsDialog.textLinked": "소스 링크", + "SSE.Views.FormatSettingsDialog.textSeparator": "1000 단위 구분 기호 사용", "SSE.Views.FormatSettingsDialog.textSymbols": "심볼", "SSE.Views.FormatSettingsDialog.textTitle": "숫자 형식", "SSE.Views.FormatSettingsDialog.txtAccounting": "회계", - "SSE.Views.FormatSettingsDialog.txtAs10": "10 분의 1 (5/10)", - "SSE.Views.FormatSettingsDialog.txtAs100": "100 분의 1 (50/100)", - "SSE.Views.FormatSettingsDialog.txtAs16": "열 여섯 번째 (8/16)", - "SSE.Views.FormatSettingsDialog.txtAs2": "반으로 (1/2)", - "SSE.Views.FormatSettingsDialog.txtAs4": "4 위 (2/4)", - "SSE.Views.FormatSettingsDialog.txtAs8": "8 시간 (4/8)", + "SSE.Views.FormatSettingsDialog.txtAs10": "분모를 10으로 (5/10)", + "SSE.Views.FormatSettingsDialog.txtAs100": "분모를 100으로 (50/100)", + "SSE.Views.FormatSettingsDialog.txtAs16": "분모를 16으로 (8/16)", + "SSE.Views.FormatSettingsDialog.txtAs2": "분모를 2로 (1/2)", + "SSE.Views.FormatSettingsDialog.txtAs4": "분모를 4로 (2/4)", + "SSE.Views.FormatSettingsDialog.txtAs8": "분모를 8로 (4/8)", "SSE.Views.FormatSettingsDialog.txtCurrency": "통화", "SSE.Views.FormatSettingsDialog.txtCustom": "사용자 지정", + "SSE.Views.FormatSettingsDialog.txtCustomWarning": "사용자 지정 숫자 형식을 주의해서 입력하십시오. 스프레드시트 편집기는 xlsx 파일에 영향을 줄 수 있는 사용자 정의 형식의 오류를 확인하지 않습니다.", "SSE.Views.FormatSettingsDialog.txtDate": "날짜", - "SSE.Views.FormatSettingsDialog.txtFraction": "Fraction", + "SSE.Views.FormatSettingsDialog.txtFraction": "분수", "SSE.Views.FormatSettingsDialog.txtGeneral": "일반", "SSE.Views.FormatSettingsDialog.txtNone": "없음", "SSE.Views.FormatSettingsDialog.txtNumber": "숫자", "SSE.Views.FormatSettingsDialog.txtPercentage": "백분율", - "SSE.Views.FormatSettingsDialog.txtSample": "샘플 :", - "SSE.Views.FormatSettingsDialog.txtScientific": "Scientific", + "SSE.Views.FormatSettingsDialog.txtSample": "보기 :", + "SSE.Views.FormatSettingsDialog.txtScientific": "지수", "SSE.Views.FormatSettingsDialog.txtText": "텍스트", "SSE.Views.FormatSettingsDialog.txtTime": "시간", - "SSE.Views.FormatSettingsDialog.txtUpto1": "최대 한 자릿수 (1/3)", - "SSE.Views.FormatSettingsDialog.txtUpto2": "최대 두 자리 (12/25)", - "SSE.Views.FormatSettingsDialog.txtUpto3": "최대 세 자리 (131/135)", + "SSE.Views.FormatSettingsDialog.txtUpto1": "한 자릿수 분모 (1/3)", + "SSE.Views.FormatSettingsDialog.txtUpto2": "두 자릿수 분모 (12/25)", + "SSE.Views.FormatSettingsDialog.txtUpto3": "세 자릿수 분모 (131/135)", "SSE.Views.FormulaDialog.sDescription": "설명", "SSE.Views.FormulaDialog.textGroupDescription": "기능 그룹 선택", "SSE.Views.FormulaDialog.textListDescription": "함수 선택", + "SSE.Views.FormulaDialog.txtSearch": "검색", "SSE.Views.FormulaDialog.txtTitle": "함수 삽입", "SSE.Views.FormulaTab.textAutomatic": "자동", "SSE.Views.FormulaTab.textCalculateCurrentSheet": "현재 시트를 계산하다", - "SSE.Views.FormulaTab.textCalculateWorkbook": "작업 파일을 계산하다", + "SSE.Views.FormulaTab.textCalculateWorkbook": "통합 문서 계산", + "SSE.Views.FormulaTab.textManual": "수동", "SSE.Views.FormulaTab.tipCalculate": "계산하다", - "SSE.Views.FormulaTab.tipCalculateTheEntireWorkbook": "전체 작업 파일을 계산하다", + "SSE.Views.FormulaTab.tipCalculateTheEntireWorkbook": "전체 통합 문서 계산", "SSE.Views.FormulaTab.txtAdditional": "추가", "SSE.Views.FormulaTab.txtAutosum": "자동 합계", "SSE.Views.FormulaTab.txtCalculation": "계산", + "SSE.Views.FormulaTab.txtFormula": "함수", + "SSE.Views.FormulaTab.txtFormulaTip": "함수 삽입", + "SSE.Views.FormulaTab.txtMore": "더 많은 기능", + "SSE.Views.FormulaTab.txtRecent": "최근 사용된", "SSE.Views.FormulaWizard.textAny": "어떤 것", + "SSE.Views.FormulaWizard.textArgument": "인수", + "SSE.Views.FormulaWizard.textFunction": "함수", + "SSE.Views.FormulaWizard.textFunctionRes": "함수의 결과", + "SSE.Views.FormulaWizard.textHelp": "이 기능에 대한 도움말", + "SSE.Views.FormulaWizard.textLogical": "\n논리적", + "SSE.Views.FormulaWizard.textNoArgs": "함수에 매개변수가 없습니다.", + "SSE.Views.FormulaWizard.textNumber": "숫자", + "SSE.Views.FormulaWizard.textTitle": "함수의 인수", + "SSE.Views.FormulaWizard.textValue": "수식의 결과", "SSE.Views.HeaderFooterDialog.textAlign": "페이지 본문 영역에 정렬", "SSE.Views.HeaderFooterDialog.textAll": "전체 페이지", "SSE.Views.HeaderFooterDialog.textBold": "굵은체", "SSE.Views.HeaderFooterDialog.textCenter": "중앙", + "SSE.Views.HeaderFooterDialog.textDate": "날짜", + "SSE.Views.HeaderFooterDialog.textDiffFirst": "첫 페이지를 다르게 지정", + "SSE.Views.HeaderFooterDialog.textDiffOdd": "홀수 및 짝수 페이지 다르게 지정", + "SSE.Views.HeaderFooterDialog.textEven": "짝수 페이지", + "SSE.Views.HeaderFooterDialog.textFileName": "파일 이름", + "SSE.Views.HeaderFooterDialog.textFirst": "첫 페이지", + "SSE.Views.HeaderFooterDialog.textFooter": "꼬리말", + "SSE.Views.HeaderFooterDialog.textHeader": "머리글", + "SSE.Views.HeaderFooterDialog.textInsert": "삽입", + "SSE.Views.HeaderFooterDialog.textItalic": "기울림꼴", + "SSE.Views.HeaderFooterDialog.textLeft": "왼쪽", + "SSE.Views.HeaderFooterDialog.textMaxError": "입력한 텍스트 문자열이 너무 깁니다. 사용되는 문자 수를 줄이십시오.", "SSE.Views.HeaderFooterDialog.textNewColor": "새 맞춤 색상 추가", + "SSE.Views.HeaderFooterDialog.textOdd": "홀수 페이지", + "SSE.Views.HeaderFooterDialog.textPageCount": "페이지 수", + "SSE.Views.HeaderFooterDialog.textPageNum": "페이지 번호", + "SSE.Views.HeaderFooterDialog.textPresets": "기본값", + "SSE.Views.HeaderFooterDialog.textRight": "오른쪽", + "SSE.Views.HeaderFooterDialog.textSheet": "시트 이름", + "SSE.Views.HeaderFooterDialog.textStrikeout": "취소선", + "SSE.Views.HeaderFooterDialog.textSubscript": "아래 첨자", + "SSE.Views.HeaderFooterDialog.textTitle": "머리글/바닥글 설정", + "SSE.Views.HeaderFooterDialog.tipFontName": "글꼴", + "SSE.Views.HeaderFooterDialog.tipFontSize": "글꼴 크기", "SSE.Views.HyperlinkSettingsDialog.strDisplay": "표시", "SSE.Views.HyperlinkSettingsDialog.strLinkTo": "링크 대상", "SSE.Views.HyperlinkSettingsDialog.strRange": "Range", "SSE.Views.HyperlinkSettingsDialog.strSheet": "시트", + "SSE.Views.HyperlinkSettingsDialog.textCopy": "복사", "SSE.Views.HyperlinkSettingsDialog.textDefault": "선택한 범위", "SSE.Views.HyperlinkSettingsDialog.textEmptyDesc": "여기에 캡션 입력", "SSE.Views.HyperlinkSettingsDialog.textEmptyLink": "여기에 링크 입력", "SSE.Views.HyperlinkSettingsDialog.textEmptyTooltip": "여기에 툴팁 입력", "SSE.Views.HyperlinkSettingsDialog.textExternalLink": "외부 링크", - "SSE.Views.HyperlinkSettingsDialog.textInternalLink": "내부 데이터 범위", + "SSE.Views.HyperlinkSettingsDialog.textGetLink": "링크 가져오기", + "SSE.Views.HyperlinkSettingsDialog.textInternalLink": "내부 참조 대상", "SSE.Views.HyperlinkSettingsDialog.textInvalidRange": "오류! 셀 범위가 잘못되었습니다.", + "SSE.Views.HyperlinkSettingsDialog.textNames": "정의 된 이름", + "SSE.Views.HyperlinkSettingsDialog.textSelectData": "데이터 선택", + "SSE.Views.HyperlinkSettingsDialog.textSheets": "시트", "SSE.Views.HyperlinkSettingsDialog.textTipText": "스크린 팁 텍스트", "SSE.Views.HyperlinkSettingsDialog.textTitle": "하이퍼 링크 설정", "SSE.Views.HyperlinkSettingsDialog.txtEmpty": "이 입력란은 필수 항목", "SSE.Views.HyperlinkSettingsDialog.txtNotUrl": "이 필드는 \"http://www.example.com\"형식의 URL이어야합니다.", "SSE.Views.ImageSettings.textAdvanced": "고급 설정 표시", + "SSE.Views.ImageSettings.textCrop": "자르기", + "SSE.Views.ImageSettings.textCropFill": "채우기", + "SSE.Views.ImageSettings.textCropFit": "맞춤", "SSE.Views.ImageSettings.textEdit": "편집", "SSE.Views.ImageSettings.textEditObject": "개체 편집", + "SSE.Views.ImageSettings.textFlip": "대칭", "SSE.Views.ImageSettings.textFromFile": "파일로부터", + "SSE.Views.ImageSettings.textFromStorage": "스토리지로 부터", "SSE.Views.ImageSettings.textFromUrl": "URL로부터", "SSE.Views.ImageSettings.textHeight": "높이", + "SSE.Views.ImageSettings.textHint270": "왼쪽으로 90도 회전", + "SSE.Views.ImageSettings.textHint90": "오른쪽으로 90도 회전", + "SSE.Views.ImageSettings.textHintFlipH": "좌우대칭", + "SSE.Views.ImageSettings.textHintFlipV": "상하대칭", "SSE.Views.ImageSettings.textInsert": "이미지 바꾸기", "SSE.Views.ImageSettings.textKeepRatio": "상수 비율", "SSE.Views.ImageSettings.textOriginalSize": "기본 크기", + "SSE.Views.ImageSettings.textRotate90": "90도 회전", + "SSE.Views.ImageSettings.textRotation": "회전", "SSE.Views.ImageSettings.textSize": "크기", "SSE.Views.ImageSettings.textWidth": "너비", + "SSE.Views.ImageSettingsAdvanced.textAbsolute": "셀을 이동하거나 크기를 조정하지 마십시오.", "SSE.Views.ImageSettingsAdvanced.textAlt": "대체 텍스트", "SSE.Views.ImageSettingsAdvanced.textAltDescription": "설명", "SSE.Views.ImageSettingsAdvanced.textAltTip": "시력이나인지 장애가있는 사람들에게 읽을 수있는 시각적 객체 정보의 대체 텍스트 기반 표현으로 이미지에 어떤 정보가 있는지 더 잘 이해할 수 있도록 도와줍니다. 차트 또는 표. ", "SSE.Views.ImageSettingsAdvanced.textAltTitle": "Title", "SSE.Views.ImageSettingsAdvanced.textAngle": "각도", + "SSE.Views.ImageSettingsAdvanced.textFlipped": "대칭됨", + "SSE.Views.ImageSettingsAdvanced.textHorizontally": "수평", + "SSE.Views.ImageSettingsAdvanced.textOneCell": "이동하지만 셀별로 크기 조정되지 않음", + "SSE.Views.ImageSettingsAdvanced.textRotation": "회전", "SSE.Views.ImageSettingsAdvanced.textSnap": "셀 잠그기", "SSE.Views.ImageSettingsAdvanced.textTitle": "이미지 - 고급 설정", + "SSE.Views.ImageSettingsAdvanced.textTwoCell": "셀 이동 및 크기 조정", "SSE.Views.LeftMenu.tipAbout": "정보", "SSE.Views.LeftMenu.tipChat": "채팅", "SSE.Views.LeftMenu.tipComments": "Comments", @@ -1377,7 +2286,10 @@ "SSE.Views.LeftMenu.tipSearch": "Search", "SSE.Views.LeftMenu.tipSupport": "피드백 및 지원", "SSE.Views.LeftMenu.txtDeveloper": "개발자 모드", + "SSE.Views.LeftMenu.txtLimit": "접근 제한", "SSE.Views.LeftMenu.txtTrial": "시험 모드", + "SSE.Views.MacroDialog.textMacro": "매크로 이름", + "SSE.Views.MacroDialog.textTitle": "매크로 지정", "SSE.Views.MainSettingsPrint.okButtonText": "저장", "SSE.Views.MainSettingsPrint.strBottom": "Bottom", "SSE.Views.MainSettingsPrint.strLandscape": "Landscape", @@ -1385,9 +2297,12 @@ "SSE.Views.MainSettingsPrint.strMargins": "여백", "SSE.Views.MainSettingsPrint.strPortrait": "Portrait", "SSE.Views.MainSettingsPrint.strPrint": "인쇄", + "SSE.Views.MainSettingsPrint.strPrintTitles": "제목 인쇄", "SSE.Views.MainSettingsPrint.strRight": "Right", "SSE.Views.MainSettingsPrint.strTop": "Top", "SSE.Views.MainSettingsPrint.textActualSize": "실제 크기", + "SSE.Views.MainSettingsPrint.textCustom": "사용자 정의", + "SSE.Views.MainSettingsPrint.textCustomOptions": "사용자 정의 옵션", "SSE.Views.MainSettingsPrint.textFitCols": "한 페이지에 모든 열 맞추기", "SSE.Views.MainSettingsPrint.textFitPage": "한 페이지에 시트 맞추기", "SSE.Views.MainSettingsPrint.textFitRows": "한 페이지에 모든 행 맞추기", @@ -1396,19 +2311,20 @@ "SSE.Views.MainSettingsPrint.textPageSize": "페이지 크기", "SSE.Views.MainSettingsPrint.textPrintGrid": "눈금 선 인쇄", "SSE.Views.MainSettingsPrint.textPrintHeadings": "행 및 열 머리글 인쇄", + "SSE.Views.MainSettingsPrint.textRepeat": "반복...", "SSE.Views.MainSettingsPrint.textSettings": "설정", "SSE.Views.NamedRangeEditDlg.errorCreateDefName": "기존 명명 된 범위를 편집 할 수 없으며 일부는 편집 중임에 따라 현재 명명 된 범위를 만들 수 없습니다.", "SSE.Views.NamedRangeEditDlg.namePlaceholder": "정의 된 이름", "SSE.Views.NamedRangeEditDlg.notcriticalErrorTitle": "경고", "SSE.Views.NamedRangeEditDlg.strWorkbook": "통합 문서", - "SSE.Views.NamedRangeEditDlg.textDataRange": "데이터 범위", + "SSE.Views.NamedRangeEditDlg.textDataRange": "참조 대상", "SSE.Views.NamedRangeEditDlg.textExistName": "오류! 같은 이름의 범위가 이미 있습니다", "SSE.Views.NamedRangeEditDlg.textInvalidName": "이름은 문자 또는 밑줄로 시작해야하며 잘못된 문자를 포함해서는 안됩니다.", "SSE.Views.NamedRangeEditDlg.textInvalidRange": "오류! 잘못된 셀 범위", "SSE.Views.NamedRangeEditDlg.textIsLocked": "오류!이 요소는 다른 사용자가 편집하고 있습니다.", "SSE.Views.NamedRangeEditDlg.textName": "Name", "SSE.Views.NamedRangeEditDlg.textReservedName": "사용하려는 이름이 이미 셀 수식에서 참조되어 있습니다. 다른 이름을 사용하십시오.", - "SSE.Views.NamedRangeEditDlg.textScope": "Scope", + "SSE.Views.NamedRangeEditDlg.textScope": "범위", "SSE.Views.NamedRangeEditDlg.textSelectData": "데이터 선택", "SSE.Views.NamedRangeEditDlg.txtEmpty": "이 입력란은 필수 항목", "SSE.Views.NamedRangeEditDlg.txtTitleEdit": "이름 편집", @@ -1417,7 +2333,7 @@ "SSE.Views.NamedRangePasteDlg.txtTitle": "붙여 넣기 이름", "SSE.Views.NameManagerDlg.closeButtonText": "닫기", "SSE.Views.NameManagerDlg.guestText": "Guest", - "SSE.Views.NameManagerDlg.textDataRange": "데이터 범위", + "SSE.Views.NameManagerDlg.textDataRange": "참조 대상", "SSE.Views.NameManagerDlg.textDelete": "삭제", "SSE.Views.NameManagerDlg.textEdit": "편집", "SSE.Views.NameManagerDlg.textEmpty": "명명 된 범위가 아직 생성되지 않았습니다.
명명 된 하나 이상의 범위를 만들고이 필드에 나타납니다.", @@ -1426,7 +2342,7 @@ "SSE.Views.NameManagerDlg.textFilterDefNames": "정의 된 이름", "SSE.Views.NameManagerDlg.textFilterSheet": "이름이 시트로 범위 지정됨", "SSE.Views.NameManagerDlg.textFilterTableNames": "테이블 이름", - "SSE.Views.NameManagerDlg.textFilterWorkbook": "이름이 통합 문서 범위", + "SSE.Views.NameManagerDlg.textFilterWorkbook": "이름이 통합 문서로 범위 지정됨", "SSE.Views.NameManagerDlg.textNew": "New", "SSE.Views.NameManagerDlg.textnoNames": "필터와 일치하는 명명 된 범위를 찾을 수 없습니다.", "SSE.Views.NameManagerDlg.textRanges": "Named Ranges", @@ -1434,7 +2350,11 @@ "SSE.Views.NameManagerDlg.textWorkbook": "통합 문서", "SSE.Views.NameManagerDlg.tipIsLocked": "이 요소는 다른 사용자가 편집하고 있습니다.", "SSE.Views.NameManagerDlg.txtTitle": "이름 관리자", + "SSE.Views.NameManagerDlg.warnDelete": "이름 {0}을 삭제 하시겠습니까?", "SSE.Views.PageMarginsDialog.textBottom": "바닥", + "SSE.Views.PageMarginsDialog.textLeft": "왼쪽", + "SSE.Views.PageMarginsDialog.textRight": "오른쪽", + "SSE.Views.PageMarginsDialog.textTitle": "여백", "SSE.Views.ParagraphSettings.strLineHeight": "줄 간격", "SSE.Views.ParagraphSettings.strParagraphSpacing": "단락 간격", "SSE.Views.ParagraphSettings.strSpacingAfter": "이후", @@ -1442,28 +2362,36 @@ "SSE.Views.ParagraphSettings.textAdvanced": "고급 설정 표시", "SSE.Views.ParagraphSettings.textAt": "At", "SSE.Views.ParagraphSettings.textAtLeast": "적어도", - "SSE.Views.ParagraphSettings.textAuto": "Multiple", + "SSE.Views.ParagraphSettings.textAuto": "배수", "SSE.Views.ParagraphSettings.textExact": "정확히", "SSE.Views.ParagraphSettings.txtAutoText": "Auto", "SSE.Views.ParagraphSettingsAdvanced.noTabs": "지정한 탭이이 필드에 나타납니다", "SSE.Views.ParagraphSettingsAdvanced.strAllCaps": "모든 대문자", - "SSE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "이중 취소 선", + "SSE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "이중 취소선", + "SSE.Views.ParagraphSettingsAdvanced.strIndent": "들여쓰기", "SSE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Left", + "SSE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing": "줄 간격", "SSE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Right", "SSE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter": "이후", "SSE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore": "이전", + "SSE.Views.ParagraphSettingsAdvanced.strIndentsSpecial": "첫줄", "SSE.Views.ParagraphSettingsAdvanced.strIndentsSpecialBy": "~로", "SSE.Views.ParagraphSettingsAdvanced.strParagraphFont": "글꼴", "SSE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "들여 쓰기 및 배치", "SSE.Views.ParagraphSettingsAdvanced.strSmallCaps": "작은 대문자", - "SSE.Views.ParagraphSettingsAdvanced.strStrike": "취소 선", + "SSE.Views.ParagraphSettingsAdvanced.strStrike": "취소선", "SSE.Views.ParagraphSettingsAdvanced.strSubscript": "Subscript", "SSE.Views.ParagraphSettingsAdvanced.strSuperscript": "Superscript", "SSE.Views.ParagraphSettingsAdvanced.strTabs": "탭", "SSE.Views.ParagraphSettingsAdvanced.textAlign": "정렬", + "SSE.Views.ParagraphSettingsAdvanced.textAuto": "배수", "SSE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "문자 간격", "SSE.Views.ParagraphSettingsAdvanced.textDefault": "기본 탭", "SSE.Views.ParagraphSettingsAdvanced.textEffects": "효과", + "SSE.Views.ParagraphSettingsAdvanced.textExact": "고정", + "SSE.Views.ParagraphSettingsAdvanced.textFirstLine": "머리글 행", + "SSE.Views.ParagraphSettingsAdvanced.textHanging": "둘째 줄 이하", + "SSE.Views.ParagraphSettingsAdvanced.textJustified": "균등분할", "SSE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(없음)", "SSE.Views.ParagraphSettingsAdvanced.textRemove": "제거", "SSE.Views.ParagraphSettingsAdvanced.textRemoveAll": "모두 제거", @@ -1474,9 +2402,33 @@ "SSE.Views.ParagraphSettingsAdvanced.textTabRight": "Right", "SSE.Views.ParagraphSettingsAdvanced.textTitle": "단락 - 고급 설정", "SSE.Views.ParagraphSettingsAdvanced.txtAutoText": "자동", - "SSE.Views.PivotDigitalFilterDialog.capCondition13": "~ 사이", + "SSE.Views.PivotDigitalFilterDialog.capCondition1": "같음", + "SSE.Views.PivotDigitalFilterDialog.capCondition10": "다음 문자열로 끝나지 않음", + "SSE.Views.PivotDigitalFilterDialog.capCondition11": "포함", + "SSE.Views.PivotDigitalFilterDialog.capCondition12": "포함하지 않음", + "SSE.Views.PivotDigitalFilterDialog.capCondition13": "해당 범위", + "SSE.Views.PivotDigitalFilterDialog.capCondition14": "제외 범위", + "SSE.Views.PivotDigitalFilterDialog.capCondition2": "같지 않음", + "SSE.Views.PivotDigitalFilterDialog.capCondition3": "보다 큼", + "SSE.Views.PivotDigitalFilterDialog.capCondition4": "크거나 같음", + "SSE.Views.PivotDigitalFilterDialog.capCondition5": "미만", + "SSE.Views.PivotDigitalFilterDialog.capCondition6": "작거나 같음", "SSE.Views.PivotDigitalFilterDialog.capCondition7": "~와 함께 시작하다.\n~로 시작하다", + "SSE.Views.PivotDigitalFilterDialog.capCondition8": "다음 문자에서 시작하기", + "SSE.Views.PivotDigitalFilterDialog.capCondition9": "종료", "SSE.Views.PivotDigitalFilterDialog.txtAnd": "그리고", + "SSE.Views.PivotDigitalFilterDialog.txtTitleLabel": "라벨 필터", + "SSE.Views.PivotGroupDialog.textAuto": "자동", + "SSE.Views.PivotGroupDialog.textBy": "작성", + "SSE.Views.PivotGroupDialog.textDays": "일", + "SSE.Views.PivotGroupDialog.textEnd": "종료", + "SSE.Views.PivotGroupDialog.textGreaterError": "끝 번호는 시작 번호보다 커야 합니다.", + "SSE.Views.PivotGroupDialog.textHour": "시간", + "SSE.Views.PivotGroupDialog.textMin": "분", + "SSE.Views.PivotGroupDialog.textMonth": "월", + "SSE.Views.PivotGroupDialog.textNumDays": "일자", + "SSE.Views.PivotGroupDialog.textQuart": "분기", + "SSE.Views.PivotGroupDialog.txtTitle": "그룹핑", "SSE.Views.PivotSettings.textAdvanced": "고급 설정 표시", "SSE.Views.PivotSettings.textColumns": "컬럼", "SSE.Views.PivotSettings.textFields": "필드 선택", @@ -1497,7 +2449,21 @@ "SSE.Views.PivotSettings.txtMoveUp": "위로 이동", "SSE.Views.PivotSettings.txtMoveValues": "값으로 이동", "SSE.Views.PivotSettings.txtRemove": "필드 삭제", + "SSE.Views.PivotSettingsAdvanced.strLayout": "이름 및 레이아웃", "SSE.Views.PivotSettingsAdvanced.textAlt": "대체 문장", + "SSE.Views.PivotSettingsAdvanced.textAltDescription": "세부 설명", + "SSE.Views.PivotSettingsAdvanced.textAltTip": "시력이나인지 장애가있는 사람들에게 읽을 수있는 시각적 객체 정보의 대체 텍스트 기반 표현으로 이미지에있는 정보를 더 잘 이해할 수 있도록 도와줍니다. 차트 또는 표. ", + "SSE.Views.PivotSettingsAdvanced.textDataRange": "참조 대상", + "SSE.Views.PivotSettingsAdvanced.textDataSource": "데이터 소스", + "SSE.Views.PivotSettingsAdvanced.textDisplayFields": "보고서 필터 영역에 필드 표시", + "SSE.Views.PivotSettingsAdvanced.textDown": "위에서 아래로", + "SSE.Views.PivotSettingsAdvanced.textGrandTotals": "종합 합계", + "SSE.Views.PivotSettingsAdvanced.textHeaders": "필드 제목", + "SSE.Views.PivotSettingsAdvanced.textInvalidRange": "오류! 셀 범위가 잘못되었습니다.", + "SSE.Views.PivotSettingsAdvanced.textSelectData": "데이터 선택", + "SSE.Views.PivotSettingsAdvanced.textTitle": "피벗테이블-고급설정", + "SSE.Views.PivotSettingsAdvanced.txtEmpty": "이 입력란은 필수 항목입니다.", + "SSE.Views.PivotSettingsAdvanced.txtName": "이름", "SSE.Views.PivotTable.capBlankRows": "빈 열", "SSE.Views.PivotTable.capGrandTotals": "종합 합계", "SSE.Views.PivotTable.capLayout": "레이아웃 리포트", @@ -1516,9 +2482,9 @@ "SSE.Views.PivotTable.mniOnTotals": "열과 컬럼 온", "SSE.Views.PivotTable.mniRemoveBlankLine": "각 아이템 다음에 빈 라인 삭제", "SSE.Views.PivotTable.mniTopSubtotals": "그룹 상단에 모든 서브 합계 보여주기", - "SSE.Views.PivotTable.textColBanded": "묶임 컬럼", + "SSE.Views.PivotTable.textColBanded": "줄무늬 열", "SSE.Views.PivotTable.textColHeader": "컬럼 헤더", - "SSE.Views.PivotTable.textRowBanded": "묶인 열", + "SSE.Views.PivotTable.textRowBanded": "줄무늬 행", "SSE.Views.PivotTable.textRowHeader": "열 헤더", "SSE.Views.PivotTable.tipCreatePivot": "피봇 테이블 추가하기", "SSE.Views.PivotTable.tipGrandTotals": "종합 합계 보이기 또는 숨기기", @@ -1526,6 +2492,7 @@ "SSE.Views.PivotTable.tipSelect": "전체 피봇 테이블 선택", "SSE.Views.PivotTable.tipSubtotals": "서브 합계 보이기 또는 숨기기", "SSE.Views.PivotTable.txtCreate": "표 삽입", + "SSE.Views.PivotTable.txtPivotTable": "피벗 테이블", "SSE.Views.PivotTable.txtRefresh": "새로고침", "SSE.Views.PivotTable.txtSelect": "선택", "SSE.Views.PrintSettings.btnPrint": "저장 및 인쇄", @@ -1535,16 +2502,20 @@ "SSE.Views.PrintSettings.strMargins": "여백", "SSE.Views.PrintSettings.strPortrait": "Portrait", "SSE.Views.PrintSettings.strPrint": "인쇄", + "SSE.Views.PrintSettings.strPrintTitles": "제목 인쇄", "SSE.Views.PrintSettings.strRight": "오른쪽", "SSE.Views.PrintSettings.strShow": "표시", "SSE.Views.PrintSettings.strTop": "Top", "SSE.Views.PrintSettings.textActualSize": "실제 크기", "SSE.Views.PrintSettings.textAllSheets": "모든 시트", "SSE.Views.PrintSettings.textCurrentSheet": "현재 시트", + "SSE.Views.PrintSettings.textCustom": "사용자 정의", + "SSE.Views.PrintSettings.textCustomOptions": "사용자 정의 옵션", "SSE.Views.PrintSettings.textFitCols": "한 페이지에 모든 열 맞추기", "SSE.Views.PrintSettings.textFitPage": "한 페이지에 시트 맞추기", "SSE.Views.PrintSettings.textFitRows": "한 페이지에 모든 행 맞추기", "SSE.Views.PrintSettings.textHideDetails": "세부 정보 숨기기", + "SSE.Views.PrintSettings.textIgnore": "인쇄 영역 무시", "SSE.Views.PrintSettings.textLayout": "레이아웃", "SSE.Views.PrintSettings.textPageOrientation": "페이지 방향", "SSE.Views.PrintSettings.textPageScaling": "Scaling", @@ -1552,22 +2523,88 @@ "SSE.Views.PrintSettings.textPrintGrid": "눈금 선 인쇄", "SSE.Views.PrintSettings.textPrintHeadings": "행 및 열 머리글 인쇄", "SSE.Views.PrintSettings.textPrintRange": "인쇄 범위", + "SSE.Views.PrintSettings.textRange": "범위", + "SSE.Views.PrintSettings.textRepeat": "반복...", "SSE.Views.PrintSettings.textSelection": "선택", "SSE.Views.PrintSettings.textSettings": "시트 설정", "SSE.Views.PrintSettings.textShowDetails": "세부 정보 표시", "SSE.Views.PrintSettings.textTitle": "인쇄 설정", + "SSE.Views.PrintSettings.textTitlePDF": "PDF 설정", + "SSE.Views.PrintTitlesDialog.textFirstCol": "첫째 열", + "SSE.Views.PrintTitlesDialog.textFirstRow": "머리글 행", + "SSE.Views.PrintTitlesDialog.textFrozenCols": "고정 된 열", + "SSE.Views.PrintTitlesDialog.textFrozenRows": "고정된 행", + "SSE.Views.PrintTitlesDialog.textInvalidRange": "오류! 셀 범위가 잘못되었습니다.", + "SSE.Views.PrintTitlesDialog.textNoRepeat": "반복 없음", + "SSE.Views.PrintTitlesDialog.textRepeat": "반복...", + "SSE.Views.PrintTitlesDialog.textSelectRange": "범위 선택", + "SSE.Views.PrintTitlesDialog.textTitle": "제목 인쇄", + "SSE.Views.ProtectDialog.textExistName": "오류! 제목이 지정된 범위가 이미 있습니다.", + "SSE.Views.ProtectDialog.textInvalidRange": "오류! 셀 범위가 잘못되었습니다.", + "SSE.Views.ProtectDialog.textSelectData": "데이터 선택", + "SSE.Views.ProtectDialog.txtAllow": "모든 사용자 허용:", + "SSE.Views.ProtectDialog.txtDelCols": "열 삭제", + "SSE.Views.ProtectDialog.txtDelRows": "행 삭제", + "SSE.Views.ProtectDialog.txtEmpty": "이 입력란은 필수 항목입니다.", + "SSE.Views.ProtectDialog.txtFormatCells": "셀서식", + "SSE.Views.ProtectDialog.txtFormatCols": "열서식", + "SSE.Views.ProtectDialog.txtFormatRows": "행서식", + "SSE.Views.ProtectDialog.txtIncorrectPwd": "비밀번호가 같지 않은지 확인", + "SSE.Views.ProtectDialog.txtInsCols": "열 삽입", + "SSE.Views.ProtectDialog.txtInsHyper": "하이퍼링크 삽입", + "SSE.Views.ProtectDialog.txtInsRows": "행 삽입", + "SSE.Views.ProtectDialog.txtObjs": "객체 편집", + "SSE.Views.ProtectDialog.txtPassword": "비밀번호", + "SSE.Views.ProtectDialog.txtProtect": "보호", + "SSE.Views.ProtectDialog.txtRange": "범위", + "SSE.Views.ProtectDialog.txtRepeat": "비밀번호 확인", + "SSE.Views.ProtectDialog.txtScen": "시나리오 편집", + "SSE.Views.ProtectDialog.txtSelUnLocked": "잠겨지지 않은 셀 선택", + "SSE.Views.ProtectDialog.txtSheetDescription": "다른 사용자의 편집을 금지하고 다른 사용자의 편집 권한을 제한합니다.", + "SSE.Views.ProtectDialog.txtSheetTitle": "시트 보호", + "SSE.Views.ProtectDialog.txtSort": "정렬", + "SSE.Views.ProtectDialog.txtWarning": "주의: 암호를 잊으면 복구할 수 없습니다. 암호는 대/소문자를 구분합니다. 이 코드를 안전한 곳에 보관하세요.", + "SSE.Views.ProtectDialog.txtWBDescription": "다른 사용자가 숨겨진 워크시트를 보고, 워크시트를 추가, 이동, 삭제 또는 숨기고 워크시트 이름을 바꾸는 것을 방지하기 위해 암호를 설정하여 워크시트 구조를 보호할 수 있습니다.", + "SSE.Views.ProtectDialog.txtWBTitle": "통합 문서 구조 보호", + "SSE.Views.ProtectRangesDlg.guestText": "게스트", + "SSE.Views.ProtectRangesDlg.textDelete": "삭제", + "SSE.Views.ProtectRangesDlg.textEdit": "편집", + "SSE.Views.ProtectRangesDlg.textEmpty": "수정할 범위가 없습니다.", + "SSE.Views.ProtectRangesDlg.textNew": "새로만들기", + "SSE.Views.ProtectRangesDlg.textProtect": "시트 보호", + "SSE.Views.ProtectRangesDlg.textPwd": "비밀번호", + "SSE.Views.ProtectRangesDlg.textRange": "범위", + "SSE.Views.ProtectRangesDlg.textRangesDesc": "워크시트가 보호되면 암호로 범위가 잠금 해제됩니다.", + "SSE.Views.ProtectRangesDlg.tipIsLocked": "이 요소는 다른 사용자가 편집하고 있습니다.", + "SSE.Views.ProtectRangesDlg.txtEditRange": "범위 편집", + "SSE.Views.ProtectRangesDlg.txtNewRange": "새로운 범위", + "SSE.Views.ProtectRangesDlg.txtNo": "아니오", + "SSE.Views.ProtectRangesDlg.txtTitle": "사용자 범위 편집 허용", + "SSE.Views.ProtectRangesDlg.warnDelete": "이름 {0}을 삭제 하시겠습니까?", + "SSE.Views.RemoveDuplicatesDialog.textColumns": "열", + "SSE.Views.RemoveDuplicatesDialog.textDescription": "중복 값을 제거하려면 중복이 포함된 열을 하나 이상 선택하십시오.", + "SSE.Views.RemoveDuplicatesDialog.textHeaders": "내 데이터에 제목이 있습니다.", + "SSE.Views.RemoveDuplicatesDialog.textSelectAll": "모두 선택", + "SSE.Views.RemoveDuplicatesDialog.txtTitle": "중복된 항목 제거", "SSE.Views.RightMenu.txtCellSettings": "셀 설정", "SSE.Views.RightMenu.txtChartSettings": "차트 설정", "SSE.Views.RightMenu.txtImageSettings": "이미지 설정", - "SSE.Views.RightMenu.txtParagraphSettings": "텍스트 설정", + "SSE.Views.RightMenu.txtParagraphSettings": "단락 설정", "SSE.Views.RightMenu.txtPivotSettings": "피봇 테이블 세팅", "SSE.Views.RightMenu.txtSettings": "공통 설정", "SSE.Views.RightMenu.txtShapeSettings": "도형 설정", "SSE.Views.RightMenu.txtSignatureSettings": "서명 세팅", - "SSE.Views.RightMenu.txtSparklineSettings": "스파크 라인 설정", + "SSE.Views.RightMenu.txtSlicerSettings": "슬라이서 설정", + "SSE.Views.RightMenu.txtSparklineSettings": "스파크라인 설정", "SSE.Views.RightMenu.txtTableSettings": "표 설정", "SSE.Views.RightMenu.txtTextArtSettings": "텍스트 아트 설정", "SSE.Views.ScaleDialog.textAuto": "자동", + "SSE.Views.ScaleDialog.textError": "입력한 값이 잘못되었습니다.", + "SSE.Views.ScaleDialog.textFewPages": "페이지", + "SSE.Views.ScaleDialog.textFitTo": "맞춤", + "SSE.Views.ScaleDialog.textHeight": "높이", + "SSE.Views.ScaleDialog.textManyPages": "페이지", + "SSE.Views.ScaleDialog.textOnePage": "페이지", "SSE.Views.SetValueDialog.txtMaxText": "이 필드의 최대 값은 {0} 입니다.", "SSE.Views.SetValueDialog.txtMinText": "이 필드의 최소값은 {0} 입니다.", "SSE.Views.ShapeSettings.strBackground": "배경색", @@ -1576,30 +2613,44 @@ "SSE.Views.ShapeSettings.strFill": "채우기", "SSE.Views.ShapeSettings.strForeground": "전경색", "SSE.Views.ShapeSettings.strPattern": "패턴", + "SSE.Views.ShapeSettings.strShadow": "음영 표시", "SSE.Views.ShapeSettings.strSize": "크기", - "SSE.Views.ShapeSettings.strStroke": "Stroke", - "SSE.Views.ShapeSettings.strTransparency": "불투명도", + "SSE.Views.ShapeSettings.strStroke": "선", + "SSE.Views.ShapeSettings.strTransparency": "투명도", "SSE.Views.ShapeSettings.strType": "Type", "SSE.Views.ShapeSettings.textAdvanced": "고급 설정 표시", + "SSE.Views.ShapeSettings.textAngle": "각도", "SSE.Views.ShapeSettings.textBorderSizeErr": "입력 한 값이 잘못되었습니다.
0 ~ 1584 포인트 사이의 값을 입력하십시오.", "SSE.Views.ShapeSettings.textColor": "색상 채우기", "SSE.Views.ShapeSettings.textDirection": "Direction", "SSE.Views.ShapeSettings.textEmptyPattern": "패턴 없음", + "SSE.Views.ShapeSettings.textFlip": "대칭", "SSE.Views.ShapeSettings.textFromFile": "파일로부터", + "SSE.Views.ShapeSettings.textFromStorage": "스토리지로 부터", "SSE.Views.ShapeSettings.textFromUrl": "URL로부터", "SSE.Views.ShapeSettings.textGradient": "그라디언트", "SSE.Views.ShapeSettings.textGradientFill": "Gradient Fill", + "SSE.Views.ShapeSettings.textHint270": "왼쪽으로 90도 회전", + "SSE.Views.ShapeSettings.textHint90": "오른쪽으로 90도 회전", + "SSE.Views.ShapeSettings.textHintFlipH": "좌우대칭", + "SSE.Views.ShapeSettings.textHintFlipV": "상하대칭", "SSE.Views.ShapeSettings.textImageTexture": "그림 또는 질감", "SSE.Views.ShapeSettings.textLinear": "선형", "SSE.Views.ShapeSettings.textNoFill": "채우기 없음", "SSE.Views.ShapeSettings.textOriginalSize": "원본 크기", "SSE.Views.ShapeSettings.textPatternFill": "패턴", + "SSE.Views.ShapeSettings.textPosition": "위치", "SSE.Views.ShapeSettings.textRadial": "방사형", + "SSE.Views.ShapeSettings.textRotate90": "90도 회전", + "SSE.Views.ShapeSettings.textRotation": "회전", + "SSE.Views.ShapeSettings.textSelectImage": "그림선택", "SSE.Views.ShapeSettings.textSelectTexture": "선택", "SSE.Views.ShapeSettings.textStretch": "늘이기", "SSE.Views.ShapeSettings.textStyle": "스타일", "SSE.Views.ShapeSettings.textTexture": "텍스처에서", "SSE.Views.ShapeSettings.textTile": "타일", + "SSE.Views.ShapeSettings.tipAddGradientPoint": "그라데이션 포인트 추가", + "SSE.Views.ShapeSettings.tipRemoveGradientPoint": "그라데이션 포인트 제거", "SSE.Views.ShapeSettings.txtBrownPaper": "갈색 종이", "SSE.Views.ShapeSettings.txtCanvas": "Canvas", "SSE.Views.ShapeSettings.txtCarton": "Carton", @@ -1614,6 +2665,7 @@ "SSE.Views.ShapeSettings.txtWood": "목재", "SSE.Views.ShapeSettingsAdvanced.strColumns": "Columns", "SSE.Views.ShapeSettingsAdvanced.strMargins": "텍스트 채우기", + "SSE.Views.ShapeSettingsAdvanced.textAbsolute": "셀을 이동하거나 크기를 조정하지 마십시오.", "SSE.Views.ShapeSettingsAdvanced.textAlt": "대체 텍스트", "SSE.Views.ShapeSettingsAdvanced.textAltDescription": "설명", "SSE.Views.ShapeSettingsAdvanced.textAltTip": "시력이나인지 장애가있는 사람들에게 읽을 수있는 시각적 개체 정보의 대체 텍스트 기반 표현으로 이미지에있는 정보를 더 잘 이해할 수 있도록 도와줍니다. 차트 또는 표. ", @@ -1630,21 +2682,28 @@ "SSE.Views.ShapeSettingsAdvanced.textEndSize": "최종 크기", "SSE.Views.ShapeSettingsAdvanced.textEndStyle": "끝 스타일", "SSE.Views.ShapeSettingsAdvanced.textFlat": "Flat", + "SSE.Views.ShapeSettingsAdvanced.textFlipped": "대칭됨", "SSE.Views.ShapeSettingsAdvanced.textHeight": "높이", + "SSE.Views.ShapeSettingsAdvanced.textHorizontally": "수평", "SSE.Views.ShapeSettingsAdvanced.textJoinType": "조인 유형", "SSE.Views.ShapeSettingsAdvanced.textKeepRatio": "일정 비율", "SSE.Views.ShapeSettingsAdvanced.textLeft": "왼쪽", "SSE.Views.ShapeSettingsAdvanced.textLineStyle": "선 스타일", "SSE.Views.ShapeSettingsAdvanced.textMiter": "연귀", + "SSE.Views.ShapeSettingsAdvanced.textOneCell": "이동하지만 셀별로 크기 조정되지 않음", "SSE.Views.ShapeSettingsAdvanced.textOverflow": "도형 위에 텍스트 겹치기", + "SSE.Views.ShapeSettingsAdvanced.textResizeFit": "텍스트에 맞게 모양 조정", "SSE.Views.ShapeSettingsAdvanced.textRight": "오른쪽", + "SSE.Views.ShapeSettingsAdvanced.textRotation": "회전", "SSE.Views.ShapeSettingsAdvanced.textRound": "Round", "SSE.Views.ShapeSettingsAdvanced.textSize": "크기", "SSE.Views.ShapeSettingsAdvanced.textSnap": "셀 잠그기", "SSE.Views.ShapeSettingsAdvanced.textSpacing": "열 사이의 간격", "SSE.Views.ShapeSettingsAdvanced.textSquare": "Square", + "SSE.Views.ShapeSettingsAdvanced.textTextBox": "텍스트 상자", "SSE.Views.ShapeSettingsAdvanced.textTitle": "모양 - 고급 설정", "SSE.Views.ShapeSettingsAdvanced.textTop": "Top", + "SSE.Views.ShapeSettingsAdvanced.textTwoCell": "셀 이동 및 크기 조정", "SSE.Views.ShapeSettingsAdvanced.textWeightArrows": "가중치 및 화살표", "SSE.Views.ShapeSettingsAdvanced.textWidth": "폭", "SSE.Views.SignatureSettings.notcriticalErrorTitle": "경고", @@ -1659,36 +2718,133 @@ "SSE.Views.SignatureSettings.strValid": "유효 서명", "SSE.Views.SignatureSettings.txtContinueEditing": "무조건 편집", "SSE.Views.SignatureSettings.txtEditWarning": "편집은 스프레드시트에서 서명을 삭제할 것입니다.
계속하시겠습니까?", + "SSE.Views.SignatureSettings.txtRemoveWarning": "이 서명을 삭제하시겠습니까?
이 작업은 취소할 수 없습니다.", "SSE.Views.SignatureSettings.txtRequestedSignatures": "이 스프레드시트는 서명되어야 함.", "SSE.Views.SignatureSettings.txtSigned": "유효한 서명이 당 스프레드시트에 추가되었슴. 이 스프레드시트는 편집할 수 없도록 보호됨.", "SSE.Views.SignatureSettings.txtSignedInvalid": "스프레드시트에 몇 가지 디지털 서명이 유효하지 않거나 확인되지 않음. 스프레드시트는 편집할 수 없도록 보호됨.", + "SSE.Views.SlicerAddDialog.textColumns": "열", + "SSE.Views.SlicerAddDialog.txtTitle": "슬라이서 추가", + "SSE.Views.SlicerSettings.strHideNoData": "데이터가 없는 항목 숨기기", + "SSE.Views.SlicerSettings.strIndNoData": "데이터가 없는 항목을 시각적으로 표시", + "SSE.Views.SlicerSettings.strShowDel": "데이터 소스에서 삭제된 항목 표시", + "SSE.Views.SlicerSettings.strShowNoData": "마지막에 데이터가 없는 항목 표시", + "SSE.Views.SlicerSettings.textAdvanced": "고급 설정 표시", "SSE.Views.SlicerSettings.textAsc": "오름차순", - "SSE.Views.SlicerSettings.textAZ": "처음부터", + "SSE.Views.SlicerSettings.textAZ": "오름차순 A > Z", "SSE.Views.SlicerSettings.textButtons": "버튼", + "SSE.Views.SlicerSettings.textColumns": "열", + "SSE.Views.SlicerSettings.textDesc": "내림차순", + "SSE.Views.SlicerSettings.textHeight": "높이", + "SSE.Views.SlicerSettings.textHor": "수평", + "SSE.Views.SlicerSettings.textKeepRatio": "일정 비율", + "SSE.Views.SlicerSettings.textLargeSmall": "최대에서 최소로", + "SSE.Views.SlicerSettings.textLock": "크기 조정/이동 비활성화", + "SSE.Views.SlicerSettings.textNewOld": "최신에서 가장 오래된 것", + "SSE.Views.SlicerSettings.textOldNew": "오래된 것에서 최신 순으로", + "SSE.Views.SlicerSettings.textPosition": "위치", + "SSE.Views.SlicerSettings.textSize": "크기", + "SSE.Views.SlicerSettings.textStyle": "스타일", + "SSE.Views.SlicerSettings.textZA": "내림차순 Z > A", "SSE.Views.SlicerSettingsAdvanced.strButtons": "버튼", + "SSE.Views.SlicerSettingsAdvanced.strColumns": "열", + "SSE.Views.SlicerSettingsAdvanced.strHeight": "높이", + "SSE.Views.SlicerSettingsAdvanced.strHideNoData": "데이터가 없는 항목 숨기기", + "SSE.Views.SlicerSettingsAdvanced.strIndNoData": "데이터가 없는 항목을 시각적으로 표시", + "SSE.Views.SlicerSettingsAdvanced.strReferences": "레퍼런스", + "SSE.Views.SlicerSettingsAdvanced.strShowDel": "데이터 소스에서 삭제된 항목 표시", + "SSE.Views.SlicerSettingsAdvanced.strShowHeader": "제목 표시", + "SSE.Views.SlicerSettingsAdvanced.strShowNoData": "마지막에 데이터가 없는 항목 표시", + "SSE.Views.SlicerSettingsAdvanced.strSize": "크기", + "SSE.Views.SlicerSettingsAdvanced.strStyle": "스타일", + "SSE.Views.SlicerSettingsAdvanced.textAbsolute": "셀을 이동하거나 크기를 조정하지 마십시오.", "SSE.Views.SlicerSettingsAdvanced.textAlt": "대체 텍스트", + "SSE.Views.SlicerSettingsAdvanced.textAltDescription": "세부 설명", + "SSE.Views.SlicerSettingsAdvanced.textAltTip": "시력이나인지 장애가있는 사람들에게 읽을 수있는 시각적 객체 정보의 대체 텍스트 기반 표현으로 이미지에있는 정보를 더 잘 이해할 수 있도록 도와줍니다. 차트 또는 표. ", "SSE.Views.SlicerSettingsAdvanced.textAsc": "오름차순", - "SSE.Views.SlicerSettingsAdvanced.textAZ": "처음부터", + "SSE.Views.SlicerSettingsAdvanced.textAZ": "오름차순 A > Z", + "SSE.Views.SlicerSettingsAdvanced.textDesc": "내림차순", + "SSE.Views.SlicerSettingsAdvanced.textFormulaName": "수식에 사용된 이름", + "SSE.Views.SlicerSettingsAdvanced.textHeader": "머리글", + "SSE.Views.SlicerSettingsAdvanced.textKeepRatio": "일정 비율", + "SSE.Views.SlicerSettingsAdvanced.textLargeSmall": "최대에서 최소로", + "SSE.Views.SlicerSettingsAdvanced.textName": "이름", + "SSE.Views.SlicerSettingsAdvanced.textNewOld": "최신에서 가장 오래된 것", + "SSE.Views.SlicerSettingsAdvanced.textOldNew": "오래된 것에서 최신 순으로", + "SSE.Views.SlicerSettingsAdvanced.textOneCell": "이동하지만 셀별로 크기 조정되지 않음", "SSE.Views.SlicerSettingsAdvanced.textSnap": "셀 잠그기", + "SSE.Views.SlicerSettingsAdvanced.textSort": "정렬", + "SSE.Views.SlicerSettingsAdvanced.textSourceName": "소스 이름", + "SSE.Views.SlicerSettingsAdvanced.textTitle": "슬라이서-고급설정", + "SSE.Views.SlicerSettingsAdvanced.textTwoCell": "셀 이동 및 크기 조정", + "SSE.Views.SlicerSettingsAdvanced.textZA": "내림차순 Z > A", + "SSE.Views.SlicerSettingsAdvanced.txtEmpty": "이 입력란은 필수 항목입니다.", "SSE.Views.SortDialog.errorEmpty": "분류 기준에는 반드시 특정 행과 열을 지정해야 합니다.", + "SSE.Views.SortDialog.errorMoreOneCol": "여러 열이 선택되었습니다.", + "SSE.Views.SortDialog.errorMoreOneRow": "여러 행이 선택되었습니다.", "SSE.Views.SortDialog.errorSameColumnColor": " %1이 같은 색상으로 최소한 한 번 이상 분류되었습니다.
중복된 분류 기준을 삭제하시고 다시 시도하여 주시기 바랍니다.", - "SSE.Views.SortDialog.errorSameColumnValue": " %1이 중복된 값으로 한 번 이상 분류되었습니다.
중복된 분류 기준을 삭제하시고 다시 한 번 더 시도하여 주시기 바랍니다.", - "SSE.Views.SortDialog.textAdd": "레벨 추가", + "SSE.Views.SortDialog.errorSameColumnValue": "%1이 중복된 값으로 한 번 이상 분류되었습니다.
중복된 분류 기준을 삭제하시고 다시 한 번 더 시도하여 주시기 바랍니다.", + "SSE.Views.SortDialog.textAdd": "기준 추가", "SSE.Views.SortDialog.textAsc": "오름차순", "SSE.Views.SortDialog.textAuto": "자동", - "SSE.Views.SortDialog.textAZ": "처음부터", + "SSE.Views.SortDialog.textAZ": "오름차순 A > Z", "SSE.Views.SortDialog.textBelow": "아래", "SSE.Views.SortDialog.textCellColor": "셀 색상", + "SSE.Views.SortDialog.textColumn": "열", + "SSE.Views.SortDialog.textCopy": "기준 복사", + "SSE.Views.SortDialog.textDelete": "기준 삭제", + "SSE.Views.SortDialog.textDesc": "내림차순", + "SSE.Views.SortDialog.textDown": "레벨 아래로 이동", + "SSE.Views.SortDialog.textFontColor": "글꼴 색", + "SSE.Views.SortDialog.textLeft": "왼쪽", "SSE.Views.SortDialog.textMoreCols": "(다른 행들...)", "SSE.Views.SortDialog.textMoreRows": "(다른 열들...)", - "SSE.Views.SortFilterDialog.textAsc": "오름차순 (자음순) ", + "SSE.Views.SortDialog.textNone": "없음", + "SSE.Views.SortDialog.textOptions": "옵션...", + "SSE.Views.SortDialog.textOrder": "순서", + "SSE.Views.SortDialog.textRight": "오른쪽", + "SSE.Views.SortDialog.textRow": "행", + "SSE.Views.SortDialog.textSortBy": "정렬 기준", + "SSE.Views.SortDialog.textUp": "레벨 위로 이동", + "SSE.Views.SortDialog.textValues": "값", + "SSE.Views.SortDialog.textZA": "내림차순 Z > A", + "SSE.Views.SortDialog.txtInvalidRange": "유효하지 않은 셀 범위.", + "SSE.Views.SortDialog.txtTitle": "정렬", + "SSE.Views.SortFilterDialog.textAsc": "오름차순 (A > Z) ", + "SSE.Views.SortFilterDialog.textDesc": "내림차순 (Z > A)", + "SSE.Views.SortFilterDialog.txtTitle": "정렬", "SSE.Views.SortOptionsDialog.textCase": "대소문자 구별", + "SSE.Views.SortOptionsDialog.textHeaders": "내 데이터에 제목이 있습니다.", + "SSE.Views.SortOptionsDialog.textOrientation": "방향", + "SSE.Views.SortOptionsDialog.textTitle": "정렬 옵션", "SSE.Views.SpecialPasteDialog.textAdd": "추가", "SSE.Views.SpecialPasteDialog.textAll": "모든", + "SSE.Views.SpecialPasteDialog.textColWidth": "열 너비", + "SSE.Views.SpecialPasteDialog.textComments": "코멘트", + "SSE.Views.SpecialPasteDialog.textDiv": "배분", + "SSE.Views.SpecialPasteDialog.textFFormat": "수식 및 서식", + "SSE.Views.SpecialPasteDialog.textFNFormat": "수식 및 숫자 형식", + "SSE.Views.SpecialPasteDialog.textFormats": "서식", + "SSE.Views.SpecialPasteDialog.textFormulas": "수식", + "SSE.Views.SpecialPasteDialog.textFWidth": "수식 및 열 너비", + "SSE.Views.SpecialPasteDialog.textMult": "곱셈", + "SSE.Views.SpecialPasteDialog.textNone": "없음", + "SSE.Views.SpecialPasteDialog.textOperation": "동작", + "SSE.Views.SpecialPasteDialog.textPaste": "붙여 넣기", + "SSE.Views.SpecialPasteDialog.textTitle": "특수기호 붙이기", + "SSE.Views.SpecialPasteDialog.textValues": "값", + "SSE.Views.SpecialPasteDialog.textVFormat": "값 및 형식", + "SSE.Views.SpecialPasteDialog.textVNFormat": "값 및 숫자 형식", "SSE.Views.SpecialPasteDialog.textWBorders": "외곽선만", + "SSE.Views.Spellcheck.noSuggestions": "맞춤법 제안 없음", "SSE.Views.Spellcheck.textChange": "변경", "SSE.Views.Spellcheck.textChangeAll": "전체 변경", + "SSE.Views.Spellcheck.textIgnore": "무시", + "SSE.Views.Spellcheck.textIgnoreAll": "모두 무시", "SSE.Views.Spellcheck.txtAddToDictionary": "사용자 정의 사전에 추가", + "SSE.Views.Spellcheck.txtComplete": "맞춤법 검사 완료", + "SSE.Views.Spellcheck.txtDictionaryLanguage": "사전 언어", + "SSE.Views.Spellcheck.txtNextTip": "다음 단어로 이동", + "SSE.Views.Spellcheck.txtSpelling": "스펠링", "SSE.Views.Statusbar.CopyDialog.itemCopyToEnd": "(끝으로 복사)", "SSE.Views.Statusbar.CopyDialog.itemMoveToEnd": "(끝으로 이동)", "SSE.Views.Statusbar.CopyDialog.textCopyBefore": "시트 이전에 복사", @@ -1697,35 +2853,45 @@ "SSE.Views.Statusbar.filteredText": "필터 모드", "SSE.Views.Statusbar.itemAverage": "평균", "SSE.Views.Statusbar.itemCopy": "복사", + "SSE.Views.Statusbar.itemCount": "계산", "SSE.Views.Statusbar.itemDelete": "삭제", "SSE.Views.Statusbar.itemHidden": "숨김", "SSE.Views.Statusbar.itemHide": "숨기기", "SSE.Views.Statusbar.itemInsert": "삽입", + "SSE.Views.Statusbar.itemMaximum": "최대값", + "SSE.Views.Statusbar.itemMinimum": "최소값", "SSE.Views.Statusbar.itemMove": "이동", + "SSE.Views.Statusbar.itemProtect": "보호", "SSE.Views.Statusbar.itemRename": "이름 바꾸기", + "SSE.Views.Statusbar.itemSum": "합계", "SSE.Views.Statusbar.itemTabColor": "탭 색상", "SSE.Views.Statusbar.RenameDialog.errNameExists": "같은 이름의 워크 시트가 이미 있습니다.", "SSE.Views.Statusbar.RenameDialog.errNameWrongChar": "시트 이름에는 \\/ *? [] :", "SSE.Views.Statusbar.RenameDialog.labelSheetName": "시트 이름", + "SSE.Views.Statusbar.selectAllSheets": "모든 워크시트 선택", "SSE.Views.Statusbar.textAverage": "AVERAGE", "SSE.Views.Statusbar.textCount": "COUNT", + "SSE.Views.Statusbar.textMax": "최대", + "SSE.Views.Statusbar.textMin": "최소", "SSE.Views.Statusbar.textNewColor": "새 사용자 정의 색상 추가", "SSE.Views.Statusbar.textNoColor": "색상 없음", - "SSE.Views.Statusbar.textSum": "SUM", + "SSE.Views.Statusbar.textSum": "합계", "SSE.Views.Statusbar.tipAddTab": "워크 시트 추가", "SSE.Views.Statusbar.tipFirst": "첫 번째 시트로 스크롤", "SSE.Views.Statusbar.tipLast": "마지막 시트로 스크롤", "SSE.Views.Statusbar.tipNext": "오른쪽 스크롤 목록", "SSE.Views.Statusbar.tipPrev": "왼쪽으로 스크롤 목록", - "SSE.Views.Statusbar.tipZoomFactor": "확대 / 축소", + "SSE.Views.Statusbar.tipZoomFactor": "확대/축소", "SSE.Views.Statusbar.tipZoomIn": "확대", "SSE.Views.Statusbar.tipZoomOut": "축소", - "SSE.Views.Statusbar.zoomText": "확대 / 축소 {0} %", + "SSE.Views.Statusbar.ungroupSheets": "시트 그룹 해제", + "SSE.Views.Statusbar.zoomText": "확대/축소 {0} %", "SSE.Views.TableOptionsDialog.errorAutoFilterDataRange": "선택한 셀 범위에서 작업을 수행 할 수 없습니다.
기존 데이터 범위와 다른 데이터 범위를 선택하고 다시 시도하십시오.", "SSE.Views.TableOptionsDialog.errorFTChangeTableRangeError": "선택한 셀 범위에 대해 작업을 완료 할 수 없습니다.
첫 번째 테이블 행이 같은 행에 있고 결과 테이블이 현재 테이블과 겹치도록 범위를 선택하십시오. . ", "SSE.Views.TableOptionsDialog.errorFTRangeIncludedOtherTables": "선택한 셀 범위에 대해 작업을 완료 할 수 없습니다.
다른 테이블을 포함하지 않는 범위를 선택하십시오.", + "SSE.Views.TableOptionsDialog.errorMultiCellFormula": "다중 셀 배열 수식은 테이블에서 허용되지 않습니다.", "SSE.Views.TableOptionsDialog.txtEmpty": "이 입력란은 필수 항목", - "SSE.Views.TableOptionsDialog.txtFormat": "테이블 만들기", + "SSE.Views.TableOptionsDialog.txtFormat": "표 만들기", "SSE.Views.TableOptionsDialog.txtInvalidRange": "오류! 셀 범위가 잘못되었습니다.", "SSE.Views.TableOptionsDialog.txtTitle": "Title", "SSE.Views.TableSettings.deleteColumnText": "열 삭제", @@ -1754,13 +2920,16 @@ "SSE.Views.TableSettings.textIsLocked": "이 요소는 다른 사용자가 편집하고 있습니다.", "SSE.Views.TableSettings.textLast": "Last", "SSE.Views.TableSettings.textLongOperation": "긴 작업", + "SSE.Views.TableSettings.textPivot": "피벗 테이블 삽입", + "SSE.Views.TableSettings.textRemDuplicates": "중복된 항목 제거", "SSE.Views.TableSettings.textReservedName": "사용하려는 이름이 이미 셀 수식에서 참조되어 있습니다. 다른 이름을 사용하십시오.", "SSE.Views.TableSettings.textResize": "크기 조정 테이블", "SSE.Views.TableSettings.textRows": "행", "SSE.Views.TableSettings.textSelectData": "데이터 선택", + "SSE.Views.TableSettings.textSlicer": "슬라이서추가", "SSE.Views.TableSettings.textTableName": "테이블 이름", "SSE.Views.TableSettings.textTemplate": "템플릿에서 선택", - "SSE.Views.TableSettings.textTotal": "Total", + "SSE.Views.TableSettings.textTotal": "요약 행", "SSE.Views.TableSettings.warnLongOperation": "수행하려는 작업이 완료하는 데 시간이 오래 걸릴 수 있습니다. 계속 하시겠습니까?", "SSE.Views.TableSettingsAdvanced.textAlt": "대체 텍스트", "SSE.Views.TableSettingsAdvanced.textAltDescription": "설명", @@ -1773,10 +2942,11 @@ "SSE.Views.TextArtSettings.strForeground": "전경색", "SSE.Views.TextArtSettings.strPattern": "패턴", "SSE.Views.TextArtSettings.strSize": "크기", - "SSE.Views.TextArtSettings.strStroke": "Stroke", - "SSE.Views.TextArtSettings.strTransparency": "불투명도", + "SSE.Views.TextArtSettings.strStroke": "선", + "SSE.Views.TextArtSettings.strTransparency": "투명도", "SSE.Views.TextArtSettings.strType": "유형", - "SSE.Views.TextArtSettings.textBorderSizeErr": "입력 한 값이 잘못되었습니다.
0pt ~ 1584pt 사이의 값을 입력하십시오.", + "SSE.Views.TextArtSettings.textAngle": "각도", + "SSE.Views.TextArtSettings.textBorderSizeErr": "입력 한 값이 잘못되었습니다.
0 ~ 1584pt 사이의 값을 입력하십시오.", "SSE.Views.TextArtSettings.textColor": "색상 채우기", "SSE.Views.TextArtSettings.textDirection": "Direction", "SSE.Views.TextArtSettings.textEmptyPattern": "패턴 없음", @@ -1788,6 +2958,7 @@ "SSE.Views.TextArtSettings.textLinear": "선형", "SSE.Views.TextArtSettings.textNoFill": "채우기 없음", "SSE.Views.TextArtSettings.textPatternFill": "패턴", + "SSE.Views.TextArtSettings.textPosition": "위치", "SSE.Views.TextArtSettings.textRadial": "방사형", "SSE.Views.TextArtSettings.textSelectTexture": "선택", "SSE.Views.TextArtSettings.textStretch": "늘이기", @@ -1796,6 +2967,8 @@ "SSE.Views.TextArtSettings.textTexture": "텍스처에서", "SSE.Views.TextArtSettings.textTile": "타일", "SSE.Views.TextArtSettings.textTransform": "변형", + "SSE.Views.TextArtSettings.tipAddGradientPoint": "그라데이션 포인트 추가", + "SSE.Views.TextArtSettings.tipRemoveGradientPoint": "그라데이션 포인트 제거", "SSE.Views.TextArtSettings.txtBrownPaper": "갈색 종이", "SSE.Views.TextArtSettings.txtCanvas": "Canvas", "SSE.Views.TextArtSettings.txtCarton": "Carton", @@ -1809,17 +2982,30 @@ "SSE.Views.TextArtSettings.txtPapyrus": "Papyrus", "SSE.Views.TextArtSettings.txtWood": "나무", "SSE.Views.Toolbar.capBtnAddComment": "주석 추가", + "SSE.Views.Toolbar.capBtnColorSchemas": "색상 코드", "SSE.Views.Toolbar.capBtnComment": "코멘트", + "SSE.Views.Toolbar.capBtnInsHeader": "머리말/꼬리말", + "SSE.Views.Toolbar.capBtnInsSlicer": "슬라이서", + "SSE.Views.Toolbar.capBtnInsSymbol": "기호", + "SSE.Views.Toolbar.capBtnMargins": "여백", + "SSE.Views.Toolbar.capBtnPageOrient": "방향", + "SSE.Views.Toolbar.capBtnPageSize": "크기", + "SSE.Views.Toolbar.capBtnPrintArea": "인쇄 영역", + "SSE.Views.Toolbar.capBtnPrintTitles": "제목 인쇄", "SSE.Views.Toolbar.capImgAlign": "정렬", + "SSE.Views.Toolbar.capImgBackward": "뒤로 이동", "SSE.Views.Toolbar.capImgForward": "앞으로 이동", + "SSE.Views.Toolbar.capImgGroup": "그룹", "SSE.Views.Toolbar.capInsertChart": "차트", "SSE.Views.Toolbar.capInsertEquation": "수식", "SSE.Views.Toolbar.capInsertHyperlink": "하이퍼 링크", "SSE.Views.Toolbar.capInsertImage": "그림", "SSE.Views.Toolbar.capInsertShape": "쉐이프", + "SSE.Views.Toolbar.capInsertSpark": "스파크라인", "SSE.Views.Toolbar.capInsertTable": "테이블", - "SSE.Views.Toolbar.capInsertText": "텍스트 박스", + "SSE.Views.Toolbar.capInsertText": "텍스트 상자", "SSE.Views.Toolbar.mniImageFromFile": "파일에서 그림", + "SSE.Views.Toolbar.mniImageFromStorage": "스토리지에서 불러오기", "SSE.Views.Toolbar.mniImageFromUrl": "URL에서 그림", "SSE.Views.Toolbar.textAddPrintArea": "인쇄 영역에 추가", "SSE.Views.Toolbar.textAlignBottom": "아래쪽 정렬", @@ -1831,48 +3017,78 @@ "SSE.Views.Toolbar.textAlignTop": "Align Top", "SSE.Views.Toolbar.textAllBorders": "모든 테두리", "SSE.Views.Toolbar.textAuto": "자동", + "SSE.Views.Toolbar.textAutoColor": "자동", "SSE.Views.Toolbar.textBold": "Bold", "SSE.Views.Toolbar.textBordersColor": "테두리 색상", "SSE.Views.Toolbar.textBordersStyle": "테두리 스타일", "SSE.Views.Toolbar.textBottom": "바닥:", "SSE.Views.Toolbar.textBottomBorders": "Bottom Borders", "SSE.Views.Toolbar.textCenterBorders": "내부 세로 테두리", - "SSE.Views.Toolbar.textClockwise": "시계 방향으로 각도", + "SSE.Views.Toolbar.textClearPrintArea": "인쇄 영역 해제", + "SSE.Views.Toolbar.textClearRule": "규칙 제거", + "SSE.Views.Toolbar.textClockwise": "시계 방향으로 회전", + "SSE.Views.Toolbar.textColorScales": "색상 코드", "SSE.Views.Toolbar.textCounterCw": "시계 반대 방향 각도", + "SSE.Views.Toolbar.textDataBars": "데이터 막대", "SSE.Views.Toolbar.textDelLeft": "셀 왼쪽으로 시프트", "SSE.Views.Toolbar.textDelUp": "셀 이동", "SSE.Views.Toolbar.textDiagDownBorder": "대각선 아래쪽 테두리", - "SSE.Views.Toolbar.textDiagUpBorder": "Diagonal Up Border", + "SSE.Views.Toolbar.textDiagUpBorder": "대각선 위쪽 테두리", "SSE.Views.Toolbar.textEntireCol": "전체 열", "SSE.Views.Toolbar.textEntireRow": "전체 행", + "SSE.Views.Toolbar.textFewPages": "페이지", + "SSE.Views.Toolbar.textHeight": "높이", "SSE.Views.Toolbar.textHorizontal": "가로 텍스트", "SSE.Views.Toolbar.textInsDown": "셀을 아래로 이동", "SSE.Views.Toolbar.textInsideBorders": "테두리 안에", "SSE.Views.Toolbar.textInsRight": "셀 오른쪽으로 이동", "SSE.Views.Toolbar.textItalic": "Italic", + "SSE.Views.Toolbar.textItems": "아이템", + "SSE.Views.Toolbar.textLandscape": "수평", + "SSE.Views.Toolbar.textLeft": "왼쪽 :", "SSE.Views.Toolbar.textLeftBorders": "왼쪽 테두리", + "SSE.Views.Toolbar.textManageRule": "관리 규칙", + "SSE.Views.Toolbar.textManyPages": "페이지", + "SSE.Views.Toolbar.textMarginsLast": "마지막 사용자 정의", + "SSE.Views.Toolbar.textMarginsNarrow": "좁다", + "SSE.Views.Toolbar.textMarginsNormal": "일반", "SSE.Views.Toolbar.textMiddleBorders": "내부 수평 테두리", "SSE.Views.Toolbar.textMoreFormats": "기타 형식", + "SSE.Views.Toolbar.textMorePages": "더 많은 페이지", "SSE.Views.Toolbar.textNewColor": "새 사용자 지정 색 추가", + "SSE.Views.Toolbar.textNewRule": "새로운 규칙", "SSE.Views.Toolbar.textNoBorders": "테두리 없음", + "SSE.Views.Toolbar.textOnePage": "페이지", "SSE.Views.Toolbar.textOutBorders": "테두리 밖", + "SSE.Views.Toolbar.textPageMarginsCustom": "사용자 정의 여백", + "SSE.Views.Toolbar.textPortrait": "세로", "SSE.Views.Toolbar.textPrint": "인쇄", "SSE.Views.Toolbar.textPrintOptions": "인쇄 설정", + "SSE.Views.Toolbar.textRight": "오른쪽 :", "SSE.Views.Toolbar.textRightBorders": "오른쪽 테두리", "SSE.Views.Toolbar.textRotateDown": "텍스트 아래로 회전", "SSE.Views.Toolbar.textRotateUp": "텍스트 회전", - "SSE.Views.Toolbar.textStrikeout": "줄긋기", + "SSE.Views.Toolbar.textScale": "크기", + "SSE.Views.Toolbar.textScaleCustom": "사용자 정의", + "SSE.Views.Toolbar.textSelection": "현재 선택 고정", + "SSE.Views.Toolbar.textStrikeout": "취소선", "SSE.Views.Toolbar.textSubscript": "첨자", "SSE.Views.Toolbar.textSubSuperscript": "첨자/위에 쓴", "SSE.Views.Toolbar.textSuperscript": "위에 쓴", "SSE.Views.Toolbar.textTabCollaboration": "합치기", + "SSE.Views.Toolbar.textTabData": "데이터", "SSE.Views.Toolbar.textTabFile": "파일", + "SSE.Views.Toolbar.textTabFormula": "수식", "SSE.Views.Toolbar.textTabHome": "홈", "SSE.Views.Toolbar.textTabInsert": "삽입", + "SSE.Views.Toolbar.textTabLayout": "레이아웃", "SSE.Views.Toolbar.textTabProtect": "보호", + "SSE.Views.Toolbar.textThisPivot": "피벗 테이블로 부터", + "SSE.Views.Toolbar.textThisSheet": "워크시트로 부터", + "SSE.Views.Toolbar.textThisTable": "표로 부터", "SSE.Views.Toolbar.textTopBorders": "위쪽 테두리", "SSE.Views.Toolbar.textUnderline": "밑줄", - "SSE.Views.Toolbar.textZoom": "확대 / 축소", + "SSE.Views.Toolbar.textZoom": "확대/축소", "SSE.Views.Toolbar.tipAlignBottom": "아래쪽 정렬", "SSE.Views.Toolbar.tipAlignCenter": "정렬 센터", "SSE.Views.Toolbar.tipAlignJust": "Justified", @@ -1887,20 +3103,25 @@ "SSE.Views.Toolbar.tipChangeChart": "차트 유형 변경", "SSE.Views.Toolbar.tipClearStyle": "지우기", "SSE.Views.Toolbar.tipColorSchemas": "Change Color Scheme", + "SSE.Views.Toolbar.tipCondFormat": "조건부 서식", "SSE.Views.Toolbar.tipCopy": "복사", "SSE.Views.Toolbar.tipCopyStyle": "스타일 복사", - "SSE.Views.Toolbar.tipDecDecimal": "Decimal Decimal", + "SSE.Views.Toolbar.tipDecDecimal": "자리수 줄임", "SSE.Views.Toolbar.tipDecFont": "글꼴 크기 감소", "SSE.Views.Toolbar.tipDeleteOpt": "셀 삭제", - "SSE.Views.Toolbar.tipDigStyleAccounting": "회계 스타일", + "SSE.Views.Toolbar.tipDigStyleAccounting": "회계 표시 형식", "SSE.Views.Toolbar.tipDigStyleCurrency": "통화 스타일", - "SSE.Views.Toolbar.tipDigStylePercent": "퍼센트 스타일", + "SSE.Views.Toolbar.tipDigStylePercent": "백분율 스타일", "SSE.Views.Toolbar.tipEditChart": "차트 편집", + "SSE.Views.Toolbar.tipEditChartData": "데이터 선택", + "SSE.Views.Toolbar.tipEditChartType": "차트 유형 변경", + "SSE.Views.Toolbar.tipEditHeader": "머리글 또는 바닥 글 편집", "SSE.Views.Toolbar.tipFontColor": "글꼴 색", "SSE.Views.Toolbar.tipFontName": "글꼴", "SSE.Views.Toolbar.tipFontSize": "글꼴 크기", "SSE.Views.Toolbar.tipImgAlign": "오브젝트 정렬", - "SSE.Views.Toolbar.tipIncDecimal": "10 진수 증가", + "SSE.Views.Toolbar.tipImgGroup": "개체를 그룹화", + "SSE.Views.Toolbar.tipIncDecimal": "자리수 늘림", "SSE.Views.Toolbar.tipIncFont": "글꼴 크기 증가", "SSE.Views.Toolbar.tipInsertChart": "차트 삽입", "SSE.Views.Toolbar.tipInsertChartSpark": "차트 또는 스파크 라인 삽입", @@ -1909,16 +3130,26 @@ "SSE.Views.Toolbar.tipInsertImage": "그림 삽입", "SSE.Views.Toolbar.tipInsertOpt": "셀 삽입", "SSE.Views.Toolbar.tipInsertShape": "도형 삽입", + "SSE.Views.Toolbar.tipInsertSlicer": "슬라이서추가", + "SSE.Views.Toolbar.tipInsertSpark": "스파크라인 삽입", + "SSE.Views.Toolbar.tipInsertSymbol": "기호 삽입", + "SSE.Views.Toolbar.tipInsertTable": "표 삽입", "SSE.Views.Toolbar.tipInsertText": "텍스트 상자 삽입", "SSE.Views.Toolbar.tipInsertTextart": "텍스트 아트 삽입", - "SSE.Views.Toolbar.tipMerge": "Merge", + "SSE.Views.Toolbar.tipMerge": "병합하고 가운데 맞춤", "SSE.Views.Toolbar.tipNumFormat": "숫자 형식", + "SSE.Views.Toolbar.tipPageMargins": "페이지 여백", + "SSE.Views.Toolbar.tipPageOrient": "페이지 방향", + "SSE.Views.Toolbar.tipPageSize": "페이지 크기", "SSE.Views.Toolbar.tipPaste": "붙여 넣기", "SSE.Views.Toolbar.tipPrColor": "배경색", "SSE.Views.Toolbar.tipPrint": "인쇄", + "SSE.Views.Toolbar.tipPrintArea": "인쇄 영역", + "SSE.Views.Toolbar.tipPrintTitles": "제목 인쇄", "SSE.Views.Toolbar.tipRedo": "Redo", "SSE.Views.Toolbar.tipSave": "저장", "SSE.Views.Toolbar.tipSaveCoauth": "다른 사용자가 볼 수 있도록 변경 사항을 저장하십시오.", + "SSE.Views.Toolbar.tipSendBackward": "뒤로 이동", "SSE.Views.Toolbar.tipSendForward": "앞으로 이동", "SSE.Views.Toolbar.tipSynchronize": "다른 사용자가 문서를 변경했습니다. 변경 사항을 저장하고 업데이트를 다시로드하려면 클릭하십시오.", "SSE.Views.Toolbar.tipTextOrientation": "Orientation", @@ -1939,12 +3170,12 @@ "SSE.Views.Toolbar.txtDate": "날짜", "SSE.Views.Toolbar.txtDateTime": "날짜 및 시간", "SSE.Views.Toolbar.txtDescending": "내림차순", - "SSE.Views.Toolbar.txtDollar": "$ Dollar", - "SSE.Views.Toolbar.txtEuro": "?? 유로", + "SSE.Views.Toolbar.txtDollar": "$ 영어 (미국)", + "SSE.Views.Toolbar.txtEuro": "€ 유로 (€123)", "SSE.Views.Toolbar.txtExp": "지수", "SSE.Views.Toolbar.txtFilter": "필터", "SSE.Views.Toolbar.txtFormula": "함수 삽입", - "SSE.Views.Toolbar.txtFraction": "Fraction", + "SSE.Views.Toolbar.txtFraction": "분수", "SSE.Views.Toolbar.txtFranc": "CHF Swiss franc", "SSE.Views.Toolbar.txtGeneral": "일반", "SSE.Views.Toolbar.txtInteger": "정수", @@ -1958,8 +3189,8 @@ "SSE.Views.Toolbar.txtNumber": "Number", "SSE.Views.Toolbar.txtPasteRange": "붙여 넣기 이름", "SSE.Views.Toolbar.txtPercentage": "백분율", - "SSE.Views.Toolbar.txtPound": "파운드", - "SSE.Views.Toolbar.txtRouble": "루블", + "SSE.Views.Toolbar.txtPound": "£ 영어 (영국)", + "SSE.Views.Toolbar.txtRouble": "₽ 러시아어", "SSE.Views.Toolbar.txtScheme1": "Office", "SSE.Views.Toolbar.txtScheme10": "중앙값", "SSE.Views.Toolbar.txtScheme11": "Metro", @@ -1974,6 +3205,7 @@ "SSE.Views.Toolbar.txtScheme2": "Grayscale", "SSE.Views.Toolbar.txtScheme20": "Urban", "SSE.Views.Toolbar.txtScheme21": "Verve", + "SSE.Views.Toolbar.txtScheme22": "신규 오피스", "SSE.Views.Toolbar.txtScheme3": "Apex", "SSE.Views.Toolbar.txtScheme4": "Aspect", "SSE.Views.Toolbar.txtScheme5": "Civic", @@ -1984,23 +3216,77 @@ "SSE.Views.Toolbar.txtScientific": "Scientific", "SSE.Views.Toolbar.txtSearch": "검색", "SSE.Views.Toolbar.txtSort": "정렬", - "SSE.Views.Toolbar.txtSortAZ": "오름차순 정렬", - "SSE.Views.Toolbar.txtSortZA": "내림차순 정렬", + "SSE.Views.Toolbar.txtSortAZ": "텍스트 오름차순 정렬", + "SSE.Views.Toolbar.txtSortZA": "텍스트 내림차순 정렬", "SSE.Views.Toolbar.txtSpecial": "Special", "SSE.Views.Toolbar.txtTableTemplate": "표 템플릿으로 서식 지정", "SSE.Views.Toolbar.txtText": "텍스트", "SSE.Views.Toolbar.txtTime": "시간", "SSE.Views.Toolbar.txtUnmerge": "셀 병합 해제", - "SSE.Views.Toolbar.txtYen": "¥ Yen", + "SSE.Views.Toolbar.txtYen": "¥ 일본어", "SSE.Views.Top10FilterDialog.textType": "표시", "SSE.Views.Top10FilterDialog.txtBottom": "Bottom", "SSE.Views.Top10FilterDialog.txtBy": "~로", "SSE.Views.Top10FilterDialog.txtItems": "Item", "SSE.Views.Top10FilterDialog.txtPercent": "백분율", + "SSE.Views.Top10FilterDialog.txtSum": "합계", "SSE.Views.Top10FilterDialog.txtTitle": "Top 10 AutoFilter", "SSE.Views.Top10FilterDialog.txtTop": "Top", "SSE.Views.ValueFieldSettingsDialog.txtAverage": "평균", "SSE.Views.ValueFieldSettingsDialog.txtBaseField": "기본 필드", "SSE.Views.ValueFieldSettingsDialog.txtBaseItem": "기본 항목", - "SSE.Views.ValueFieldSettingsDialog.txtByField": "%2의 %1" + "SSE.Views.ValueFieldSettingsDialog.txtByField": "%2의 %1", + "SSE.Views.ValueFieldSettingsDialog.txtCount": "계산", + "SSE.Views.ValueFieldSettingsDialog.txtCountNums": "수를 집계", + "SSE.Views.ValueFieldSettingsDialog.txtCustomName": "사용자 정의 이름", + "SSE.Views.ValueFieldSettingsDialog.txtIndex": "색인", + "SSE.Views.ValueFieldSettingsDialog.txtMax": "최대", + "SSE.Views.ValueFieldSettingsDialog.txtMin": "최소", + "SSE.Views.ValueFieldSettingsDialog.txtNormal": "계산되지 않음", + "SSE.Views.ValueFieldSettingsDialog.txtPercent": "백분율", + "SSE.Views.ValueFieldSettingsDialog.txtPercentDiff": "%의 차이", + "SSE.Views.ValueFieldSettingsDialog.txtPercentOfCol": "열 백분율", + "SSE.Views.ValueFieldSettingsDialog.txtPercentOfRow": "전체 백분율", + "SSE.Views.ValueFieldSettingsDialog.txtPercentOfTotal": "행 백분율", + "SSE.Views.ValueFieldSettingsDialog.txtProduct": "제품", + "SSE.Views.ValueFieldSettingsDialog.txtShowAs": "표시된 값은", + "SSE.Views.ValueFieldSettingsDialog.txtSourceName": "소스 이름:", + "SSE.Views.ValueFieldSettingsDialog.txtSum": "합계", + "SSE.Views.ViewManagerDlg.closeButtonText": "닫기", + "SSE.Views.ViewManagerDlg.guestText": "게스트", + "SSE.Views.ViewManagerDlg.textDelete": "삭제", + "SSE.Views.ViewManagerDlg.textDuplicate": "중복", + "SSE.Views.ViewManagerDlg.textEmpty": "아직 생성된 보기가 없습니다.", + "SSE.Views.ViewManagerDlg.textGoTo": "보기로 이동", + "SSE.Views.ViewManagerDlg.textLongName": "128자 미만의 이름을 입력하세요.", + "SSE.Views.ViewManagerDlg.textNew": "새로만들기", + "SSE.Views.ViewManagerDlg.textRename": "이름 바꾸기", + "SSE.Views.ViewManagerDlg.textRenameError": "보기 이름은 비워둘 수 없습니다.", + "SSE.Views.ViewManagerDlg.textRenameLabel": "보기 이름 바꾸기", + "SSE.Views.ViewManagerDlg.tipIsLocked": "이 요소는 다른 사용자가 편집하고 있습니다.", + "SSE.Views.ViewTab.capBtnFreeze": "창 고정", + "SSE.Views.ViewTab.textClose": "닫기", + "SSE.Views.ViewTab.textCreate": "새로만들기", + "SSE.Views.ViewTab.textDefault": "기본", + "SSE.Views.ViewTab.textFormula": "수식 입력줄", + "SSE.Views.ViewTab.textFreezeCol": "첫 번째 열 고정", + "SSE.Views.ViewTab.textFreezeRow": "첫 번째 행 고정", + "SSE.Views.ViewTab.textGridlines": "눈금선", + "SSE.Views.ViewTab.textHeadings": "제목", + "SSE.Views.ViewTab.textZoom": "확대/축소", + "SSE.Views.ViewTab.tipClose": "워크 시트 닫기", + "SSE.Views.ViewTab.tipCreate": "시트보기를 만들기", + "SSE.Views.ViewTab.tipFreeze": "창 고정", + "SSE.Views.WBProtection.hintAllowRanges": "허용 범위 편집", + "SSE.Views.WBProtection.hintProtectSheet": "시트 보호", + "SSE.Views.WBProtection.hintProtectWB": "통합 문서 보호", + "SSE.Views.WBProtection.txtAllowRanges": "허용 범위 편집", + "SSE.Views.WBProtection.txtHiddenFormula": "수식 숨기기", + "SSE.Views.WBProtection.txtLockedCell": "셀 잠금", + "SSE.Views.WBProtection.txtLockedText": "텍스트 잠금", + "SSE.Views.WBProtection.txtProtectSheet": "시트 보호", + "SSE.Views.WBProtection.txtProtectWB": "통합 문서 보호", + "SSE.Views.WBProtection.txtSheetUnlockDescription": "양식 보호를 해제하려면 비밀번호를 입력하세요.", + "SSE.Views.WBProtection.txtWBUnlockDescription": "통합 문서 보호를 해제하려면 비밀번호를 입력하세요.", + "SSE.Views.WBProtection.txtWBUnlockTitle": "통합 문서 보호 잠금 해제" } \ No newline at end of file From 25211930238a6be7ed5595d316000426218f06ac Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Fri, 1 Oct 2021 14:43:53 +0300 Subject: [PATCH 10/67] [Mobile] Update translation --- apps/documenteditor/mobile/locale/fr.json | 32 +- apps/documenteditor/mobile/locale/ko.json | 1054 ++++++++--------- apps/documenteditor/mobile/locale/zh.json | 174 +-- apps/presentationeditor/mobile/locale/fr.json | 4 +- apps/presentationeditor/mobile/locale/ko.json | 728 ++++++------ apps/spreadsheeteditor/mobile/locale/fr.json | 34 +- apps/spreadsheeteditor/mobile/locale/ko.json | 394 +++--- apps/spreadsheeteditor/mobile/locale/zh.json | 10 +- 8 files changed, 1215 insertions(+), 1215 deletions(-) diff --git a/apps/documenteditor/mobile/locale/fr.json b/apps/documenteditor/mobile/locale/fr.json index 3749ec187..30b4f25ff 100644 --- a/apps/documenteditor/mobile/locale/fr.json +++ b/apps/documenteditor/mobile/locale/fr.json @@ -122,6 +122,7 @@ "textNot": "Non", "textNoWidow": "Pas de contrôle des veuves", "textNum": "Changer la numérotation", + "textOk": "Ok", "textOriginal": "Original", "textParaDeleted": "Paragraphe supprimé", "textParaFormatted": "Paragraphe formaté", @@ -154,8 +155,7 @@ "textTryUndoRedo": "Les fonctions Annuler/Rétablir sont désactivées pour le mode de co-édition rapide.", "textUnderline": "Souligné", "textUsers": "Utilisateurs", - "textWidow": "Contrôle des veuves", - "textOk": "Ok" + "textWidow": "Contrôle des veuves" }, "ThemeColorPalette": { "textCustomColors": "Couleurs personnalisées", @@ -168,28 +168,28 @@ "menuAddComment": "Ajouter un commentaire", "menuAddLink": "Ajouter un lien", "menuCancel": "Annuler", + "menuContinueNumbering": "Continuer la numérotation", "menuDelete": "Supprimer", "menuDeleteTable": "Supprimer le tableau", "menuEdit": "Modifier", + "menuJoinList": "Joindre à la liste précédente", "menuMerge": "Fusionner", "menuMore": "Plus", "menuOpenLink": "Ouvrir le lien", "menuReview": "Révision", "menuReviewChange": "Réviser modifications", + "menuSeparateList": "Séparer la liste", "menuSplit": "Fractionner", + "menuStartNewList": "Commencer une nouvelle liste", + "menuStartNumberingFrom": "Fixer la valeur initiale", "menuViewComment": "Voir le commentaire", + "textCancel": "Annuler", "textColumns": "Colonnes", "textCopyCutPasteActions": "Fonctions de Copier, Couper et Coller", "textDoNotShowAgain": "Ne plus afficher", - "textRows": "Lignes", - "menuContinueNumbering": "Continue numbering", - "menuJoinList": "Join to previous list", - "menuSeparateList": "Separate list", - "menuStartNewList": "Start new list", - "menuStartNumberingFrom": "Set numbering value", - "textCancel": "Cancel", - "textNumberingValue": "Numbering Value", - "textOk": "OK" + "textNumberingValue": "Valeur de numérotation", + "textOk": "Ok", + "textRows": "Lignes" }, "Edit": { "notcriticalErrorTitle": "Avertissement", @@ -491,6 +491,8 @@ "textCancel": "Annuler", "textCaseSensitive": "Sensible à la casse", "textCentimeter": "Centimètre", + "textChooseEncoding": "Choisir l'encodage", + "textChooseTxtOptions": "Choisir les options TXT", "textCollaboration": "Collaboration", "textColorSchemes": "Jeux de couleurs", "textComment": "Commentaire", @@ -554,7 +556,9 @@ "textTop": "En haut", "textUnitOfMeasurement": "Unité de mesure", "textUploaded": "Chargé", + "txtDownloadTxt": "Télécharger le TXT", "txtIncorrectPwd": "Mot de passe incorrect", + "txtOk": "Ok", "txtProtected": "Une fois le mot de passe saisi et le fichier ouvert, le mot de passe actuel de fichier sera réinitialisé", "txtScheme1": "Office", "txtScheme10": "Médian", @@ -577,11 +581,7 @@ "txtScheme6": "Rotonde", "txtScheme7": "Capitaux", "txtScheme8": "Flux", - "txtScheme9": "Fonderie", - "textChooseEncoding": "Choose Encoding", - "textChooseTxtOptions": "Choose TXT Options", - "txtDownloadTxt": "Download TXT", - "txtOk": "Ok" + "txtScheme9": "Fonderie" }, "Toolbar": { "dlgLeaveMsgText": "Vous avez des modifications non enregistrées dans ce document. Cliquez sur Rester sur cette page et attendez l'enregistrement automatique. Cliquez sur Quitter cette page pour annuler toutes les modifications non enregistrées.", diff --git a/apps/documenteditor/mobile/locale/ko.json b/apps/documenteditor/mobile/locale/ko.json index 8d03f2d52..bf13729f4 100644 --- a/apps/documenteditor/mobile/locale/ko.json +++ b/apps/documenteditor/mobile/locale/ko.json @@ -1,592 +1,592 @@ { "About": { - "textAbout": "About", - "textAddress": "Address", - "textBack": "Back", - "textEmail": "Email", - "textPoweredBy": "Powered By", - "textTel": "Tel", - "textVersion": "Version" + "textAbout": "정보", + "textAddress": "주소", + "textBack": "뒤로", + "textEmail": "이메일", + "textPoweredBy": "기술 지원", + "textTel": "전화 번호", + "textVersion": "버전" }, "Add": { - "notcriticalErrorTitle": "Warning", - "textAddLink": "Add link", - "textAddress": "Address", - "textBack": "Back", - "textBelowText": "Below text", - "textBottomOfPage": "Bottom of page", - "textBreak": "Break", - "textCancel": "Cancel", - "textCenterBottom": "Center Bottom", - "textCenterTop": "Center Top", - "textColumnBreak": "Column Break", - "textColumns": "Columns", - "textComment": "Comment", - "textContinuousPage": "Continuous Page", - "textCurrentPosition": "Current Position", - "textDisplay": "Display", + "notcriticalErrorTitle": "경고", + "textAddLink": "링크 추가", + "textAddress": "주소", + "textBack": "뒤로", + "textBelowText": "텍스트 아래에", + "textBottomOfPage": "페이지 끝", + "textBreak": "페이지 나누기", + "textCancel": "취소", + "textCenterBottom": "가운데 아래", + "textCenterTop": "가운데 위", + "textColumnBreak": "열 나누기", + "textColumns": "열", + "textComment": "코멘트", + "textContinuousPage": "연속 페이지", + "textCurrentPosition": "현재 위치", + "textDisplay": "표시", + "textEvenPage": "짝수 페이지", + "textFootnote": "각주", + "textFormat": "형식", + "textImage": "이미지", + "textImageURL": "이미지 URL", + "textInsert": "삽입", + "textInsertFootnote": "각주 삽입", + "textInsertImage": "이미지 삽입", + "textLeftBottom": "왼쪽 아래", + "textLeftTop": "왼쪽 상단", + "textLink": "링크", + "textLinkSettings": "링크 설정", + "textLocation": "위치", + "textNextPage": "다음 페이지", + "textOddPage": "홀수 페이지", + "textOther": "기타", + "textPageBreak": "페이지 나누기", + "textPageNumber": "페이지 번호", + "textPictureFromLibrary": "그림 라이브러리에서", + "textPictureFromURL": "URL에서 그림", + "textPosition": "위치", + "textRightBottom": "오른쪽 아래", + "textRightTop": "오른쪽 위쪽", + "textRows": "행", + "textScreenTip": "화면 팁", + "textSectionBreak": "섹션 나누기", + "textShape": "도형", + "textStartAt": "시작", + "textTable": "표", + "textTableSize": "표 크기", "textEmptyImgUrl": "You need to specify image URL.", - "textEvenPage": "Even Page", - "textFootnote": "Footnote", - "textFormat": "Format", - "textImage": "Image", - "textImageURL": "Image URL", - "textInsert": "Insert", - "textInsertFootnote": "Insert Footnote", - "textInsertImage": "Insert Image", - "textLeftBottom": "Left Bottom", - "textLeftTop": "Left Top", - "textLink": "Link", - "textLinkSettings": "Link Settings", - "textLocation": "Location", - "textNextPage": "Next Page", - "textOddPage": "Odd Page", - "textOther": "Other", - "textPageBreak": "Page Break", - "textPageNumber": "Page Number", - "textPictureFromLibrary": "Picture from Library", - "textPictureFromURL": "Picture from URL", - "textPosition": "Position", - "textRightBottom": "Right Bottom", - "textRightTop": "Right Top", - "textRows": "Rows", - "textScreenTip": "Screen Tip", - "textSectionBreak": "Section Break", - "textShape": "Shape", - "textStartAt": "Start At", - "textTable": "Table", - "textTableSize": "Table Size", "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"" }, "Common": { "Collaboration": { - "notcriticalErrorTitle": "Warning", - "textAccept": "Accept", - "textAcceptAllChanges": "Accept all changes", - "textAddComment": "Add comment", - "textAddReply": "Add reply", - "textAllChangesAcceptedPreview": "All changes accepted (Preview)", - "textAllChangesEditing": "All changes (Editing)", - "textAllChangesRejectedPreview": "All changes rejected (Preview)", - "textAtLeast": "at least", - "textAuto": "auto", - "textBack": "Back", - "textBaseline": "Baseline", - "textBold": "Bold", - "textBreakBefore": "Page break before", - "textCancel": "Cancel", - "textCaps": "All caps", - "textCenter": "Align center", - "textChart": "Chart", - "textCollaboration": "Collaboration", - "textColor": "Font color", - "textComments": "Comments", - "textContextual": "Don't add intervals between paragraphs of the same style", - "textDelete": "Delete", - "textDeleteComment": "Delete Comment", - "textDeleted": "Deleted:", - "textDeleteReply": "Delete Reply", - "textDisplayMode": "Display Mode", - "textDone": "Done", - "textDStrikeout": "Double strikeout", - "textEdit": "Edit", - "textEditComment": "Edit Comment", - "textEditReply": "Edit Reply", - "textEditUser": "Users who are editing the file:", - "textEquation": "Equation", - "textExact": "exactly", - "textFinal": "Final", - "textFirstLine": "First line", - "textFormatted": "Formatted", - "textHighlight": "Highlight color", - "textImage": "Image", - "textIndentLeft": "Indent left", - "textIndentRight": "Indent right", - "textInserted": "Inserted:", - "textItalic": "Italic", - "textJustify": "Align justified ", - "textKeepLines": "Keep lines together", - "textKeepNext": "Keep with next", - "textLeft": "Align left", - "textLineSpacing": "Line Spacing: ", - "textMarkup": "Markup", - "textMessageDeleteComment": "Do you really want to delete this comment?", - "textMessageDeleteReply": "Do you really want to delete this reply?", - "textMultiple": "multiple", - "textNoBreakBefore": "No page break before", + "notcriticalErrorTitle": "경고", + "textAccept": "수락", + "textAcceptAllChanges": "모든 변경 사항에 동의", + "textAddComment": "코멘트 달기", + "textAddReply": "댓글추가", + "textAllChangesAcceptedPreview": "모든 변경 사항이 적용 (미리보기)", + "textAllChangesEditing": "모든 변경 사항(편집)", + "textAllChangesRejectedPreview": "모든 변경 사항이 거부 (미리보기).", + "textAtLeast": "최소", + "textAuto": "자동", + "textBack": "뒤로", + "textBaseline": "기준선", + "textBold": "굵게", + "textBreakBefore": "현재 단락 앞에서 페이지 나누기 없음", + "textCancel": "취소", + "textCaps": "모든 대문자", + "textCenter": "가운데 맞춤", + "textChart": "차트", + "textCollaboration": "협업", + "textColor": "글꼴 색", + "textComments": "코멘트", + "textContextual": "같은 스타일의 다른 단락 사이에 간격을 추가하지 마십시오.", + "textDelete": "삭제", + "textDeleteComment": "코멘트 삭제", + "textDeleted": "삭제됨:", + "textDeleteReply": "댓글 삭제", + "textDisplayMode": "디스플레이 모드", + "textDone": "완료", + "textDStrikeout": "이중 취소선", + "textEdit": "편집", + "textEditComment": "코멘트 편집", + "textEditReply": "댓글 편집", + "textEditUser": "파일을 편집 중인 사용자:", + "textEquation": "수식", + "textExact": "고정", + "textFinal": "최종", + "textFirstLine": "머리글 행", + "textFormatted": "서식 지정 됨", + "textHighlight": "텍스트 강조 색", + "textImage": "이미지", + "textIndentLeft": "내어쓰기", + "textIndentRight": "들여쓰기", + "textInserted": "삽입됨:", + "textItalic": "기울림꼴", + "textJustify": "양쪽맞춤", + "textKeepLines": "현재 단락을 나누지 않음", + "textKeepNext": "현재 단락과 다음 단락을 항상 같은 페이지에 배치", + "textLeft": "왼쪽 맞춤", + "textLineSpacing": "줄 간격 :", + "textMarkup": "마크업", + "textMessageDeleteComment": "이 댓글을 삭제하시겠습니까?", + "textMessageDeleteReply": "이 댓글을 삭제하시겠습니까?", + "textMultiple": "배수", + "textNoBreakBefore": "현재 단락 앞에서 페이지 나누기 없음", + "textNoContextual": "같은 스타일의 단락 사이에 공백 추가", + "textNoKeepLines": "현재 단락을 나누지 마십시오", + "textNoKeepNext": "현재 단락과 다음 단락을 항상 같은 페이지에 배치하지 마십시오", + "textNot": "불가", + "textNoWidow": "별도의 제어 없음", + "textNum": "번호 매기기 변경", + "textOk": "확인", + "textOriginal": "오리지널", + "textParaFormatted": "단락 서식 지정", + "textParaMoveFromDown": "아래로 이동:", + "textParaMoveFromUp": "위로 이동:", + "textParaMoveTo": "이동됨:", + "textPosition": "위치", + "textReject": "거부", + "textRejectAllChanges": "모든 변경 사항 거부", + "textReopen": "다시 열기", + "textResolve": "해결", + "textReview": "검토", + "textReviewChange": "변경 사항 검토", + "textRight": "오른쪽 맞춤", + "textShape": "도형", + "textShd": "배경색", + "textSmallCaps": "작은 대문자", + "textSpacing": "간격", + "textSpacingAfter": "간격 뒤", + "textSpacingBefore": "간격 앞", + "textStrikeout": "취소선", + "textSubScript": "아래 첨자", + "textSuperScript": "위 첨자", + "textTabs": "탭 변경", + "textTrackChanges": "변경 내용 추적", + "textTryUndoRedo": "빠른 공동 편집 모드에서 실행 취소 / 다시 실행 기능을 사용할 수 없습니다.", + "textUnderline": "밑줄", + "textUsers": "사용자", "textNoChanges": "There are no changes.", "textNoComments": "This document doesn't contain comments", - "textNoContextual": "Add interval between paragraphs of the same style", - "textNoKeepLines": "Don't keep lines together", - "textNoKeepNext": "Don't keep with next", - "textNot": "Not ", - "textNoWidow": "No widow control", - "textNum": "Change numbering", - "textOriginal": "Original", "textParaDeleted": "Paragraph Deleted", - "textParaFormatted": "Paragraph Formatted", "textParaInserted": "Paragraph Inserted", - "textParaMoveFromDown": "Moved Down:", - "textParaMoveFromUp": "Moved Up:", - "textParaMoveTo": "Moved:", - "textPosition": "Position", - "textReject": "Reject", - "textRejectAllChanges": "Reject All Changes", - "textReopen": "Reopen", - "textResolve": "Resolve", - "textReview": "Review", - "textReviewChange": "Review Change", - "textRight": "Align right", - "textShape": "Shape", - "textShd": "Background color", - "textSmallCaps": "Small caps", - "textSpacing": "Spacing", - "textSpacingAfter": "Spacing after", - "textSpacingBefore": "Spacing before", - "textStrikeout": "Strikeout", - "textSubScript": "Subscript", - "textSuperScript": "Superscript", "textTableChanged": "Table Settings Changed", "textTableRowsAdd": "Table Rows Added", "textTableRowsDel": "Table Rows Deleted", - "textTabs": "Change tabs", - "textTrackChanges": "Track Changes", - "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", - "textUnderline": "Underline", - "textUsers": "Users", - "textWidow": "Widow control", - "textOk": "Ok" + "textWidow": "Widow control" }, "ThemeColorPalette": { - "textCustomColors": "Custom Colors", - "textStandartColors": "Standard Colors", + "textCustomColors": "사용자 정의 색상", + "textStandartColors": "표준 색상", "textThemeColors": "Theme Colors" } }, "ContextMenu": { - "errorCopyCutPaste": "Copy, cut and paste actions using the context menu will be performed within the current file only.", - "menuAddComment": "Add comment", - "menuAddLink": "Add link", - "menuCancel": "Cancel", - "menuDelete": "Delete", - "menuDeleteTable": "Delete Table", - "menuEdit": "Edit", - "menuMerge": "Merge", - "menuMore": "More", - "menuOpenLink": "Open Link", - "menuReview": "Review", - "menuReviewChange": "Review Change", - "menuSplit": "Split", - "menuViewComment": "View Comment", - "textColumns": "Columns", - "textCopyCutPasteActions": "Copy, Cut and Paste Actions", - "textDoNotShowAgain": "Don't show again", - "textRows": "Rows", - "menuStartNewList": "Start new list", - "menuStartNumberingFrom": "Set numbering value", - "menuContinueNumbering": "Continue numbering", - "menuSeparateList": "Separate list", - "menuJoinList": "Join to previous list", - "textOk": "OK", - "textCancel": "Cancel", - "textNumberingValue": "Numbering Value" + "errorCopyCutPaste": "복사, 자르기 및 붙여 넣기", + "menuAddComment": "코멘트 달기", + "menuAddLink": "링크 추가", + "menuCancel": "취소", + "menuContinueNumbering": "계속 번호 매기기", + "menuDelete": "삭제", + "menuDeleteTable": "표삭제", + "menuEdit": "편집", + "menuJoinList": "이전 목록에 참여", + "menuMerge": "병합", + "menuMore": "자세히", + "menuOpenLink": "링크 열기", + "menuReview": "검토", + "menuReviewChange": "변경 사항 검토", + "menuSeparateList": "목록 분리", + "menuSplit": "분할", + "menuStartNewList": "새 목록 시작", + "menuStartNumberingFrom": "숫자 값 설정", + "textCancel": "취소", + "textColumns": "열", + "textCopyCutPasteActions": "복사, 잘라내기 및 붙여 넣기", + "textDoNotShowAgain": "다시 표시하지 않음", + "textNumberingValue": "번호", + "textOk": "확인", + "textRows": "행", + "menuViewComment": "View Comment" }, "Edit": { - "notcriticalErrorTitle": "Warning", - "textActualSize": "Actual size", - "textAddCustomColor": "Add custom color", - "textAdditional": "Additional", - "textAdditionalFormatting": "Additional formatting", - "textAddress": "Address", - "textAdvanced": "Advanced", - "textAdvancedSettings": "Advanced settings", - "textAfter": "After", - "textAlign": "Align", - "textAllCaps": "All caps", - "textAllowOverlap": "Allow overlap", - "textAuto": "Auto", - "textAutomatic": "Automatic", - "textBack": "Back", - "textBackground": "Background", - "textBandedColumn": "Banded column", - "textBandedRow": "Banded row", - "textBefore": "Before", - "textBehind": "Behind", - "textBorder": "Border", - "textBringToForeground": "Bring to foreground", - "textBullets": "Bullets", - "textBulletsAndNumbers": "Bullets & Numbers", - "textCellMargins": "Cell Margins", - "textChart": "Chart", - "textClose": "Close", - "textColor": "Color", - "textContinueFromPreviousSection": "Continue from previous section", - "textCustomColor": "Custom Color", - "textDifferentFirstPage": "Different first page", - "textDifferentOddAndEvenPages": "Different odd and even pages", - "textDisplay": "Display", - "textDistanceFromText": "Distance from text", - "textDoubleStrikethrough": "Double Strikethrough", - "textEditLink": "Edit Link", - "textEffects": "Effects", - "textEmptyImgUrl": "You need to specify image URL.", - "textFill": "Fill", - "textFirstColumn": "First Column", - "textFirstLine": "FirstLine", - "textFlow": "Flow", - "textFontColor": "Font Color", - "textFontColors": "Font Colors", - "textFonts": "Fonts", - "textFooter": "Footer", - "textHeader": "Header", - "textHeaderRow": "Header Row", - "textHighlightColor": "Highlight Color", - "textHyperlink": "Hyperlink", - "textImage": "Image", - "textImageURL": "Image URL", - "textInFront": "In Front", - "textInline": "Inline", - "textKeepLinesTogether": "Keep Lines Together", - "textKeepWithNext": "Keep with Next", - "textLastColumn": "Last Column", - "textLetterSpacing": "Letter Spacing", - "textLineSpacing": "Line Spacing", - "textLink": "Link", - "textLinkSettings": "Link Settings", - "textLinkToPrevious": "Link to Previous", - "textMoveBackward": "Move Backward", - "textMoveForward": "Move Forward", - "textMoveWithText": "Move with Text", - "textNone": "None", - "textNoStyles": "No styles for this type of charts.", - "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", - "textOpacity": "Opacity", - "textOptions": "Options", - "textOrphanControl": "Orphan Control", - "textPageBreakBefore": "Page Break Before", - "textPageNumbering": "Page Numbering", - "textParagraph": "Paragraph", - "textParagraphStyles": "Paragraph Styles", - "textPictureFromLibrary": "Picture from Library", - "textPictureFromURL": "Picture from URL", + "notcriticalErrorTitle": "경고", + "textActualSize": "실제 크기", + "textAddCustomColor": "사용자 색상 추가", + "textAdditional": "추가", + "textAdditionalFormatting": "추가 서식 지정", + "textAddress": "주소", + "textAdvanced": "고급", + "textAdvancedSettings": "고급 설정", + "textAfter": "이후", + "textAlign": "맞춤", + "textAllCaps": "모든 대문자", + "textAllowOverlap": "오버랩 허용", + "textAuto": "자동", + "textAutomatic": "자동", + "textBack": "뒤로", + "textBackground": "배경", + "textBandedColumn": "줄무늬 열", + "textBandedRow": "줄무늬 행", + "textBefore": "이전", + "textBehind": "뒤에", + "textBorder": "테두리", + "textBringToForeground": "앞으로 가져오기", + "textBullets": "글 머리 기호", + "textBulletsAndNumbers": "글머리 기호 및 숫자", + "textCellMargins": "셀 여백", + "textChart": "차트", + "textClose": "닫기", + "textColor": "색상", + "textContinueFromPreviousSection": "이전 섹션에서 계속하기", + "textCustomColor": "사용자 정의 색상", + "textDifferentFirstPage": "첫 페이지를 다르게 지정", + "textDifferentOddAndEvenPages": "홀수 및 짝수 페이지 다르게 지정", + "textDisplay": "표시", + "textDistanceFromText": "텍스트 간격", + "textDoubleStrikethrough": "이중 취소선", + "textEditLink": "링크 편집", + "textEffects": "효과", + "textFill": "채우기", + "textFirstColumn": "첫째 열", + "textFirstLine": "첫째 줄", + "textFlow": "플로우", + "textFontColor": "글꼴 색", + "textFontColors": "글꼴 색", + "textFonts": "글꼴", + "textFooter": "꼬리말", + "textHeader": "머리글", + "textHeaderRow": "머리글 행", + "textHighlightColor": "텍스트 강조 색", + "textHyperlink": "하이퍼 링크", + "textImage": "이미지", + "textImageURL": "이미지 URL", + "textInFront": "텍스트 앞", + "textInline": "인라인", + "textKeepLinesTogether": "현재 단락을 나누지 않음", + "textKeepWithNext": "현재 단락과 다음 단락을 항상 같은 페이지에 배치", + "textLastColumn": "마지막 열", + "textLetterSpacing": "문자 간격", + "textLineSpacing": "줄 간격", + "textLink": "링크", + "textLinkSettings": "링크 설정", + "textLinkToPrevious": "이전 링크", + "textMoveBackward": "맨 뒤로 보내기", + "textMoveForward": "맨 앞으로 가져오기", + "textMoveWithText": "텍스트와 함께 이동", + "textNone": "없음", + "textNoStyles": "이 유형의 차트에 해당하는 스타일이 없습니다.", + "textNumbers": "숫자", + "textOpacity": "투명도", + "textOptions": "옵션", + "textOrphanControl": "단락의 첫 줄이나 마지막 줄 분리 방지", + "textPageBreakBefore": "현재 단락 앞에서 페이지 나누기", + "textPageNumbering": "페이지 넘버링", + "textParagraph": "단락", + "textParagraphStyles": "단락 스타일", + "textPictureFromLibrary": "그림 라이브러리에서", + "textPictureFromURL": "URL에서 그림", "textPt": "pt", - "textRemoveChart": "Remove Chart", - "textRemoveImage": "Remove Image", - "textRemoveLink": "Remove Link", - "textRemoveShape": "Remove Shape", - "textRemoveTable": "Remove Table", - "textReorder": "Reorder", - "textRepeatAsHeaderRow": "Repeat as Header Row", - "textReplace": "Replace", - "textReplaceImage": "Replace Image", - "textResizeToFitContent": "Resize to Fit Content", - "textScreenTip": "Screen Tip", + "textRemoveChart": "차트 제거", + "textRemoveImage": "이미지 제거", + "textRemoveLink": "링크 제거", + "textRemoveShape": "도형 제거", + "textRemoveTable": "표 제거", + "textReorder": "재정렬", + "textRepeatAsHeaderRow": "헤더 행으로 반복", + "textReplace": "바꾸기", + "textReplaceImage": "이미지 바꾸기", + "textResizeToFitContent": "내용에 맞게 크기 조정", + "textScreenTip": "화면 팁", + "textSendToBackground": "맨 뒤로 보내기", + "textSettings": "설정", + "textShape": "도형", + "textSize": "크기", + "textSmallCaps": "작은 대문자", + "textSquare": "사각형", + "textStartAt": "시작", + "textStrikethrough": "취소선", + "textStyle": "스타일", + "textStyleOptions": "스타일 옵션", + "textSubscript": "아래 첨자", + "textSuperscript": "위 첨자", + "textTable": "표", + "textTableOptions": "표 옵션", + "textText": "텍스트", + "textThrough": "통과", + "textTopAndBottom": "상단 및 하단", + "textTotalRow": "합계", + "textType": "유형", + "textWrap": "줄 바꾸기", + "textEmptyImgUrl": "You need to specify image URL.", + "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", "textSelectObjectToEdit": "Select object to edit", - "textSendToBackground": "Send to Background", - "textSettings": "Settings", - "textShape": "Shape", - "textSize": "Size", - "textSmallCaps": "Small Caps", "textSpaceBetweenParagraphs": "Space Between Paragraphs", - "textSquare": "Square", - "textStartAt": "Start at", - "textStrikethrough": "Strikethrough", - "textStyle": "Style", - "textStyleOptions": "Style Options", - "textSubscript": "Subscript", - "textSuperscript": "Superscript", - "textTable": "Table", - "textTableOptions": "Table Options", - "textText": "Text", - "textThrough": "Through", - "textTight": "Tight", - "textTopAndBottom": "Top and Bottom", - "textTotalRow": "Total Row", - "textType": "Type", - "textWrap": "Wrap", - "textNumbers": "Numbers" + "textTight": "Tight" }, "Error": { - "convertationTimeoutText": "Conversion timeout exceeded.", + "convertationTimeoutText": "변환 시간을 초과했습니다.", + "criticalErrorTitle": "오류", + "downloadErrorText": "다운로드 실패", + "errorAccessDeny": "권한이 없는 작업을 수행하려고 합니다.
관리자에게 문의하십시오.", + "errorBadImageUrl": "이미지 URL이 잘못되었습니다.", + "errorConnectToServer": "문서를 저장하지 못했습니다. 네트워크 설정을 확인하거나 관리자에게 문의하세요.
확인 버튼을 클릭하면 문서를 다운로드할 수 있습니다.", + "errorDatabaseConnection": "외부 오류입니다.
데이터베이스 연결 오류입니다. 지원팀에 문의하십시오.", + "errorDataEncrypted": "암호화 변경 사항이 수신되었으며 해독할 수 없습니다.", + "errorDataRange": "잘못된 참조 대상 입니다.", + "errorDefaultMessage": "오류 코드: %1", + "errorEditingDownloadas": "문서를 처리하는 동안 오류가 발생했습니다.
파일 백업을 로컬에 저장하십시오.", + "errorFilePassProtect": "파일이 암호로 보호되어 열 수 없습니다.", + "errorFileSizeExceed": "파일 크기가 서버 제한을 ​​초과했습니다.
관리자에게 문의하시기 바랍니다.", + "errorKeyEncrypt": "알 수없는 키 설명자", + "errorKeyExpire": "키가 만료됨", + "errorLoadingFont": "글꼴이 로드되지 않았습니다.
문서 관리 관리자에게 문의하십시오.", + "errorMailMergeLoadFile": "로드 실패", + "errorMailMergeSaveFile": "병합 실패", + "errorSessionAbsolute": "파일 편집 창이 만료되었습니다. 페이지를 새로고침하세요.", + "errorSessionIdle": "이 문서는 한동안 수정되지 않았습니다. 페이지를 새로고침하세요.", + "errorSessionToken": "서버에 대한 링크가 중단되었습니다. 페이지를 새로고침하세요.", + "errorStockChart": "줄의 순서가 잘못되었습니다. 주식형 차트를 생성하려면
시가, 최고가, 최저가, 종가의 순서로 데이터를 테이블에 배치하십시오.", + "errorUpdateVersionOnDisconnect": "네트워크 연결이 복원되었으며 파일 버전이 변경되었습니다.
계속 작업하기 전에 데이터 손실을 방지하기 위해 파일을 다운로드하거나 내용을 복사한 다음 이 페이지를 새로 고쳐야 합니다.", + "errorUsersExceed": "가격 책정 계획에서 허용 한 사용자 수가 초과되었습니다", + "errorViewerDisconnect": "네트워크 연결에 실패했습니다. 이 문서는 계속 볼 수 있지만
연결이 복원되고 페이지가 새로 고쳐질 때까지 이 문서를 다운로드하거나 인쇄할 수 없습니다.", + "notcriticalErrorTitle": "경고", + "openErrorText": "파일을 여는 동안 오류가 발생했습니다.", + "saveErrorText": "파일을 저장하는 동안 오류가 발생했습니다.", + "scriptLoadError": "인터넷 속도가 너무 느려 이 페이지의 일부 요소가 로드되지 않습니다. 페이지를 새로고침하세요.", + "unknownErrorText": "알 수 없는 오류.", + "uploadImageExtMessage": "알 수없는 이미지 형식입니다.", + "uploadImageFileCountMessage": "이미지가 업로드되지 않았습니다.", "criticalErrorExtText": "Press 'OK' to go back to the document list.", - "criticalErrorTitle": "Error", - "downloadErrorText": "Download failed.", - "errorAccessDeny": "You are trying to perform an action you do not have rights for.
Please, contact your admin.", - "errorBadImageUrl": "Image url is incorrect", - "errorConnectToServer": "Can't save this doc. Check your connection settings or contact the admin.
When you click OK, you will be prompted to download the document.", - "errorDatabaseConnection": "External error.
Database connection error. Please, contact support.", - "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", - "errorDataRange": "Incorrect data range.", - "errorDefaultMessage": "Error code: %1", - "errorEditingDownloadas": "An error occurred during the work with the document.
Download document to save the file backup copy locally.", - "errorFilePassProtect": "The file is password protected and could not be opened.", - "errorFileSizeExceed": "The file size exceeds your server limit.
Please, contact your admin.", - "errorKeyEncrypt": "Unknown key descriptor", - "errorKeyExpire": "Key descriptor expired", - "errorMailMergeLoadFile": "Loading failed", - "errorMailMergeSaveFile": "Merge failed.", - "errorSessionAbsolute": "The document editing session has expired. Please, reload the page.", - "errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.", - "errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.", - "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
opening price, max price, min price, closing price.", - "errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.", "errorUserDrop": "The file can't be accessed right now.", - "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", - "errorViewerDisconnect": "Connection is lost. You can still view the document,
but you won't be able to download it until the connection is restored and the page is reloaded.", - "notcriticalErrorTitle": "Warning", - "openErrorText": "An error has occurred while opening the file", - "saveErrorText": "An error has occurred while saving the file", - "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.", "splitDividerErrorText": "The number of rows must be a divisor of %1", "splitMaxColsErrorText": "The number of columns must be less than %1", "splitMaxRowsErrorText": "The number of rows must be less than %1", - "unknownErrorText": "Unknown error.", - "uploadImageExtMessage": "Unknown image format.", - "uploadImageFileCountMessage": "No images uploaded.", - "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.", - "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." }, "LongActions": { - "applyChangesTextText": "Loading data...", - "applyChangesTitleText": "Loading Data", - "downloadMergeText": "Downloading...", - "downloadMergeTitle": "Downloading", - "downloadTextText": "Downloading document...", - "downloadTitleText": "Downloading Document", - "loadFontsTextText": "Loading data...", - "loadFontsTitleText": "Loading Data", - "loadFontTextText": "Loading data...", - "loadFontTitleText": "Loading Data", - "loadImagesTextText": "Loading images...", - "loadImagesTitleText": "Loading Images", - "loadImageTextText": "Loading image...", - "loadImageTitleText": "Loading Image", - "loadingDocumentTextText": "Loading document...", - "loadingDocumentTitleText": "Loading document", - "mailMergeLoadFileText": "Loading Data Source...", - "mailMergeLoadFileTitle": "Loading Data Source", - "openTextText": "Opening document...", - "openTitleText": "Opening Document", - "printTextText": "Printing document...", - "printTitleText": "Printing Document", - "savePreparingText": "Preparing to save", - "savePreparingTitle": "Preparing to save. Please wait...", - "saveTextText": "Saving document...", - "saveTitleText": "Saving Document", + "applyChangesTextText": "데이터로드 중 ...", + "applyChangesTitleText": "데이터로드 중", + "downloadMergeText": "다운로드 중 ...", + "downloadMergeTitle": "다운로드 중", + "downloadTextText": "문서 다운로드 중 ...", + "downloadTitleText": "문서 다운로드 중", + "loadFontsTextText": "데이터로드 중 ...", + "loadFontsTitleText": "데이터로드 중", + "loadFontTextText": "데이터로드 중 ...", + "loadFontTitleText": "데이터로드 중", + "loadImagesTextText": "이미지로드 중 ...", + "loadImagesTitleText": "이미지로드 중", + "loadImageTextText": "이미지로드 중 ...", + "loadImageTitleText": "이미지로드 중", + "loadingDocumentTextText": "문서로드 중 ...", + "loadingDocumentTitleText": "문서로드 중", + "mailMergeLoadFileText": "데이터 소스로드 중 ...", + "mailMergeLoadFileTitle": "데이터 소스로드 중", + "openTextText": "문서 열기 중 ...", + "openTitleText": "문서 열기", + "printTextText": "문서 인쇄 중 ...", + "printTitleText": "문서 인쇄 중", + "savePreparingText": "저장 준비 중", + "savePreparingTitle": "저장 준비 중입니다. 잠시 기다려주십시오 ...", + "saveTextText": "문서 저장 중 ...", + "saveTitleText": "문서 저장 중", + "textLoadingDocument": "문서로드 중", + "txtEditingMode": "편집 모드 설정 ...", + "uploadImageTextText": "이미지 업로드 중 ...", + "uploadImageTitleText": "이미지 업로드 중", + "waitText": "잠시만 기다려주세요...", "sendMergeText": "Sending Merge...", - "sendMergeTitle": "Sending Merge", - "textLoadingDocument": "Loading document", - "txtEditingMode": "Set editing mode...", - "uploadImageTextText": "Uploading image...", - "uploadImageTitleText": "Uploading Image", - "waitText": "Please, wait..." + "sendMergeTitle": "Sending Merge" }, "Main": { - "criticalErrorTitle": "Error", - "errorAccessDeny": "You are trying to perform an action you do not have rights for.
Please, contact your administrator.", - "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", - "errorProcessSaveResult": "Saving failed.", - "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", - "errorUpdateVersion": "The file version has been changed. The page will be reloaded.", - "leavePageText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", - "notcriticalErrorTitle": "Warning", + "criticalErrorTitle": "오류", + "errorAccessDeny": "권한이 없는 작업을 수행하려고 합니다.
관리자에게 문의하십시오.", + "errorOpensource": "무료 커뮤니티 버전을 사용하는 경우 열린 파일만 볼 수 있습니다. 모바일 온라인 에디터 기능을 사용하기 위해서는 유료 라이선스가 필요합니다.", + "errorProcessSaveResult": "저장하지 못했습니다.", + "errorServerVersion": "편집기 버전이 업데이트되었습니다. 페이지가 다시로드되어 변경 사항이 적용됩니다.", + "errorUpdateVersion": "파일 버전이 변경되었습니다. 페이지가 다시로드됩니다.", + "notcriticalErrorTitle": "경고", "SDK": { - " -Section ": " -Section ", - "above": "above", - "below": "below", - "Caption": "Caption", - "Choose an item": "Choose an item", - "Click to load image": "Click to load image", - "Current Document": "Current Document", - "Diagram Title": "Chart Title", - "endnote text": "Endnote Text", - "Enter a date": "Enter a date", - "Error! Bookmark not defined": "Error! Bookmark not defined.", - "Error! Main Document Only": "Error! Main Document Only.", - "Error! No text of specified style in document": "Error! No text of specified style in document.", - "Error! Not a valid bookmark self-reference": "Error! Not a valid bookmark self-reference.", - "Even Page ": "Even Page ", - "First Page ": "First Page ", - "Footer": "Footer", - "footnote text": "Footnote Text", - "Header": "Header", - "Heading 1": "Heading 1", - "Heading 2": "Heading 2", - "Heading 3": "Heading 3", - "Heading 4": "Heading 4", - "Heading 5": "Heading 5", - "Heading 6": "Heading 6", - "Heading 7": "Heading 7", - "Heading 8": "Heading 8", - "Heading 9": "Heading 9", - "Hyperlink": "Hyperlink", - "Index Too Large": "Index Too Large", - "Intense Quote": "Intense Quote", - "Is Not In Table": "Is Not In Table", - "List Paragraph": "List Paragraph", - "Missing Argument": "Missing Argument", - "Missing Operator": "Missing Operator", - "No Spacing": "No Spacing", + " -Section ": "-섹션", + "above": "위로", + "below": "아래", + "Caption": "참조", + "Choose an item": "아이템 선택", + "Click to load image": "이미지를 로드하려면 여기를 클릭하세요", + "Current Document": "현재 문서", + "Diagram Title": "차트 제목", + "endnote text": "미주 텍스트", + "Enter a date": "미주 날짜", + "Error! Bookmark not defined": "오류! 북마크가 정의되지 않음", + "Error! Main Document Only": "오류! 주요 문서만 해당됨.", + "Error! No text of specified style in document": "오류! 문서에 지정된 스타일의 텍스트가 없습니다.", + "Error! Not a valid bookmark self-reference": "오류! 북마크 링크 형식이 잘못되었습니다!", + "Even Page ": "짝수 페이지", + "First Page ": "첫 페이지", + "Footer": "꼬리말", + "footnote text": "각주 텍스트", + "Header": "머리글", + "Heading 1": "제목 1", + "Heading 2": "제목 2", + "Heading 3": "제목 3", + "Heading 4": "제목 4", + "Heading 5": "제목 5", + "Heading 6": "제목 6", + "Heading 7": "제목 7", + "Heading 8": "제목 8", + "Heading 9": "제목 9", + "Hyperlink": "하이퍼 링크", + "Index Too Large": "색인이 너무 큽니다", + "Intense Quote": "강한인용", + "Is Not In Table": "표에 없음", + "List Paragraph": "단락 목록", + "Missing Argument": "누락된 매개변수", + "Missing Operator": "누락된 연산자", + "No Spacing": "간격 없음", + "No table of figures entries found": "목차 항목을 찾을 수 없습니다.", + "None": "없음", + "Normal": "표준", + "Number Too Large To Format": "숫자가 너무 커서 형식을 지정할 수 없습니다", + "Odd Page ": "홀수 페이지", + "Quote": "인용 부호", + "Same as Previous": "이전과 동일", + "Series": "시리즈", + "Subtitle": "자막", + "Syntax Error": "구문 오류", + "Table Index Cannot be Zero": "표 인덱스는 0일 수 없습니다.", + "Table of Contents": "차례", + "table of figures": "목차", + "Title": "제목", + "TOC Heading": "TOC 제목", + "Y Axis": "Y 축", + "Zero Divide": "0으로 나누기", "No table of contents entries found": "There are no headings in the document. Apply a heading style to the text so that it appears in the table of contents.", - "No table of figures entries found": "No table of figures entries found.", - "None": "None", - "Normal": "Normal", - "Number Too Large To Format": "Number Too Large To Format", - "Odd Page ": "Odd Page ", - "Quote": "Quote", - "Same as Previous": "Same as Previous", - "Series": "Series", - "Subtitle": "Subtitle", - "Syntax Error": "Syntax Error", - "Table Index Cannot be Zero": "Table Index Cannot be Zero", - "Table of Contents": "Table of Contents", - "table of figures": "Table of figures", "The Formula Not In Table": "The Formula Not In Table", - "Title": "Title", - "TOC Heading": "TOC Heading", "Type equation here": "Type equation here", "Undefined Bookmark": "Undefined Bookmark", "Unexpected End of Formula": "Unexpected End of Formula", "X Axis": "X Axis XAS", - "Y Axis": "Y Axis", - "Your text here": "Your text here", - "Zero Divide": "Zero Divide" + "Your text here": "Your text here" }, - "textAnonymous": "Anonymous", + "textAnonymous": "익명", + "textClose": "닫기", + "textContactUs": "영업 담당자에게 문의", + "textGuest": "게스트", + "textNo": "아니오", + "textNoLicenseTitle": "라이센스 수를 제한했습니다.", + "textPaidFeature": "유료 기능", + "textYes": "확인", + "titleLicenseExp": "라이센스 만료", + "titleServerVersion": "편집기가 업데이트되었습니다.", + "titleUpdateVersion": "버전이 변경되었습니다", + "warnLicenseExp": "라이센스가 만료되었습니다. 라이선스를 업데이트하고 페이지를 새로고침하세요.", + "warnLicenseLimitedNoAccess": "라이센스가 만료되었습니다. 문서 편집 기능을 사용할 수 없습니다. 관리자에게 문의하십시오.", + "warnLicenseLimitedRenewed": "라이선스를 업데이트해야 합니다. 문서 편집 기능이 제한됩니다.
전체 액세스 권한을 얻으려면 관리자에게 문의하십시오.", + "leavePageText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", "textBuyNow": "Visit website", - "textClose": "Close", - "textContactUs": "Contact sales", "textCustomLoader": "Sorry, you are not entitled to change the loader. Contact our sales department to get a quote.", - "textGuest": "Guest", "textHasMacros": "The file contains automatic macros.
Do you want to run macros?", - "textNo": "No", - "textNoLicenseTitle": "License limit reached", - "textPaidFeature": "Paid feature", "textRemember": "Remember my choice", - "textYes": "Yes", - "titleLicenseExp": "License expired", - "titleServerVersion": "Editor updated", - "titleUpdateVersion": "Version changed", "warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.", - "warnLicenseExp": "Your license has expired. Please, update your license and refresh the page.", - "warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your admin.", - "warnLicenseLimitedRenewed": "The license needs to be renewed. You have limited access to document editing functionality.
Please contact your administrator to get full access", "warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", "warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.", "warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", "warnProcessRightsChange": "You don't have permission to edit this file." }, "Settings": { - "advDRMOptions": "Protected File", - "advDRMPassword": "Password", - "advTxtOptions": "Choose TXT Options", - "closeButtonText": "Close File", - "notcriticalErrorTitle": "Warning", - "textAbout": "About", - "textApplication": "Application", - "textApplicationSettings": "Application settings", - "textAuthor": "Author", - "textBack": "Back", - "textBottom": "Bottom", - "textCancel": "Cancel", - "textCaseSensitive": "Case Sensitive", - "textCentimeter": "Centimeter", - "textCollaboration": "Collaboration", - "textColorSchemes": "Color Schemes", - "textComment": "Comment", - "textComments": "Comments", - "textCommentsDisplay": "Comments Display", - "textCreated": "Created", - "textCustomSize": "Custom Size", - "textDisableAll": "Disable All", - "textDisableAllMacrosWithNotification": "Disable all macros with notification", - "textDisableAllMacrosWithoutNotification": "Disable all macros without notification", - "textDocumentInfo": "Document Info", - "textDocumentSettings": "Document Settings", - "textDocumentTitle": "Document Title", - "textDone": "Done", - "textDownload": "Download", - "textDownloadAs": "Download As", - "textDownloadRtf": "If you continue saving in this format some of the formatting might be lost. Are you sure you want to continue?", - "textDownloadTxt": "If you continue saving in this format all features except the text will be lost. Are you sure you want to continue?", - "textEnableAll": "Enable All", - "textEnableAllMacrosWithoutNotification": "Enable all macros without notification", - "textEncoding": "Encoding", - "textFind": "Find", - "textFindAndReplace": "Find and Replace", - "textFindAndReplaceAll": "Find and Replace All", - "textFormat": "Format", - "textHelp": "Help", - "textHiddenTableBorders": "Hidden Table Borders", - "textHighlightResults": "Highlight Results", - "textInch": "Inch", - "textLandscape": "Landscape", - "textLastModified": "Last Modified", - "textLastModifiedBy": "Last Modified By", - "textLeft": "Left", - "textLoading": "Loading...", - "textLocation": "Location", - "textMacrosSettings": "Macros Settings", - "textMargins": "Margins", - "textMarginsH": "Top and bottom margins are too high for a given page height", - "textMarginsW": "Left and right margins are too wide for a given page width", - "textNoCharacters": "Nonprinting Characters", - "textNoTextFound": "Text not found", - "textOpenFile": "Enter a password to open the file", - "textOrientation": "Orientation", - "textOwner": "Owner", + "advDRMOptions": "보호 된 파일", + "advDRMPassword": "비밀번호", + "advTxtOptions": "TXT 옵션 선택", + "closeButtonText": "파일 닫기", + "notcriticalErrorTitle": "경고", + "textAbout": "정보", + "textApplication": "어플리케이션", + "textApplicationSettings": "어플리케이션 설정", + "textAuthor": "작성자", + "textBack": "뒤로", + "textBottom": "하단", + "textCancel": "취소", + "textCaseSensitive": "대소문자 구별", + "textCentimeter": "센티미터", + "textChooseEncoding": "인코딩 형식 선택", + "textChooseTxtOptions": "TXT 옵션 선택", + "textCollaboration": "협업", + "textColorSchemes": "색 구성표", + "textComment": "코멘트", + "textComments": "코멘트", + "textCommentsDisplay": "코멘트 표시", + "textCreated": "생성됨", + "textCustomSize": "사용자 정의 크기", + "textDisableAll": "모두 비활성화", + "textDisableAllMacrosWithNotification": "알림이 있는 모든 매크로 닫기", + "textDisableAllMacrosWithoutNotification": "알림 없이 모든 매크로 닫기", + "textDocumentInfo": "문서 정보", + "textDocumentSettings": "문서 설정", + "textDocumentTitle": "문서 제목", + "textDone": "완료", + "textDownload": "다운로드", + "textDownloadAs": "변환 다운로드", + "textDownloadRtf": "이 형식으로 저장할 계속되면 포맷하는 일부 손실 될 수 있습니다. 계속 하시겠습니까?", + "textDownloadTxt": "이 형식으로 저장하면 텍스트를 제외한 모든 기능이 손실됩니다. 계속하시겠습니까?", + "textEnableAll": "모두 활성화", + "textEnableAllMacrosWithoutNotification": "알림 없이 모든 매크로 시작", + "textEncoding": "인코딩", + "textFind": "찾기", + "textFindAndReplace": "찾기 및 바꾸기", + "textFindAndReplaceAll": "모두 바꾸기", + "textFormat": "형식", + "textHelp": "도움말", + "textHiddenTableBorders": "표 테두리 숨기기", + "textHighlightResults": "결과 강조 표시", + "textInch": "인치", + "textLandscape": "수평", + "textLastModified": "최종 편집", + "textLastModifiedBy": "최종 편집자", + "textLeft": "왼쪽", + "textLoading": "로딩중...", + "textLocation": "위치", + "textMacrosSettings": "매크로 설정", + "textMargins": "여백", + "textMarginsH": "주어진 페이지 높이에 대해 위쪽 및 아래쪽 여백이 너무 높습니다.", + "textMarginsW": "왼쪽 및 오른쪽 여백이 주어진 페이지 폭에 비해 너무 넓습니다.", + "textNoCharacters": "인쇄되지 않는 문자", + "textNoTextFound": "텍스트를 찾을 수 없습니다", + "textOk": "확인", + "textOpenFile": "파일을 열려면 암호를 입력하십시오.", + "textOrientation": "방향", + "textOwner": "소유자", + "textPortrait": "세로", + "textPrint": "인쇄", + "textReaderMode": "읽기 모드", + "textReplace": "바꾸기", + "textReplaceAll": "모두 바꾸기", + "textResolvedComments": "해결된 코멘트", + "textRight": "오른쪽", + "textSearch": "검색", + "textSettings": "설정", + "textShowNotification": "알림 표시", + "textSpellcheck": "맞춤법 검사", + "textStatistic": "통계", + "textSubject": "제목", + "textTitle": "제목", + "textTop": "위", + "textUnitOfMeasurement": "측정 단위", + "textUploaded": "업로드 되었습니다", + "txtDownloadTxt": "TXT 다운로드", + "txtIncorrectPwd": "잘못된 비밀번호", + "txtOk": "확인", + "txtProtected": "암호를 입력하고 파일을 열면 현재 암호가 재설정됩니다.", + "txtScheme1": "사무실", + "txtScheme10": "중앙값", + "txtScheme11": "매트로", + "txtScheme12": "모듈", + "txtScheme13": "호화 로움", + "txtScheme14": "외벽창", + "txtScheme15": "원본", + "txtScheme16": "용지", + "txtScheme17": "지점", + "txtScheme18": "기술", + "txtScheme19": "트레킹", + "txtScheme2": "그레이스케일", + "txtScheme22": "신규 오피스", + "txtScheme3": "꼭지점", + "txtScheme4": "화면", + "txtScheme5": "시민", + "txtScheme6": "광장", + "txtScheme7": "같음", + "txtScheme8": "플로우", + "txtScheme9": "발견", "textPoint": "Point", - "textPortrait": "Portrait", - "textPrint": "Print", - "textReaderMode": "Reader Mode", - "textReplace": "Replace", - "textReplaceAll": "Replace All", - "textResolvedComments": "Resolved Comments", - "textRight": "Right", - "textSearch": "Search", - "textSettings": "Settings", - "textShowNotification": "Show Notification", - "textSpellcheck": "Spell Checking", - "textStatistic": "Statistic", - "textSubject": "Subject", - "textTitle": "Title", - "textTop": "Top", - "textUnitOfMeasurement": "Unit Of Measurement", - "textUploaded": "Uploaded", - "txtIncorrectPwd": "Password is incorrect", - "txtProtected": "Once you enter the password and open the file, the current password will be reset", - "txtScheme1": "Office", - "txtScheme10": "Median", - "txtScheme11": "Metro", - "txtScheme12": "Module", - "txtScheme13": "Opulent", - "txtScheme14": "Oriel", - "txtScheme15": "Origin", - "txtScheme16": "Paper", - "txtScheme17": "Solstice", - "txtScheme18": "Technic", - "txtScheme19": "Trek", - "txtScheme2": "Grayscale", "txtScheme20": "Urban", - "txtScheme21": "Verve", - "txtScheme22": "New Office", - "txtScheme3": "Apex", - "txtScheme4": "Aspect", - "txtScheme5": "Civic", - "txtScheme6": "Concourse", - "txtScheme7": "Equity", - "txtScheme8": "Flow", - "txtScheme9": "Foundry", - "textOk": "Ok", - "textChooseEncoding": "Choose Encoding", - "textChooseTxtOptions": "Choose TXT Options", - "txtDownloadTxt": "Download TXT", - "txtOk": "Ok" + "txtScheme21": "Verve" }, "Toolbar": { + "leaveButtonText": "이 페이지에서 나가기", + "stayButtonText": "이 페이지에 보관", "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", - "dlgLeaveTitleText": "You leave the application", - "leaveButtonText": "Leave this Page", - "stayButtonText": "Stay on this page" + "dlgLeaveTitleText": "You leave the application" } } \ No newline at end of file diff --git a/apps/documenteditor/mobile/locale/zh.json b/apps/documenteditor/mobile/locale/zh.json index f7f8ce703..2669f8f7f 100644 --- a/apps/documenteditor/mobile/locale/zh.json +++ b/apps/documenteditor/mobile/locale/zh.json @@ -62,12 +62,12 @@ "Collaboration": { "notcriticalErrorTitle": "警告", "textAccept": "接受", - "textAcceptAllChanges": "接受所有更改", + "textAcceptAllChanges": "接受所有修订", "textAddComment": "添加评论", "textAddReply": "添加回复", - "textAllChangesAcceptedPreview": "已经接受所有更改 (预览)", - "textAllChangesEditing": "所有更改 (编辑中)", - "textAllChangesRejectedPreview": "已经否决所有更改 (预览)", + "textAllChangesAcceptedPreview": "已接受所有修订(只读)", + "textAllChangesEditing": "显示所有修订(可编辑)", + "textAllChangesRejectedPreview": "已拒绝所有修订(只读)", "textAtLeast": "至少", "textAuto": "自动", "textBack": "返回", @@ -122,6 +122,7 @@ "textNot": "不", "textNoWidow": "没有单独控制", "textNum": "更改编号", + "textOk": "好", "textOriginal": "原始版", "textParaDeleted": "已删除段落", "textParaFormatted": "段落已被排版", @@ -154,8 +155,7 @@ "textTryUndoRedo": "快速共同编辑模式下,撤销/重做功能被禁用。", "textUnderline": "下划线", "textUsers": "用户", - "textWidow": "单独控制", - "textOk": "Ok" + "textWidow": "单独控制" }, "ThemeColorPalette": { "textCustomColors": "自定义颜色", @@ -168,38 +168,38 @@ "menuAddComment": "添加评论", "menuAddLink": "添加链接", "menuCancel": "取消", + "menuContinueNumbering": "继续编号", "menuDelete": "删除", "menuDeleteTable": "删除表", "menuEdit": "编辑", + "menuJoinList": "联接上一个列表", "menuMerge": "合并", "menuMore": "更多", "menuOpenLink": "打开链接", "menuReview": "审阅", "menuReviewChange": "审查变更", + "menuSeparateList": "分隔列表", "menuSplit": "分开", + "menuStartNewList": "开始新列表", + "menuStartNumberingFrom": "设置编号值", "menuViewComment": "查看批注", + "textCancel": "取消", "textColumns": "列", "textCopyCutPasteActions": "拷贝,剪切和粘贴操作", "textDoNotShowAgain": "不要再显示", - "textRows": "行", - "menuContinueNumbering": "Continue numbering", - "menuJoinList": "Join to previous list", - "menuSeparateList": "Separate list", - "menuStartNewList": "Start new list", - "menuStartNumberingFrom": "Set numbering value", - "textCancel": "Cancel", - "textNumberingValue": "Numbering Value", - "textOk": "OK" + "textNumberingValue": "编号值", + "textOk": "好", + "textRows": "行" }, "Edit": { "notcriticalErrorTitle": "警告", "textActualSize": "实际大小", - "textAddCustomColor": "\n添加自定义颜色", + "textAddCustomColor": "添加自定义颜色", "textAdditional": "其他", "textAdditionalFormatting": "其他格式", "textAddress": "地址", - "textAdvanced": "进阶", - "textAdvancedSettings": "进阶设置", + "textAdvanced": "高级", + "textAdvancedSettings": "高级设置", "textAfter": "之后", "textAlign": "对齐", "textAllCaps": "全部大写", @@ -214,6 +214,7 @@ "textBehind": "之后", "textBorder": "边界", "textBringToForeground": "放到最上面", + "textBullets": "着重号", "textBulletsAndNumbers": "项目符号与编号", "textCellMargins": "单元格边距", "textChart": "图表", @@ -259,6 +260,7 @@ "textNone": "无", "textNoStyles": "这个类型的图表没有对应的样式。", "textNotUrl": "该字段应为“http://www.example.com”格式的URL", + "textNumbers": "数字", "textOpacity": "不透明度", "textOptions": "选项", "textOrphanControl": "单独控制", @@ -302,9 +304,7 @@ "textTopAndBottom": "上下", "textTotalRow": "总行", "textType": "类型", - "textWrap": "包裹", - "textBullets": "Bullets", - "textNumbers": "Numbers" + "textWrap": "包裹" }, "Error": { "convertationTimeoutText": "转换超时", @@ -323,6 +323,7 @@ "errorFileSizeExceed": "文件大小超出了服务器的限制。
恳请你联系管理员。", "errorKeyEncrypt": "未知密钥描述", "errorKeyExpire": "密钥过期", + "errorLoadingFont": "字体未加载。
请与文档服务器管理员联系。", "errorMailMergeLoadFile": "加载失败", "errorMailMergeSaveFile": "合并失败", "errorSessionAbsolute": "该文件编辑窗口已过期。请刷新该页。", @@ -332,7 +333,7 @@ "errorUpdateVersionOnDisconnect": "网络连接已恢复,文件版本已变更。
在继续工作之前,需要下载文件或复制其内容以避免丢失数据,然后刷新此页。", "errorUserDrop": "当前不能访问该文件。", "errorUsersExceed": "超过了定价计划允许的用户数", - "errorViewerDisconnect": "网络连接失败。你仍然可以查看这个文档,
但在连接恢复并刷新该页之前,你将不能下载这个文档。", + "errorViewerDisconnect": "网络连接失败。你仍然可以查看这个文档,
但在连接恢复并刷新该页之前,你将不能下载或打印这个文档。", "notcriticalErrorTitle": "警告", "openErrorText": "打开文件时发生错误", "saveErrorText": "保存文件时发生错误", @@ -343,8 +344,7 @@ "unknownErrorText": "未知错误。", "uploadImageExtMessage": "未知图像格式。", "uploadImageFileCountMessage": "没有图片上传", - "uploadImageSizeMessage": "图片太大了。最大允许的大小是 25 MB.", - "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." + "uploadImageSizeMessage": "图片太大了。最大允许的大小是 25 MB." }, "LongActions": { "applyChangesTextText": "数据加载中…", @@ -391,7 +391,21 @@ "leavePageText": "你有未保存的修改。点击“留在该页”可等待自动保存完成。点击“离开该页”将丢弃全部未经保存的修改。", "notcriticalErrorTitle": "警告", "SDK": { + "above": "以上", + "below": "以下", + "Caption": "标题", + "Choose an item": "选择一个项目", + "Click to load image": "点按以加载图像", + "Current Document": "当前文件", "Diagram Title": "图表标题", + "endnote text": "结束处文本", + "Enter a date": "输入日期", + "Error! Bookmark not defined": "错误!未定义书签。", + "Error! Main Document Only": "错误!仅限主文档。", + "Error! No text of specified style in document": "错误!文档中没有指定样式的文本。", + "Error! Not a valid bookmark self-reference": "错误!不是有效的书签自引用。", + "Even Page ": "偶数页", + "First Page ": "首页", "Footer": "页脚", "footnote text": "脚注文本", "Header": "页眉", @@ -404,53 +418,39 @@ "Heading 7": "标题7", "Heading 8": "标题8", "Heading 9": "标题9", + "Hyperlink": "超链接", + "Index Too Large": "指数过大", "Intense Quote": "直接引用", + "Is Not In Table": "不在表格中", "List Paragraph": "列表段落", + "Missing Argument": "缺少参数", + "Missing Operator": "缺少运算符", "No Spacing": "无空格", + "No table of contents entries found": "未找到目录条目。", + "No table of figures entries found": "未找到图片或表格的元素。", + "None": "无", "Normal": "正常", + "Number Too Large To Format": "数字太大,无法设定格式", + "Odd Page ": "奇数页", "Quote": "引用", + "Same as Previous": "与上一个相同", "Series": "系列", "Subtitle": "副标题", + "Syntax Error": "语法错误", + "Table Index Cannot be Zero": "表格索引不能为零", + "Table of Contents": "目录", + "table of figures": "图表目录", + "The Formula Not In Table": "公式不在表格中", "Title": "标题", + "TOC Heading": "目录标题", + "Type equation here": "在此处输入公式", + "Undefined Bookmark": "未定义书签", + "Unexpected End of Formula": "意外的公式结尾", "X Axis": "X 轴 XAS", "Y Axis": "Y 轴", "Your text here": "你的文本在此", - " -Section ": " -Section ", - "above": "above", - "below": "below", - "Caption": "Caption", - "Choose an item": "Choose an item", - "Click to load image": "Click to load image", - "Current Document": "Current Document", - "endnote text": "Endnote Text", - "Enter a date": "Enter a date", - "Error! Bookmark not defined": "Error! Bookmark not defined.", - "Error! Main Document Only": "Error! Main Document Only.", - "Error! No text of specified style in document": "Error! No text of specified style in document.", - "Error! Not a valid bookmark self-reference": "Error! Not a valid bookmark self-reference.", - "Even Page ": "Even Page ", - "First Page ": "First Page ", - "Hyperlink": "Hyperlink", - "Index Too Large": "Index Too Large", - "Is Not In Table": "Is Not In Table", - "Missing Argument": "Missing Argument", - "Missing Operator": "Missing Operator", - "No table of contents entries found": "There are no headings in the document. Apply a heading style to the text so that it appears in the table of contents.", - "No table of figures entries found": "No table of figures entries found.", - "None": "None", - "Number Too Large To Format": "Number Too Large To Format", - "Odd Page ": "Odd Page ", - "Same as Previous": "Same as Previous", - "Syntax Error": "Syntax Error", - "Table Index Cannot be Zero": "Table Index Cannot be Zero", - "Table of Contents": "Table of Contents", - "table of figures": "Table of figures", - "The Formula Not In Table": "The Formula Not In Table", - "TOC Heading": "TOC Heading", - "Type equation here": "Type equation here", - "Undefined Bookmark": "Undefined Bookmark", - "Unexpected End of Formula": "Unexpected End of Formula", - "Zero Divide": "Zero Divide" + "Zero Divide": "除数为零", + " -Section ": " -Section " }, "textAnonymous": "匿名", "textBuyNow": "访问网站", @@ -491,6 +491,8 @@ "textCancel": "取消", "textCaseSensitive": "区分大小写", "textCentimeter": "厘米", + "textChooseEncoding": "选择编码格式", + "textChooseTxtOptions": "选择TXT选项", "textCollaboration": "协作", "textColorSchemes": "颜色方案", "textComment": "评论", @@ -532,6 +534,7 @@ "textMarginsW": "对给定的页面宽度来说,左右边距过高。", "textNoCharacters": "非打印字符", "textNoTextFound": "文本没找到", + "textOk": "好", "textOpenFile": "输入密码来打开文件", "textOrientation": "方向", "textOwner": "创建者", @@ -553,35 +556,32 @@ "textTop": "顶部", "textUnitOfMeasurement": "计量单位", "textUploaded": "已上传", + "txtDownloadTxt": "下载 TXT", "txtIncorrectPwd": "密码有误", + "txtOk": "好", "txtProtected": "输入密码并打开文件后,当前密码将会被重设。", - "textChooseEncoding": "Choose Encoding", - "textChooseTxtOptions": "Choose TXT Options", - "textOk": "Ok", - "txtDownloadTxt": "Download TXT", - "txtOk": "Ok", - "txtScheme1": "Office", - "txtScheme10": "Median", - "txtScheme11": "Metro", - "txtScheme12": "Module", - "txtScheme13": "Opulent", - "txtScheme14": "Oriel", - "txtScheme15": "Origin", - "txtScheme16": "Paper", - "txtScheme17": "Solstice", - "txtScheme18": "Technic", - "txtScheme19": "Trek", - "txtScheme2": "Grayscale", - "txtScheme20": "Urban", - "txtScheme21": "Verve", - "txtScheme22": "New Office", - "txtScheme3": "Apex", - "txtScheme4": "Aspect", - "txtScheme5": "Civic", - "txtScheme6": "Concourse", - "txtScheme7": "Equity", - "txtScheme8": "Flow", - "txtScheme9": "Foundry" + "txtScheme1": "办公室", + "txtScheme10": "中位数", + "txtScheme11": "组件", + "txtScheme12": "模块", + "txtScheme13": "富裕的", + "txtScheme14": "奥丽尔", + "txtScheme15": "原来的", + "txtScheme16": "纸", + "txtScheme17": "至点", + "txtScheme18": "技术", + "txtScheme19": "行进", + "txtScheme2": "灰度", + "txtScheme20": "城市的", + "txtScheme21": "气势", + "txtScheme22": "新的 Office", + "txtScheme3": "顶点", + "txtScheme4": "方面", + "txtScheme5": "公民", + "txtScheme6": "汇合", + "txtScheme7": "公平", + "txtScheme8": "流动", + "txtScheme9": "发现" }, "Toolbar": { "dlgLeaveMsgText": "你有未保存的修改。点击“留在该页”可等待自动保存完成。点击“离开该页”将丢弃全部未经保存的修改。", diff --git a/apps/presentationeditor/mobile/locale/fr.json b/apps/presentationeditor/mobile/locale/fr.json index 6a543a1b3..d8424866e 100644 --- a/apps/presentationeditor/mobile/locale/fr.json +++ b/apps/presentationeditor/mobile/locale/fr.json @@ -27,11 +27,11 @@ "textMessageDeleteComment": "Voulez-vous vraiment supprimer ce commentaire?", "textMessageDeleteReply": "Voulez-vous vraiment supprimer cette réponse?", "textNoComments": "Il n'y a pas de commentaires dans ce document", + "textOk": "Ok", "textReopen": "Rouvrir", "textResolve": "Résoudre", "textTryUndoRedo": "Les fonctions Annuler/Rétablir sont désactivées pour le mode de co-édition rapide.", - "textUsers": "Utilisateurs", - "textOk": "Ok" + "textUsers": "Utilisateurs" }, "ThemeColorPalette": { "textCustomColors": "Couleurs personnalisées", diff --git a/apps/presentationeditor/mobile/locale/ko.json b/apps/presentationeditor/mobile/locale/ko.json index 737efc64f..68e33fc81 100644 --- a/apps/presentationeditor/mobile/locale/ko.json +++ b/apps/presentationeditor/mobile/locale/ko.json @@ -1,118 +1,118 @@ { "About": { - "textAbout": "About", - "textAddress": "Address", - "textBack": "Back", - "textEmail": "Email", - "textPoweredBy": "Powered By", - "textTel": "Tel", - "textVersion": "Version" + "textAbout": "정보", + "textAddress": "주소", + "textBack": "뒤로", + "textEmail": "이메일", + "textPoweredBy": "기술 지원", + "textTel": "전화 번호", + "textVersion": "버전" }, "Common": { "Collaboration": { - "notcriticalErrorTitle": "Warning", - "textAddComment": "Add Comment", - "textAddReply": "Add Reply", - "textBack": "Back", - "textCancel": "Cancel", - "textCollaboration": "Collaboration", + "notcriticalErrorTitle": "경고", + "textAddComment": "코멘트 달기", + "textAddReply": "댓글 달기", + "textBack": "뒤로", + "textCancel": "취소", + "textCollaboration": "협업", "textComments": "Comments", - "textDeleteComment": "Delete Comment", - "textDeleteReply": "Delete Reply", - "textDone": "Done", - "textEdit": "Edit", - "textEditComment": "Edit Comment", - "textEditReply": "Edit Reply", + "textDeleteComment": "코멘트 삭제", + "textDeleteReply": "댓글 삭제", + "textDone": "완료", + "textEdit": "편집", + "textEditComment": "코멘트 편집", + "textEditReply": "댓글 편집", + "textMessageDeleteComment": "정말로 삭제 하시겠습니까", + "textMessageDeleteReply": "정말로 삭제 하시겠습니까", + "textOk": "확인", + "textReopen": "다시 열기", + "textResolve": "해결", + "textUsers": "사용자", "textEditUser": "Users who are editing the file:", - "textMessageDeleteComment": "Do you really want to delete this comment?", - "textMessageDeleteReply": "Do you really want to delete this reply?", "textNoComments": "This document doesn't contain comments", - "textReopen": "Reopen", - "textResolve": "Resolve", - "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", - "textUsers": "Users", - "textOk": "Ok" + "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode." }, "ThemeColorPalette": { - "textCustomColors": "Custom Colors", + "textCustomColors": "사용자 정의 색상", "textStandartColors": "Standard Colors", "textThemeColors": "Theme Colors" } }, "ContextMenu": { - "errorCopyCutPaste": "Copy, cut and paste actions using the context menu will be performed within the current file only.", - "menuAddComment": "Add Comment", - "menuAddLink": "Add Link", - "menuCancel": "Cancel", - "menuDelete": "Delete", - "menuDeleteTable": "Delete Table", - "menuEdit": "Edit", - "menuMerge": "Merge", - "menuMore": "More", - "menuOpenLink": "Open Link", - "menuSplit": "Split", - "menuViewComment": "View Comment", - "textColumns": "Columns", - "textCopyCutPasteActions": "Copy, Cut and Paste Actions", - "textDoNotShowAgain": "Don't show again", - "textRows": "Rows" + "errorCopyCutPaste": "복사, 자르기 및 붙여 넣기", + "menuAddComment": "코멘트 달기", + "menuAddLink": "링크 추가", + "menuCancel": "취소", + "menuDelete": "삭제", + "menuDeleteTable": "표삭제", + "menuEdit": "편집", + "menuMerge": "병합", + "menuMore": "자세히", + "menuOpenLink": "링크 열기", + "menuSplit": "분할", + "menuViewComment": "코멘트 보기", + "textColumns": "열", + "textCopyCutPasteActions": "복사, 잘라내기 및 붙여 넣기", + "textDoNotShowAgain": "다시 표시하지 않음", + "textRows": "행" }, "Controller": { "Main": { - "advDRMOptions": "Protected File", - "advDRMPassword": "Password", - "closeButtonText": "Close File", - "criticalErrorTitle": "Error", - "errorAccessDeny": "You are trying to perform an action you do not have rights for.
Please, contact your admin.", - "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", - "errorProcessSaveResult": "Saving failed.", - "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", - "errorUpdateVersion": "The file version has been changed. The page will be reloaded.", - "leavePageText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", - "notcriticalErrorTitle": "Warning", + "advDRMOptions": "보호 된 파일", + "advDRMPassword": "비밀번호", + "closeButtonText": "파일 닫기", + "criticalErrorTitle": "오류", + "errorProcessSaveResult": "저장하지 못했습니다.", + "notcriticalErrorTitle": "경고", "SDK": { - "Chart": "Chart", + "Chart": "차트", + "Click to add notes": "노트를 추가하려면 클릭", + "ClipArt": "클립 아트", + "Date and time": "날짜 및 시간", + "Diagram": "다이어그램", + "Diagram Title": "차트 제목", + "Footer": "꼬리말", + "Header": "머리글", + "Image": "이미지", + "Loading": "로드 중", + "Media": "미디어", + "None": "없음", + "Picture": "그림", + "Series": "시리즈", + "Slide number": "슬라이드 번호", + "Slide subtitle": "슬라이드 부제목", + "Slide text": "슬라이드 텍스트", + "Slide title": "슬라이드 제목", + "Table": "표", "Click to add first slide": "Click to add first slide", - "Click to add notes": "Click to add notes", - "ClipArt": "Clip Art", - "Date and time": "Date and time", - "Diagram": "Diagram", - "Diagram Title": "Chart Title", - "Footer": "Footer", - "Header": "Header", - "Image": "Image", - "Loading": "Loading", - "Media": "Media", - "None": "None", - "Picture": "Picture", - "Series": "Series", - "Slide number": "Slide number", - "Slide subtitle": "Slide subtitle", - "Slide text": "Slide text", - "Slide title": "Slide title", - "Table": "Table", "X Axis": "X Axis XAS", "Y Axis": "Y Axis", "Your text here": "Your text here" }, - "textAnonymous": "Anonymous", - "textBuyNow": "Visit website", - "textClose": "Close", - "textContactUs": "Contact sales", + "textAnonymous": "익명", + "textBuyNow": "웹 사이트 방문", + "textClose": "닫기", + "textContactUs": "영업 담당자에게 문의", + "textGuest": "게스트", + "textNo": "아니오", + "textNoLicenseTitle": "라이센스 수를 제한했습니다.", + "textOpenFile": "파일을 열려면 암호를 입력하십시오.", + "textPaidFeature": "유료기능", + "textYes": "확인", + "titleLicenseExp": "라이센스 만료", + "titleServerVersion": "편집기가 업데이트되었습니다.", + "titleUpdateVersion": "버전이 변경되었습니다.", + "txtIncorrectPwd": "잘못된 비밀번호", + "txtProtected": "암호를 입력하고 파일을 열면 파일의 현재 암호가 재설정됩니다.", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
Please, contact your admin.", + "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", + "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", + "errorUpdateVersion": "The file version has been changed. The page will be reloaded.", + "leavePageText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", "textCustomLoader": "Sorry, you are not entitled to change the loader. Please, contact our sales department to get a quote.", - "textGuest": "Guest", "textHasMacros": "The file contains automatic macros.
Do you want to run macros?", - "textNo": "No", - "textNoLicenseTitle": "License limit reached", - "textOpenFile": "Enter a password to open the file", - "textPaidFeature": "Paid feature", "textRemember": "Remember my choice", - "textYes": "Yes", - "titleLicenseExp": "License expired", - "titleServerVersion": "Editor updated", - "titleUpdateVersion": "Version changed", - "txtIncorrectPwd": "Password is incorrect", - "txtProtected": "Once you enter the password and open the file, the current password to the file will be reset", "warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.", "warnLicenseExp": "Your license has expired. Please, update it and refresh the page.", "warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your administrator.", @@ -124,344 +124,344 @@ } }, "Error": { - "convertationTimeoutText": "Conversion timeout exceeded.", - "criticalErrorExtText": "Press 'OK' to go back to the document list.", - "criticalErrorTitle": "Error", - "downloadErrorText": "Download failed.", + "convertationTimeoutText": "변환 시간을 초과했습니다.", + "criticalErrorExtText": "문서 목록으로 돌아가려면 \"확인\" 버튼을 누르십시오.", + "criticalErrorTitle": "오류", + "downloadErrorText": "다운로드 실패", + "errorBadImageUrl": "이미지 URL이 잘못되었습니다.", + "errorDatabaseConnection": "외부 오류입니다.
데이터베이스 연결 오류입니다. 지원팀에 문의하십시오.", + "errorDataEncrypted": "암호화 변경 사항이 수신되었으며 해독할 수 없습니다.", + "errorDataRange": "잘못된 참조 대상 입니다.", + "errorDefaultMessage": "오류 코드: %1", + "errorKeyEncrypt": "알 수없는 키 설명자", + "errorLoadingFont": "글꼴 불러오기에 실패하였습니다.
문서 시스템 관리자에게 문의하세요.", + "errorStockChart": "줄의 순서가 잘못되었습니다. 주식형 차트를 생성하려면
시가, 최고가, 최저가, 종가의 순서로 데이터를 테이블에 배치하십시오.", + "errorViewerDisconnect": "네트워크 연결에 실패했습니다. 이 문서는 계속 볼 수 있지만
연결이 복원되고 페이지가 새로 고쳐질 때까지 이 문서를 다운로드하거나 인쇄할 수 없습니다.", + "notcriticalErrorTitle": "경고", + "openErrorText": "파일을 여는 동안 오류가 발생했습니다.", + "saveErrorText": "파일을 저장하는 동안 오류가 발생했습니다.", + "unknownErrorText": "알 수 없는 오류.", + "uploadImageExtMessage": "알 수없는 이미지 형식입니다.", + "uploadImageFileCountMessage": "이미지가 업로드되지 않았습니다.", "errorAccessDeny": "You are trying to perform an action you do not have rights for.
Please contact your admin.", - "errorBadImageUrl": "Image url is incorrect", "errorConnectToServer": "Can't save this doc. Check your connection settings or contact your admin.
When you click the 'OK' button, you will be prompted to download the document.", - "errorDatabaseConnection": "External error.
Database connection error. Please, contact support.", - "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", - "errorDataRange": "Incorrect data range.", - "errorDefaultMessage": "Error code: %1", "errorEditingDownloadas": "An error occurred during the work with the document.
Use the 'Download' option to save the file backup copy locally.", "errorFilePassProtect": "The file is password protected and could not be opened.", "errorFileSizeExceed": "The file size exceeds your server limitation.
Please, contact your admin.", - "errorKeyEncrypt": "Unknown key descriptor", "errorKeyExpire": "Key descriptor expired", "errorSessionAbsolute": "The document editing session has expired. Please, reload the page.", "errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.", "errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.", - "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
opening price, max price, min price, closing price.", "errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
Before you can continue working, download the file or copy its content to make sure nothing is lost, and then reload this page.", "errorUserDrop": "The file cannot be accessed right now.", "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", - "errorViewerDisconnect": "Connection is lost. You can still view the document,
but you won't be able to download it until the connection is restored and the page is reloaded.", - "notcriticalErrorTitle": "Warning", - "openErrorText": "An error has occurred while opening the file", - "saveErrorText": "An error has occurred while saving the file", "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.", "splitDividerErrorText": "The number of rows must be a divisor of %1", "splitMaxColsErrorText": "The number of columns must be less than %1", "splitMaxRowsErrorText": "The number of rows must be less than %1", - "unknownErrorText": "Unknown error.", - "uploadImageExtMessage": "Unknown image format.", - "uploadImageFileCountMessage": "No images uploaded.", - "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.", - "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." }, "LongActions": { - "applyChangesTextText": "Loading data...", - "applyChangesTitleText": "Loading Data", - "downloadTextText": "Downloading document...", - "downloadTitleText": "Downloading Document", - "loadFontsTextText": "Loading data...", - "loadFontsTitleText": "Loading Data", - "loadFontTextText": "Loading data...", - "loadFontTitleText": "Loading Data", - "loadImagesTextText": "Loading images...", - "loadImagesTitleText": "Loading Images", - "loadImageTextText": "Loading image...", - "loadImageTitleText": "Loading Image", - "loadingDocumentTextText": "Loading document...", - "loadingDocumentTitleText": "Loading document", - "loadThemeTextText": "Loading theme...", - "loadThemeTitleText": "Loading Theme", - "openTextText": "Opening document...", - "openTitleText": "Opening Document", - "printTextText": "Printing document...", - "printTitleText": "Printing Document", - "savePreparingText": "Preparing to save", - "savePreparingTitle": "Preparing to save. Please wait...", - "saveTextText": "Saving document...", - "saveTitleText": "Saving Document", - "textLoadingDocument": "Loading document", - "txtEditingMode": "Set editing mode...", - "uploadImageTextText": "Uploading image...", - "uploadImageTitleText": "Uploading Image", - "waitText": "Please, wait..." + "applyChangesTextText": "데이터로드 중 ...", + "applyChangesTitleText": "데이터로드 중", + "downloadTextText": "문서 다운로드 중...", + "downloadTitleText": "문서 다운로드 중", + "loadFontsTextText": "데이터로드 중 ...", + "loadFontsTitleText": "데이터로드 중", + "loadFontTextText": "데이터로드 중 ...", + "loadFontTitleText": "데이터로드 중", + "loadImagesTextText": "이미지로드 중 ...", + "loadImagesTitleText": "이미지로드 중", + "loadImageTextText": "이미지로드 중 ...", + "loadImageTitleText": "이미지로드 중", + "loadingDocumentTextText": "문서로드 중 ...", + "loadingDocumentTitleText": "문서 로드 중", + "loadThemeTextText": "테마로드 중 ...", + "loadThemeTitleText": "테마로드 중", + "openTextText": "문서 열기 중 ...", + "openTitleText": "문서 열기", + "printTextText": "문서 인쇄 중 ...", + "printTitleText": "문서 인쇄 중", + "savePreparingText": "저장 준비 중", + "savePreparingTitle": "저장 준비 중입니다. 잠시 기다려주십시오 ...", + "saveTextText": "문서 저장 중 ...", + "saveTitleText": "문서 저장 중", + "textLoadingDocument": "문서 로드 중", + "txtEditingMode": "편집 모드 설정 ...", + "uploadImageTextText": "이미지 업로드 중 ...", + "uploadImageTitleText": "이미지 업로드 중", + "waitText": "잠시만 기다려주세요..." }, "Toolbar": { + "leaveButtonText": "이 페이지에서 나가기", "dlgLeaveMsgText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", "dlgLeaveTitleText": "You leave the application", - "leaveButtonText": "Leave this page", "stayButtonText": "Stay on this Page" }, "View": { "Add": { - "notcriticalErrorTitle": "Warning", - "textAddLink": "Add Link", - "textAddress": "Address", - "textBack": "Back", - "textCancel": "Cancel", - "textColumns": "Columns", - "textComment": "Comment", - "textDefault": "Selected text", - "textDisplay": "Display", + "notcriticalErrorTitle": "경고", + "textAddLink": "링크 추가", + "textAddress": "주소", + "textBack": "뒤로", + "textCancel": "취소", + "textColumns": "열", + "textComment": "코멘트", + "textDefault": "선택한 텍스트", + "textDisplay": "표시", + "textExternalLink": "외부 링크", + "textFirstSlide": "첫 번째 슬라이드", + "textImage": "이미지", + "textImageURL": "이미지 URL", + "textInsert": "삽입", + "textInsertImage": "이미지 삽입", + "textLastSlide": "마지막 슬라이드", + "textLink": "링크", + "textLinkSettings": "링크 설정", + "textLinkTo": "링크 대상", + "textLinkType": "링크 유형", + "textNextSlide": "다음 슬라이드", + "textOther": "기타", + "textPictureFromLibrary": "그림 라이브러리에서", + "textPictureFromURL": "URL에서 그림", + "textRows": "행", + "textShape": "도형", + "textSlide": "슬라이드", + "textSlideInThisPresentation": "이 프리젠 테이션에서 슬라이드", + "textSlideNumber": "슬라이드 번호", + "textTable": "표", + "textTableSize": "표 크기", "textEmptyImgUrl": "You need to specify the image URL.", - "textExternalLink": "External Link", - "textFirstSlide": "First Slide", - "textImage": "Image", - "textImageURL": "Image URL", - "textInsert": "Insert", - "textInsertImage": "Insert Image", - "textLastSlide": "Last Slide", - "textLink": "Link", - "textLinkSettings": "Link Settings", - "textLinkTo": "Link to", - "textLinkType": "Link Type", - "textNextSlide": "Next Slide", - "textOther": "Other", - "textPictureFromLibrary": "Picture from Library", - "textPictureFromURL": "Picture from URL", "textPreviousSlide": "Previous Slide", - "textRows": "Rows", "textScreenTip": "Screen Tip", - "textShape": "Shape", - "textSlide": "Slide", - "textSlideInThisPresentation": "Slide in this Presentation", - "textSlideNumber": "Slide Number", - "textTable": "Table", - "textTableSize": "Table Size", "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"" }, "Edit": { - "notcriticalErrorTitle": "Warning", - "textActualSize": "Actual Size", - "textAddCustomColor": "Add Custom Color", - "textAdditional": "Additional", - "textAdditionalFormatting": "Additional Formatting", - "textAddress": "Address", - "textAfter": "After", - "textAlign": "Align", - "textAlignBottom": "Align Bottom", - "textAlignCenter": "Align Center", - "textAlignLeft": "Align Left", - "textAlignMiddle": "Align Middle", - "textAlignRight": "Align Right", - "textAlignTop": "Align Top", - "textAllCaps": "All Caps", - "textApplyAll": "Apply to All Slides", - "textAuto": "Auto", - "textBack": "Back", - "textBandedColumn": "Banded Column", - "textBandedRow": "Banded Row", - "textBefore": "Before", + "notcriticalErrorTitle": "경고", + "textActualSize": "실제 크기", + "textAddCustomColor": "사용자 색상 추가", + "textAdditional": "추가", + "textAdditionalFormatting": "추가 서식 지정", + "textAddress": "주소", + "textAfter": "이후", + "textAlign": "맞춤", + "textAlignBottom": "아래쪽 맞춤", + "textAlignCenter": "가운데 맞춤", + "textAlignLeft": "왼쪽 맞춤", + "textAlignMiddle": "중간 맞춤", + "textAlignRight": "오른쪽 맞춤", + "textAlignTop": "위쪽 맞춤", + "textAllCaps": "모든 대문자", + "textApplyAll": "모든 슬라이드에 적용", + "textAuto": "자동", + "textBack": "뒤로", + "textBandedColumn": "줄무늬 열", + "textBandedRow": "줄무늬 행", + "textBefore": "이전", + "textBorder": "테두리", + "textBottom": "하단", + "textBottomLeft": "왼쪽 하단", + "textBottomRight": "오른쪽-하단", + "textBringToForeground": "앞으로 가져오기", + "textBullets": "글 머리 기호", + "textBulletsAndNumbers": "글머리 기호 및 숫자", + "textCaseSensitive": "대소문자 구별", + "textCellMargins": "셀 여백", + "textChart": "차트", + "textClock": "시계", + "textClockwise": "시계 방향", + "textColor": "색상", + "textCounterclockwise": "반 시계 방향", + "textCover": "표지", + "textCustomColor": "사용자 정의 색상", + "textDefault": "선택한 텍스트", + "textDelay": "지연", + "textDeleteSlide": "슬라이드 삭제", + "textDisplay": "표시", + "textDistanceFromText": "텍스트 간격", + "textDistributeHorizontally": "수평 분포", + "textDistributeVertically": "수직 분포", + "textDone": "완료", + "textDoubleStrikethrough": "이중 취소 선", + "textDuration": "재생 시간", + "textEditLink": "링크 편집", + "textEffect": "효과", + "textEffects": "효과", + "textExternalLink": "외부 링크", + "textFade": "페이드", + "textFill": "채우기", + "textFind": "검색", + "textFindAndReplace": "찾기 및 바꾸기", + "textFirstColumn": "첫 번째 열", + "textFirstSlide": "첫 번째 슬라이드", + "textFontColor": "글꼴 색", + "textFontColors": "글꼴 색", + "textFonts": "글꼴", + "textFromLibrary": "그림 라이브러리에서", + "textFromURL": "URL에서 그림", + "textHeaderRow": "머리글 행", + "textHighlight": "결과 강조 표시", + "textHighlightColor": "텍스트 강조 색", + "textHorizontalIn": "수평 입력", + "textHorizontalOut": "수평 출력", + "textHyperlink": "하이퍼 링크", + "textImage": "이미지", + "textImageURL": "이미지 URL", + "textLastColumn": "마지막 열", + "textLastSlide": "마지막 슬라이드", + "textLayout": "레이아웃", + "textLeft": "왼쪽", + "textLetterSpacing": "문자 간격", + "textLineSpacing": "줄 간격", + "textLink": "링크", + "textLinkSettings": "링크 설정", + "textLinkTo": "링크 대상", + "textLinkType": "링크 유형", + "textMoveBackward": "맨 뒤로 보내기", + "textMoveForward": "맨 앞으로 가져오기", + "textNextSlide": "다음 슬라이드", + "textNone": "없음", + "textNumbers": "숫자", + "textOpacity": "투명도", + "textOptions": "옵션", + "textPictureFromLibrary": "그림 라이브러리에서", + "textPictureFromURL": "URL에서 그림", + "textPt": "pt", + "textPush": "밀어내기", + "textRemoveChart": "차트 제거", + "textRemoveImage": "이미지 제거", + "textRemoveLink": "링크 제거", + "textRemoveShape": "도형 제거", + "textRemoveTable": "표 제거", + "textReorder": "재주문", + "textReplace": "바꾸기", + "textReplaceAll": "모두 바꾸기", + "textReplaceImage": "이미지 바꾸기", + "textRight": "오른쪽", + "textSearch": "검색", + "textSec": "s", + "textSendToBackground": "맨 뒤로 보내기", + "textShape": "도형", + "textSize": "크기", + "textSlide": "슬라이드", + "textSlideInThisPresentation": "이 프리젠 테이션에서 슬라이드", + "textSlideNumber": "슬라이드 번호", + "textSmallCaps": "작은 대문자", + "textSmoothly": "부드럽게", + "textSplit": "분할", + "textStartOnClick": "시작시 클릭", + "textStyle": "스타일", + "textStyleOptions": "스타일 옵션", + "textSubscript": "아래 첨자", + "textSuperscript": "위 첨자", + "textTable": "표", + "textText": "텍스트", + "textTheme": "테마", + "textTotalRow": "합계", + "textType": "유형", + "textVerticalOut": "수직 출력", + "textZoom": "확대/축소", + "textZoomIn": "확대", + "textZoomOut": "축소", + "textZoomRotate": "확대 / 축소 및 회전", "textBlack": "Through Black", - "textBorder": "Border", - "textBottom": "Bottom", - "textBottomLeft": "Bottom-Left", - "textBottomRight": "Bottom-Right", - "textBringToForeground": "Bring to Foreground", - "textBullets": "Bullets", - "textBulletsAndNumbers": "Bullets & Numbers", - "textCaseSensitive": "Case Sensitive", - "textCellMargins": "Cell Margins", - "textChart": "Chart", - "textClock": "Clock", - "textClockwise": "Clockwise", - "textColor": "Color", - "textCounterclockwise": "Counterclockwise", - "textCover": "Cover", - "textCustomColor": "Custom Color", - "textDefault": "Selected text", - "textDelay": "Delay", - "textDeleteSlide": "Delete Slide", - "textDisplay": "Display", - "textDistanceFromText": "Distance From Text", - "textDistributeHorizontally": "Distribute Horizontally", - "textDistributeVertically": "Distribute Vertically", - "textDone": "Done", - "textDoubleStrikethrough": "Double Strikethrough", "textDuplicateSlide": "Duplicate Slide", - "textDuration": "Duration", - "textEditLink": "Edit Link", - "textEffect": "Effect", - "textEffects": "Effects", "textEmptyImgUrl": "You need to specify the image URL.", - "textExternalLink": "External Link", - "textFade": "Fade", - "textFill": "Fill", "textFinalMessage": "The end of slide preview. Click to exit.", - "textFind": "Find", - "textFindAndReplace": "Find and Replace", - "textFirstColumn": "First Column", - "textFirstSlide": "First Slide", - "textFontColor": "Font Color", - "textFontColors": "Font Colors", - "textFonts": "Fonts", - "textFromLibrary": "Picture from Library", - "textFromURL": "Picture from URL", - "textHeaderRow": "Header Row", - "textHighlight": "Highlight Results", - "textHighlightColor": "Highlight Color", - "textHorizontalIn": "Horizontal In", - "textHorizontalOut": "Horizontal Out", - "textHyperlink": "Hyperlink", - "textImage": "Image", - "textImageURL": "Image URL", - "textLastColumn": "Last Column", - "textLastSlide": "Last Slide", - "textLayout": "Layout", - "textLeft": "Left", - "textLetterSpacing": "Letter Spacing", - "textLineSpacing": "Line Spacing", - "textLink": "Link", - "textLinkSettings": "Link Settings", - "textLinkTo": "Link to", - "textLinkType": "Link Type", - "textMoveBackward": "Move Backward", - "textMoveForward": "Move Forward", - "textNextSlide": "Next Slide", - "textNone": "None", "textNoStyles": "No styles for this type of chart.", "textNoTextFound": "Text not found", "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", - "textNumbers": "Numbers", - "textOpacity": "Opacity", - "textOptions": "Options", - "textPictureFromLibrary": "Picture from Library", - "textPictureFromURL": "Picture from URL", "textPreviousSlide": "Previous Slide", - "textPt": "pt", - "textPush": "Push", - "textRemoveChart": "Remove Chart", - "textRemoveImage": "Remove Image", - "textRemoveLink": "Remove Link", - "textRemoveShape": "Remove Shape", - "textRemoveTable": "Remove Table", - "textReorder": "Reorder", - "textReplace": "Replace", - "textReplaceAll": "Replace All", - "textReplaceImage": "Replace Image", - "textRight": "Right", "textScreenTip": "Screen Tip", - "textSearch": "Search", - "textSec": "s", "textSelectObjectToEdit": "Select object to edit", - "textSendToBackground": "Send to Background", - "textShape": "Shape", - "textSize": "Size", - "textSlide": "Slide", - "textSlideInThisPresentation": "Slide in this Presentation", - "textSlideNumber": "Slide Number", - "textSmallCaps": "Small Caps", - "textSmoothly": "Smoothly", - "textSplit": "Split", - "textStartOnClick": "Start On Click", "textStrikethrough": "Strikethrough", - "textStyle": "Style", - "textStyleOptions": "Style Options", - "textSubscript": "Subscript", - "textSuperscript": "Superscript", - "textTable": "Table", - "textText": "Text", - "textTheme": "Theme", "textTop": "Top", "textTopLeft": "Top-Left", "textTopRight": "Top-Right", - "textTotalRow": "Total Row", "textTransition": "Transition", - "textType": "Type", "textUnCover": "UnCover", "textVerticalIn": "Vertical In", - "textVerticalOut": "Vertical Out", "textWedge": "Wedge", - "textWipe": "Wipe", - "textZoom": "Zoom", - "textZoomIn": "Zoom In", - "textZoomOut": "Zoom Out", - "textZoomRotate": "Zoom and Rotate" + "textWipe": "Wipe" }, "Settings": { + "mniSlideWide": "와이드 스크린 (16 : 9)", + "textAbout": "정보", + "textAddress": "주소 :", + "textApplication": "어플리케이션", + "textApplicationSettings": "어플리케이션 설정", + "textAuthor": "작성자", + "textBack": "뒤로", + "textCaseSensitive": "대소문자 구별", + "textCentimeter": "센티미터", + "textCollaboration": "협업", + "textColorSchemes": "색 구성표", + "textComment": "코멘트", + "textCreated": "생성되었습니다", + "textDisableAll": "모두 비활성화", + "textDisableAllMacrosWithNotification": "알림이 있는 모든 매크로 닫기", + "textDisableAllMacrosWithoutNotification": "알림 없이 모든 매크로 닫기", + "textDone": "완료", + "textDownload": "다운로드", + "textDownloadAs": "다른 이름으로 다운로드 ...", + "textEmail": "이메일 :", + "textEnableAll": "모두 활성화", + "textEnableAllMacrosWithoutNotification": "알림 없이 모든 매크로 시작", + "textFind": "검색", + "textFindAndReplace": "찾기 및 바꾸기", + "textFindAndReplaceAll": "모두 바꾸기", + "textHelp": "도움말", + "textHighlight": "결과 강조 표시", + "textInch": "인치", + "textLastModified": "최종 편집", + "textLastModifiedBy": "최종 편집자", + "textLoading": "로딩중...", + "textLocation": "위치", + "textMacrosSettings": "매크로 설정", + "textOwner": "소유자", + "textPoweredBy": "기술 지원", + "textPresentationInfo": "프레젠테이션 정보", + "textPresentationSettings": "프레젠테이션 설정", + "textPresentationTitle": "프레젠테이션 제목", + "textPrint": "인쇄", + "textReplace": "바꾸기", + "textReplaceAll": "모두 바꾸기", + "textSearch": "검색", + "textSettings": "설정", + "textShowNotification": "알림 표시", + "textSlideSize": "슬라이드 크기", + "textSubject": "제목", + "textTel": "전화:", + "textUnitOfMeasurement": "측정 단위", + "textUploaded": "업로드 되었습니다", + "textVersion": "버전", + "txtScheme1": "사무실", + "txtScheme10": "중앙값", + "txtScheme11": "매트로", + "txtScheme12": "모듈", + "txtScheme13": "호화 로움", + "txtScheme14": "외벽창", + "txtScheme15": "원본", + "txtScheme16": "용지", + "txtScheme17": "지점", + "txtScheme2": "그레이스케일", + "txtScheme22": "신규 오피스", + "txtScheme3": "꼭지점", + "txtScheme4": "화면", + "txtScheme7": "같음", + "txtScheme8": "플로우", + "txtScheme9": "발견", "mniSlideStandard": "Standard (4:3)", - "mniSlideWide": "Widescreen (16:9)", - "textAbout": "About", - "textAddress": "address:", - "textApplication": "Application", - "textApplicationSettings": "Application Settings", - "textAuthor": "Author", - "textBack": "Back", - "textCaseSensitive": "Case Sensitive", - "textCentimeter": "Centimeter", - "textCollaboration": "Collaboration", - "textColorSchemes": "Color Schemes", - "textComment": "Comment", - "textCreated": "Created", - "textDisableAll": "Disable All", - "textDisableAllMacrosWithNotification": "Disable all macros with notification", - "textDisableAllMacrosWithoutNotification": "Disable all macros without notification", - "textDone": "Done", - "textDownload": "Download", - "textDownloadAs": "Download As...", - "textEmail": "email:", - "textEnableAll": "Enable All", - "textEnableAllMacrosWithoutNotification": "Enable all macros without notification", - "textFind": "Find", - "textFindAndReplace": "Find and Replace", - "textFindAndReplaceAll": "Find and Replace All", - "textHelp": "Help", - "textHighlight": "Highlight Results", - "textInch": "Inch", - "textLastModified": "Last Modified", - "textLastModifiedBy": "Last Modified By", - "textLoading": "Loading...", - "textLocation": "Location", - "textMacrosSettings": "Macros Settings", "textNoTextFound": "Text not found", - "textOwner": "Owner", "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" + "txtScheme6": "Concourse" } } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/fr.json b/apps/spreadsheeteditor/mobile/locale/fr.json index edbdab0bd..f789b42db 100644 --- a/apps/spreadsheeteditor/mobile/locale/fr.json +++ b/apps/spreadsheeteditor/mobile/locale/fr.json @@ -27,11 +27,11 @@ "textMessageDeleteComment": "Voulez-vous vraiment supprimer ce commentaire?", "textMessageDeleteReply": "Voulez-vous vraiment supprimer cette réponse?", "textNoComments": "Il n'y a pas de commentaires dans ce document", + "textOk": "Ok", "textReopen": "Rouvrir", "textResolve": "Résoudre", "textTryUndoRedo": "Les fonctions Annuler/Rétablir sont désactivées pour le mode de co-édition rapide.", - "textUsers": "Utilisateurs", - "textOk": "Ok" + "textUsers": "Utilisateurs" }, "ThemeColorPalette": { "textCustomColors": "Couleurs personnalisées", @@ -335,12 +335,12 @@ "textSortAndFilter": "Trier et filtrer", "txtExpand": "Développer et trier", "txtExpandSort": "Les données situées à côté de la sélection ne seront pas triées. Souhaitez-vous développer la sélection pour inclure les données adjacentes ou souhaitez-vous continuer à trier iniquement les cellules sélectionnées ?", + "txtLockSort": "Des données se trouvent à côté de votre sélection, mais vous n'avez pas les autorisations suffisantes pour modifier ces cellules.
Voulez-vous continuer avec la sélection actuelle ?", + "txtNo": "Non", "txtNotUrl": "Ce champ doit contenir une URL au format \"http://www.example.com\"", "txtSorting": "Tri", "txtSortSelected": "Trier l'objet sélectionné ", - "txtLockSort": "Data is found next to your selection, but you do not have sufficient permissions to change those cells.
Do you wish to continue with the current selection?", - "txtNo": "No", - "txtYes": "Yes" + "txtYes": "Oui" }, "Edit": { "notcriticalErrorTitle": "Avertissement", @@ -540,6 +540,9 @@ "textByRows": "Par lignes", "textCancel": "Annuler", "textCentimeter": "Centimètre", + "textChooseCsvOptions": "Choisir les options CSV", + "textChooseDelimeter": "Choisir la délimitation", + "textChooseEncoding": "Choisir l'encodage", "textCollaboration": "Collaboration", "textColorSchemes": "Jeux de couleurs", "textComment": "Commentaire", @@ -547,6 +550,7 @@ "textComments": "Commentaires", "textCreated": "Créé", "textCustomSize": "Taille personnalisée", + "textDelimeter": "Délimiteur", "textDisableAll": "Désactiver tout", "textDisableAllMacrosWithNotification": "Désactiver toutes les macros avec notification", "textDisableAllMacrosWithoutNotification": "Désactiver toutes les macros sans notification", @@ -556,6 +560,7 @@ "textEmail": "E-mail", "textEnableAll": "Activer tout", "textEnableAllMacrosWithoutNotification": "Activer toutes les macros sans notification", + "textEncoding": "Encodage", "textExample": "Exemple", "textFind": "Recherche", "textFindAndReplace": "Rechercher et remplacer", @@ -612,9 +617,13 @@ "textValues": "Valeurs", "textVersion": "Version", "textWorkbook": "Classeur", + "txtColon": "Deux-points", + "txtComma": "Virgule", "txtDelimiter": "Délimiteur", + "txtDownloadCsv": "Télécharger le CSV", "txtEncoding": "Codage ", "txtIncorrectPwd": "Mot de passe incorrect", + "txtOk": "Ok", "txtProtected": "Une fois le mot de passe saisi et le ficher ouvert, le mot de passe actuel sera réinitialisé", "txtScheme1": "Office", "txtScheme10": "Médian", @@ -638,19 +647,10 @@ "txtScheme7": "Capitaux", "txtScheme8": "Flux", "txtScheme9": "Fonderie", + "txtSemicolon": "Point-virgule", "txtSpace": "Espace", "txtTab": "Tabulation", - "warnDownloadAs": "Si vous continuez à enregistrer dans ce format toutes les fonctions sauf le texte seront perdues.
Êtes-vous sûr de vouloir continuer?", - "textChooseCsvOptions": "Choose CSV Options", - "textChooseDelimeter": "Choose Delimeter", - "textChooseEncoding": "Choose Encoding", - "textDelimeter": "Delimiter", - "textEncoding": "Encoding", - "txtColon": "Colon", - "txtComma": "Comma", - "txtDownloadCsv": "Download CSV", - "txtOk": "Ok", - "txtSemicolon": "Semicolon" + "warnDownloadAs": "Si vous continuez à enregistrer dans ce format toutes les fonctions sauf le texte seront perdues.
Êtes-vous sûr de vouloir continuer?" } } -} +} \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/ko.json b/apps/spreadsheeteditor/mobile/locale/ko.json index be1f2ab84..2307df303 100644 --- a/apps/spreadsheeteditor/mobile/locale/ko.json +++ b/apps/spreadsheeteditor/mobile/locale/ko.json @@ -1,8 +1,8 @@ { "About": { - "textAbout": "About", - "textAddress": "Address", - "textBack": "Back", + "textAbout": "정보", + "textAddress": "주소", + "textBack": "뒤로", "textEmail": "Email", "textPoweredBy": "Powered By", "textTel": "Tel", @@ -10,11 +10,12 @@ }, "Common": { "Collaboration": { + "textAddComment": "코멘트 달기", + "textAddReply": "댓글 달기", + "textBack": "뒤로", + "textCancel": "취소", + "textTryUndoRedo": "빠른 공동 편집 모드에서 실행 취소 / 다시 실행 기능을 사용할 수 없습니다.", "notcriticalErrorTitle": "Warning", - "textAddComment": "Add Comment", - "textAddReply": "Add Reply", - "textBack": "Back", - "textCancel": "Cancel", "textCollaboration": "Collaboration", "textComments": "Comments", "textDeleteComment": "Delete Comment", @@ -27,11 +28,10 @@ "textMessageDeleteComment": "Do you really want to delete this comment?", "textMessageDeleteReply": "Do you really want to delete this reply?", "textNoComments": "This document doesn't contain comments", + "textOk": "Ok", "textReopen": "Reopen", "textResolve": "Resolve", - "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", - "textUsers": "Users", - "textOk": "Ok" + "textUsers": "Users" }, "ThemeColorPalette": { "textCustomColors": "Custom Colors", @@ -40,11 +40,12 @@ } }, "ContextMenu": { - "errorCopyCutPaste": "Copy, cut, and paste actions using the context menu will be performed within the current file only.", - "menuAddComment": "Add Comment", - "menuAddLink": "Add Link", - "menuCancel": "Cancel", - "menuCell": "Cell", + "errorCopyCutPaste": "오른쪽 클릭 메뉴를 통해 수행된 복사, 잘라내기 및 붙여넣기 작업은 이 파일에서만 유효합니다.", + "menuAddComment": "코멘트 달기", + "menuAddLink": "링크 추가", + "menuCancel": "취소", + "menuCell": "셀", + "textCopyCutPasteActions": "작업 복사, 잘라 내기 및 붙여 넣기", "menuDelete": "Delete", "menuEdit": "Edit", "menuFreezePanes": "Freeze Panes", @@ -59,40 +60,38 @@ "menuViewComment": "View Comment", "menuWrap": "Wrap", "notcriticalErrorTitle": "Warning", - "textCopyCutPasteActions": "Copy, Cut and Paste Actions", "textDoNotShowAgain": "Don't show again", - "warnMergeLostData": "The operation can destroy data in the selected cells. Continue?" + "warnMergeLostData": "Only the data from the upper-left cell will remain in the merged cell.
Are you sure you want to continue?" }, "Controller": { "Main": { - "criticalErrorTitle": "Error", - "errorAccessDeny": "You are trying to perform an action you do not have rights for.
Please, contact your admin.", - "errorProcessSaveResult": "Saving is failed.", - "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", - "errorUpdateVersion": "The file version has been changed. The page will be reloaded.", - "leavePageText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", - "notcriticalErrorTitle": "Warning", + "errorAccessDeny": "권한이 없는 작업을 수행하려고 합니다.
관리자에게 문의하십시오.", + "errorServerVersion": "편집기 버전이 업데이트되었습니다. 페이지가 다시로드되어 변경 사항이 적용됩니다.", + "errorUpdateVersion": "파일 버전이 변경되었습니다. 페이지가 다시로드됩니다.", "SDK": { - "txtAccent": "Accent", - "txtAll": "(All)", + "txtAccent": "강조", + "txtAll": "(전체)", + "txtBlank": "(빈칸)", + "txtByField": "%2의 %1", + "txtDiagramTitle": "차트 제목", + "txtFile": "파일", + "txtOr": "1% 또는 2%", + "txtStyle_Check_Cell": "셀 검사", + "txtStyle_Currency": "통화", + "txtStyle_Percent": "백분율", "txtArt": "Your text here", - "txtBlank": "(blank)", - "txtByField": "%1 of %2", "txtClearFilter": "Clear Filter (Alt+C)", "txtColLbls": "Column Labels", "txtColumn": "Column", "txtConfidential": "Confidential", "txtDate": "Date", "txtDays": "Days", - "txtDiagramTitle": "Chart Title", - "txtFile": "File", "txtGrandTotal": "Grand Total", "txtGroup": "Group", "txtHours": "Hours", "txtMinutes": "Minutes", "txtMonths": "Months", "txtMultiSelect": "Multi-Select (Alt+S)", - "txtOr": "%1 or %2", "txtPage": "Page", "txtPageOf": "Page %1 of %2", "txtPages": "Pages", @@ -106,9 +105,7 @@ "txtSeries": "Series", "txtStyle_Bad": "Bad", "txtStyle_Calculation": "Calculation", - "txtStyle_Check_Cell": "Check Cell", "txtStyle_Comma": "Comma", - "txtStyle_Currency": "Currency", "txtStyle_Explanatory_Text": "Explanatory Text", "txtStyle_Good": "Good", "txtStyle_Heading_1": "Heading 1", @@ -121,7 +118,6 @@ "txtStyle_Normal": "Normal", "txtStyle_Note": "Note", "txtStyle_Output": "Output", - "txtStyle_Percent": "Percent", "txtStyle_Title": "Title", "txtStyle_Total": "Total", "txtStyle_Warning_Text": "Warning Text", @@ -133,11 +129,17 @@ "txtYAxis": "Y Axis", "txtYears": "Years" }, - "textAnonymous": "Anonymous", + "textAnonymous": "익명", + "textCustomLoader": "죄송합니다. 로더를 수정할 권한이 없습니다. 견적을 받으려면 영업 부서에 문의하시기 바랍니다.", + "warnLicenseLimitedNoAccess": "라이센스가 만료되었습니다. 문서 편집 기능을 사용할 수 없습니다. 관리자에게 문의하십시오.", + "warnLicenseLimitedRenewed": "라이선스를 업데이트해야 합니다. 모든 문서 편집 기능을 사용할 수는 없습니다.
모든 기능을 사용하려면 관리자에게 문의하세요.", + "criticalErrorTitle": "Error", + "errorProcessSaveResult": "Saving is failed.", + "leavePageText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "notcriticalErrorTitle": "Warning", "textBuyNow": "Visit website", "textClose": "Close", "textContactUs": "Contact sales", - "textCustomLoader": "Sorry, you are not entitled to change the loader. Please, contact our sales department to get a quote.", "textGuest": "Guest", "textHasMacros": "The file contains automatic macros.
Do you want to run macros?", "textNo": "No", @@ -148,8 +150,6 @@ "titleServerVersion": "Editor updated", "titleUpdateVersion": "Version changed", "warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.", - "warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your admin.", - "warnLicenseLimitedRenewed": "License needs to be renewed. You have limited access to document editing functionality.
Please contact your administrator to get full access", "warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", "warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.", "warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", @@ -157,81 +157,83 @@ } }, "Error": { + "errorAccessDeny": "권한이 없는 작업을 수행하려고 합니다.
관리자에게 문의하십시오.", + "errorAutoFilterChange": "워크시트에서 표 셀을 이동하려고 하기 때문에 작업을 수행할 수 없습니다.", + "errorAutoFilterChangeFormatTable": "표의 일부를 이동할 수 없기 때문에 선택한 셀에 대해 작업을 수행할 수 없습니다.
전체 표를 이동할 수 있도록 다른 데이터 범위를 선택하고 다시 시도하십시오.", + "errorAutoFilterDataRange": "지정된 범위의 셀에 대해 작업을 수행할 수 없습니다.
테이블 또는 테이블 외부의 균일한 데이터 범위를 선택하고 다시 시도하십시오.", + "errorAutoFilterHiddenRange": "작업을 수행할 수 없습니다. 그 이유는 선택한 영역에 숨겨진 셀이 있기 때문입니다.
숨겨진 요소를 다시 표시하고 다시 시도하십시오.", + "errorCreateDefName": "기존 명명 된 범위를 편집 할 수 없으며 일부는 편집 중임에 따라 현재 명명 된 범위를 만들 수 없습니다.", + "errorDatabaseConnection": "외부 오류입니다.
데이터베이스 연결 오류입니다. 지원팀에 문의하십시오.", + "errorDataRange": "잘못된 참조 대상 입니다.", + "errorDataValidate": "입력한 값이 잘못되었습니다.
사용자는 이 셀에 입력할 수 있는 제한 값이 있습니다.", + "errorFilePassProtect": "파일이 암호로 보호되어 열 수 없습니다.", + "errorFileRequest": "외부 오류입니다.
파일 요청. 지원팀에 문의하세요.", + "errorFileSizeExceed": "파일 크기가 서버 제한을 ​​초과했습니다.
자세한 내용은 관리자에게 문의하십시오.", + "errorFileVKey": "외부 오류입니다.
보안 키가 잘못되었습니다. 지원팀에 문의하세요.", + "errorFormulaName": "수식에 오류가 있습니다
잘못된 수식 이름.", + "errorFrmlMaxLength": "이 수식의 길이가 허용되는 문자 수 제한을 초과하므로 이 수식을 추가할 수 없습니다.
다시 수정하고 다시 시도하십시오.", + "errorFrmlMaxReference": "값, 셀 참조 및/또는 이름이 너무 많기 때문에 이 수식을 입력할 수 없습니다.", + "errorFrmlMaxTextLength": "수식에서 텍스트 값은 255자로 제한됩니다.
글루 함수(CONCATENATE)를 사용하거나 글루 연산자(&)를 사용하세요.", + "errorFrmlWrongReferences": "이 함수는 존재하지 않는 워크시트를 참조합니다.
데이터를 다시 확인하고 다시 시도하십시오.", + "errorInvalidRef": "선택 항목의 정확한 이름을 입력하거나 이동할 참조를 입력하십시오.", + "errorLoadingFont": "글꼴 불러오기에 실패하였습니다.
문서 시스템 관리자에게 문의하세요.", + "errorLockedAll": "다른 사용자가 시트를 잠근 상태에서 작업을 수행 할 수 없습니다.", + "errorLockedWorksheetRename": "시트의 이름을 다른 사용자가 바꾸면 이름을 바꿀 수 없습니다.", + "errorMultiCellFormula": "다중 셀 배열 수식은 테이블에서 허용되지 않습니다.", + "errorOpenWarning": "파일에있는 수식 중 하나의 길이가 허용 된 문자 수를 초과하여 제거되었습니다.", + "errorOperandExpected": "입력한 함수 구문이 올바르지 않습니다. 반괄호, 즉 \"(\" 또는 \")\"가 누락되었는지 확인하십시오.", + "errorPasteMaxRange": "복사하여 붙여넣은 영역이 일치하지 않습니다. 같은 크기의 영역을 선택하십시오. 행의 첫 번째 셀을 클릭하여 복사한 셀을 붙여넣을 수도 있습니다.", + "errorPrintMaxPagesCount": "죄송합니다. 이 버전에서는 한 번에 1500페이지 이상을 인쇄할 수 없습니다.
나중 버전에서는 이 제한이 제거됩니다.", + "errorSessionAbsolute": "파일 편집 창이 만료되었습니다. 페이지를 새로고침하세요.", + "errorSessionIdle": "이 문서는 한동안 수정되지 않았습니다. 페이지를 새로고침하세요.", + "errorSessionToken": "서버에 대한 링크가 중단되었습니다. 페이지를 새로고침하세요.", + "errorUnexpectedGuid": "외부 오류.", + "errorUpdateVersionOnDisconnect": "인터넷 연결이 복구 되었으며 파일에 수정 사항이 발생되었습니다. 작업을 계속 하시기 전에 반드시 기존의 파일을 다운로드하거나 내용을 복사해서 작업 내용을 잃어 버리는 일이 없도록 한 후에 이 페이지를 새로 고침(reload) 해 주시기 바랍니다.", + "errorUsersExceed": "가격 책정 계획에서 허용 한 사용자 수가 초과되었습니다", + "openErrorText": "파일을 여는 동안 오류가 발생했습니다.", + "saveErrorText": "파일을 저장하는 동안 오류가 발생했습니다.", + "scriptLoadError": "인터넷 속도가 너무 느려 이 페이지의 일부 요소가 로드되지 않습니다. 페이지를 새로고침하세요.", "convertationTimeoutText": "Conversion timeout exceeded.", "criticalErrorExtText": "Press 'OK' to go back to the document list.", "criticalErrorTitle": "Error", "downloadErrorText": "Download failed.", - "errorAccessDeny": "You are trying to perform an action you do not have rights for.
Please, contact your admin.", "errorArgsRange": "An error in the formula.
Incorrect arguments range.", - "errorAutoFilterChange": "The operation is not allowed as it is attempting to shift cells in a table on your worksheet.", - "errorAutoFilterChangeFormatTable": "The operation could not be done for the selected cells as you cannot move a part of a table.
Select another data range so that the whole table is shifted and try again.", - "errorAutoFilterDataRange": "The operation could not be done for the selected range of cells.
Select a uniform data range inside or outside the table and try again.", - "errorAutoFilterHiddenRange": "The operation cannot be performed because the area contains filtered cells.
Please, unhide the filtered elements and try again.", "errorBadImageUrl": "Image url is incorrect", "errorChangeArray": "You cannot change part of an array.", "errorConnectToServer": "Can't save this doc. Check your connection settings or contact your admin.
When you click the 'OK' button, you will be prompted to download the document.", "errorCopyMultiselectArea": "This command cannot be used with multiple selections.
Select a single range and try again.", "errorCountArg": "An error in the formula.
Invalid number of arguments.", "errorCountArgExceed": "An error in the formula.
Maximum number of arguments exceeded.", - "errorCreateDefName": "The existing named ranges cannot be edited and the new ones cannot be created
at the moment as some of them are being edited.", - "errorDatabaseConnection": "External error.
Database connection error. Please, contact support.", "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", - "errorDataRange": "Incorrect data range.", - "errorDataValidate": "The value you entered is not valid.
A user has restricted values that can be entered into this cell.", "errorDefaultMessage": "Error code: %1", "errorEditingDownloadas": "An error occurred during the work with the document.
Use the 'Download' option to save the file backup copy locally.", - "errorFilePassProtect": "The file is password protected and could not be opened.", - "errorFileRequest": "External error.
File Request. Please, contact support.", - "errorFileSizeExceed": "The file size exceeds your server limitation.
Please, contact your admin for details.", - "errorFileVKey": "External error.
Incorrect security key. Please, contact support.", "errorFillRange": "Could not fill the selected range of cells.
All the merged cells need to be the same size.", - "errorFormulaName": "An error in the formula.
Incorrect formula name.", "errorFormulaParsing": "Internal error while the formula parsing.", - "errorFrmlMaxLength": "You cannot add this formula as its length exceeds the allowed number of characters.
Please, edit it and try again.", - "errorFrmlMaxReference": "You cannot enter this formula because it has too many values,
cell references, and/or names.", - "errorFrmlMaxTextLength": "Text values in formulas are limited to 255 characters.
Use the CONCATENATE function or concatenation operator (&)", - "errorFrmlWrongReferences": "The function refers to a sheet that does not exist.
Please, check the data and try again.", - "errorInvalidRef": "Enter a correct name for the selection or a valid reference to go to.", "errorKeyEncrypt": "Unknown key descriptor", "errorKeyExpire": "Key descriptor expired", - "errorLockedAll": "The operation could not be done as the sheet has been locked by another user.", "errorLockedCellPivot": "You cannot change data inside a pivot table.", - "errorLockedWorksheetRename": "The sheet cannot be renamed at the moment as it is being renamed by another user", "errorMaxPoints": "The maximum number of points in series per chart is 4096.", "errorMoveRange": "Cannot change a part of a merged cell", - "errorMultiCellFormula": "Multi-cell array formulas are not allowed in tables.", - "errorOpenWarning": "The length of one of the formulas in the file exceeded
the allowed number of characters and it was removed.", - "errorOperandExpected": "The entered function syntax is not correct. Please, check if you missed one of the parentheses - '(' or ')'.", - "errorPasteMaxRange": "The copy and paste area does not match. Please, select an area of the same size or click the first cell in a row to paste the copied cells.", - "errorPrintMaxPagesCount": "Unfortunately, it’s not possible to print more than 1500 pages at once in the current version of the program.
This restriction will be eliminated in upcoming releases.", - "errorSessionAbsolute": "The document editing session has expired. Please, reload the page.", - "errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.", - "errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.", "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
opening price, max price, min price, closing price.", - "errorUnexpectedGuid": "External error.
Unexpected Guid. Please, contact support.", - "errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.", "errorUserDrop": "The file cannot be accessed right now.", - "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", - "errorViewerDisconnect": "Connection is lost. You can still view the document,
but you won't be able to download it until the connection is restored and the page is reloaded.", + "errorViewerDisconnect": "Connection is lost. You can still view the document,
but you won't be able to download or print it until the connection is restored and the page is reloaded.", "errorWrongBracketsCount": "An error in the formula.
Wrong number of brackets.", "errorWrongOperator": "An error in the entered formula. The wrong operator is used.
Correct the error or use the Esc button to cancel the formula editing.", "notcriticalErrorTitle": "Warning", - "openErrorText": "An error has occurred while opening the file", "pastInMergeAreaError": "Cannot change a part of a merged cell", - "saveErrorText": "An error has occurred while saving the file", - "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.", "unknownErrorText": "Unknown error.", "uploadImageExtMessage": "Unknown image format.", "uploadImageFileCountMessage": "No images uploaded.", - "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.", - "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." }, "LongActions": { + "confirmPutMergeRange": "원본 데이터에 병합된 셀이 있습니다.
이 셀은 이 테이블에 붙여넣기 전에 병합 해제됩니다.", + "confirmReplaceFormulaInTable": "머리글 행의 수식이 삭제되고 정적 텍스트로 변환됩니다.
계속하시겠습니까?", + "savePreparingTitle": "저장 준비 중입니다. 잠시 기다려주십시오 ...", + "waitText": "잠시만 기다려주세요...", "applyChangesTextText": "Loading data...", "applyChangesTitleText": "Loading Data", "confirmMoveCellRange": "The destination cells range can contain data. Continue the operation?", - "confirmPutMergeRange": "The source data contains merged cells.
They will be unmerged before they are pasted into the table.", - "confirmReplaceFormulaInTable": "Formulas in the header row will be removed and converted to static text.
Do you want to continue?", "downloadTextText": "Downloading document...", "downloadTitleText": "Downloading Document", "loadFontsTextText": "Loading data...", @@ -250,7 +252,6 @@ "printTextText": "Printing document...", "printTitleText": "Printing Document", "savePreparingText": "Preparing to save", - "savePreparingTitle": "Preparing to save. Please wait...", "saveTextText": "Saving document...", "saveTitleText": "Saving Document", "textLoadingDocument": "Loading document", @@ -259,66 +260,59 @@ "textYes": "Yes", "txtEditingMode": "Set editing mode...", "uploadImageTextText": "Uploading image...", - "uploadImageTitleText": "Uploading Image", - "waitText": "Please, wait..." + "uploadImageTitleText": "Uploading Image" }, "Statusbar": { + "textCancel": "취소", + "textErrNameExists": "같은 이름의 워크시트가 이미 있습니다.", + "textErrNameWrongChar": "시트 이름에는 \\, /, *,?, [,], 문자를 사용할 수 없습니다 :", + "textErrNotEmpty": "시트 이름은 비워둘 수 없습니다.", + "textErrorLastSheet": "통합 문서에는 표시되는 워크시트가 하나 이상 있어야 합니다.", + "textRename": "이름 바꾸기", + "textRenameSheet": "시트 이름 바꾸기", + "textSheetName": "시트 이름", + "textWarnDeleteSheet": "워크시트에 데이터가 포함될 수 있습니다. 진행 하시겠습니까?", "notcriticalErrorTitle": "Warning", - "textCancel": "Cancel", "textDelete": "Delete", "textDuplicate": "Duplicate", - "textErrNameExists": "Worksheet with this name already exists.", - "textErrNameWrongChar": "A sheet name cannot contains characters: \\, /, *, ?, [, ], :", - "textErrNotEmpty": "Sheet name must not be empty", - "textErrorLastSheet": "The workbook must have at least one visible worksheet.", "textErrorRemoveSheet": "Can't delete the worksheet.", "textHide": "Hide", "textMore": "More", - "textRename": "Rename", - "textRenameSheet": "Rename Sheet", + "textOk": "Ok", "textSheet": "Sheet", - "textSheetName": "Sheet Name", - "textUnhide": "Unhide", - "textWarnDeleteSheet": "The worksheet maybe has data. Proceed operation?", - "textOk": "Ok" - }, - "Toolbar": { - "dlgLeaveMsgText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", - "dlgLeaveTitleText": "You leave the application", - "leaveButtonText": "Leave this Page", - "stayButtonText": "Stay on this Page" + "textUnhide": "Unhide" }, "View": { "Add": { + "sCatFinancial": "재무", + "textAddLink": "링크 추가", + "textAddress": "주소", + "textBack": "뒤로", + "textCancel": "취소", + "textChart": "차트", + "textExternalLink": "외부 링크", + "textFilter": "필터", + "textInternalDataRange": "내부 참조 대상", "errorMaxRows": "ERROR! The maximum number of data series per chart is 255.", "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
opening price, max price, min price, closing price.", "notcriticalErrorTitle": "Warning", "sCatDateAndTime": "Date and time", "sCatEngineering": "Engineering", - "sCatFinancial": "Financial", "sCatInformation": "Information", "sCatLogical": "Logical", "sCatLookupAndReference": "Lookup and Reference", "sCatMathematic": "Math and trigonometry", "sCatStatistical": "Statistical", "sCatTextAndData": "Text and data", - "textAddLink": "Add Link", - "textAddress": "Address", - "textBack": "Back", - "textCancel": "Cancel", - "textChart": "Chart", "textComment": "Comment", "textDisplay": "Display", "textEmptyImgUrl": "You need to specify the image URL.", - "textExternalLink": "External Link", - "textFilter": "Filter", "textFunction": "Function", "textGroups": "CATEGORIES", "textImage": "Image", "textImageURL": "Image URL", "textInsert": "Insert", "textInsertImage": "Insert Image", - "textInternalDataRange": "Internal Data Range", "textInvalidRange": "ERROR! Invalid cells range", "textLink": "Link", "textLinkSettings": "Link Settings", @@ -329,58 +323,76 @@ "textRange": "Range", "textRequired": "Required", "textScreenTip": "Screen Tip", + "textSelectedRange": "Selected Range", "textShape": "Shape", "textSheet": "Sheet", "textSortAndFilter": "Sort and Filter", "txtExpand": "Expand and sort", "txtExpandSort": "The data next to the selection will not be sorted. Do you want to expand the selection to include the adjacent data or continue with sorting the currently selected cells only?", + "txtLockSort": "Data is found next to your selection, but you do not have sufficient permissions to change those cells.
Do you wish to continue with the current selection?", + "txtNo": "No", "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"", "txtSorting": "Sorting", "txtSortSelected": "Sort selected", - "textSelectedRange": "Selected Range", - "txtLockSort": "Data is found next to your selection, but you do not have sufficient permissions to change those cells.
Do you wish to continue with the current selection?", - "txtNo": "No", "txtYes": "Yes" }, "Edit": { + "textAccounting": "회계", + "textActualSize": "실제 크기", + "textAddCustomColor": "사용자 색상 추가", + "textAddress": "주소", + "textAlign": "맞춤", + "textAlignBottom": "아래쪽 맞춤", + "textAlignCenter": "가운데 맞춤", + "textAlignLeft": "왼쪽 맞춤", + "textAlignMiddle": "중간 맞춤", + "textAlignRight": "오른쪽 맞춤", + "textAlignTop": "위쪽 맞춤", + "textAllBorders": "모든 테두리", + "textAngleClockwise": "시계 방향으로 회전", + "textAngleCounterclockwise": "시계 반대 방향 회전", + "textAuto": "자동", + "textAxisOptions": "축 옵션", + "textAxisPosition": "축 위치", + "textAxisTitle": "축 제목", + "textBack": "뒤로", + "textBetweenTickMarks": "눈금 사이", + "textBillions": "10 억", + "textBorder": "테두리", + "textBorderStyle": "테두리 스타일", + "textBottom": "하단", + "textCell": "셀", + "textCellStyles": "셀 스타일", + "textCenter": "가운데", + "textChart": "차트", + "textChartTitle": "차트 제목", + "textCurrency": "통화", + "textEmptyItem": "{공백}", + "textErrorMsg": "하나 이상의 값을 선택해야합니다.", + "textExternalLink": "외부 링크", + "textFill": "채우기", + "textFilterOptions": "필터 옵션", + "textFraction": "분수", + "textGeneral": "일반", + "textHundredMil": "100,000,000", + "textHundredThousands": "100,000", + "textInternalDataRange": "내부 참조 대상", + "textPercentage": "백분율", + "textRemoveChart": "차트 제거", + "textRemoveImage": "이미지 제거", + "textRemoveLink": "링크 제거", + "textRemoveShape": "도형 제거", + "textScientific": "지수", + "textTenMillions": "10,000,000", + "textTenThousands": "10,000", "notcriticalErrorTitle": "Warning", - "textAccounting": "Accounting", - "textActualSize": "Actual Size", - "textAddCustomColor": "Add Custom Color", - "textAddress": "Address", - "textAlign": "Align", - "textAlignBottom": "Align Bottom", - "textAlignCenter": "Align Center", - "textAlignLeft": "Align Left", - "textAlignMiddle": "Align Middle", - "textAlignRight": "Align Right", - "textAlignTop": "Align Top", - "textAllBorders": "All Borders", - "textAngleClockwise": "Angle Clockwise", - "textAngleCounterclockwise": "Angle Counterclockwise", - "textAuto": "Auto", "textAxisCrosses": "Axis Crosses", - "textAxisOptions": "Axis Options", - "textAxisPosition": "Axis Position", - "textAxisTitle": "Axis Title", - "textBack": "Back", - "textBetweenTickMarks": "Between Tick Marks", - "textBillions": "Billions", - "textBorder": "Border", - "textBorderStyle": "Border Style", - "textBottom": "Bottom", "textBottomBorder": "Bottom Border", "textBringToForeground": "Bring to Foreground", - "textCell": "Cell", - "textCellStyles": "Cell Styles", - "textCenter": "Center", - "textChart": "Chart", - "textChartTitle": "Chart Title", "textClearFilter": "Clear Filter", "textColor": "Color", "textCross": "Cross", "textCrossesValue": "Crosses Value", - "textCurrency": "Currency", "textCustomColor": "Custom Color", "textDataLabels": "Data Labels", "textDate": "Date", @@ -395,29 +407,20 @@ "textEditLink": "Edit Link", "textEffects": "Effects", "textEmptyImgUrl": "You need to specify the image URL.", - "textEmptyItem": "{Blanks}", - "textErrorMsg": "You must choose at least one value", "textErrorTitle": "Warning", "textEuro": "Euro", - "textExternalLink": "External Link", - "textFill": "Fill", "textFillColor": "Fill Color", - "textFilterOptions": "Filter Options", "textFit": "Fit Width", "textFonts": "Fonts", "textFormat": "Format", - "textFraction": "Fraction", "textFromLibrary": "Picture from Library", "textFromURL": "Picture from URL", - "textGeneral": "General", "textGridlines": "Gridlines", "textHigh": "High", "textHorizontal": "Horizontal", "textHorizontalAxis": "Horizontal Axis", "textHorizontalText": "Horizontal Text", - "textHundredMil": "100 000 000", "textHundreds": "Hundreds", - "textHundredThousands": "100 000", "textHyperlink": "Hyperlink", "textImage": "Image", "textImageURL": "Image URL", @@ -428,7 +431,6 @@ "textInsideHorizontalBorder": "Inside Horizontal Border", "textInsideVerticalBorder": "Inside Vertical Border", "textInteger": "Integer", - "textInternalDataRange": "Internal Data Range", "textInvalidRange": "Invalid cells range", "textJustified": "Justified", "textLabelOptions": "Label Options", @@ -465,16 +467,11 @@ "textOuterTop": "Outer Top", "textOutsideBorders": "Outside Borders", "textOverlay": "Overlay", - "textPercentage": "Percentage", "textPictureFromLibrary": "Picture from Library", "textPictureFromURL": "Picture from URL", "textPound": "Pound", "textPt": "pt", "textRange": "Range", - "textRemoveChart": "Remove Chart", - "textRemoveImage": "Remove Image", - "textRemoveLink": "Remove Link", - "textRemoveShape": "Remove Shape", "textReorder": "Reorder", "textReplace": "Replace", "textReplaceImage": "Replace Image", @@ -486,7 +483,6 @@ "textRotateTextDown": "Rotate Text Down", "textRotateTextUp": "Rotate Text Up", "textRouble": "Rouble", - "textScientific": "Scientific", "textScreenTip": "Screen Tip", "textSelectAll": "Select All", "textSelectObjectToEdit": "Select object to edit", @@ -496,8 +492,6 @@ "textSheet": "Sheet", "textSize": "Size", "textStyle": "Style", - "textTenMillions": "10 000 000", - "textTenThousands": "10 000", "textText": "Text", "textTextColor": "Text Color", "textTextFormat": "Text Format", @@ -523,23 +517,40 @@ "txtSortLow2High": "Sort Lowest to Highest" }, "Settings": { - "advCSVOptions": "Choose CSV options", - "advDRMEnterPassword": "Your password, please:", + "advCSVOptions": "CSV 옵션 선택", + "advDRMEnterPassword": "비밀번호를 입력하세요:", + "advDRMPassword": "비밀번호", + "textAbout": "정보", + "textAddress": "주소", + "textApplication": "어플리케이션", + "textApplicationSettings": "어플리케이션 설정", + "textAuthor": "작성자", + "textBack": "뒤로", + "textBottom": "하단", + "textCancel": "취소", + "textCentimeter": "센티미터", + "textChooseCsvOptions": "CSV 옵션 선택", + "textChooseEncoding": "인코딩 형식 선택", + "textDownloadAs": "변환 다운로드", + "textFind": "찾기", + "textFindAndReplace": "찾기 및 바꾸기", + "textFormulas": "수식", + "textLastModified": "최종 편집", + "textLastModifiedBy": "최종 편집자", + "textMatchCase": "대 / 소문자 일치", + "textOpenFile": "파일을 열려면 암호를 입력하십시오.", + "textUnitOfMeasurement": "측정 단위", + "textWorkbook": "통합 문서", + "txtIncorrectPwd": "잘못된 비밀번호", + "txtProtected": "암호를 입력하고 파일을 열면 파일의 현재 암호가 재설정됩니다.", + "txtScheme3": "꼭지점", + "txtScheme4": "화면", "advDRMOptions": "Protected File", - "advDRMPassword": "Password", "closeButtonText": "Close File", "notcriticalErrorTitle": "Warning", - "textAbout": "About", - "textAddress": "Address", - "textApplication": "Application", - "textApplicationSettings": "Application Settings", - "textAuthor": "Author", - "textBack": "Back", - "textBottom": "Bottom", "textByColumns": "By columns", "textByRows": "By rows", - "textCancel": "Cancel", - "textCentimeter": "Centimeter", + "textChooseDelimeter": "Choose Delimeter", "textCollaboration": "Collaboration", "textColorSchemes": "Color Schemes", "textComment": "Comment", @@ -547,38 +558,34 @@ "textComments": "Comments", "textCreated": "Created", "textCustomSize": "Custom Size", + "textDelimeter": "Delimiter", "textDisableAll": "Disable All", "textDisableAllMacrosWithNotification": "Disable all macros with a notification", "textDisableAllMacrosWithoutNotification": "Disable all macros without a notification", "textDone": "Done", "textDownload": "Download", - "textDownloadAs": "Download As", "textEmail": "Email", "textEnableAll": "Enable All", "textEnableAllMacrosWithoutNotification": "Enable all macros without a notification", - "textFind": "Find", - "textFindAndReplace": "Find and Replace", + "textEncoding": "Encoding", + "textExample": "Example", "textFindAndReplaceAll": "Find and Replace All", "textFormat": "Format", "textFormulaLanguage": "Formula Language", - "textFormulas": "Formulas", "textHelp": "Help", "textHideGridlines": "Hide Gridlines", "textHideHeadings": "Hide Headings", "textHighlightRes": "Highlight results", "textInch": "Inch", "textLandscape": "Landscape", - "textLastModified": "Last Modified", - "textLastModifiedBy": "Last Modified By", "textLeft": "Left", "textLocation": "Location", "textLookIn": "Look In", "textMacrosSettings": "Macros Settings", "textMargins": "Margins", - "textMatchCase": "Match Case", "textMatchCell": "Match Cell", "textNoTextFound": "Text not found", - "textOpenFile": "Enter a password to open the file", + "textOk": "Ok", "textOrientation": "Orientation", "textOwner": "Owner", "textPoint": "Point", @@ -605,15 +612,15 @@ "textTel": "Tel", "textTitle": "Title", "textTop": "Top", - "textUnitOfMeasurement": "Unit Of Measurement", "textUploaded": "Uploaded", "textValues": "Values", "textVersion": "Version", - "textWorkbook": "Workbook", + "txtColon": "Colon", + "txtComma": "Comma", "txtDelimiter": "Delimiter", + "txtDownloadCsv": "Download CSV", "txtEncoding": "Encoding", - "txtIncorrectPwd": "Password is incorrect", - "txtProtected": "Once you enter the password and open the file, the current password to the file will be reset", + "txtOk": "Ok", "txtScheme1": "Office", "txtScheme10": "Median", "txtScheme11": "Metro", @@ -629,28 +636,21 @@ "txtScheme20": "Urban", "txtScheme21": "Verve", "txtScheme22": "New Office", - "txtScheme3": "Apex", - "txtScheme4": "Aspect", "txtScheme5": "Civic", "txtScheme6": "Concourse", "txtScheme7": "Equity", "txtScheme8": "Flow", "txtScheme9": "Foundry", + "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?", - "textOk": "Ok", - "textChooseCsvOptions": "Choose CSV Options", - "textChooseDelimeter": "Choose Delimeter", - "textChooseEncoding": "Choose Encoding", - "textDelimeter": "Delimiter", - "textEncoding": "Encoding", - "txtColon": "Colon", - "txtComma": "Comma", - "txtDownloadCsv": "Download CSV", - "txtOk": "Ok", - "txtSemicolon": "Semicolon", - "textExample": "Example" + "warnDownloadAs": "If you continue saving in this format all features except the text will be lost.
Are you sure you want to continue?" } + }, + "Toolbar": { + "dlgLeaveMsgText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "dlgLeaveTitleText": "You leave the application", + "leaveButtonText": "Leave this Page", + "stayButtonText": "Stay on this Page" } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/zh.json b/apps/spreadsheeteditor/mobile/locale/zh.json index 9b399c081..3fb0c8167 100644 --- a/apps/spreadsheeteditor/mobile/locale/zh.json +++ b/apps/spreadsheeteditor/mobile/locale/zh.json @@ -74,7 +74,9 @@ "notcriticalErrorTitle": "警告", "SDK": { "txtAccent": "强调", + "txtAll": "(全部)", "txtArt": "你的文本在此", + "txtBlank": "(空白)", "txtDiagramTitle": "图表标题", "txtSeries": "系列", "txtStyle_Bad": "差", @@ -100,8 +102,6 @@ "txtStyle_Warning_Text": "警告文本", "txtXAxis": "X轴", "txtYAxis": "Y轴", - "txtAll": "(All)", - "txtBlank": "(blank)", "txtByField": "%1 of %2", "txtClearFilter": "Clear Filter (Alt+C)", "txtColLbls": "Column Labels", @@ -212,7 +212,7 @@ "errorUpdateVersionOnDisconnect": "网络连接已恢复,文件版本已变更。
在继续工作之前,需要下载文件或复制其内容以避免丢失数据,然后刷新此页。", "errorUserDrop": "该文件现在无法访问。", "errorUsersExceed": "超过了定价计划允许的用户数", - "errorViewerDisconnect": "网络连接失败。你仍然可以查看这个文档,
但在连接恢复并刷新该页之前,你将不能下载这个文档。", + "errorViewerDisconnect": "网络连接失败。你仍然可以查看这个文档,
但在连接恢复并刷新该页之前,你将不能下载或打印这个文档。", "errorWrongBracketsCount": "公式中有错误。
括号数量不对。", "errorWrongOperator": "输入的公式中有错误。你使用了错误的运算符。
请修正错误,或按下 Esc 按钮取消公式编辑。", "notcriticalErrorTitle": "警告", @@ -556,6 +556,7 @@ "textEmail": "电子邮件", "textEnableAll": "启动所有项目", "textEnableAllMacrosWithoutNotification": "启动所有不带通知的宏", + "textEncoding": "编码", "textExample": "列入", "textFind": "查找", "textFindAndReplace": "查找和替换", @@ -612,6 +613,7 @@ "textVersion": "版本", "textWorkbook": "工作簿", "txtDelimiter": "字段分隔符", + "txtDownloadCsv": "下载CSV", "txtEncoding": "编码", "txtIncorrectPwd": "密码有误", "txtProtected": "在您输入密码和打开文件后,该文件的当前密码将被重置", @@ -622,11 +624,9 @@ "textChooseDelimeter": "Choose Delimeter", "textChooseEncoding": "Choose Encoding", "textDelimeter": "Delimiter", - "textEncoding": "Encoding", "textOk": "Ok", "txtColon": "Colon", "txtComma": "Comma", - "txtDownloadCsv": "Download CSV", "txtOk": "Ok", "txtScheme1": "Office", "txtScheme10": "Median", From 56e88202548c54ee2341fd98ca53ad45466dfd5d Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Fri, 1 Oct 2021 15:23:16 +0300 Subject: [PATCH 11/67] [DE forms] Update translation --- .../app/controller/ApplicationController.js | 7 ++- apps/documenteditor/forms/locale/ca.json | 63 ++++++++++--------- apps/documenteditor/forms/locale/cs.json | 16 +++++ apps/documenteditor/forms/locale/de.json | 4 ++ apps/documenteditor/forms/locale/el.json | 4 ++ apps/documenteditor/forms/locale/en.json | 7 ++- apps/documenteditor/forms/locale/es.json | 4 ++ apps/documenteditor/forms/locale/fr.json | 4 ++ apps/documenteditor/forms/locale/it.json | 8 +++ apps/documenteditor/forms/locale/ja.json | 16 ++++- apps/documenteditor/forms/locale/ko.json | 19 +++++- apps/documenteditor/forms/locale/pl.json | 25 ++++++-- apps/documenteditor/forms/locale/pt.json | 4 ++ apps/documenteditor/forms/locale/ro.json | 4 ++ apps/documenteditor/forms/locale/ru.json | 4 ++ apps/documenteditor/forms/locale/sk.json | 14 +++++ apps/documenteditor/forms/locale/sv.json | 10 +++ apps/documenteditor/forms/locale/zh.json | 10 ++- 18 files changed, 176 insertions(+), 47 deletions(-) diff --git a/apps/documenteditor/forms/app/controller/ApplicationController.js b/apps/documenteditor/forms/app/controller/ApplicationController.js index a5186e34c..5a02dea1c 100644 --- a/apps/documenteditor/forms/app/controller/ApplicationController.js +++ b/apps/documenteditor/forms/app/controller/ApplicationController.js @@ -220,6 +220,10 @@ define([ config.msg = this.errorForceSave; break; + case Asc.c_oAscError.ID.LoadingFontError: + config.msg = this.errorLoadingFont; + break; + default: config.msg = (typeof id == 'string') ? id : this.errorDefaultMessage.replace('%1', id); break; @@ -1320,7 +1324,8 @@ define([ warnNoLicenseUsers: "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", textBuyNow: 'Visit website', textNoLicenseTitle: 'License limit reached', - textContactUs: 'Contact sales' + textContactUs: 'Contact sales', + errorLoadingFont: 'Fonts are not loaded.
Please contact your Document Server administrator.' }, DE.Controllers.ApplicationController)); }); diff --git a/apps/documenteditor/forms/locale/ca.json b/apps/documenteditor/forms/locale/ca.json index 319f01d6f..23867e619 100644 --- a/apps/documenteditor/forms/locale/ca.json +++ b/apps/documenteditor/forms/locale/ca.json @@ -1,44 +1,45 @@ { - "common.view.modals.txtCopy": "Copiat al porta-retalls", - "common.view.modals.txtEmbed": "Incrustar", + "common.view.modals.txtCopy": "Copia al porta-retalls", + "common.view.modals.txtEmbed": "Incrusta", "common.view.modals.txtHeight": "Alçada", - "common.view.modals.txtShare": "Compartir Enllaç", + "common.view.modals.txtShare": "Comparteix l'enllaç", "common.view.modals.txtWidth": "Amplada", - "DE.ApplicationController.convertationErrorText": "Conversió Fallida", - "DE.ApplicationController.convertationTimeoutText": "Conversió fora de temps", + "DE.ApplicationController.convertationErrorText": "No s'ha pogut convertir", + "DE.ApplicationController.convertationTimeoutText": "S'ha superat el temps de conversió.", "DE.ApplicationController.criticalErrorTitle": "Error", - "DE.ApplicationController.downloadErrorText": "Descàrrega fallida.", - "DE.ApplicationController.downloadTextText": "Descarregant document...", - "DE.ApplicationController.errorAccessDeny": "Intenteu realitzar una acció per la qual no teniu drets.
Poseu-vos en contacte amb l'administrador del servidor de documents.", + "DE.ApplicationController.downloadErrorText": "S'ha produït un error en la baixada", + "DE.ApplicationController.downloadTextText": "S'està baixant el document...", + "DE.ApplicationController.errorAccessDeny": "No teniu permisos per realitzar aquesta acció.
Contacteu amb el vostre administrador del servidor de documents.", "DE.ApplicationController.errorDefaultMessage": "Codi d'error:%1", - "DE.ApplicationController.errorEditingDownloadas": "S'ha produït un error durant el treball amb el document.
Utilitzeu l'opció \"Desar com a ...\" per desar la còpia de seguretat del fitxer al disc dur del vostre ordinador.", + "DE.ApplicationController.errorEditingDownloadas": "S'ha produït un error mentre es treballava amb el document.
Utilitzeu l'opció \"Baixa-ho com a ...\" per desar la còpia de seguretat del fitxer al disc dur del vostre ordinador.", "DE.ApplicationController.errorFilePassProtect": "El fitxer està protegit amb contrasenya i no es pot obrir.", - "DE.ApplicationController.errorFileSizeExceed": "La mida del fitxer excedeix la limitació establerta per al vostre servidor. Podeu contactar amb l'administrador del Document Server per obtenir més detalls.", - "DE.ApplicationController.errorSubmit": "Error en enviar", - "DE.ApplicationController.errorUpdateVersionOnDisconnect": "La connexió a Internet s'ha restaurat i la versió del fitxer s'ha canviat.
Abans de continuar treballant, heu de descarregar el fitxer o copiar-ne el contingut per assegurar-vos que no es perdi res i, després, tornar a carregar aquesta pàgina.", - "DE.ApplicationController.errorUserDrop": "Ara no es pot accedir al fitxer.", - "DE.ApplicationController.notcriticalErrorTitle": "Avis", + "DE.ApplicationController.errorFileSizeExceed": "La mida del fitxer supera el límit establert pel vostre servidor. Contacteu amb el vostre administrador del servidor de documents per obtenir més informació.", + "DE.ApplicationController.errorForceSave": "S'ha produït un error en desar el fitxer. Utilitzeu l'opció \"Baixa-ho com a\" per desar el fitxer al disc dur de l’ordinador o torneu-ho a provar més endavant.", + "DE.ApplicationController.errorLoadingFont": "No s'han carregat els tipus de lletra.
Contacteu amb l'administrador del Servidor de Documents.", + "DE.ApplicationController.errorSubmit": "No s'ha pogut enviar.", + "DE.ApplicationController.errorUpdateVersionOnDisconnect": "S'ha restaurat la connexió a internet i la versió del fitxer ha canviat.
Abans de continuar treballant, heu de baixar el fitxer o copiar-ne el contingut per assegurar-vos que no es perdi res i, després, torneu a carregar aquesta pàgina.", + "DE.ApplicationController.errorUserDrop": "Ara mateix no es pot accedir al fitxer.", + "DE.ApplicationController.notcriticalErrorTitle": "Advertiment", "DE.ApplicationController.scriptLoadError": "La connexió és massa lenta, alguns dels components no s’han pogut carregar. Torneu a carregar la pàgina.", "DE.ApplicationController.textAnonymous": "Anònim", - "DE.ApplicationController.textClear": "Esborrar tots els camps", "DE.ApplicationController.textGotIt": "Ho tinc", "DE.ApplicationController.textGuest": "Convidat", - "DE.ApplicationController.textLoadingDocument": "Carregant document", - "DE.ApplicationController.textNext": "Següent camp", + "DE.ApplicationController.textLoadingDocument": "S'està carregant el document", "DE.ApplicationController.textOf": "de", - "DE.ApplicationController.textRequired": "Ompli tots els camps requerits per enviar el formulari.", - "DE.ApplicationController.textSubmit": "Enviar", - "DE.ApplicationController.textSubmited": "Formulari enviat amb èxit
Faci clic per a tancar el consell", - "DE.ApplicationController.txtClose": "Tancar", - "DE.ApplicationController.unknownErrorText": "Error Desconegut.", + "DE.ApplicationController.textRequired": "Emplena tots els camps necessaris per enviar el formulari.", + "DE.ApplicationController.textSubmited": "El formulari s'ha enviat amb èxit
Cliqueu per a tancar el consell", + "DE.ApplicationController.txtClose": "Tanca", + "DE.ApplicationController.txtEmpty": "(Buit)", + "DE.ApplicationController.txtPressLink": "Prem CTRL i clica a l'enllaç", + "DE.ApplicationController.unknownErrorText": "Error desconegut.", "DE.ApplicationController.unsupportedBrowserErrorText": "El vostre navegador no és compatible.", - "DE.ApplicationController.waitText": "Si us plau, esperi...", - "DE.ApplicationView.txtDownload": "\nDescarregar", - "DE.ApplicationView.txtDownloadDocx": "Desar com a .docx", - "DE.ApplicationView.txtDownloadPdf": "Desar com a pdf", - "DE.ApplicationView.txtEmbed": "Incrustar", - "DE.ApplicationView.txtFileLocation": "Obrir ubicació del fitxer", - "DE.ApplicationView.txtFullScreen": "Pantalla Completa", - "DE.ApplicationView.txtPrint": "Imprimir", - "DE.ApplicationView.txtShare": "Compartir" + "DE.ApplicationController.waitText": "Espereu...", + "DE.ApplicationView.txtDownload": "Baixa", + "DE.ApplicationView.txtDownloadDocx": "Baixa-ho com a .docx", + "DE.ApplicationView.txtDownloadPdf": "Baixa-ho com a pdf", + "DE.ApplicationView.txtEmbed": "Incrusta", + "DE.ApplicationView.txtFileLocation": "Obre la ubicació del fitxer", + "DE.ApplicationView.txtFullScreen": "Pantalla sencera", + "DE.ApplicationView.txtPrint": "Imprimeix", + "DE.ApplicationView.txtShare": "Comparteix" } \ No newline at end of file diff --git a/apps/documenteditor/forms/locale/cs.json b/apps/documenteditor/forms/locale/cs.json index 09c23bf7a..99604921e 100644 --- a/apps/documenteditor/forms/locale/cs.json +++ b/apps/documenteditor/forms/locale/cs.json @@ -1,5 +1,6 @@ { "common.view.modals.txtCopy": "Zkopírovat do schránky", + "common.view.modals.txtEmbed": "Vestavěný", "common.view.modals.txtHeight": "Výška", "common.view.modals.txtShare": "Odkaz pro sdílení", "common.view.modals.txtWidth": "Šířka", @@ -10,19 +11,34 @@ "DE.ApplicationController.downloadTextText": "Stahování dokumentu…", "DE.ApplicationController.errorAccessDeny": "Pokoušíte se provést akci, na kterou nemáte oprávnění.
Obraťte se na správce vámi využívaného dokumentového serveru.", "DE.ApplicationController.errorDefaultMessage": "Kód chyby: %1", + "DE.ApplicationController.errorEditingDownloadas": "Při práci s dokumentem došlo k chybě.
Použijte volbu 'Stáhnout jako…' pro uložení záložní kopie na harddisk Vašeho počítače. ", "DE.ApplicationController.errorFilePassProtect": "Soubor je chráněn heslem a bez něj ho nelze otevřít.", "DE.ApplicationController.errorFileSizeExceed": "Velikost souboru překračuje omezení nastavená na serveru, který využíváte.
Ohledně podrobností se obraťte na správce dokumentového serveru.", + "DE.ApplicationController.errorForceSave": "Při ukládání souboru došlo k chybě. Prosím použijte 'Stáhnout jako' k uložení souboru na harddisk Vašeho počítače, nebo opakujte volbu později.", + "DE.ApplicationController.errorLoadingFont": "Styly nejsou načteny.
Prosím kontaktujte Vašeho administrátora dokumentových serverů.", + "DE.ApplicationController.errorSubmit": "Potvrzení selhalo.", "DE.ApplicationController.errorUpdateVersionOnDisconnect": "Připojení k Internetu bylo obnoveno a verze souboru byla změněna.
Než budete moci pokračovat v práci, bude třeba si soubor stáhnout nebo si zkopírovat jeho obsah, abyste si zajistili, že se nic neztratí a až poté tuto stránku znovu načtěte.", "DE.ApplicationController.errorUserDrop": "Tento soubor nyní není přístupný.", "DE.ApplicationController.notcriticalErrorTitle": "Varování", "DE.ApplicationController.scriptLoadError": "Připojení je příliš pomalé, některé součásti se nepodařilo načíst. Načtěte stránku znovu.", + "DE.ApplicationController.textAnonymous": "Anonymní", + "DE.ApplicationController.textGotIt": "Rozumím", + "DE.ApplicationController.textGuest": "Host", "DE.ApplicationController.textLoadingDocument": "Načítání dokumentu", "DE.ApplicationController.textOf": "z", + "DE.ApplicationController.textRequired": "Pro odeslání formuláře vyplňte všechna požadovaná pole.", + "DE.ApplicationController.textSubmited": "Formulář úspěšně uložen.
Klikněte pro zavření nápovědy.", "DE.ApplicationController.txtClose": "Zavřít", + "DE.ApplicationController.txtEmpty": "(Prázdné)", + "DE.ApplicationController.txtPressLink": "Stiskněte CTRL a klikněte na odkaz", "DE.ApplicationController.unknownErrorText": "Neznámá chyba.", "DE.ApplicationController.unsupportedBrowserErrorText": "Vámi používaný webový prohlížeč není podporován.", "DE.ApplicationController.waitText": "Čekejte prosím…", "DE.ApplicationView.txtDownload": "Stáhnout", + "DE.ApplicationView.txtDownloadDocx": "Stáhnout jako docx", + "DE.ApplicationView.txtDownloadPdf": "Stáhnout jako pdf", + "DE.ApplicationView.txtEmbed": "Vestavěný", + "DE.ApplicationView.txtFileLocation": "Otevřít umístění souboru", "DE.ApplicationView.txtFullScreen": "Na celou obrazovku", "DE.ApplicationView.txtPrint": "Tisk", "DE.ApplicationView.txtShare": "Sdílet" diff --git a/apps/documenteditor/forms/locale/de.json b/apps/documenteditor/forms/locale/de.json index 09023d4de..ae40db87d 100644 --- a/apps/documenteditor/forms/locale/de.json +++ b/apps/documenteditor/forms/locale/de.json @@ -14,6 +14,8 @@ "DE.ApplicationController.errorEditingDownloadas": "Fehler bei der Bearbeitung.
Speichern Sie eine Kopie dieser Datei auf Ihrem Computer, indem Sie auf \"Herunterladen als...\" klicken.", "DE.ApplicationController.errorFilePassProtect": "Das Dokument ist kennwortgeschützt und kann nicht geöffnet werden.", "DE.ApplicationController.errorFileSizeExceed": "Die Dateigröße überschreitet die für Ihren Server festgelegte Einschränkung.
Weitere Informationen können Sie von Ihrem Document Server-Administrator erhalten.", + "DE.ApplicationController.errorForceSave": "Beim Speichern der Datei ist ein Fehler aufgetreten. Verwenden Sie die Option \"Herunterladen als\", um die Datei auf Ihrer Computerfestplatte zu speichern oder versuchen Sie es später erneut.", + "DE.ApplicationController.errorLoadingFont": "Schriftarten nicht hochgeladen.
Bitte wenden Sie sich an Administratoren von Ihrem Document Server.", "DE.ApplicationController.errorSubmit": "Fehler beim Senden.", "DE.ApplicationController.errorUpdateVersionOnDisconnect": "Die Internetverbindung wurde wiederhergestellt und die Dateiversion wurde geändert.
Bevor Sie weiterarbeiten können, müssen Sie die Datei herunterladen oder den Inhalt kopieren, um sicherzustellen, dass nichts verloren geht, und diese Seite anschließend neu laden.", "DE.ApplicationController.errorUserDrop": "Der Zugriff auf diese Datei ist nicht möglich.", @@ -30,6 +32,8 @@ "DE.ApplicationController.textSubmit": "Senden", "DE.ApplicationController.textSubmited": "Das Formular wurde erfolgreich abgesendet
Klicken Sie hier, um den Tipp auszublenden", "DE.ApplicationController.txtClose": "Schließen", + "DE.ApplicationController.txtEmpty": "(Leer)", + "DE.ApplicationController.txtPressLink": "Drücken Sie STRG und klicken Sie auf den Link", "DE.ApplicationController.unknownErrorText": "Unbekannter Fehler.", "DE.ApplicationController.unsupportedBrowserErrorText": "Ihr Webbrowser wird nicht unterstützt.", "DE.ApplicationController.waitText": "Bitte warten...", diff --git a/apps/documenteditor/forms/locale/el.json b/apps/documenteditor/forms/locale/el.json index 2a30fac8d..049a753c7 100644 --- a/apps/documenteditor/forms/locale/el.json +++ b/apps/documenteditor/forms/locale/el.json @@ -14,6 +14,8 @@ "DE.ApplicationController.errorEditingDownloadas": "Παρουσιάστηκε σφάλμα κατά την εργασία με το έγγραφο.
Χρησιμοποιήστε την επιλογή «Λήψη ως...» για να αποθηκεύσετε το αντίγραφο ασφαλείας στον σκληρό δίσκο του υπολογιστή σας.", "DE.ApplicationController.errorFilePassProtect": "Το αρχείο προστατεύεται με συνθηματικό και δεν μπορεί να ανοίξει.", "DE.ApplicationController.errorFileSizeExceed": "Το μέγεθος του αρχείου υπερβαίνει το όριο που έχει οριστεί για τον διακομιστή σας.
Παρακαλούμε επικοινωνήστε με τον διαχειριστή του διακομιστή εγγράφων για λεπτομέρειες.", + "DE.ApplicationController.errorForceSave": "Παρουσιάστηκε σφάλμα κατά την αποθήκευση του αρχείου. Χρησιμοποιήστε την επιλογή «Λήψη ως» για να αποθηκεύσετε το αρχείο στον σκληρό δίσκο του υπολογιστή σας ή δοκιμάστε ξανά αργότερα.", + "DE.ApplicationController.errorLoadingFont": "Οι γραμματοσειρές δεν έχουν φορτωθεί.
Παρακαλούμε επικοινωνήστε με τον διαχειριστή του Εξυπηρετητή Εγγράφων σας.", "DE.ApplicationController.errorSubmit": "Η υποβολή απέτυχε.", "DE.ApplicationController.errorUpdateVersionOnDisconnect": "Η σύνδεση στο Διαδίκτυο έχει αποκατασταθεί και η έκδοση του αρχείου έχει αλλάξει.
Προτού συνεχίσετε να εργάζεστε, πρέπει να κατεβάσετε το αρχείο ή να αντιγράψετε το περιεχόμενό του για να βεβαιωθείτε ότι δεν έχει χαθεί τίποτα και, στη συνέχεια, φορτώστε ξανά αυτήν τη σελίδα.", "DE.ApplicationController.errorUserDrop": "Δεν είναι δυνατή η πρόσβαση στο αρχείο αυτήν τη στιγμή.", @@ -30,6 +32,8 @@ "DE.ApplicationController.textSubmit": "Υποβολή", "DE.ApplicationController.textSubmited": "Η φόρμα υποβλήθηκε με επιτυχία
Κάντε κλικ για να κλείσετε τη συμβουλή ", "DE.ApplicationController.txtClose": "Κλείσιμο", + "DE.ApplicationController.txtEmpty": "(Κενό)", + "DE.ApplicationController.txtPressLink": "Πατήστε Ctrl και κάντε κλικ στο σύνδεσμο", "DE.ApplicationController.unknownErrorText": "Άγνωστο σφάλμα.", "DE.ApplicationController.unsupportedBrowserErrorText": "Ο περιηγητής σας δεν υποστηρίζεται.", "DE.ApplicationController.waitText": "Παρακαλούμε, περιμένετε...", diff --git a/apps/documenteditor/forms/locale/en.json b/apps/documenteditor/forms/locale/en.json index ad6982bcb..bb2814582 100644 --- a/apps/documenteditor/forms/locale/en.json +++ b/apps/documenteditor/forms/locale/en.json @@ -14,10 +14,11 @@ "DE.ApplicationController.errorEditingDownloadas": "An error occurred during the work with the document.
Use the 'Download as...' option to save the file backup copy to your computer hard drive.", "DE.ApplicationController.errorFilePassProtect": "The file is password protected and cannot be opened.", "DE.ApplicationController.errorFileSizeExceed": "The file size exceeds the limitation set for your server.
Please contact your Document Server administrator for details.", + "DE.ApplicationController.errorForceSave": "An error occurred while saving the file. Please use the 'Download as' option to save the file to your computer hard drive or try again later.", + "DE.ApplicationController.errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator.", "DE.ApplicationController.errorSubmit": "Submit failed.", "DE.ApplicationController.errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.", "DE.ApplicationController.errorUserDrop": "The file cannot be accessed right now.", - "DE.ApplicationController.errorForceSave": "An error occurred while saving the file. Please use the 'Download as' option to save the file to your computer hard drive or try again later.", "DE.ApplicationController.notcriticalErrorTitle": "Warning", "DE.ApplicationController.scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please reload the page.", "DE.ApplicationController.textAnonymous": "Anonymous", @@ -28,11 +29,11 @@ "DE.ApplicationController.textRequired": "Fill all required fields to send form.", "DE.ApplicationController.textSubmited": "Form submitted successfully
Click to close the tip", "DE.ApplicationController.txtClose": "Close", + "DE.ApplicationController.txtEmpty": "(Empty)", + "DE.ApplicationController.txtPressLink": "Press Ctrl and click link", "DE.ApplicationController.unknownErrorText": "Unknown error.", "DE.ApplicationController.unsupportedBrowserErrorText": "Your browser is not supported.", "DE.ApplicationController.waitText": "Please, wait...", - "DE.ApplicationController.txtEmpty": "(Empty)", - "DE.ApplicationController.txtPressLink": "Press Ctrl and click link", "DE.ApplicationController.textCloseTip": "Click to close the tip.", "DE.ApplicationController.titleServerVersion": "Editor updated", "DE.ApplicationController.errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", diff --git a/apps/documenteditor/forms/locale/es.json b/apps/documenteditor/forms/locale/es.json index de92ca281..f85fdbeeb 100644 --- a/apps/documenteditor/forms/locale/es.json +++ b/apps/documenteditor/forms/locale/es.json @@ -14,6 +14,8 @@ "DE.ApplicationController.errorEditingDownloadas": "Se produjo un error durante el trabajo con el documento.
Use la opción 'Descargar como...' para guardar la copia de seguridad de este archivo en el disco duro de su ordenador.", "DE.ApplicationController.errorFilePassProtect": "El archivo está protegido por una contraseña y no puede ser abierto.", "DE.ApplicationController.errorFileSizeExceed": "El tamaño del archivo excede el límite establecido para su servidor. Por favor póngase en contacto con el administrador del Servidor de Documentos para obtener más información.", + "DE.ApplicationController.errorForceSave": "Ha ocurrido un error al guardar el archivo. Por favor, use la opción \"Descargar como\" para guardar el archivo en el disco duro de su ordenador o inténtelo de nuevo más tarde.", + "DE.ApplicationController.errorLoadingFont": "Las fuentes no están cargadas.
Por favor, póngase en contacto con el administrador del Document Server.", "DE.ApplicationController.errorSubmit": "Error al enviar.", "DE.ApplicationController.errorUpdateVersionOnDisconnect": "La conexión a Internet ha sido restaurada, y la versión del archivo ha sido cambiada. Antes de poder seguir trabajando, es necesario descargar el archivo o copiar su contenido para asegurarse de que no se pierda nada, y luego recargar esta página.", "DE.ApplicationController.errorUserDrop": "No se puede acceder al archivo en este momento.", @@ -30,6 +32,8 @@ "DE.ApplicationController.textSubmit": "Enviar", "DE.ApplicationController.textSubmited": "Formulario enviado con éxito
Haga clic para cerrar el consejo", "DE.ApplicationController.txtClose": "Cerrar", + "DE.ApplicationController.txtEmpty": "(Vacío)", + "DE.ApplicationController.txtPressLink": "Pulse CTRL y haga clic en el enlace", "DE.ApplicationController.unknownErrorText": "Error desconocido.", "DE.ApplicationController.unsupportedBrowserErrorText": "Su navegador no es compatible.", "DE.ApplicationController.waitText": "Por favor, espere...", diff --git a/apps/documenteditor/forms/locale/fr.json b/apps/documenteditor/forms/locale/fr.json index c56b67a2f..c824ad31f 100644 --- a/apps/documenteditor/forms/locale/fr.json +++ b/apps/documenteditor/forms/locale/fr.json @@ -14,6 +14,8 @@ "DE.ApplicationController.errorEditingDownloadas": "Une erreur s'est produite lors du travail avec le document.
Utilisez l'option 'Télécharger comme...' pour enregistrer une copie de sauvegarde du fichier sur le disque dur de votre ordinateur.", "DE.ApplicationController.errorFilePassProtect": "Le fichier est protégé par le mot de passe et ne peut pas être ouvert.", "DE.ApplicationController.errorFileSizeExceed": "La taille du fichier dépasse les limites établies sur votre serveur.
Veuillez contacter votre administrateur de Document Server pour obtenir plus d'informations. ", + "DE.ApplicationController.errorForceSave": "Une erreur est survenue lors de l'enregistrement du fichier. Veuillez utiliser l'option «Télécharger en tant que» pour enregistrer le fichier sur le disque dur de votre ordinateur ou réessayer plus tard.", + "DE.ApplicationController.errorLoadingFont": "Les polices ne sont pas téléchargées.
Veuillez contacter l'administrateur de Document Server.", "DE.ApplicationController.errorSubmit": "Échec de soumission", "DE.ApplicationController.errorUpdateVersionOnDisconnect": "La connexion internet a été rétablie, la version du fichier est modifiée.
Avant de continuer, téléchargez le fichier ou copiez le contenu pour vous assurer que tous les changements ont été enregistrés, et rechargez la page.", "DE.ApplicationController.errorUserDrop": "Impossible d'accéder au fichier.", @@ -30,6 +32,8 @@ "DE.ApplicationController.textSubmit": "Soumettre ", "DE.ApplicationController.textSubmited": "Le formulaire a été soumis avec succès
Cliquez ici pour fermer l'astuce", "DE.ApplicationController.txtClose": "Fermer", + "DE.ApplicationController.txtEmpty": "(Vide)", + "DE.ApplicationController.txtPressLink": "Appuyez sur Ctrl et cliquez sur le lien", "DE.ApplicationController.unknownErrorText": "Erreur inconnue.", "DE.ApplicationController.unsupportedBrowserErrorText": "Votre navigateur n'est pas pris en charge.", "DE.ApplicationController.waitText": "Veuillez patienter...", diff --git a/apps/documenteditor/forms/locale/it.json b/apps/documenteditor/forms/locale/it.json index b18e037e0..f288348a8 100644 --- a/apps/documenteditor/forms/locale/it.json +++ b/apps/documenteditor/forms/locale/it.json @@ -14,18 +14,26 @@ "DE.ApplicationController.errorEditingDownloadas": "Si è verificato un errore durante il lavoro con il documento.
Utilizzare l'opzione 'Scarica come ...' per salvare la copia di backup del file sul disco rigido del computer.", "DE.ApplicationController.errorFilePassProtect": "Il file è protetto da una password. Impossibile aprirlo.", "DE.ApplicationController.errorFileSizeExceed": "La dimensione del file supera la limitazione impostata per il tuo server.
Per i dettagli, contatta l'amministratore del Document server.", + "DE.ApplicationController.errorForceSave": "Si è verificato un errore durante il salvataggio del file. Utilizzare l'opzione 'Scarica come' per salvare il file sul disco rigido del computer o riprovare più tardi.", + "DE.ApplicationController.errorLoadingFont": "I caratteri non sono caricati.
Si prega di contattare il tuo amministratore di Document Server.", "DE.ApplicationController.errorSubmit": "Invio fallito.", "DE.ApplicationController.errorUpdateVersionOnDisconnect": "La connessione Internet è stata ripristinata e la versione del file è stata modificata.
Prima di poter continuare a lavorare, è necessario scaricare il file o copiarne il contenuto per assicurarsi che non vada perso nulla, successivamente ricaricare questa pagina.", "DE.ApplicationController.errorUserDrop": "Impossibile accedere al file subito.", "DE.ApplicationController.notcriticalErrorTitle": "Avviso", "DE.ApplicationController.scriptLoadError": "La connessione è troppo lenta, alcuni componenti non possono essere caricati. Si prega di ricaricare la pagina.", + "DE.ApplicationController.textAnonymous": "Anonimo", "DE.ApplicationController.textClear": "‎Cancella tutti i campi‎", + "DE.ApplicationController.textGotIt": "Capito", + "DE.ApplicationController.textGuest": "Ospite", "DE.ApplicationController.textLoadingDocument": "Caricamento del documento", "DE.ApplicationController.textNext": "Campo successivo", "DE.ApplicationController.textOf": "di", + "DE.ApplicationController.textRequired": "Compila tutti i campi richiesti per inviare il modulo.", "DE.ApplicationController.textSubmit": "‎Invia‎", "DE.ApplicationController.textSubmited": "Modulo inviato con successo
Fare click per chiudere la notifica
", "DE.ApplicationController.txtClose": "Chiudi", + "DE.ApplicationController.txtEmpty": "(Vuoto)", + "DE.ApplicationController.txtPressLink": "Premi CTRL e clicca sul collegamento", "DE.ApplicationController.unknownErrorText": "Errore sconosciuto.", "DE.ApplicationController.unsupportedBrowserErrorText": "Il tuo browser non è supportato.", "DE.ApplicationController.waitText": "Per favore, attendi...", diff --git a/apps/documenteditor/forms/locale/ja.json b/apps/documenteditor/forms/locale/ja.json index 17e852b32..00ba726b4 100644 --- a/apps/documenteditor/forms/locale/ja.json +++ b/apps/documenteditor/forms/locale/ja.json @@ -11,20 +11,34 @@ "DE.ApplicationController.downloadTextText": "ドキュメントのダウンロード中...", "DE.ApplicationController.errorAccessDeny": "利用権限がない操作をしようとしました。
Documentサーバー管理者に連絡してください。", "DE.ApplicationController.errorDefaultMessage": "エラー コード: %1", + "DE.ApplicationController.errorEditingDownloadas": "ドキュメントの作業中にエラーが発生しました。
「名前を付けてダウンロード」オプションを使用して、ファイルのバックアップコピーをコンピュータに保存します。", "DE.ApplicationController.errorFilePassProtect": "ドキュメントがパスワードで保護されているため開くことができません", "DE.ApplicationController.errorFileSizeExceed": "ファイルサイズがサーバーで設定された制限を超過しています。
Documentサーバー管理者に詳細をお問い合わせください。", + "DE.ApplicationController.errorForceSave": "文書の保存中にエラーが発生しました。コンピューターにファイルを保存するために、「...としてダウンロード」を使用し、または後で再お試しください。", + "DE.ApplicationController.errorLoadingFont": "フォントがダウンロードされませんでした。文書サーバのアドミニストレータを連絡してください。", + "DE.ApplicationController.errorSubmit": "送信に失敗しました。", "DE.ApplicationController.errorUpdateVersionOnDisconnect": "インターネット接続が復旧し、ファイルのバージョンが更新されています。
作業を継続する前に、ファイルをダウンロードするか内容をコピーして、変更が消えてしまわないようにしてからページを再読み込みしてください。", "DE.ApplicationController.errorUserDrop": "今、ファイルにアクセスすることはできません。", "DE.ApplicationController.notcriticalErrorTitle": "警告", "DE.ApplicationController.scriptLoadError": "接続が非常に遅いため、いくつかのコンポーネントはロードされませんでした。ページを再読み込みしてください。", + "DE.ApplicationController.textAnonymous": "匿名", + "DE.ApplicationController.textGotIt": "OK", + "DE.ApplicationController.textGuest": "ゲスト", "DE.ApplicationController.textLoadingDocument": "ドキュメントを読み込んでいます", "DE.ApplicationController.textOf": "から", + "DE.ApplicationController.textRequired": "必須事項をすべて入力し、送信してください。", + "DE.ApplicationController.textSubmited": "フォームが正常に送信されました。
クリックしてヒントを閉じます。", "DE.ApplicationController.txtClose": "閉じる", + "DE.ApplicationController.txtEmpty": "(空)", + "DE.ApplicationController.txtPressLink": "リンクをクリックしてCTRLを押してください", "DE.ApplicationController.unknownErrorText": "不明なエラー", - "DE.ApplicationController.unsupportedBrowserErrorText": "お使いのブラウザがサポートされていません。", + "DE.ApplicationController.unsupportedBrowserErrorText": "お使いのブラウザはサポートされていません。", "DE.ApplicationController.waitText": "少々お待ちください...", "DE.ApplicationView.txtDownload": "ダウンロード", + "DE.ApplicationView.txtDownloadDocx": "docxとして保存", + "DE.ApplicationView.txtDownloadPdf": "PDFとして保存", "DE.ApplicationView.txtEmbed": "埋め込み", + "DE.ApplicationView.txtFileLocation": "ファイルを開く", "DE.ApplicationView.txtFullScreen": "全画面表示", "DE.ApplicationView.txtPrint": "印刷する", "DE.ApplicationView.txtShare": "シェア" diff --git a/apps/documenteditor/forms/locale/ko.json b/apps/documenteditor/forms/locale/ko.json index 4ba731456..83ce15293 100644 --- a/apps/documenteditor/forms/locale/ko.json +++ b/apps/documenteditor/forms/locale/ko.json @@ -11,20 +11,35 @@ "DE.ApplicationController.downloadTextText": "문서 다운로드 중...", "DE.ApplicationController.errorAccessDeny": "권한이없는 작업을 수행하려고합니다.
Document Server 관리자에게 문의하십시오.", "DE.ApplicationController.errorDefaultMessage": "오류 코드: %1", + "DE.ApplicationController.errorEditingDownloadas": " 문서 작업 중에 알수 없는 장애가 발생했습니다.
\"다른 이름으로 다운로드...\"를 선택하여 파일을 현재 사용 중인 컴퓨터 하드 디스크에 저장하시기 바랍니다.", "DE.ApplicationController.errorFilePassProtect": "이 문서는 암호로 보호되어있어 열 수 없습니다.", "DE.ApplicationController.errorFileSizeExceed": "파일의 크기가 서버에서 정해진 범위를 초과 했습니다. 문서 서버 관리자에게 해당 내용에 대한 자세한 안내를 받아 보시기 바랍니다.", - "DE.ApplicationController.errorUpdateVersionOnDisconnect": "인터넷 연결이 복구 되었으며 파일에 수정 사항이 발생되었습니다. 작업을 계속 하시기 전에 반드시 기존의 파일을 다운로드하거나 내용을 복사해서 작업 내용을 잃어 버리는 일이 없도록 한 후에 이 페이지를 새로 고침(reload) 해 주시기 바랍니다.", + "DE.ApplicationController.errorForceSave": "파일을 저장하는 동안 오류가 발생했습니다. \"다른 이름으로 다운로드\" 옵션을 사용하여 파일을 컴퓨터의 하드 드라이브에 저장하거나 나중에 다시 시도하십시오.", + "DE.ApplicationController.errorLoadingFont": "글꼴이 로드되지 않았습니다.
문서 관리 관리자에게 문의하십시오.", + "DE.ApplicationController.errorSubmit": "전송실패", + "DE.ApplicationController.errorUpdateVersionOnDisconnect": "네트워크 연결이 복원되었으며 파일 버전이 변경되었습니다.
계속 작업하기 전에 데이터 손실을 방지하기 위해 파일을 다운로드하거나 내용을 복사한 다음 이 페이지를 새로 고쳐야 합니다.", "DE.ApplicationController.errorUserDrop": "파일에 지금 액세스 할 수 없습니다.", "DE.ApplicationController.notcriticalErrorTitle": "경고", "DE.ApplicationController.scriptLoadError": "연결 속도가 느려, 일부 요소들이 로드되지 않았습니다. 페이지를 다시 새로 고침해주세요.", + "DE.ApplicationController.textAnonymous": "익명사용자", + "DE.ApplicationController.textGotIt": "취득", + "DE.ApplicationController.textGuest": "게스트", "DE.ApplicationController.textLoadingDocument": "문서 로드 중", "DE.ApplicationController.textOf": "의", + "DE.ApplicationController.textRequired": "양식을 보내려면 모든 필수 필드를 채우십시오.", + "DE.ApplicationController.textSubmited": "양식이 성공적으로 전송되었습니다.
여기를 클릭하여 프롬프트를 닫으십시오", "DE.ApplicationController.txtClose": "닫기", + "DE.ApplicationController.txtEmpty": "(없음)", + "DE.ApplicationController.txtPressLink": "CTRL 키를 누른 상태에서 링크 클릭", "DE.ApplicationController.unknownErrorText": "알 수없는 오류.", "DE.ApplicationController.unsupportedBrowserErrorText": "사용중인 브라우저가 지원되지 않습니다.", - "DE.ApplicationController.waitText": "잠시만 기달려주세요...", + "DE.ApplicationController.waitText": "잠시만 기다려주세요...", "DE.ApplicationView.txtDownload": "다운로드 ", + "DE.ApplicationView.txtDownloadDocx": "docx 형식으로 다운로드", + "DE.ApplicationView.txtDownloadPdf": "PDF형식으로 다운로드", "DE.ApplicationView.txtEmbed": "개체 삽입", + "DE.ApplicationView.txtFileLocation": "파일 위치 열기", "DE.ApplicationView.txtFullScreen": "전체 화면", + "DE.ApplicationView.txtPrint": "인쇄", "DE.ApplicationView.txtShare": "공유" } \ No newline at end of file diff --git a/apps/documenteditor/forms/locale/pl.json b/apps/documenteditor/forms/locale/pl.json index b7b983c42..2d0d2a800 100644 --- a/apps/documenteditor/forms/locale/pl.json +++ b/apps/documenteditor/forms/locale/pl.json @@ -9,22 +9,35 @@ "DE.ApplicationController.criticalErrorTitle": "Błąd", "DE.ApplicationController.downloadErrorText": "Pobieranie nieudane.", "DE.ApplicationController.downloadTextText": "Pobieranie dokumentu...", - "DE.ApplicationController.errorAccessDeny": "Próbujesz wykonać działanie, na które nie masz uprawnień.
Proszę skontaktować się z administratorem serwera dokumentów.", + "DE.ApplicationController.errorAccessDeny": "Próbujesz wykonać działanie, do którego nie masz uprawnień.
Proszę skontaktować się ze swoim administratorem Serwera Dokumentów.", "DE.ApplicationController.errorDefaultMessage": "Kod błędu: %1", - "DE.ApplicationController.errorFilePassProtect": "Dokument jest chroniony hasłem i nie może być otwarty.", - "DE.ApplicationController.errorFileSizeExceed": "Rozmiar pliku przekracza dopuszczone limit dla twojego serwera.
Prosimy o kontakt z administratorem twojego serwera w celu uzyskania szczegółowych informacji.", - "DE.ApplicationController.errorUpdateVersionOnDisconnect": "Połączenie z internetem zostało odzyskane, a wersja pliku uległa zmianie.
Zanim będzie mógł kontynuować pracę, musisz pobrać plik albo skopiować jego zawartość, aby mieć pewność, że nic nie zostało utracone, a następnie odświeżyć stronę.", + "DE.ApplicationController.errorEditingDownloadas": "Wystąpił błąd podczas pracy z dokumentem.
Użyj opcji \"Pobierz jako...\", aby zapisać kopię zapasową pliku na dysku twardym komputera.", + "DE.ApplicationController.errorFilePassProtect": "Dokument jest chroniony hasłem i nie może zostać otwarty.", + "DE.ApplicationController.errorFileSizeExceed": "Rozmiar pliku przekracza dopuszczone limit ustawiony dla twojego serwera.
Prosimy o kontakt z administratorem twojego serwera w celu uzyskania szczegółowych informacji.", + "DE.ApplicationController.errorForceSave": "Wystąpił błąd podczas zapisywania pliku. Użyj opcji \"Pobierz jako\", aby zapisać plik na dysku twardym komputera lub spróbuj poźniej zapisać plik ponownie.", + "DE.ApplicationController.errorLoadingFont": "Czcionki nie zostały załadowane.
Skontaktuj się z administratorem Serwera Dokumentów.", + "DE.ApplicationController.errorSubmit": "Przesyłanie nie powiodło się.", + "DE.ApplicationController.errorUpdateVersionOnDisconnect": "Połączenie z internetem zostało odzyskane, a wersja pliku uległa zmianie.
Zanim będziesz mógł kontynuować pracę, musisz pobrać plik albo skopiować jego zawartość, aby mieć pewność, że nic nie zostało utracone, a następnie odświeżyć stronę.", "DE.ApplicationController.errorUserDrop": "Nie można uzyskać dostępu do tego pliku.", "DE.ApplicationController.notcriticalErrorTitle": "Ostrzeżenie", - "DE.ApplicationController.scriptLoadError": "Połączenie jest zbyt wolne, niektóre komponenty mogą być niezaładowane. Prosimy odświeżyć stronę.", - "DE.ApplicationController.textLoadingDocument": "Ładowanie dokumentu", + "DE.ApplicationController.scriptLoadError": "Połączenie jest zbyt wolne, niektóre komponenty mogą być niezaładowane. Proszę odświeżyć stronę.", + "DE.ApplicationController.textAnonymous": "Anonimowy użytkownik ", + "DE.ApplicationController.textGuest": "Gość", + "DE.ApplicationController.textLoadingDocument": "Wgrywanie dokumentu", "DE.ApplicationController.textOf": "z", + "DE.ApplicationController.textRequired": "Wypełnij wszystkie wymagane pola, aby wysłać formularz.", + "DE.ApplicationController.textSubmited": "
Formularz załączony poprawnie

Kliknij aby zamknąć podpowiedź.", "DE.ApplicationController.txtClose": "Zamknij", + "DE.ApplicationController.txtEmpty": "(Pusty)", + "DE.ApplicationController.txtPressLink": "Naciśnij Ctrl i kliknij w link", "DE.ApplicationController.unknownErrorText": "Nieznany błąd.", "DE.ApplicationController.unsupportedBrowserErrorText": "Twoja przeglądarka nie jest wspierana.", "DE.ApplicationController.waitText": "Proszę czekać...", "DE.ApplicationView.txtDownload": "Pobierz", + "DE.ApplicationView.txtDownloadDocx": "Pobierz jako docx", + "DE.ApplicationView.txtDownloadPdf": "Pobierz jako pdf", "DE.ApplicationView.txtEmbed": "Osadź", + "DE.ApplicationView.txtFileLocation": "Otwórz miejsce lokalizacji pliku", "DE.ApplicationView.txtFullScreen": "Pełny ekran", "DE.ApplicationView.txtPrint": "Drukuj", "DE.ApplicationView.txtShare": "Udostępnij" diff --git a/apps/documenteditor/forms/locale/pt.json b/apps/documenteditor/forms/locale/pt.json index ec784e55d..1d51cbfca 100644 --- a/apps/documenteditor/forms/locale/pt.json +++ b/apps/documenteditor/forms/locale/pt.json @@ -14,6 +14,8 @@ "DE.ApplicationController.errorEditingDownloadas": "Ocorreu um erro durante o trabalho com o documento.
Utilizar a opção 'Download as...' para salvar a cópia de backup do arquivo no disco rígido do seu computador.", "DE.ApplicationController.errorFilePassProtect": "O documento é protegido por senha e não pode ser aberto.", "DE.ApplicationController.errorFileSizeExceed": "O tamanho do arquivo excede o limite de seu servidor.
Por favor, contate seu administrador de Servidor de Documentos para detalhes.", + "DE.ApplicationController.errorForceSave": "Ocorreu um erro na gravação. Favor utilizar a opção 'Baixar como' para gravar o arquivo em seu computador ou tente novamente mais tarde.", + "DE.ApplicationController.errorLoadingFont": "As fontes não foram carregadas.
Entre em contato com o administrador do Document Server.", "DE.ApplicationController.errorSubmit": "Falha no envio.", "DE.ApplicationController.errorUpdateVersionOnDisconnect": "A conexão à internet foi restabelecida, e a versão do arquivo foi alterada.
Antes de continuar seu trabalho, transfira o arquivo ou copie seu conteúdo para assegurar que nada seja perdido, e então, recarregue esta página.", "DE.ApplicationController.errorUserDrop": "O arquivo não pode ser acessado agora.", @@ -30,6 +32,8 @@ "DE.ApplicationController.textSubmit": "Enviar", "DE.ApplicationController.textSubmited": "Formulário apresentado com sucesso>br>Click para fechar a ponta", "DE.ApplicationController.txtClose": "Fechar", + "DE.ApplicationController.txtEmpty": "(Vazio)", + "DE.ApplicationController.txtPressLink": "Pressione CTRL e clique no link", "DE.ApplicationController.unknownErrorText": "Erro desconhecido.", "DE.ApplicationController.unsupportedBrowserErrorText": "Seu navegador não é suportado.", "DE.ApplicationController.waitText": "Aguarde...", diff --git a/apps/documenteditor/forms/locale/ro.json b/apps/documenteditor/forms/locale/ro.json index 2916153cc..5ca9d3c10 100644 --- a/apps/documenteditor/forms/locale/ro.json +++ b/apps/documenteditor/forms/locale/ro.json @@ -14,6 +14,8 @@ "DE.ApplicationController.errorEditingDownloadas": "S-a produs o eroare în timpul editării documentului.
Pentru copierea de rezervă pe PC utilizați opțiunea Descărcare ca...", "DE.ApplicationController.errorFilePassProtect": "Fișierul este protejat cu parolă și deaceea nu poate fi deschis.", "DE.ApplicationController.errorFileSizeExceed": "Dimensiunea fișierului depășește limita permisă de serverul Dvs.
Pentru detalii, contactați administratorul dumneavoastră de Server Documente.", + "DE.ApplicationController.errorForceSave": "S-a produs o eroare în timpul salvării fișierului. Pentru copierea de rezervă pe PC utilizați opțiunea Descărcare ca... sau încercați din nou mai târziu.", + "DE.ApplicationController.errorLoadingFont": "Fonturile nu sunt încărcate.
Contactați administratorul dvs de Server Documente.", "DE.ApplicationController.errorSubmit": "Remiterea eșuată.", "DE.ApplicationController.errorUpdateVersionOnDisconnect": "Conexiunea la Internet s-a restabilit și versiunea fișierului s-a schimbat.
Înainte de a continua, fișierul trebuie descărcat sau conținutul fișierului copiat ca să vă asigurați că nimic nu e pierdut, apoi reîmprospătați această pagină.", "DE.ApplicationController.errorUserDrop": "Fișierul nu poate fi accesat deocamdată.", @@ -30,6 +32,8 @@ "DE.ApplicationController.textSubmit": "Remitere", "DE.ApplicationController.textSubmited": "Formularul a fost remis cu succes
Faceţi clic pentru a închide sfatul", "DE.ApplicationController.txtClose": "Închidere", + "DE.ApplicationController.txtEmpty": "(Gol)", + "DE.ApplicationController.txtPressLink": "Apăsați Ctrl și faceți clic pe linkul", "DE.ApplicationController.unknownErrorText": "Eroare necunoscută.", "DE.ApplicationController.unsupportedBrowserErrorText": "Browserul nu este compatibil.", "DE.ApplicationController.waitText": "Vă rugăm să așteptați...", diff --git a/apps/documenteditor/forms/locale/ru.json b/apps/documenteditor/forms/locale/ru.json index 29a785721..daab5337f 100644 --- a/apps/documenteditor/forms/locale/ru.json +++ b/apps/documenteditor/forms/locale/ru.json @@ -14,6 +14,8 @@ "DE.ApplicationController.errorEditingDownloadas": "В ходе работы с документом произошла ошибка.
Используйте опцию 'Скачать как...', чтобы сохранить резервную копию файла на жесткий диск компьютера.", "DE.ApplicationController.errorFilePassProtect": "Файл защищен паролем и не может быть открыт.", "DE.ApplicationController.errorFileSizeExceed": "Размер файла превышает ограничение, установленное для вашего сервера.
Обратитесь к администратору Сервера документов для получения дополнительной информации.", + "DE.ApplicationController.errorForceSave": "При сохранении файла произошла ошибка. Используйте опцию 'Скачать как', чтобы сохранить файл на жестком диске компьютера или повторите попытку позже.", + "DE.ApplicationController.errorLoadingFont": "Шрифты не загружены.
Пожалуйста, обратитесь к администратору Сервера документов.", "DE.ApplicationController.errorSubmit": "Не удалось отправить.", "DE.ApplicationController.errorUpdateVersionOnDisconnect": "Подключение к Интернету было восстановлено, и версия файла изменилась.
Прежде чем продолжить работу, надо скачать файл или скопировать его содержимое, чтобы обеспечить сохранность данных, а затем перезагрузить страницу.", "DE.ApplicationController.errorUserDrop": "В настоящий момент файл недоступен.", @@ -30,6 +32,8 @@ "DE.ApplicationController.textSubmit": "Отправить", "DE.ApplicationController.textSubmited": "Форма успешно отправлена
Нажмите, чтобы закрыть подсказку", "DE.ApplicationController.txtClose": "Закрыть", + "DE.ApplicationController.txtEmpty": "(Пусто)", + "DE.ApplicationController.txtPressLink": "Нажмите CTRL и щелкните по ссылке", "DE.ApplicationController.unknownErrorText": "Неизвестная ошибка.", "DE.ApplicationController.unsupportedBrowserErrorText": "Ваш браузер не поддерживается.", "DE.ApplicationController.waitText": "Пожалуйста, подождите...", diff --git a/apps/documenteditor/forms/locale/sk.json b/apps/documenteditor/forms/locale/sk.json index 7a3eebfc1..b8a8b84c5 100644 --- a/apps/documenteditor/forms/locale/sk.json +++ b/apps/documenteditor/forms/locale/sk.json @@ -11,20 +11,34 @@ "DE.ApplicationController.downloadTextText": "Sťahovanie dokumentu...", "DE.ApplicationController.errorAccessDeny": "Pokúšate sa vykonať akciu, na ktorú nemáte práva.
Prosím, kontaktujte svojho správcu dokumentového servera.", "DE.ApplicationController.errorDefaultMessage": "Kód chyby: %1", + "DE.ApplicationController.errorEditingDownloadas": "Pri práci s dokumentom došlo k chybe.
Použite voľbu \"Stiahnuť ako...\" a uložte si záložnú kópiu súboru na svoj počítač.", "DE.ApplicationController.errorFilePassProtect": "Dokument je chránený heslom a nie je možné ho otvoriť.", "DE.ApplicationController.errorFileSizeExceed": "Veľkosť súboru prekračuje limity vášho servera.
Kontaktujte prosím vášho správcu dokumentového servera o ďalšie podrobnosti.", + "DE.ApplicationController.errorForceSave": "Pri ukladaní súboru sa vyskytla chyba. Ak chcete súbor uložiť na pevný disk počítača, použite možnosť 'Prevziať ako' alebo to skúste znova neskôr.", + "DE.ApplicationController.errorLoadingFont": "Fonty sa nenahrali.
Kontaktujte prosím svojho administrátora Servera dokumentov.", + "DE.ApplicationController.errorSubmit": "Odoslanie sa nepodarilo.", "DE.ApplicationController.errorUpdateVersionOnDisconnect": "Internetové spojenie bolo obnovené a verzia súboru bola zmenená.
Predtým, než budete pokračovať v práci, potrebujete si stiahnuť súbor alebo kópiu jeho obsahu, aby sa nič nestratilo. Potom znovu načítajte stránku.", "DE.ApplicationController.errorUserDrop": "K súboru nie je možné práve teraz získať prístup.", "DE.ApplicationController.notcriticalErrorTitle": "Upozornenie", "DE.ApplicationController.scriptLoadError": "Spojenie je príliš pomalé, niektoré komponenty nemožno nahrať. Obnovte prosím stránku.", + "DE.ApplicationController.textAnonymous": "Anonymný", + "DE.ApplicationController.textGotIt": "Pochopil/a som", + "DE.ApplicationController.textGuest": "Hosť", "DE.ApplicationController.textLoadingDocument": "Načítavanie dokumentu", "DE.ApplicationController.textOf": "z", + "DE.ApplicationController.textRequired": "Vyplňte všetky požadované polia, aby ste formulár mohli odoslať.", + "DE.ApplicationController.textSubmited": "Formulár bol úspešne predložený
Kliknite, aby ste tip zatvorili", "DE.ApplicationController.txtClose": "Zatvoriť", + "DE.ApplicationController.txtEmpty": "(Prázdne)", + "DE.ApplicationController.txtPressLink": "Stlačte CTRL a kliknite na odkaz", "DE.ApplicationController.unknownErrorText": "Neznáma chyba.", "DE.ApplicationController.unsupportedBrowserErrorText": "Váš prehliadač nie je podporovaný.", "DE.ApplicationController.waitText": "Prosím čakajte...", "DE.ApplicationView.txtDownload": "Stiahnuť", + "DE.ApplicationView.txtDownloadDocx": "Stiahnuť ako docx", + "DE.ApplicationView.txtDownloadPdf": "Stiahnuť ako pdf", "DE.ApplicationView.txtEmbed": "Vložiť", + "DE.ApplicationView.txtFileLocation": "Otvoriť umiestnenie súboru", "DE.ApplicationView.txtFullScreen": "Celá obrazovka", "DE.ApplicationView.txtPrint": "Tlačiť", "DE.ApplicationView.txtShare": "Zdieľať" diff --git a/apps/documenteditor/forms/locale/sv.json b/apps/documenteditor/forms/locale/sv.json index 6516afa10..5ac1829b4 100644 --- a/apps/documenteditor/forms/locale/sv.json +++ b/apps/documenteditor/forms/locale/sv.json @@ -11,20 +11,30 @@ "DE.ApplicationController.downloadTextText": "Laddar ner dokumentet...", "DE.ApplicationController.errorAccessDeny": "Du försöker utföra en åtgärd som du inte har rättighet till.
Vänligen kontakta din systemadministratör.", "DE.ApplicationController.errorDefaultMessage": "Felkod: %1", + "DE.ApplicationController.errorEditingDownloadas": "Ett fel har inträffat.
Använd \"Ladda ned som...\" för att spara en säkerhetskopia på din dator.", "DE.ApplicationController.errorFilePassProtect": "Dokumentet är lösenordsskyddat och kunde inte öppnas. ", "DE.ApplicationController.errorFileSizeExceed": "Filstorleken överskrider gränsen för din server.
Var snäll och kontakta administratören för dokumentservern för mer information.", + "DE.ApplicationController.errorSubmit": "Gick ej att verkställa.", "DE.ApplicationController.errorUpdateVersionOnDisconnect": "Internetanslutningen har återställts och filversionen har ändrats.
Innan du fortsätter arbeta, ladda ner filen eller kopiera innehållet för att försäkra dig om att inte förlora något, ladda sedan om denna sida.", "DE.ApplicationController.errorUserDrop": "Filen kan inte nås för tillfället. ", "DE.ApplicationController.notcriticalErrorTitle": "Varning", "DE.ApplicationController.scriptLoadError": "Anslutningen är för långsam, vissa av komponenterna kunde inte laddas. Vänligen ladda om sidan.", + "DE.ApplicationController.textAnonymous": "Anonym", + "DE.ApplicationController.textGotIt": "Ok!", + "DE.ApplicationController.textGuest": "Gäst", "DE.ApplicationController.textLoadingDocument": "Laddar dokument", "DE.ApplicationController.textOf": "av", + "DE.ApplicationController.textRequired": "Fyll i alla fält för att skicka formulär.", + "DE.ApplicationController.textSubmited": " Formulär skickat
Klicka för att stänga tipset", "DE.ApplicationController.txtClose": "Stäng", "DE.ApplicationController.unknownErrorText": "Okänt fel.", "DE.ApplicationController.unsupportedBrowserErrorText": "Din webbläsare stöds ej.", "DE.ApplicationController.waitText": "Var snäll och vänta...", "DE.ApplicationView.txtDownload": "Ladda ner", + "DE.ApplicationView.txtDownloadDocx": "Ladda ner som docx", + "DE.ApplicationView.txtDownloadPdf": "Ladda ner som pdf", "DE.ApplicationView.txtEmbed": "Inbädda", + "DE.ApplicationView.txtFileLocation": "Gå till filens plats", "DE.ApplicationView.txtFullScreen": "Fullskärm", "DE.ApplicationView.txtPrint": "Skriva ut", "DE.ApplicationView.txtShare": "Dela" diff --git a/apps/documenteditor/forms/locale/zh.json b/apps/documenteditor/forms/locale/zh.json index 24883a822..af7534220 100644 --- a/apps/documenteditor/forms/locale/zh.json +++ b/apps/documenteditor/forms/locale/zh.json @@ -14,6 +14,8 @@ "DE.ApplicationController.errorEditingDownloadas": "在处理文档期间发生错误。
使用“下载为…”选项将文件备份复制到您的计算机硬盘中。", "DE.ApplicationController.errorFilePassProtect": "该文档受密码保护,无法被打开。", "DE.ApplicationController.errorFileSizeExceed": "文件大小超出了为服务器设置的限制.
有关详细信息,请与文档服务器管理员联系。", + "DE.ApplicationController.errorForceSave": "保存文件时发生错误。请使用“下载为”选项将文件保存到计算机硬盘中或稍后重试。", + "DE.ApplicationController.errorLoadingFont": "字体未加载。
请联系文档服务器管理员。", "DE.ApplicationController.errorSubmit": "提交失败", "DE.ApplicationController.errorUpdateVersionOnDisconnect": "网络连接已恢复,文件版本已变更。
在继续工作之前,需要下载文件或复制其内容以避免丢失数据,然后刷新此页。", "DE.ApplicationController.errorUserDrop": "该文件现在无法访问。", @@ -28,14 +30,16 @@ "DE.ApplicationController.textOf": "的", "DE.ApplicationController.textRequired": "要发送表单,请填写所有必填项目。", "DE.ApplicationController.textSubmit": "提交", - "DE.ApplicationController.textSubmited": "表单成功地被提交了
点击以关闭贴士", + "DE.ApplicationController.textSubmited": "表单提交成功
点击以关闭提示", "DE.ApplicationController.txtClose": "关闭", + "DE.ApplicationController.txtEmpty": "(空)", + "DE.ApplicationController.txtPressLink": "按CTRL并单击链接", "DE.ApplicationController.unknownErrorText": "未知错误。", "DE.ApplicationController.unsupportedBrowserErrorText": "您的浏览器不受支持", "DE.ApplicationController.waitText": "请稍候...", "DE.ApplicationView.txtDownload": "下载", - "DE.ApplicationView.txtDownloadDocx": "导出成docx格式", - "DE.ApplicationView.txtDownloadPdf": "导出成PDF格式", + "DE.ApplicationView.txtDownloadDocx": "导出成docx", + "DE.ApplicationView.txtDownloadPdf": "导出成PDF", "DE.ApplicationView.txtEmbed": "嵌入", "DE.ApplicationView.txtFileLocation": "打开文件所在位置", "DE.ApplicationView.txtFullScreen": "全屏", From 586e3adc237b39ce5a71f0355f525745a22a3229 Mon Sep 17 00:00:00 2001 From: OVSharova Date: Fri, 1 Oct 2021 16:40:38 +0300 Subject: [PATCH 12/67] Fix bug --- apps/common/main/lib/view/Plugins.js | 2 +- apps/common/main/resources/less/plugins.less | 36 ++++++++++++++++++-- 2 files changed, 35 insertions(+), 3 deletions(-) diff --git a/apps/common/main/lib/view/Plugins.js b/apps/common/main/lib/view/Plugins.js index 6e05ee478..574333e82 100644 --- a/apps/common/main/lib/view/Plugins.js +++ b/apps/common/main/lib/view/Plugins.js @@ -62,7 +62,7 @@ define([ ' -
+
{stateRange + ' ' + _t.textSec}
From c9dc1ee030c49afd782b5cdd45afa4ddd020020d Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Tue, 19 Oct 2021 13:32:23 +0300 Subject: [PATCH 64/67] [SSE mobile] Fix Bug 53188 --- apps/common/mobile/resources/less/common.less | 6 +++--- apps/spreadsheeteditor/mobile/src/store/cellSettings.js | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/apps/common/mobile/resources/less/common.less b/apps/common/mobile/resources/less/common.less index fa988e672..ae0471b93 100644 --- a/apps/common/mobile/resources/less/common.less +++ b/apps/common/mobile/resources/less/common.less @@ -535,10 +535,10 @@ padding-top: 5px; li.item-theme { border: 0.5px solid #c8c7cc; - padding: 2px; + padding: 1px; background-repeat: no-repeat; - width: 106px; - height: 56px; + width: 108px; + height: 52px; margin-bottom: 10px; background-position: center; .item-content { diff --git a/apps/spreadsheeteditor/mobile/src/store/cellSettings.js b/apps/spreadsheeteditor/mobile/src/store/cellSettings.js index a715a2353..c34c0d6a3 100644 --- a/apps/spreadsheeteditor/mobile/src/store/cellSettings.js +++ b/apps/spreadsheeteditor/mobile/src/store/cellSettings.js @@ -35,8 +35,8 @@ export class storeCellSettings { } styleSize = { - width: 100, - height: 50 + width: 104, + height: 48 }; borderInfo = { From c60cf141fe4dc01d7c0f89e9f06109785118ec80 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Tue, 19 Oct 2021 14:43:35 +0300 Subject: [PATCH 65/67] Update translation --- apps/documenteditor/forms/locale/ca.json | 4 +- apps/documenteditor/forms/locale/zh.json | 23 +- apps/documenteditor/main/locale/ca.json | 2 +- apps/documenteditor/main/locale/de.json | 2 +- apps/documenteditor/main/locale/zh.json | 278 ++++++++++++++++---- apps/presentationeditor/main/locale/de.json | 2 +- apps/presentationeditor/main/locale/zh.json | 145 +++++++--- apps/spreadsheeteditor/main/locale/cs.json | 10 + apps/spreadsheeteditor/main/locale/de.json | 2 +- apps/spreadsheeteditor/main/locale/el.json | 15 ++ apps/spreadsheeteditor/main/locale/it.json | 3 + apps/spreadsheeteditor/main/locale/zh.json | 69 ++++- 12 files changed, 465 insertions(+), 90 deletions(-) diff --git a/apps/documenteditor/forms/locale/ca.json b/apps/documenteditor/forms/locale/ca.json index a7c3dff81..19132bc82 100644 --- a/apps/documenteditor/forms/locale/ca.json +++ b/apps/documenteditor/forms/locale/ca.json @@ -33,7 +33,7 @@ "DE.ApplicationController.textNoLicenseTitle": "S'ha assolit el límit de llicència", "DE.ApplicationController.textOf": "de", "DE.ApplicationController.textRequired": "Emplena tots els camps necessaris per enviar el formulari.", - "DE.ApplicationController.textSubmited": "El formulari s'ha enviat amb èxit
Cliqueu per a tancar el consell", + "DE.ApplicationController.textSubmited": "El formulari s'ha enviat amb èxit
Cliqueu per tancar el consell", "DE.ApplicationController.titleServerVersion": "S'ha actualitzat l'editor", "DE.ApplicationController.titleUpdateVersion": "S'ha canviat la versió", "DE.ApplicationController.txtClose": "Tanca", @@ -44,7 +44,7 @@ "DE.ApplicationController.waitText": "Espereu...", "DE.ApplicationController.warnLicenseExceeded": "Heu arribat al límit de connexions simultànies amb %1 editors. Aquest document només s'obrirà en mode lectura.
Contacteu amb el vostre administrador per obtenir més informació.", "DE.ApplicationController.warnLicenseLimitedNoAccess": "La llicència ha caducat.
No teniu accés a la funció d'edició de documents.
Contacteu amb el vostre administrador.", - "DE.ApplicationController.warnLicenseLimitedRenewed": "Cal renovar la llicència.
Teniu un accés limitat a la funció d'edició de documents.
Contacteu amb el vostre administrador per obtenir accés complet", + "DE.ApplicationController.warnLicenseLimitedRenewed": "Cal renovar la llicència.
Teniu accés limitat a la funció d'edició de documents.
Contacteu amb el vostre administrador per obtenir accés complet", "DE.ApplicationController.warnLicenseUsersExceeded": "Heu arribat al límit d'usuaris per a %1 editors. Contacteu amb el vostre administrador per a més informació.", "DE.ApplicationController.warnNoLicense": "Heu arribat al límit de connexions simultànies per als editors %1. Aquest document s'obrirà en mode de només lectura. Contacteu l'equip de vendes %1 per a les condicions personals de millora del servei.", "DE.ApplicationController.warnNoLicenseUsers": "Heu arribat al límit d'usuaris per a %1 editors. Contacteu amb l'equip de vendes de %1 per obtenir les condicions de millora personals dels vostres serveis.", diff --git a/apps/documenteditor/forms/locale/zh.json b/apps/documenteditor/forms/locale/zh.json index af7534220..0145efc60 100644 --- a/apps/documenteditor/forms/locale/zh.json +++ b/apps/documenteditor/forms/locale/zh.json @@ -16,27 +16,41 @@ "DE.ApplicationController.errorFileSizeExceed": "文件大小超出了为服务器设置的限制.
有关详细信息,请与文档服务器管理员联系。", "DE.ApplicationController.errorForceSave": "保存文件时发生错误。请使用“下载为”选项将文件保存到计算机硬盘中或稍后重试。", "DE.ApplicationController.errorLoadingFont": "字体未加载。
请联系文档服务器管理员。", + "DE.ApplicationController.errorServerVersion": "编辑器版本已完成更新。为应用这些更改,该页将要刷新。", "DE.ApplicationController.errorSubmit": "提交失败", + "DE.ApplicationController.errorUpdateVersion": "文件版本发生改变。该页将要刷新。", "DE.ApplicationController.errorUpdateVersionOnDisconnect": "网络连接已恢复,文件版本已变更。
在继续工作之前,需要下载文件或复制其内容以避免丢失数据,然后刷新此页。", "DE.ApplicationController.errorUserDrop": "该文件现在无法访问。", "DE.ApplicationController.notcriticalErrorTitle": "警告", "DE.ApplicationController.scriptLoadError": "连接速度过慢,部分组件无法被加载。请重新加载页面。", "DE.ApplicationController.textAnonymous": "匿名", - "DE.ApplicationController.textClear": "清除所有字段", + "DE.ApplicationController.textBuyNow": "访问网站", + "DE.ApplicationController.textCloseTip": "点按以关闭提示。", + "DE.ApplicationController.textContactUs": "联系销售", "DE.ApplicationController.textGotIt": "知道了", "DE.ApplicationController.textGuest": "访客", "DE.ApplicationController.textLoadingDocument": "文件加载中…", - "DE.ApplicationController.textNext": "下一域", + "DE.ApplicationController.textNoLicenseTitle": "触碰到许可证数量限制。", "DE.ApplicationController.textOf": "的", "DE.ApplicationController.textRequired": "要发送表单,请填写所有必填项目。", - "DE.ApplicationController.textSubmit": "提交", "DE.ApplicationController.textSubmited": "表单提交成功
点击以关闭提示", + "DE.ApplicationController.titleServerVersion": "编辑器已更新", + "DE.ApplicationController.titleUpdateVersion": "版本已变化", "DE.ApplicationController.txtClose": "关闭", "DE.ApplicationController.txtEmpty": "(空)", "DE.ApplicationController.txtPressLink": "按CTRL并单击链接", "DE.ApplicationController.unknownErrorText": "未知错误。", "DE.ApplicationController.unsupportedBrowserErrorText": "您的浏览器不受支持", "DE.ApplicationController.waitText": "请稍候...", + "DE.ApplicationController.warnLicenseExceeded": "与文档服务器的并发连接次数已超出限制,文档打开后将仅供查看。
请联系您的账户管理员了解详情。", + "DE.ApplicationController.warnLicenseLimitedNoAccess": "授权过期
您不具备文件编辑功能的授权
请联系管理员。", + "DE.ApplicationController.warnLicenseLimitedRenewed": "授权需更新
您只有文件编辑功能的部分权限
请联系管理员以取得完整权限。", + "DE.ApplicationController.warnLicenseUsersExceeded": "你触发了 %1 编辑器的同时在线数限制。可联系管理员来了解更多信息。", + "DE.ApplicationController.warnNoLicense": "该版本对文档服务器的并发连接有限制。
如果需要更多请考虑购买商业许可证。", + "DE.ApplicationController.warnNoLicenseUsers": "你触发了 %1 编辑器的同时在线数限制。可联系管理员来了解更多信息。", + "DE.ApplicationView.textClear": "清除所有字段", + "DE.ApplicationView.textNext": "下一填充框", + "DE.ApplicationView.textSubmit": "提交", "DE.ApplicationView.txtDownload": "下载", "DE.ApplicationView.txtDownloadDocx": "导出成docx", "DE.ApplicationView.txtDownloadPdf": "导出成PDF", @@ -44,5 +58,6 @@ "DE.ApplicationView.txtFileLocation": "打开文件所在位置", "DE.ApplicationView.txtFullScreen": "全屏", "DE.ApplicationView.txtPrint": "打印", - "DE.ApplicationView.txtShare": "共享" + "DE.ApplicationView.txtShare": "共享", + "DE.ApplicationView.txtTheme": "界面主题" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/ca.json b/apps/documenteditor/main/locale/ca.json index 6bd5bd984..17f043c4c 100644 --- a/apps/documenteditor/main/locale/ca.json +++ b/apps/documenteditor/main/locale/ca.json @@ -2078,7 +2078,7 @@ "DE.Views.MailMergeSettings.textSendMsg": "Tots els missatges de correu electrònic són a punt i s'enviaran properament.
La velocitat de l'enviament dependrà del servei de correu.
Podeu continuar treballant amb el document o tancar-lo. Un cop finalitzada l’operació, s'enviarà la notificació a la vostra adreça de correu electrònic de registre.", "DE.Views.MailMergeSettings.textTo": "Per a", "DE.Views.MailMergeSettings.txtFirst": "Al primer registre", - "DE.Views.MailMergeSettings.txtFromToError": "El valor «De» ha de ser més petit que el valor «Fins»", + "DE.Views.MailMergeSettings.txtFromToError": "El valor «De» ha de ser més petit que el valor «Fins a»", "DE.Views.MailMergeSettings.txtLast": "A l'últim registre", "DE.Views.MailMergeSettings.txtNext": "Al registre següent", "DE.Views.MailMergeSettings.txtPrev": "Al registre anterior", diff --git a/apps/documenteditor/main/locale/de.json b/apps/documenteditor/main/locale/de.json index 02f490118..104526f4a 100644 --- a/apps/documenteditor/main/locale/de.json +++ b/apps/documenteditor/main/locale/de.json @@ -201,7 +201,7 @@ "Common.Views.About.txtLicensee": "LIZENZNEHMER", "Common.Views.About.txtLicensor": "LIZENZGEBER", "Common.Views.About.txtMail": "E-Mail-Adresse: ", - "Common.Views.About.txtPoweredBy": "Betrieben von", + "Common.Views.About.txtPoweredBy": "Entwickelt von", "Common.Views.About.txtTel": "Tel.: ", "Common.Views.About.txtVersion": "Version ", "Common.Views.AutoCorrectDialog.textAdd": "Hinzufügen", diff --git a/apps/documenteditor/main/locale/zh.json b/apps/documenteditor/main/locale/zh.json index ee59863dc..a6d68aa2b 100644 --- a/apps/documenteditor/main/locale/zh.json +++ b/apps/documenteditor/main/locale/zh.json @@ -35,7 +35,7 @@ "Common.Controllers.ReviewChanges.textIndentRight": "右缩进", "Common.Controllers.ReviewChanges.textInserted": "插入:", "Common.Controllers.ReviewChanges.textItalic": "斜体", - "Common.Controllers.ReviewChanges.textJustify": "仅对齐", + "Common.Controllers.ReviewChanges.textJustify": "两端对齐", "Common.Controllers.ReviewChanges.textKeepLines": "保持同一行", "Common.Controllers.ReviewChanges.textKeepNext": "与下一个保持一致", "Common.Controllers.ReviewChanges.textLeft": "左对齐", @@ -48,6 +48,10 @@ "Common.Controllers.ReviewChanges.textNot": "不", "Common.Controllers.ReviewChanges.textNoWidow": "没有单独控制", "Common.Controllers.ReviewChanges.textNum": "更改编号", + "Common.Controllers.ReviewChanges.textOff": "{0} 已停用“跟踪修改”", + "Common.Controllers.ReviewChanges.textOffGlobal": "{0} 为所有人关闭“跟踪修改”", + "Common.Controllers.ReviewChanges.textOn": "{0} 正在使用“跟踪修改”", + "Common.Controllers.ReviewChanges.textOnGlobal": "{0} 为所有人启动“跟踪修改”", "Common.Controllers.ReviewChanges.textParaDeleted": "段落已删除", "Common.Controllers.ReviewChanges.textParaFormatted": "段落格式化", "Common.Controllers.ReviewChanges.textParaInserted": "段落插入", @@ -76,17 +80,52 @@ "Common.Controllers.ReviewChanges.textWidow": "视窗控制", "Common.Controllers.ReviewChanges.textWord": "字级", "Common.define.chartData.textArea": "区域", + "Common.define.chartData.textAreaStacked": "堆叠区域", + "Common.define.chartData.textAreaStackedPer": "100% 堆叠区域", "Common.define.chartData.textBar": "条", + "Common.define.chartData.textBarNormal": "簇柱状图", + "Common.define.chartData.textBarNormal3d": "3-D 簇列", + "Common.define.chartData.textBarNormal3dPerspective": "3-D 列", + "Common.define.chartData.textBarStacked": "堆叠柱状图", + "Common.define.chartData.textBarStacked3d": "3-D 堆叠列", + "Common.define.chartData.textBarStackedPer": "100% 堆叠列", + "Common.define.chartData.textBarStackedPer3d": "3-D 100% 堆叠列", "Common.define.chartData.textCharts": "图表", "Common.define.chartData.textColumn": "列", + "Common.define.chartData.textCombo": "组合", + "Common.define.chartData.textComboAreaBar": "堆叠区域 - 簇列", + "Common.define.chartData.textComboBarLine": "簇柱状图 - 行", + "Common.define.chartData.textComboBarLineSecondary": "簇柱状图 - 在第二坐标轴上显示行", + "Common.define.chartData.textComboCustom": "自定义组合", + "Common.define.chartData.textDoughnut": "甜甜圈", + "Common.define.chartData.textHBarNormal": "簇条形图", + "Common.define.chartData.textHBarNormal3d": "3-D 簇栏", + "Common.define.chartData.textHBarStacked": "堆叠柱状图", + "Common.define.chartData.textHBarStacked3d": "3-D 堆叠横栏", + "Common.define.chartData.textHBarStackedPer": "100% 堆叠横栏", + "Common.define.chartData.textHBarStackedPer3d": "3-D 100% 堆叠横栏", "Common.define.chartData.textLine": "线", + "Common.define.chartData.textLine3d": "3-D 直线图", + "Common.define.chartData.textLineMarker": "带标码的行", + "Common.define.chartData.textLineStacked": "堆叠线图", + "Common.define.chartData.textLineStackedMarker": "堆叠的带标记的线状图", + "Common.define.chartData.textLineStackedPer": "100% 堆叠行", + "Common.define.chartData.textLineStackedPerMarker": "100% 堆叠行 (标码)", "Common.define.chartData.textPie": "派", + "Common.define.chartData.textPie3d": "3-D 圆饼图", "Common.define.chartData.textPoint": "XY(散射)", + "Common.define.chartData.textScatter": "分散", + "Common.define.chartData.textScatterLine": "以直线分开", + "Common.define.chartData.textScatterLineMarker": "以直线和标注分开", + "Common.define.chartData.textScatterSmooth": "以平滑直线分开", + "Common.define.chartData.textScatterSmoothMarker": "以平滑直线和标注分开", "Common.define.chartData.textStock": "股票", "Common.define.chartData.textSurface": "平面", - "Common.Translation.warnFileLocked": "另一个应用正在编辑本文件。你仍然可以继续编辑此文件,你可以将你的编辑保存成另一个拷贝。", + "Common.Translation.warnFileLocked": "您不能编辑此文件,因为它正在另一个应用程序中被编辑。", "Common.Translation.warnFileLockedBtnEdit": "建立副本", "Common.Translation.warnFileLockedBtnView": "以浏览模式打开", + "Common.UI.ButtonColored.textAutoColor": "自动", + "Common.UI.ButtonColored.textNewColor": "添加新的自定义颜色", "Common.UI.Calendar.textApril": "四月", "Common.UI.Calendar.textAugust": "八月", "Common.UI.Calendar.textDecember": "十二月", @@ -143,6 +182,9 @@ "Common.UI.SynchronizeTip.textSynchronize": "该文档已被其他用户更改。
请点击保存更改并重新加载更新。", "Common.UI.ThemeColorPalette.textStandartColors": "标准颜色", "Common.UI.ThemeColorPalette.textThemeColors": "主题颜色", + "Common.UI.Themes.txtThemeClassicLight": "经典浅颜色", + "Common.UI.Themes.txtThemeDark": "暗色模式", + "Common.UI.Themes.txtThemeLight": "浅颜色", "Common.UI.Window.cancelButtonText": "取消", "Common.UI.Window.closeButtonText": "关闭", "Common.UI.Window.noButtonText": "否", @@ -164,14 +206,18 @@ "Common.Views.About.txtVersion": "版本", "Common.Views.AutoCorrectDialog.textAdd": "新增", "Common.Views.AutoCorrectDialog.textApplyText": "输入时自动应用", + "Common.Views.AutoCorrectDialog.textAutoCorrect": "自动修正", "Common.Views.AutoCorrectDialog.textAutoFormat": "输入时自动调整格式", "Common.Views.AutoCorrectDialog.textBulleted": "自动项目符号列表", "Common.Views.AutoCorrectDialog.textBy": "依据", "Common.Views.AutoCorrectDialog.textDelete": "删除", + "Common.Views.AutoCorrectDialog.textFLSentence": "将句子首字母大写", + "Common.Views.AutoCorrectDialog.textHyperlink": "带超链接的互联网与网络路径", "Common.Views.AutoCorrectDialog.textHyphens": "连带字符(-)改为破折号(-)", "Common.Views.AutoCorrectDialog.textMathCorrect": "数学自动修正", "Common.Views.AutoCorrectDialog.textNumbered": "自动编号列表", "Common.Views.AutoCorrectDialog.textQuotes": "“半角引号”替换为“全角引号”", + "Common.Views.AutoCorrectDialog.textRecognized": "能被识别的函数", "Common.Views.AutoCorrectDialog.textRecognizedDesc": "以下表达式被识别为数学公式。这些表达式不会被自动设为斜体。", "Common.Views.AutoCorrectDialog.textReplace": "替换", "Common.Views.AutoCorrectDialog.textReplaceText": "输入时自动替换", @@ -180,11 +226,18 @@ "Common.Views.AutoCorrectDialog.textResetAll": "重置为默认", "Common.Views.AutoCorrectDialog.textRestore": "恢复", "Common.Views.AutoCorrectDialog.textTitle": "自动修正", + "Common.Views.AutoCorrectDialog.textWarnAddRec": "能被识别的函数要求必须只包含 A 到 Z 的大写、小写字母。", "Common.Views.AutoCorrectDialog.textWarnResetRec": "由您新增的表达式将被移除,由您移除的将被恢复。是否继续?", "Common.Views.AutoCorrectDialog.warnReplace": "关于%1的自动更正条目已存在。确认替换?", "Common.Views.AutoCorrectDialog.warnReset": "即将移除对自动更正功能所做的自定义设置,并恢复默认值。是否继续?", "Common.Views.AutoCorrectDialog.warnRestore": "关于%1的自动更正条目将恢复默认值。确认继续?", "Common.Views.Chat.textSend": "发送", + "Common.Views.Comments.mniAuthorAsc": "作者 (A到Z)", + "Common.Views.Comments.mniAuthorDesc": "作者 (Z到A)", + "Common.Views.Comments.mniDateAsc": "最老", + "Common.Views.Comments.mniDateDesc": "最新", + "Common.Views.Comments.mniPositionAsc": "自上而下", + "Common.Views.Comments.mniPositionDesc": "自下而上", "Common.Views.Comments.textAdd": "添加", "Common.Views.Comments.textAddComment": "添加批注", "Common.Views.Comments.textAddCommentToDoc": "添加批注到文档", @@ -192,6 +245,7 @@ "Common.Views.Comments.textAnonym": "游客", "Common.Views.Comments.textCancel": "取消", "Common.Views.Comments.textClose": "关闭", + "Common.Views.Comments.textClosePanel": "关闭注释", "Common.Views.Comments.textComments": "批注", "Common.Views.Comments.textEdit": "确定", "Common.Views.Comments.textEnterCommentHint": "在此输入您的批注", @@ -200,6 +254,7 @@ "Common.Views.Comments.textReply": "回复", "Common.Views.Comments.textResolve": "解决", "Common.Views.Comments.textResolved": "已解决", + "Common.Views.Comments.textSort": "评注排序", "Common.Views.CopyWarningDialog.textDontShow": "不要再显示此消息", "Common.Views.CopyWarningDialog.textMsg": "使用编辑器工具栏按钮和上下文菜单操作复制,剪切和粘贴操作将仅在此编辑器选项卡中执行。

要在编辑器选项卡之外复制或粘贴到应用程序,请使用以下键盘组合:", "Common.Views.CopyWarningDialog.textTitle": "复制,剪切和粘贴操作", @@ -214,12 +269,14 @@ "Common.Views.ExternalMergeEditor.textClose": "关闭", "Common.Views.ExternalMergeEditor.textSave": "保存并退出", "Common.Views.ExternalMergeEditor.textTitle": "邮件合并收件人", - "Common.Views.Header.labelCoUsersDescr": "文件正在被多个用户编辑。", + "Common.Views.Header.labelCoUsersDescr": "正在编辑文件的用户:", + "Common.Views.Header.textAddFavorite": "记作喜爱内容", "Common.Views.Header.textAdvSettings": "高级设置", "Common.Views.Header.textBack": "打开文件所在位置", "Common.Views.Header.textCompactView": "查看紧凑工具栏", "Common.Views.Header.textHideLines": "隐藏标尺", "Common.Views.Header.textHideStatusBar": "隐藏状态栏", + "Common.Views.Header.textRemoveFavorite": "从收藏夹中删除", "Common.Views.Header.textZoom": "放大", "Common.Views.Header.tipAccessRights": "管理文档访问权限", "Common.Views.Header.tipDownload": "下载文件", @@ -293,11 +350,15 @@ "Common.Views.ReviewChanges.strFastDesc": "实时共同编辑。所有更改将会自动保存。", "Common.Views.ReviewChanges.strStrict": "严格", "Common.Views.ReviewChanges.strStrictDesc": "使用“保存”按钮同步您和其他人所做的更改。", + "Common.Views.ReviewChanges.textEnable": "启动", "Common.Views.ReviewChanges.textWarnTrackChanges": "对全体有完整控制权的用户,“跟踪修改”功能将会启动。任何人下次打开该文档,“跟踪修改”功能都会保持在启动状态。", + "Common.Views.ReviewChanges.textWarnTrackChangesTitle": "是否为所有人启动“跟踪修改”?", "Common.Views.ReviewChanges.tipAcceptCurrent": "接受当前的变化", "Common.Views.ReviewChanges.tipCoAuthMode": "设置共同编辑模式", "Common.Views.ReviewChanges.tipCommentRem": "移除批注", "Common.Views.ReviewChanges.tipCommentRemCurrent": "移除当前批注", + "Common.Views.ReviewChanges.tipCommentResolve": "解决评论", + "Common.Views.ReviewChanges.tipCommentResolveCurrent": "解决该评论", "Common.Views.ReviewChanges.tipCompare": "将当前文档与另一个文档进行比较", "Common.Views.ReviewChanges.tipHistory": "显示历史版本", "Common.Views.ReviewChanges.tipRejectCurrent": "拒绝当前的变化", @@ -318,6 +379,11 @@ "Common.Views.ReviewChanges.txtCommentRemMy": "移除我的批注", "Common.Views.ReviewChanges.txtCommentRemMyCurrent": "移除我的当前批注", "Common.Views.ReviewChanges.txtCommentRemove": "删除", + "Common.Views.ReviewChanges.txtCommentResolve": "解决", + "Common.Views.ReviewChanges.txtCommentResolveAll": "解决全体评论", + "Common.Views.ReviewChanges.txtCommentResolveCurrent": "解决该评论", + "Common.Views.ReviewChanges.txtCommentResolveMy": "解决我的评论", + "Common.Views.ReviewChanges.txtCommentResolveMyCurrent": "解决我当前的评论", "Common.Views.ReviewChanges.txtCompare": "比较", "Common.Views.ReviewChanges.txtDocLang": "语言", "Common.Views.ReviewChanges.txtEditing": "编辑", @@ -325,7 +391,9 @@ "Common.Views.ReviewChanges.txtFinalCap": "最终版", "Common.Views.ReviewChanges.txtHistory": "版本历史", "Common.Views.ReviewChanges.txtMarkup": "所有更改{0}", - "Common.Views.ReviewChanges.txtMarkupCap": "标记", + "Common.Views.ReviewChanges.txtMarkupCap": "标记批注框", + "Common.Views.ReviewChanges.txtMarkupSimple": "所有修改 {0}
无通知", + "Common.Views.ReviewChanges.txtMarkupSimpleCap": "仅标记", "Common.Views.ReviewChanges.txtNext": "下一个变化", "Common.Views.ReviewChanges.txtOff": "对我自己关闭", "Common.Views.ReviewChanges.txtOffGlobal": "对所有人关闭", @@ -418,11 +486,14 @@ "Common.Views.SymbolTableDialog.textSymbols": "符号", "Common.Views.SymbolTableDialog.textTitle": "符号", "Common.Views.SymbolTableDialog.textTradeMark": "商标标识", + "Common.Views.UserNameDialog.textDontShow": "不要再问我", + "Common.Views.UserNameDialog.textLabel": "标签:", + "Common.Views.UserNameDialog.textLabelError": "标签不能空", "DE.Controllers.LeftMenu.leavePageText": "本文档中的所有未保存的更改都将丢失。
单击“取消”,然后单击“保存”保存。单击“确定”以放弃所有未保存的更改。", "DE.Controllers.LeftMenu.newDocumentTitle": "未命名的文档", "DE.Controllers.LeftMenu.notcriticalErrorTitle": "警告", "DE.Controllers.LeftMenu.requestEditRightsText": "请求编辑权限..", - "DE.Controllers.LeftMenu.textLoadHistory": "载入版本历史记录...", + "DE.Controllers.LeftMenu.textLoadHistory": "载入版本历史记录中...", "DE.Controllers.LeftMenu.textNoTextFound": "您搜索的数据无法找到。请调整您的搜索选项。", "DE.Controllers.LeftMenu.textReplaceSkipped": "已经更换了。{0}次跳过。", "DE.Controllers.LeftMenu.textReplaceSuccess": "他的搜索已经完成。发生次数:{0}", @@ -445,7 +516,7 @@ "DE.Controllers.Main.errorCoAuthoringDisconnect": "服务器连接丢失。该文档现在无法编辑", "DE.Controllers.Main.errorComboSeries": "要创建联立图表,请选中至少两组数据。", "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": "数据范围不正确", @@ -459,7 +530,8 @@ "DE.Controllers.Main.errorForceSave": "保存文件时发生错误请使用“下载为”选项将文件保存到计算机硬盘中或稍后重试。", "DE.Controllers.Main.errorKeyEncrypt": "未知密钥描述", "DE.Controllers.Main.errorKeyExpire": "密钥过期", - "DE.Controllers.Main.errorMailMergeLoadFile": "加载失败", + "DE.Controllers.Main.errorLoadingFont": "字体未加载。
请与文档服务器管理员联系。", + "DE.Controllers.Main.errorMailMergeLoadFile": "加载文件失败了。请选择另一份文件。", "DE.Controllers.Main.errorMailMergeSaveFile": "合并失败", "DE.Controllers.Main.errorProcessSaveResult": "保存失败", "DE.Controllers.Main.errorServerVersion": "该编辑版本已经更新。该页面将被重新加载以应用更改。", @@ -468,14 +540,16 @@ "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.errorUpdateVersionOnDisconnect": "网连接已还原文件版本已更改。.
在继续工作之前,需要下载文件或复制其内容以确保没有丢失任何内容,然后重新加载此页。", "DE.Controllers.Main.errorUserDrop": "该文件现在无法访问。", "DE.Controllers.Main.errorUsersExceed": "超过了定价计划允许的用户数", - "DE.Controllers.Main.errorViewerDisconnect": "连接丢失。您仍然可以查看文档
,但在连接恢复之前无法下载或打印。", + "DE.Controllers.Main.errorViewerDisconnect": "连接丢失了。您仍然可以查看文档,
但在连接恢复并页面被重新加载之前无法下载或打印。", "DE.Controllers.Main.leavePageText": "您在本文档中有未保存的更改。点击“留在此页面”,然后点击“保存”以保存保存。点击“离开此页面”,以放弃所有未保存的更改。", + "DE.Controllers.Main.leavePageTextOnClose": "本文档中的所有未保存的更改都将丢失。
单击“取消”,然后单击“保存”保存。单击“确定”以放弃所有未保存的更改。", "DE.Controllers.Main.loadFontsTextText": "数据加载中…", "DE.Controllers.Main.loadFontsTitleText": "数据加载中", "DE.Controllers.Main.loadFontTextText": "数据加载中…", @@ -489,7 +563,7 @@ "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": "打印文件", @@ -497,7 +571,7 @@ "DE.Controllers.Main.reloadButtonText": "重新加载页面", "DE.Controllers.Main.requestEditFailedMessageText": "有人正在编辑此文档。请稍后再试。", "DE.Controllers.Main.requestEditFailedTitleText": "访问被拒绝", - "DE.Controllers.Main.saveErrorText": "保存文件时发生错误", + "DE.Controllers.Main.saveErrorText": "保存文件时出现错误", "DE.Controllers.Main.saveErrorTextDesktop": "无法保存或创建此文件。
可能的原因是:
1.此文件是只读的。
2.此文件正在由其他用户编辑。
3.磁盘已满或损坏。", "DE.Controllers.Main.savePreparingText": "图像上传中……", "DE.Controllers.Main.savePreparingTitle": "图像上传中请稍候...", @@ -518,13 +592,17 @@ "DE.Controllers.Main.textContactUs": "联系销售", "DE.Controllers.Main.textConvertEquation": "这个公式是由一个早期版本的公式编辑器创建的。这个版本现在不受支持了。要想编辑这个公式,你需要将其转换成 Office Math ML 格式.
现在转换吗?", "DE.Controllers.Main.textCustomLoader": "请注意,根据许可条款您无权更改加载程序。
请联系我们的销售部门获取报价。", + "DE.Controllers.Main.textDisconnect": "网络连接失败", + "DE.Controllers.Main.textGuest": "访客", "DE.Controllers.Main.textHasMacros": "这个文件带有自动宏。
是否要运行宏?", "DE.Controllers.Main.textLearnMore": "了解更多", "DE.Controllers.Main.textLoadingDocument": "文件加载中…", - "DE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE开源版本", + "DE.Controllers.Main.textLongName": "输入名称,要求小于128字符。", + "DE.Controllers.Main.textNoLicenseTitle": "已达到许可证限制", "DE.Controllers.Main.textPaidFeature": "付费功能", - "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": "对于快速的协同编辑模式,取消/重做功能是禁用的。< br >单击“严格模式”按钮切换到严格co-editing模式编辑该文件没有其他用户干扰和发送您的更改只后你拯救他们。您可以使用编辑器高级设置在编辑模式之间切换。", @@ -540,7 +618,8 @@ "DE.Controllers.Main.txtButtons": "按钮", "DE.Controllers.Main.txtCallouts": "标注", "DE.Controllers.Main.txtCharts": "图表", - "DE.Controllers.Main.txtChoose": "选择一个项目", + "DE.Controllers.Main.txtChoose": "选择一项", + "DE.Controllers.Main.txtClickToLoad": "点按以加载图像", "DE.Controllers.Main.txtCurrentDocument": "当前文件", "DE.Controllers.Main.txtDiagramTitle": "图表标题", "DE.Controllers.Main.txtEditingMode": "设置编辑模式..", @@ -561,7 +640,9 @@ "DE.Controllers.Main.txtMissArg": "缺少参数", "DE.Controllers.Main.txtMissOperator": "缺少运算符", "DE.Controllers.Main.txtNeedSynchronize": "您有更新", - "DE.Controllers.Main.txtNoTableOfContents": "未找到目录条目。", + "DE.Controllers.Main.txtNone": "没有", + "DE.Controllers.Main.txtNoTableOfContents": "文档中无标题。文本中应用标题样式以便使其出现在目录中。", + "DE.Controllers.Main.txtNoTableOfFigures": "未找到图片或表格的元素。", "DE.Controllers.Main.txtNoText": "错误!文档中没有指定样式的文本。", "DE.Controllers.Main.txtNotInTable": "不在表格中", "DE.Controllers.Main.txtNotValidBookmark": "错误!不是有效的书签自引用。", @@ -744,6 +825,7 @@ "DE.Controllers.Main.txtShape_wedgeRoundRectCallout": "圆角矩形标注", "DE.Controllers.Main.txtStarsRibbons": "星星和丝带", "DE.Controllers.Main.txtStyle_Caption": "标题", + "DE.Controllers.Main.txtStyle_endnote_text": "结束处文本", "DE.Controllers.Main.txtStyle_footnote_text": "脚注文本", "DE.Controllers.Main.txtStyle_Heading_1": "标题1", "DE.Controllers.Main.txtStyle_Heading_2": "标题2", @@ -764,6 +846,7 @@ "DE.Controllers.Main.txtSyntaxError": "语法错误", "DE.Controllers.Main.txtTableInd": "表格索引不能为零", "DE.Controllers.Main.txtTableOfContents": "目录", + "DE.Controllers.Main.txtTableOfFigures": "图表目录", "DE.Controllers.Main.txtTOCHeading": "目录标题", "DE.Controllers.Main.txtTooLarge": "数字太大,无法设定格式", "DE.Controllers.Main.txtTypeEquation": "在此这里输入公式。", @@ -778,19 +861,19 @@ "DE.Controllers.Main.uploadDocSizeMessage": "超过最大文档大小限制。", "DE.Controllers.Main.uploadImageExtMessage": "未知图像格式", "DE.Controllers.Main.uploadImageFileCountMessage": "没有图片上传", - "DE.Controllers.Main.uploadImageSizeMessage": "超过最大图像尺寸限制。", + "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.warnLicenseExceeded": "与文档服务器的并发连接次数已超出限制,文档打开后将仅供查看。
请联系您的账户管理员了解详情。", + "DE.Controllers.Main.warnLicenseExceeded": "您已达到同时连接%1编辑器的限制。该文档将被打开仅供查看。
请联系您的管理员以了解更多。", "DE.Controllers.Main.warnLicenseExp": "您的许可证已过期。
请更新您的许可证并刷新页面。", "DE.Controllers.Main.warnLicenseLimitedNoAccess": "授权过期
您不具备文件编辑功能的授权
请联系管理员。", "DE.Controllers.Main.warnLicenseLimitedRenewed": "授权需更新
您只有文件编辑功能的部分权限
请联系管理员以取得完整权限。", - "DE.Controllers.Main.warnLicenseUsersExceeded": "并发用户数量已超出限制,文档打开后将仅供查看。
请联系您的账户管理员了解详情。", - "DE.Controllers.Main.warnNoLicense": "该版本对文档服务器的并发连接有限制。
如果需要更多请考虑购买商业许可证。", - "DE.Controllers.Main.warnNoLicenseUsers": "此版本的 %1 编辑软件对并发用户数量有一定的限制。
如果需要更多,请考虑购买商用许可证。", + "DE.Controllers.Main.warnLicenseUsersExceeded": "您已达到%1编辑器的用户限制。请联系您的管理员以了解更多。", + "DE.Controllers.Main.warnNoLicense": "您已达到同时连接%1编辑器的限制。该文档将被打开仅供查看。
请联系%1销售团队以了解个人升级条款。", + "DE.Controllers.Main.warnNoLicenseUsers": "您已达到%1编辑器的用户限制。请联系%1销售团队以了解个人升级条款。", "DE.Controllers.Main.warnProcessRightsChange": "您被拒绝编辑文件的权限。", "DE.Controllers.Navigation.txtBeginning": "文档开头", "DE.Controllers.Navigation.txtGotoBeginning": "转到文档开头", @@ -804,9 +887,11 @@ "DE.Controllers.Toolbar.textAccent": "口音", "DE.Controllers.Toolbar.textBracket": "括号", "DE.Controllers.Toolbar.textEmptyImgUrl": "您需要指定图像URL。", + "DE.Controllers.Toolbar.textEmptyMMergeUrl": "你需要指明 URL。", "DE.Controllers.Toolbar.textFontSizeErr": "输入的值不正确。
请输入1到300之间的数值", "DE.Controllers.Toolbar.textFraction": "分数", "DE.Controllers.Toolbar.textFunction": "功能", + "DE.Controllers.Toolbar.textGroup": "群", "DE.Controllers.Toolbar.textInsert": "插入", "DE.Controllers.Toolbar.textIntegral": "集成", "DE.Controllers.Toolbar.textLargeOperator": "大型运营商", @@ -1186,7 +1271,7 @@ "DE.Views.ChartSettings.textChartType": "更改图表类型", "DE.Views.ChartSettings.textEditData": "编辑数据", "DE.Views.ChartSettings.textHeight": "高度", - "DE.Views.ChartSettings.textOriginalSize": "默认大小", + "DE.Views.ChartSettings.textOriginalSize": "实际大小", "DE.Views.ChartSettings.textSize": "大小", "DE.Views.ChartSettings.textStyle": "类型", "DE.Views.ChartSettings.textUndock": "离开面板", @@ -1242,18 +1327,32 @@ "DE.Views.CrossReferenceDialog.textEquation": "方程式", "DE.Views.CrossReferenceDialog.textFigure": "图", "DE.Views.CrossReferenceDialog.textFootnote": "脚注", + "DE.Views.CrossReferenceDialog.textHeading": "标题", + "DE.Views.CrossReferenceDialog.textHeadingNum": "标题号", + "DE.Views.CrossReferenceDialog.textHeadingNumFull": "标题号 (完整上下文)", + "DE.Views.CrossReferenceDialog.textHeadingNumNo": "标题号 (无上下文)", + "DE.Views.CrossReferenceDialog.textHeadingText": "标题文本", "DE.Views.CrossReferenceDialog.textIncludeAbove": "包括上方/下方", "DE.Views.CrossReferenceDialog.textInsert": "插入", "DE.Views.CrossReferenceDialog.textInsertAs": "插入超链接", + "DE.Views.CrossReferenceDialog.textLabelNum": "仅标签与标号", "DE.Views.CrossReferenceDialog.textNoteNum": "脚注编号", "DE.Views.CrossReferenceDialog.textNoteNumForm": "脚注编号(带格式)", + "DE.Views.CrossReferenceDialog.textOnlyCaption": "仅标注文本", "DE.Views.CrossReferenceDialog.textPageNum": "页码", + "DE.Views.CrossReferenceDialog.textParagraph": "标号项目", "DE.Views.CrossReferenceDialog.textParaNum": "段落编号", "DE.Views.CrossReferenceDialog.textParaNumFull": "段落编号(完整上下文)", "DE.Views.CrossReferenceDialog.textParaNumNo": "段落编号(无上下文)", "DE.Views.CrossReferenceDialog.textSeparate": "数字分隔符", "DE.Views.CrossReferenceDialog.textTable": "表格", "DE.Views.CrossReferenceDialog.textText": "段落文字", + "DE.Views.CrossReferenceDialog.textWhich": "对哪一个标注", + "DE.Views.CrossReferenceDialog.textWhichBookmark": "对哪一个书签", + "DE.Views.CrossReferenceDialog.textWhichEndnote": "对哪一个尾注", + "DE.Views.CrossReferenceDialog.textWhichHeading": "对哪一个标题", + "DE.Views.CrossReferenceDialog.textWhichNote": "对哪一个脚注", + "DE.Views.CrossReferenceDialog.textWhichPara": "对哪一个标号项目", "DE.Views.CrossReferenceDialog.txtReference": "插入引用到", "DE.Views.CrossReferenceDialog.txtTitle": "交叉引用", "DE.Views.CrossReferenceDialog.txtType": "引用类型", @@ -1314,7 +1413,8 @@ "DE.Views.DocumentHolder.mergeCellsText": "合并单元格", "DE.Views.DocumentHolder.moreText": "更多变体...", "DE.Views.DocumentHolder.noSpellVariantsText": "没有变量", - "DE.Views.DocumentHolder.originalSizeText": "默认大小", + "DE.Views.DocumentHolder.notcriticalErrorTitle": "警告", + "DE.Views.DocumentHolder.originalSizeText": "实际大小", "DE.Views.DocumentHolder.paragraphText": "段", "DE.Views.DocumentHolder.removeHyperlinkText": "删除超链接", "DE.Views.DocumentHolder.rightText": "右", @@ -1371,9 +1471,11 @@ "DE.Views.DocumentHolder.textRemCheckBox": "删除多选框", "DE.Views.DocumentHolder.textRemComboBox": "删除组合框", "DE.Views.DocumentHolder.textRemDropdown": "删除候选列表", + "DE.Views.DocumentHolder.textRemField": "删除文本填充框", "DE.Views.DocumentHolder.textRemove": "删除", "DE.Views.DocumentHolder.textRemoveControl": "删除内容控件", "DE.Views.DocumentHolder.textRemPicture": "删除图片", + "DE.Views.DocumentHolder.textRemRadioBox": "删除单选框", "DE.Views.DocumentHolder.textReplace": "替换图像", "DE.Views.DocumentHolder.textRotate": "旋转", "DE.Views.DocumentHolder.textRotate270": "逆时针旋转90°", @@ -1469,6 +1571,7 @@ "DE.Views.DocumentHolder.txtRemLimit": "删除限制", "DE.Views.DocumentHolder.txtRemoveAccentChar": "删除重音字符", "DE.Views.DocumentHolder.txtRemoveBar": "删除栏", + "DE.Views.DocumentHolder.txtRemoveWarning": "要删除该签名吗?
这一操作不能被撤销。", "DE.Views.DocumentHolder.txtRemScripts": "删除脚本", "DE.Views.DocumentHolder.txtRemSubscript": "删除标", "DE.Views.DocumentHolder.txtRemSuperscript": "除去上标", @@ -1555,6 +1658,8 @@ "DE.Views.FileMenu.btnSettingsCaption": "高级设置…", "DE.Views.FileMenu.btnToEditCaption": "编辑文档", "DE.Views.FileMenu.textDownload": "下载", + "DE.Views.FileMenuPanels.CreateNew.txtBlank": "空文档", + "DE.Views.FileMenuPanels.CreateNew.txtCreateNew": "新建", "DE.Views.FileMenuPanels.DocumentInfo.okButtonText": "应用", "DE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "添加作者", "DE.Views.FileMenuPanels.DocumentInfo.txtAddText": "添加文本", @@ -1575,7 +1680,7 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "统计", "DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "主题", "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "符号", - "DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "文件名", + "DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "标题", "DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "上载", "DE.Views.FileMenuPanels.DocumentInfo.txtWords": "字幕", "DE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "更改访问权限", @@ -1588,8 +1693,8 @@ "DE.Views.FileMenuPanels.ProtectDoc.txtEditWarning": "编辑将删除文档中的签名。
您确定要继续吗?", "DE.Views.FileMenuPanels.ProtectDoc.txtEncrypted": "此文档受密码保护", "DE.Views.FileMenuPanels.ProtectDoc.txtRequestedSignatures": "此文档需要签名。", - "DE.Views.FileMenuPanels.ProtectDoc.txtSigned": "有效签名已添加到文档中。该文档已限制编辑。", - "DE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "文档中的某些数字签名无效或无法验证。该文档已限制编辑。", + "DE.Views.FileMenuPanels.ProtectDoc.txtSigned": "有效签名已添加到文档中。该文档受到保护,无法编辑。", + "DE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "文档中的某些数字签名无效或无法验证。该文档受到保护,无法编辑。", "DE.Views.FileMenuPanels.ProtectDoc.txtView": "查看签名", "DE.Views.FileMenuPanels.Settings.okButtonText": "应用", "DE.Views.FileMenuPanels.Settings.strAlignGuides": "显示对齐辅助线", @@ -1600,16 +1705,18 @@ "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "您将需要接受更改才能看到它们", "DE.Views.FileMenuPanels.Settings.strFast": "快速", "DE.Views.FileMenuPanels.Settings.strFontRender": "字体微调方式", - "DE.Views.FileMenuPanels.Settings.strForcesave": "始终保存到服务器(否则在文档关闭时保存到服务器)", + "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.strTheme": "界面主题", "DE.Views.FileMenuPanels.Settings.strUnit": "测量单位", "DE.Views.FileMenuPanels.Settings.strZoom": "默认缩放比率", "DE.Views.FileMenuPanels.Settings.text10Minutes": "每10分钟", @@ -1621,12 +1728,14 @@ "DE.Views.FileMenuPanels.Settings.textAutoSave": "自动保存", "DE.Views.FileMenuPanels.Settings.textCompatible": "兼容性", "DE.Views.FileMenuPanels.Settings.textDisabled": "已禁用", - "DE.Views.FileMenuPanels.Settings.textForceSave": "保存到服务器", + "DE.Views.FileMenuPanels.Settings.textForceSave": "在保存中间版本", "DE.Views.FileMenuPanels.Settings.textMinute": "每一分钟", "DE.Views.FileMenuPanels.Settings.textOldVersions": "使用与旧版微软 Word 兼容的方式保存 DOCX 文档", "DE.Views.FileMenuPanels.Settings.txtAll": "查看全部", "DE.Views.FileMenuPanels.Settings.txtAutoCorrect": "自动修正选项...", "DE.Views.FileMenuPanels.Settings.txtCacheMode": "默认缓存模式", + "DE.Views.FileMenuPanels.Settings.txtChangesBalloons": "点击通知气球以展示", + "DE.Views.FileMenuPanels.Settings.txtChangesTip": "光标移至弹出窗口以展示", "DE.Views.FileMenuPanels.Settings.txtCm": "厘米", "DE.Views.FileMenuPanels.Settings.txtFitPage": "适合页面", "DE.Views.FileMenuPanels.Settings.txtFitWidth": "适合宽度", @@ -1647,44 +1756,72 @@ "DE.Views.FileMenuPanels.Settings.txtWarnMacros": "显示通知", "DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "解除所有带通知的宏", "DE.Views.FileMenuPanels.Settings.txtWin": "仿照 Windows", + "DE.Views.FormSettings.textAlways": "总是", + "DE.Views.FormSettings.textAspect": "锁定宽高比", + "DE.Views.FormSettings.textAutofit": "自动适应", + "DE.Views.FormSettings.textBackgroundColor": "背景颜色", "DE.Views.FormSettings.textCheckbox": "多选框", "DE.Views.FormSettings.textColor": "边框颜色", + "DE.Views.FormSettings.textComb": "字符组合", "DE.Views.FormSettings.textCombobox": "\n组合框", "DE.Views.FormSettings.textConnected": "关联字段", "DE.Views.FormSettings.textDelete": "删除", "DE.Views.FormSettings.textDisconnect": "断开", "DE.Views.FormSettings.textDropDown": "候选列表", "DE.Views.FormSettings.textField": "文字字段", + "DE.Views.FormSettings.textFixed": "固定填充框大小", "DE.Views.FormSettings.textFromFile": "从文件导入", "DE.Views.FormSettings.textFromStorage": "来自存储设备", "DE.Views.FormSettings.textFromUrl": "从URL", + "DE.Views.FormSettings.textGroupKey": "群组密钥", "DE.Views.FormSettings.textImage": "图片", + "DE.Views.FormSettings.textKey": "密钥", "DE.Views.FormSettings.textLock": "锁定", "DE.Views.FormSettings.textMaxChars": "字数限制", + "DE.Views.FormSettings.textMulti": "多行填充框", + "DE.Views.FormSettings.textNever": "从不", "DE.Views.FormSettings.textNoBorder": "无边框", "DE.Views.FormSettings.textPlaceholder": "占位符", + "DE.Views.FormSettings.textRadiobox": "单选框", + "DE.Views.FormSettings.textRequired": "必填", + "DE.Views.FormSettings.textScale": "何时按倍缩放?", "DE.Views.FormSettings.textSelectImage": "选择图像", "DE.Views.FormSettings.textTip": "贴士", "DE.Views.FormSettings.textTipAdd": "新增值", "DE.Views.FormSettings.textTipDelete": "刪除值", "DE.Views.FormSettings.textTipDown": "下移", "DE.Views.FormSettings.textTipUp": "上移", + "DE.Views.FormSettings.textTooBig": "图片过大", + "DE.Views.FormSettings.textTooSmall": "图片较小", "DE.Views.FormSettings.textUnlock": "解锁", + "DE.Views.FormSettings.textValue": "值设置", "DE.Views.FormSettings.textWidth": "单元格宽度", "DE.Views.FormsTab.capBtnCheckBox": "多选框", "DE.Views.FormsTab.capBtnComboBox": "组合框", "DE.Views.FormsTab.capBtnDropDown": "候选列表", "DE.Views.FormsTab.capBtnImage": "图片", + "DE.Views.FormsTab.capBtnNext": "下一填充框", + "DE.Views.FormsTab.capBtnPrev": "上一填充框", + "DE.Views.FormsTab.capBtnRadioBox": "单选框", + "DE.Views.FormsTab.capBtnSubmit": "提交", "DE.Views.FormsTab.capBtnText": "文字字段", "DE.Views.FormsTab.capBtnView": "浏览表单", + "DE.Views.FormsTab.textClear": "清除填充框", "DE.Views.FormsTab.textClearFields": "清除所有字段", + "DE.Views.FormsTab.textHighlight": "高亮设置", "DE.Views.FormsTab.textNoHighlight": "无高亮", + "DE.Views.FormsTab.textRequired": "要发送表单,请填写所有必填项目。", + "DE.Views.FormsTab.textSubmited": "成功提交表单", "DE.Views.FormsTab.tipCheckBox": "插入多选框", "DE.Views.FormsTab.tipComboBox": "插入组合框", "DE.Views.FormsTab.tipDropDown": "插入候选列表", "DE.Views.FormsTab.tipImageField": "插入图片", + "DE.Views.FormsTab.tipNextForm": "前往下一填充框", + "DE.Views.FormsTab.tipPrevForm": "回到上一填充框", + "DE.Views.FormsTab.tipRadioBox": "添加单选框", + "DE.Views.FormsTab.tipSubmit": "提交表单", "DE.Views.FormsTab.tipTextField": "插入文本框", - "DE.Views.FormsTab.tipViewForm": "表单填写模式", + "DE.Views.FormsTab.tipViewForm": "视图窗体", "DE.Views.HeaderFooterSettings.textBottomCenter": "底部中心", "DE.Views.HeaderFooterSettings.textBottomLeft": "左下", "DE.Views.HeaderFooterSettings.textBottomPage": "页面底部", @@ -1735,7 +1872,7 @@ "DE.Views.ImageSettings.textHintFlipH": "水平翻转", "DE.Views.ImageSettings.textHintFlipV": "垂直翻转", "DE.Views.ImageSettings.textInsert": "替换图像", - "DE.Views.ImageSettings.textOriginalSize": "默认大小", + "DE.Views.ImageSettings.textOriginalSize": "实际大小", "DE.Views.ImageSettings.textRotate90": "旋转90°", "DE.Views.ImageSettings.textRotation": "旋转", "DE.Views.ImageSettings.textSize": "大小", @@ -1753,7 +1890,7 @@ "DE.Views.ImageSettingsAdvanced.textAlignment": "对齐", "DE.Views.ImageSettingsAdvanced.textAlt": "替代文本", "DE.Views.ImageSettingsAdvanced.textAltDescription": "说明", - "DE.Views.ImageSettingsAdvanced.textAltTip": "视觉对象信息的替代的基于文本的表示,将被视为具有视觉或认知障碍的人阅读,以帮助他们更好地了解图像,自动图像,图表或表中的哪些信息。", + "DE.Views.ImageSettingsAdvanced.textAltTip": "视觉对象信息的替代基于文本的表示法,将要向有视觉或认知障碍人阅读,以帮助他们更好地了解图像、自选图形、图表或表格中的那些信息。", "DE.Views.ImageSettingsAdvanced.textAltTitle": "标题", "DE.Views.ImageSettingsAdvanced.textAngle": "角度", "DE.Views.ImageSettingsAdvanced.textArrows": "箭头", @@ -1788,7 +1925,7 @@ "DE.Views.ImageSettingsAdvanced.textMiter": "米特", "DE.Views.ImageSettingsAdvanced.textMove": "用文本移动对象", "DE.Views.ImageSettingsAdvanced.textOptions": "选项", - "DE.Views.ImageSettingsAdvanced.textOriginalSize": "默认大小", + "DE.Views.ImageSettingsAdvanced.textOriginalSize": "实际大小", "DE.Views.ImageSettingsAdvanced.textOverlap": "允许重叠", "DE.Views.ImageSettingsAdvanced.textPage": "页面", "DE.Views.ImageSettingsAdvanced.textParagraph": "段", @@ -1838,11 +1975,17 @@ "DE.Views.LineNumbersDialog.textAddLineNumbering": "新增行号", "DE.Views.LineNumbersDialog.textApplyTo": "应用更改", "DE.Views.LineNumbersDialog.textContinuous": "连续", + "DE.Views.LineNumbersDialog.textCountBy": "计数依据", "DE.Views.LineNumbersDialog.textDocument": "整个文件", + "DE.Views.LineNumbersDialog.textForward": "从该处起", + "DE.Views.LineNumbersDialog.textFromText": "来自文本", "DE.Views.LineNumbersDialog.textNumbering": "编号", + "DE.Views.LineNumbersDialog.textRestartEachPage": "重新启动每一页", + "DE.Views.LineNumbersDialog.textRestartEachSection": "重新启动每一节", "DE.Views.LineNumbersDialog.textSection": "当前部分", "DE.Views.LineNumbersDialog.textStartAt": "始于", "DE.Views.LineNumbersDialog.textTitle": "行号", + "DE.Views.LineNumbersDialog.txtAutoText": "自动", "DE.Views.Links.capBtnBookmarks": "书签", "DE.Views.Links.capBtnCaption": "标题", "DE.Views.Links.capBtnContentsUpdate": "刷新", @@ -1854,7 +1997,7 @@ "DE.Views.Links.confirmDeleteFootnotes": "您要删除所有脚注吗?", "DE.Views.Links.confirmReplaceTOF": "确认替换选中的图表目录?", "DE.Views.Links.mniConvertNote": "转换所有注释", - "DE.Views.Links.mniDelFootnote": "删除所有脚注", + "DE.Views.Links.mniDelFootnote": "删除所有注释", "DE.Views.Links.mniInsEndnote": "插入尾注", "DE.Views.Links.mniInsFootnote": "插入脚注", "DE.Views.Links.mniNoteSettings": "笔记设置", @@ -1943,7 +2086,7 @@ "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.txtExpand": "展开全部", "DE.Views.Navigation.txtExpandToLevel": "展开到级别", @@ -2000,6 +2143,10 @@ "DE.Views.PageSizeDialog.textTitle": "页面大小", "DE.Views.PageSizeDialog.textWidth": "宽度", "DE.Views.PageSizeDialog.txtCustom": "自定义", + "DE.Views.ParagraphSettings.strIndent": "缩进", + "DE.Views.ParagraphSettings.strIndentsLeftText": "左", + "DE.Views.ParagraphSettings.strIndentsRightText": "右", + "DE.Views.ParagraphSettings.strIndentsSpecial": "特别", "DE.Views.ParagraphSettings.strLineHeight": "行间距", "DE.Views.ParagraphSettings.strParagraphSpacing": "段落间距", "DE.Views.ParagraphSettings.strSomeParagraphSpace": "不要在相同样式的段落之间添加间隔", @@ -2011,6 +2158,8 @@ "DE.Views.ParagraphSettings.textAuto": "多", "DE.Views.ParagraphSettings.textBackColor": "背景颜色", "DE.Views.ParagraphSettings.textExact": "精确地", + "DE.Views.ParagraphSettings.textFirstLine": "第一行", + "DE.Views.ParagraphSettings.textHanging": "悬挂", "DE.Views.ParagraphSettings.textNoneSpecial": "将半角双引号替换为全角双引号", "DE.Views.ParagraphSettings.txtAutoText": "自动", "DE.Views.ParagraphSettingsAdvanced.noTabs": "指定的选项卡将显示在此字段中", @@ -2031,7 +2180,7 @@ "DE.Views.ParagraphSettingsAdvanced.strMargins": "填充", "DE.Views.ParagraphSettingsAdvanced.strOrphan": "单独控制", "DE.Views.ParagraphSettingsAdvanced.strParagraphFont": "字体", - "DE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "缩进和放置", + "DE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "缩进和间距", "DE.Views.ParagraphSettingsAdvanced.strParagraphLine": "换行符和分页符", "DE.Views.ParagraphSettingsAdvanced.strParagraphPosition": "放置", "DE.Views.ParagraphSettingsAdvanced.strSmallCaps": "小写", @@ -2040,6 +2189,7 @@ "DE.Views.ParagraphSettingsAdvanced.strStrike": "删除线", "DE.Views.ParagraphSettingsAdvanced.strSubscript": "下标", "DE.Views.ParagraphSettingsAdvanced.strSuperscript": "上标", + "DE.Views.ParagraphSettingsAdvanced.strSuppressLineNumbers": "压制行号", "DE.Views.ParagraphSettingsAdvanced.strTabs": "标签", "DE.Views.ParagraphSettingsAdvanced.textAlign": "对齐", "DE.Views.ParagraphSettingsAdvanced.textAtLeast": "至少", @@ -2103,7 +2253,7 @@ "DE.Views.ShapeSettings.strPattern": "模式", "DE.Views.ShapeSettings.strShadow": "显示阴影", "DE.Views.ShapeSettings.strSize": "大小", - "DE.Views.ShapeSettings.strStroke": "边框", + "DE.Views.ShapeSettings.strStroke": "线条", "DE.Views.ShapeSettings.strTransparency": "不透明度", "DE.Views.ShapeSettings.strType": "按类型查看", "DE.Views.ShapeSettings.textAdvanced": "显示高级设置", @@ -2116,7 +2266,7 @@ "DE.Views.ShapeSettings.textFromFile": "从文件导入", "DE.Views.ShapeSettings.textFromStorage": "来自存储设备", "DE.Views.ShapeSettings.textFromUrl": "从URL", - "DE.Views.ShapeSettings.textGradient": "渐变", + "DE.Views.ShapeSettings.textGradient": "渐变点", "DE.Views.ShapeSettings.textGradientFill": "渐变填充", "DE.Views.ShapeSettings.textHint270": "逆时针旋转90°", "DE.Views.ShapeSettings.textHint90": "顺时针旋转90°", @@ -2170,9 +2320,10 @@ "DE.Views.SignatureSettings.strValid": "有效签名", "DE.Views.SignatureSettings.txtContinueEditing": "继续编辑", "DE.Views.SignatureSettings.txtEditWarning": "编辑将删除文档中的签名。
您确定要继续吗?", + "DE.Views.SignatureSettings.txtRemoveWarning": "要删除该签名吗?
这一操作不能被撤销。", "DE.Views.SignatureSettings.txtRequestedSignatures": "此文档需要签名。", - "DE.Views.SignatureSettings.txtSigned": "有效签名已添加到文档中。该文档已限制编辑。", - "DE.Views.SignatureSettings.txtSignedInvalid": "文档中的某些数字签名无效或无法验证。该文档已限制编辑。", + "DE.Views.SignatureSettings.txtSigned": "有效签名已添加到文档中。该文档受到保护,无法编辑。", + "DE.Views.SignatureSettings.txtSignedInvalid": "文档中的某些数字签名无效或无法验证。该文档受到保护,无法编辑。", "DE.Views.Statusbar.goToPageText": "转到页面", "DE.Views.Statusbar.pageIndexText": "第{0}页共{1}页", "DE.Views.Statusbar.tipFitPage": "适合页面", @@ -2196,6 +2347,7 @@ "DE.Views.TableOfContentsSettings.strAlign": "右对齐页码", "DE.Views.TableOfContentsSettings.strFullCaption": "包括标签和编号", "DE.Views.TableOfContentsSettings.strLinks": "格式化目录作为链接", + "DE.Views.TableOfContentsSettings.strLinksOF": "将图片表格排版为链接", "DE.Views.TableOfContentsSettings.strShowPages": "显示页码", "DE.Views.TableOfContentsSettings.textBuildTable": "目录建自", "DE.Views.TableOfContentsSettings.textBuildTableOF": "建立图表目录从", @@ -2217,6 +2369,7 @@ "DE.Views.TableOfContentsSettings.txtCentered": "居中", "DE.Views.TableOfContentsSettings.txtClassic": "古典", "DE.Views.TableOfContentsSettings.txtCurrent": "当前", + "DE.Views.TableOfContentsSettings.txtDistinctive": "可区分", "DE.Views.TableOfContentsSettings.txtFormal": "正式", "DE.Views.TableOfContentsSettings.txtModern": "现代", "DE.Views.TableOfContentsSettings.txtOnline": "在线", @@ -2243,8 +2396,9 @@ "DE.Views.TableSettings.textBanded": "带状", "DE.Views.TableSettings.textBorderColor": "颜色", "DE.Views.TableSettings.textBorders": "边框风格", - "DE.Views.TableSettings.textCellSize": "单元格大小", + "DE.Views.TableSettings.textCellSize": "行&列的大小", "DE.Views.TableSettings.textColumns": "列", + "DE.Views.TableSettings.textConvert": "将表格转为文本", "DE.Views.TableSettings.textDistributeCols": "分布列", "DE.Views.TableSettings.textDistributeRows": "分布行", "DE.Views.TableSettings.textEdit": "行和列", @@ -2282,7 +2436,7 @@ "DE.Views.TableSettingsAdvanced.textAllowSpacing": "细胞之间的距离", "DE.Views.TableSettingsAdvanced.textAlt": "替代文本", "DE.Views.TableSettingsAdvanced.textAltDescription": "说明", - "DE.Views.TableSettingsAdvanced.textAltTip": "视觉对象信息的替代的基于文本的表示,将被视为具有视觉或认知障碍的人阅读,以帮助他们更好地了解图像,自动图像,图表或表中的哪些信息。", + "DE.Views.TableSettingsAdvanced.textAltTip": "视觉对象信息的替代基于文本的表示法,将要向有视觉或认知障碍人阅读,以帮助他们更好地了解图像、自选图形、图表或表格中的那些信息。", "DE.Views.TableSettingsAdvanced.textAltTitle": "标题", "DE.Views.TableSettingsAdvanced.textAnchorText": "文本", "DE.Views.TableSettingsAdvanced.textAutofit": "自动调整大小以适应内容", @@ -2349,17 +2503,25 @@ "DE.Views.TableSettingsAdvanced.txtNoBorders": "没有边框", "DE.Views.TableSettingsAdvanced.txtPercent": "百分", "DE.Views.TableSettingsAdvanced.txtPt": "点", + "DE.Views.TableToTextDialog.textEmpty": "必须为自定义的分隔符键入一个字符", + "DE.Views.TableToTextDialog.textNested": "转换嵌套表格", + "DE.Views.TableToTextDialog.textOther": "其他", + "DE.Views.TableToTextDialog.textPara": "自然段符号", + "DE.Views.TableToTextDialog.textSemicolon": "分号", + "DE.Views.TableToTextDialog.textSeparator": "以何方法分开文本?", + "DE.Views.TableToTextDialog.textTab": "标签", + "DE.Views.TableToTextDialog.textTitle": "将表格转为文本", "DE.Views.TextArtSettings.strColor": "颜色", "DE.Views.TextArtSettings.strFill": "填满", "DE.Views.TextArtSettings.strSize": "大小", - "DE.Views.TextArtSettings.strStroke": "边框", + "DE.Views.TextArtSettings.strStroke": "线条", "DE.Views.TextArtSettings.strTransparency": "不透明度", "DE.Views.TextArtSettings.strType": "按类型查看", "DE.Views.TextArtSettings.textAngle": "角度", "DE.Views.TextArtSettings.textBorderSizeErr": "输入的值不正确。
请输入介于0 pt和1584 pt之间的值。", "DE.Views.TextArtSettings.textColor": "颜色填充", "DE.Views.TextArtSettings.textDirection": "方向", - "DE.Views.TextArtSettings.textGradient": "渐变", + "DE.Views.TextArtSettings.textGradient": "渐变点", "DE.Views.TextArtSettings.textGradientFill": "渐变填充", "DE.Views.TextArtSettings.textLinear": "线性", "DE.Views.TextArtSettings.textNoFill": "没有填充", @@ -2372,6 +2534,21 @@ "DE.Views.TextArtSettings.tipAddGradientPoint": "新增渐变点", "DE.Views.TextArtSettings.tipRemoveGradientPoint": "删除渐变点", "DE.Views.TextArtSettings.txtNoBorders": "无线条", + "DE.Views.TextToTableDialog.textAutofit": "自动适应行为", + "DE.Views.TextToTableDialog.textColumns": "列", + "DE.Views.TextToTableDialog.textContents": "自动适应内容", + "DE.Views.TextToTableDialog.textEmpty": "必须为自定义的分隔符键入一个字符", + "DE.Views.TextToTableDialog.textFixed": "固定列宽", + "DE.Views.TextToTableDialog.textOther": "其他", + "DE.Views.TextToTableDialog.textPara": "段落", + "DE.Views.TextToTableDialog.textRows": "行", + "DE.Views.TextToTableDialog.textSemicolon": "分号", + "DE.Views.TextToTableDialog.textSeparator": "文本分开位置", + "DE.Views.TextToTableDialog.textTab": "标签", + "DE.Views.TextToTableDialog.textTableSize": "表格大小", + "DE.Views.TextToTableDialog.textTitle": "将文本转为表格", + "DE.Views.TextToTableDialog.textWindow": "自动适应窗口", + "DE.Views.TextToTableDialog.txtAutoText": "自动", "DE.Views.Toolbar.capBtnAddComment": "添加批注", "DE.Views.Toolbar.capBtnBlankPage": "空白页", "DE.Views.Toolbar.capBtnColumns": "列", @@ -2399,6 +2576,7 @@ "DE.Views.Toolbar.capImgForward": "向前移动", "DE.Views.Toolbar.capImgGroup": "分组", "DE.Views.Toolbar.capImgWrapping": "环绕", + "DE.Views.Toolbar.mniCapitalizeWords": "将每个单词大写", "DE.Views.Toolbar.mniCustomTable": "插入自定义表", "DE.Views.Toolbar.mniDrawTable": "绘制表", "DE.Views.Toolbar.mniEditControls": "控制设置", @@ -2406,18 +2584,25 @@ "DE.Views.Toolbar.mniEditFooter": "编辑页脚", "DE.Views.Toolbar.mniEditHeader": "编辑页眉", "DE.Views.Toolbar.mniEraseTable": "删除表", + "DE.Views.Toolbar.mniFromFile": "从文件导入", + "DE.Views.Toolbar.mniFromStorage": "来自存储设备", + "DE.Views.Toolbar.mniFromUrl": "从URL", "DE.Views.Toolbar.mniHiddenBorders": "隐藏表边框", "DE.Views.Toolbar.mniHiddenChars": "不打印字符", - "DE.Views.Toolbar.mniHighlightControls": "高亮设置", + "DE.Views.Toolbar.mniHighlightControls": "突出显示设置", "DE.Views.Toolbar.mniImageFromFile": "图片文件", "DE.Views.Toolbar.mniImageFromStorage": "图片来自存储", "DE.Views.Toolbar.mniImageFromUrl": "图片来自网络", + "DE.Views.Toolbar.mniLowerCase": "小写", + "DE.Views.Toolbar.mniSentenceCase": "句子大小写。", + "DE.Views.Toolbar.mniTextToTable": "将文本转为表格", "DE.Views.Toolbar.mniToggleCase": "切换大小写", "DE.Views.Toolbar.mniUpperCase": "大写", "DE.Views.Toolbar.strMenuNoFill": "没有填充", "DE.Views.Toolbar.textAutoColor": "自动化的", "DE.Views.Toolbar.textBold": "加粗", "DE.Views.Toolbar.textBottom": "底部: ", + "DE.Views.Toolbar.textChangeLevel": "修改列表的层级", "DE.Views.Toolbar.textCheckboxControl": "复选框", "DE.Views.Toolbar.textColumnsCustom": "自定义列", "DE.Views.Toolbar.textColumnsLeft": "左", @@ -2458,11 +2643,13 @@ "DE.Views.Toolbar.textPageMarginsCustom": "自定义边距", "DE.Views.Toolbar.textPageSizeCustom": "自定义页面大小", "DE.Views.Toolbar.textPictureControl": "图片", - "DE.Views.Toolbar.textPlainControl": "插入纯文本内容控件", + "DE.Views.Toolbar.textPlainControl": "纯文本", "DE.Views.Toolbar.textPortrait": "纵向", "DE.Views.Toolbar.textRemoveControl": "删除内容控件", "DE.Views.Toolbar.textRemWatermark": "删除水印", - "DE.Views.Toolbar.textRichControl": "插入多信息文本内容控件", + "DE.Views.Toolbar.textRestartEachPage": "重新启动每一页", + "DE.Views.Toolbar.textRestartEachSection": "重新启动每一节", + "DE.Views.Toolbar.textRichControl": "格式文本", "DE.Views.Toolbar.textRight": "右: ", "DE.Views.Toolbar.textStrikeout": "加删除线", "DE.Views.Toolbar.textStyleMenuDelete": "删除样式", @@ -2473,6 +2660,7 @@ "DE.Views.Toolbar.textStyleMenuUpdate": "从选择更新", "DE.Views.Toolbar.textSubscript": "下标", "DE.Views.Toolbar.textSuperscript": "上标", + "DE.Views.Toolbar.textSuppressForCurrentParagraph": "压制当前段落", "DE.Views.Toolbar.textTabCollaboration": "协作", "DE.Views.Toolbar.textTabFile": "文件", "DE.Views.Toolbar.textTabHome": "主页", @@ -2491,6 +2679,7 @@ "DE.Views.Toolbar.tipAlignRight": "右对齐", "DE.Views.Toolbar.tipBack": "返回", "DE.Views.Toolbar.tipBlankPage": "插入空白页面", + "DE.Views.Toolbar.tipChangeCase": "修改大小写", "DE.Views.Toolbar.tipChangeChart": "更改图表类型", "DE.Views.Toolbar.tipClearStyle": "清除样式", "DE.Views.Toolbar.tipColorSchemas": "更改配色方案", @@ -2563,6 +2752,7 @@ "DE.Views.Toolbar.txtScheme2": "灰度", "DE.Views.Toolbar.txtScheme20": "城市的", "DE.Views.Toolbar.txtScheme21": "气势", + "DE.Views.Toolbar.txtScheme22": "新的 Office", "DE.Views.Toolbar.txtScheme3": "顶点", "DE.Views.Toolbar.txtScheme4": "方面", "DE.Views.Toolbar.txtScheme5": "公民", diff --git a/apps/presentationeditor/main/locale/de.json b/apps/presentationeditor/main/locale/de.json index 724ff0f36..bb929f6bb 100644 --- a/apps/presentationeditor/main/locale/de.json +++ b/apps/presentationeditor/main/locale/de.json @@ -94,7 +94,7 @@ "Common.Views.About.txtLicensee": "LIZENZNEHMER", "Common.Views.About.txtLicensor": "LIZENZGEBER", "Common.Views.About.txtMail": "E-Mail: ", - "Common.Views.About.txtPoweredBy": "Betrieben von", + "Common.Views.About.txtPoweredBy": "Entwickelt von", "Common.Views.About.txtTel": "Tel.: ", "Common.Views.About.txtVersion": "Version ", "Common.Views.AutoCorrectDialog.textAdd": "Hinzufügen", diff --git a/apps/presentationeditor/main/locale/zh.json b/apps/presentationeditor/main/locale/zh.json index 47ce35cb2..b96297ba3 100644 --- a/apps/presentationeditor/main/locale/zh.json +++ b/apps/presentationeditor/main/locale/zh.json @@ -6,20 +6,52 @@ "Common.Controllers.ExternalDiagramEditor.warningText": "该对象被禁用,因为它被另一个用户编辑。", "Common.Controllers.ExternalDiagramEditor.warningTitle": "警告", "Common.define.chartData.textArea": "区域", + "Common.define.chartData.textAreaStacked": "堆积面积图", + "Common.define.chartData.textAreaStackedPer": "百分比堆积面积图", "Common.define.chartData.textBar": "条", + "Common.define.chartData.textBarNormal": "簇状柱形图", + "Common.define.chartData.textBarNormal3d": "三维簇状柱形图", + "Common.define.chartData.textBarNormal3dPerspective": "三维柱形图", + "Common.define.chartData.textBarStacked": "堆积柱形图", + "Common.define.chartData.textBarStacked3d": "三维堆积柱形图", + "Common.define.chartData.textBarStackedPer": "百分比堆积柱形图", + "Common.define.chartData.textBarStackedPer3d": "三维百分比堆积柱形图", "Common.define.chartData.textCharts": "图表", "Common.define.chartData.textColumn": "列", "Common.define.chartData.textCombo": "组合", + "Common.define.chartData.textComboAreaBar": "堆积面积图 - 簇状柱形图", + "Common.define.chartData.textComboBarLine": "簇状柱形图 - 折线图", + "Common.define.chartData.textComboBarLineSecondary": "簇状柱形图 - 次坐标轴上的折线图", + "Common.define.chartData.textComboCustom": "自定义组合", + "Common.define.chartData.textDoughnut": "圆环图​​", + "Common.define.chartData.textHBarNormal": "簇状条形图", + "Common.define.chartData.textHBarNormal3d": "三维簇状条形图", + "Common.define.chartData.textHBarStacked": "堆积条形图", + "Common.define.chartData.textHBarStacked3d": "三维堆积条形图", + "Common.define.chartData.textHBarStackedPer": "百分比堆积条形图", + "Common.define.chartData.textHBarStackedPer3d": "三维百分比堆积条形图", "Common.define.chartData.textLine": "线", "Common.define.chartData.textLine3d": "3-D 直线图", + "Common.define.chartData.textLineMarker": "有标记的折线图", + "Common.define.chartData.textLineStacked": "堆积折线图", + "Common.define.chartData.textLineStackedMarker": "有标记的堆积折线图", + "Common.define.chartData.textLineStackedPer": "百分比堆积折线图", + "Common.define.chartData.textLineStackedPerMarker": "有标记的百分比堆积折线图", "Common.define.chartData.textPie": "派", "Common.define.chartData.textPie3d": "3-D 圆饼图", "Common.define.chartData.textPoint": "XY(散射)", "Common.define.chartData.textScatter": "分散", + "Common.define.chartData.textScatterLine": "带直线的散点图", + "Common.define.chartData.textScatterLineMarker": "带直线和数据标记的散点图", + "Common.define.chartData.textScatterSmooth": "带平滑线的散点图", + "Common.define.chartData.textScatterSmoothMarker": "带平滑线和数据标记的散点图", "Common.define.chartData.textStock": "股票", "Common.define.chartData.textSurface": "平面", - "Common.Translation.warnFileLocked": "另一个应用正在编辑本文件。你仍然可以继续编辑此文件,你可以将你的编辑保存成另一个拷贝。", + "Common.Translation.warnFileLocked": "另一个应用程序正在编辑本文件。您在可以继续编辑,并另存为副本。", "Common.Translation.warnFileLockedBtnEdit": "创建拷贝", + "Common.Translation.warnFileLockedBtnView": "打开以查看", + "Common.UI.ButtonColored.textAutoColor": "自动", + "Common.UI.ButtonColored.textNewColor": "添加新的自定义颜色", "Common.UI.ComboBorderSize.txtNoBorders": "没有边框", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "没有边框", "Common.UI.ComboDataView.emptyComboText": "没有风格", @@ -43,6 +75,7 @@ "Common.UI.SynchronizeTip.textSynchronize": "该文档已被其他用户更改。
请点击保存更改并重新加载更新。", "Common.UI.ThemeColorPalette.textStandartColors": "标准颜色", "Common.UI.ThemeColorPalette.textThemeColors": "主题颜色", + "Common.UI.Themes.txtThemeClassicLight": "经典浅色", "Common.UI.Themes.txtThemeDark": "暗色模式", "Common.UI.Themes.txtThemeLight": "浅色主題", "Common.UI.Window.cancelButtonText": "取消", @@ -71,10 +104,12 @@ "Common.Views.AutoCorrectDialog.textBulleted": "自动项目符号列表", "Common.Views.AutoCorrectDialog.textBy": "依据", "Common.Views.AutoCorrectDialog.textDelete": "删除", + "Common.Views.AutoCorrectDialog.textFLSentence": "句首字母大写", "Common.Views.AutoCorrectDialog.textHyperlink": "带超链接的互联网与网络路径", "Common.Views.AutoCorrectDialog.textHyphens": "连带字符(-)改为破折号(-)", "Common.Views.AutoCorrectDialog.textMathCorrect": "数学自动修正", "Common.Views.AutoCorrectDialog.textNumbered": "自动编号列表", + "Common.Views.AutoCorrectDialog.textQuotes": "“直引号”替换为“弯引号”", "Common.Views.AutoCorrectDialog.textRecognized": "能被识别的函数", "Common.Views.AutoCorrectDialog.textRecognizedDesc": "以下表达式被识别为数学公式。这些表达式不会被自动设为斜体。", "Common.Views.AutoCorrectDialog.textReplace": "替换", @@ -90,6 +125,10 @@ "Common.Views.AutoCorrectDialog.warnReset": "即将移除对自动更正功能所做的自定义设置,并恢复默认值。是否继续?", "Common.Views.AutoCorrectDialog.warnRestore": "关于%1的自动更正条目将恢复默认值。确认继续?", "Common.Views.Chat.textSend": "发送", + "Common.Views.Comments.mniAuthorAsc": "作者 A到Z", + "Common.Views.Comments.mniAuthorDesc": "作者 Z到A", + "Common.Views.Comments.mniDateAsc": "最旧", + "Common.Views.Comments.mniDateDesc": "最新", "Common.Views.Comments.mniPositionAsc": "自上而下", "Common.Views.Comments.mniPositionDesc": "自下而上", "Common.Views.Comments.textAdd": "添加", @@ -100,7 +139,7 @@ "Common.Views.Comments.textCancel": "取消", "Common.Views.Comments.textClose": "关闭", "Common.Views.Comments.textClosePanel": "关闭注释", - "Common.Views.Comments.textComments": "批注", + "Common.Views.Comments.textComments": "评论", "Common.Views.Comments.textEdit": "确定", "Common.Views.Comments.textEnterCommentHint": "在此输入您的批注", "Common.Views.Comments.textHintAddComment": "添加批注", @@ -108,6 +147,7 @@ "Common.Views.Comments.textReply": "回复", "Common.Views.Comments.textResolve": "解决", "Common.Views.Comments.textResolved": "已解决", + "Common.Views.Comments.textSort": "评论排序", "Common.Views.CopyWarningDialog.textDontShow": "不要再显示此消息", "Common.Views.CopyWarningDialog.textMsg": "使用编辑器工具栏按钮和上下文菜单操作复制,剪切和粘贴操作将仅在此编辑器选项卡中执行。

要在编辑器选项卡之外复制或粘贴到应用程序,请使用以下键盘组合:", "Common.Views.CopyWarningDialog.textTitle": "复制,剪切和粘贴操作", @@ -119,12 +159,13 @@ "Common.Views.ExternalDiagramEditor.textClose": "关闭", "Common.Views.ExternalDiagramEditor.textSave": "保存并退出", "Common.Views.ExternalDiagramEditor.textTitle": "图表编辑器", - "Common.Views.Header.labelCoUsersDescr": "文件正在被多个用户编辑。", + "Common.Views.Header.labelCoUsersDescr": "正在编辑文件的用户:", "Common.Views.Header.textAddFavorite": "记入收藏夹", "Common.Views.Header.textAdvSettings": "高级设置", "Common.Views.Header.textBack": "打开文件所在位置", "Common.Views.Header.textCompactView": "查看紧凑工具栏", "Common.Views.Header.textHideLines": "隐藏标尺", + "Common.Views.Header.textHideNotes": "隐藏注释", "Common.Views.Header.textHideStatusBar": "隐藏状态栏", "Common.Views.Header.textRemoveFavorite": "从收藏夹中删除", "Common.Views.Header.textSaveBegin": "正在保存...", @@ -145,8 +186,11 @@ "Common.Views.Header.txtAccessRights": "更改访问权限", "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.ImageFromUrlDialog.textUrl": "粘贴图片网址:", "Common.Views.ImageFromUrlDialog.txtEmpty": "这是必填栏", @@ -235,6 +279,7 @@ "Common.Views.ReviewChanges.txtCommentRemMy": "移除我的批注", "Common.Views.ReviewChanges.txtCommentRemMyCurrent": "移除我的当前批注", "Common.Views.ReviewChanges.txtCommentRemove": "删除", + "Common.Views.ReviewChanges.txtCommentResolve": "解析", "Common.Views.ReviewChanges.txtCommentResolveAll": "解决全体评论", "Common.Views.ReviewChanges.txtCommentResolveCurrent": "解决该评论", "Common.Views.ReviewChanges.txtCommentResolveMy": "解决我的评论", @@ -325,6 +370,7 @@ "Common.Views.UserNameDialog.textDontShow": "不要再问我", "Common.Views.UserNameDialog.textLabel": "标签:", "Common.Views.UserNameDialog.textLabelError": "标签不能空", + "PE.Controllers.LeftMenu.leavePageText": "此文档中的所有未保存的更改都将丢失。
单击“取消”,然后单击“保存”以保存好。单击“确定”以放弃所有未保存的更改。", "PE.Controllers.LeftMenu.newDocumentTitle": "未命名的演示", "PE.Controllers.LeftMenu.notcriticalErrorTitle": "警告", "PE.Controllers.LeftMenu.requestEditRightsText": "请求编辑权限..", @@ -372,7 +418,7 @@ "PE.Controllers.Main.errorUpdateVersionOnDisconnect": "网连接已还原文件版本已更改。.
在继续工作之前,需要下载文件或复制其内容以确保没有丢失任何内容,然后重新加载此页。", "PE.Controllers.Main.errorUserDrop": "该文件现在无法访问。", "PE.Controllers.Main.errorUsersExceed": "超过了定价计划允许的用户数", - "PE.Controllers.Main.errorViewerDisconnect": "连接丢失。您仍然可以查看文档
,但在连接恢复之前无法下载或打印。", + "PE.Controllers.Main.errorViewerDisconnect": "连接丢失了。您仍然可以查看文档,
但在连接恢复并页面被重新加载之前无法下载或打印。", "PE.Controllers.Main.leavePageText": "您在本演示文稿中有未保存的更改。点击“留在这个页面”,然后点击“保存”保存。点击“离开此页面”,放弃所有未保存的更改。", "PE.Controllers.Main.leavePageTextOnClose": "此文档中所有未保存的更改都将丟失。
点击“取消”,然后点击“保存”以保存。点击“确定”,放弃所有未保存的更改。", "PE.Controllers.Main.loadFontsTextText": "数据加载中…", @@ -388,7 +434,7 @@ "PE.Controllers.Main.loadThemeTextText": "装载主题", "PE.Controllers.Main.loadThemeTitleText": "装载主题", "PE.Controllers.Main.notcriticalErrorTitle": "警告", - "PE.Controllers.Main.openErrorText": "打开文件时发生错误", + "PE.Controllers.Main.openErrorText": "打开文件时出现错误", "PE.Controllers.Main.openTextText": "开幕式...", "PE.Controllers.Main.openTitleText": "开幕式", "PE.Controllers.Main.printTextText": "打印演示文稿", @@ -396,7 +442,7 @@ "PE.Controllers.Main.reloadButtonText": "重新加载页面", "PE.Controllers.Main.requestEditFailedMessageText": "有人正在编辑此演示文稿。请稍后再试。", "PE.Controllers.Main.requestEditFailedTitleText": "访问被拒绝", - "PE.Controllers.Main.saveErrorText": "保存文件时发生错误", + "PE.Controllers.Main.saveErrorText": "保存文件时出现错误", "PE.Controllers.Main.saveErrorTextDesktop": "无法保存或创建此文件。
可能的原因是:
1.此文件是只读的。
2.此文件正在由其他用户编辑。
3.磁盘已满或损坏。", "PE.Controllers.Main.savePreparingText": "图像上传中……", "PE.Controllers.Main.savePreparingTitle": "图像上传中请稍候...", @@ -416,13 +462,14 @@ "PE.Controllers.Main.textConvertEquation": "这个公式是由一个早期版本的公式编辑器创建的。这个版本现在不受支持了。要想编辑这个公式,你需要将其转换成 Office Math ML 格式.
现在转换吗?", "PE.Controllers.Main.textCustomLoader": "请注意,根据许可条款您无权更改加载程序。
请联系我们的销售部门获取报价。", "PE.Controllers.Main.textDisconnect": "网络连接失败", + "PE.Controllers.Main.textGuest": "来宾", "PE.Controllers.Main.textHasMacros": "这个文件带有自动宏。
是否要运行宏?", "PE.Controllers.Main.textLearnMore": "了解更多", "PE.Controllers.Main.textLoadingDocument": "载入演示", "PE.Controllers.Main.textLongName": "输入名称,要求小于128字符。", - "PE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE开源版本", + "PE.Controllers.Main.textNoLicenseTitle": "已达到许可证限制", "PE.Controllers.Main.textPaidFeature": "付费功能", - "PE.Controllers.Main.textRemember": "记住我的选择", + "PE.Controllers.Main.textRemember": "针对所有的文件记住我的选择", "PE.Controllers.Main.textRenameError": "用户名不能留空。", "PE.Controllers.Main.textRenameLabel": "输入名称,可用于协作。", "PE.Controllers.Main.textShape": "形状", @@ -453,6 +500,7 @@ "PE.Controllers.Main.txtMath": "数学", "PE.Controllers.Main.txtMedia": "媒体", "PE.Controllers.Main.txtNeedSynchronize": "你有更新", + "PE.Controllers.Main.txtNone": "无", "PE.Controllers.Main.txtPicture": "图片", "PE.Controllers.Main.txtRectangles": "矩形", "PE.Controllers.Main.txtSeries": "系列", @@ -688,19 +736,19 @@ "PE.Controllers.Main.unsupportedBrowserErrorText": "你的浏览器不支持", "PE.Controllers.Main.uploadImageExtMessage": "未知图像格式", "PE.Controllers.Main.uploadImageFileCountMessage": "没有图片上传", - "PE.Controllers.Main.uploadImageSizeMessage": "超过最大图像尺寸限制。", + "PE.Controllers.Main.uploadImageSizeMessage": "图像太大。最大的大小为25MB。", "PE.Controllers.Main.uploadImageTextText": "上传图片...", "PE.Controllers.Main.uploadImageTitleText": "图片上传中", "PE.Controllers.Main.waitText": "请稍候...", "PE.Controllers.Main.warnBrowserIE9": "该应用程序在IE9上的功能很差。使用IE10或更高版本", "PE.Controllers.Main.warnBrowserZoom": "您的浏览器当前缩放设置不完全支持。请按Ctrl + 0重设为默认缩放。", - "PE.Controllers.Main.warnLicenseExceeded": "与文档服务器的并发连接次数已超出限制,文档打开后将仅供查看。
请联系您的账户管理员了解详情。", + "PE.Controllers.Main.warnLicenseExceeded": "您已达到同时连接%1编辑器的限制。该文档将被打开仅供查看。
请联系您的管理员以了解更多。", "PE.Controllers.Main.warnLicenseExp": "您的许可证已过期。
请更新您的许可证并刷新页面。", "PE.Controllers.Main.warnLicenseLimitedNoAccess": "授权过期
您不具备文件编辑功能的授权
请联系管理员。", "PE.Controllers.Main.warnLicenseLimitedRenewed": "授权需更新
您只有文件编辑功能的部分权限
请联系管理员以取得完整权限。", - "PE.Controllers.Main.warnLicenseUsersExceeded": "并发用户数量已超出限制,文档打开后将仅供查看。
请联系您的账户管理员了解详情。", - "PE.Controllers.Main.warnNoLicense": "该版本对文档服务器的并发连接有限制。
如果需要更多请考虑购买商业许可证。", - "PE.Controllers.Main.warnNoLicenseUsers": "此版本的 %1 编辑软件对并发用户数量有一定的限制。
如果需要更多,请考虑购买商用许可证。", + "PE.Controllers.Main.warnLicenseUsersExceeded": "您已达到%1编辑器的用户限制。请联系您的管理员以了解更多。", + "PE.Controllers.Main.warnNoLicense": "您已达到同时连接%1编辑器的限制。该文档将被打开仅供查看。
请联系%1销售团队以了解个人升级条款。", + "PE.Controllers.Main.warnNoLicenseUsers": "您已达到%1编辑器的用户限制。请联系%1销售团队以了解个人升级条款。", "PE.Controllers.Main.warnProcessRightsChange": "您被拒绝编辑文件的权限。", "PE.Controllers.Statusbar.zoomText": "缩放%{0}", "PE.Controllers.Toolbar.confirmAddFontName": "您要保存的字体在当前设备上不可用。
使用其中一种系统字体显示文本样式,当可用时将使用保存的字体。
是否要继续?", @@ -1048,7 +1096,7 @@ "PE.Views.ChartSettings.textWidth": "宽度", "PE.Views.ChartSettingsAdvanced.textAlt": "可选文本", "PE.Views.ChartSettingsAdvanced.textAltDescription": "描述", - "PE.Views.ChartSettingsAdvanced.textAltTip": "视觉对象信息的替代的基于文本的表示,将被视为具有视觉或认知障碍的人阅读,以帮助他们更好地了解图像,自动图像,图表或表中的哪些信息。", + "PE.Views.ChartSettingsAdvanced.textAltTip": "视觉对象信息的替代基于文本的表示法,将要向有视觉或认知障碍人阅读,以帮助他们更好地了解图像、自选图形、图表或表格中的那些信息。", "PE.Views.ChartSettingsAdvanced.textAltTitle": "标题", "PE.Views.ChartSettingsAdvanced.textTitle": "图 - 高级设置", "PE.Views.DateTimeDialog.confirmDefault": "设置{0}:{1}的默认格式", @@ -1061,7 +1109,7 @@ "PE.Views.DocumentHolder.addCommentText": "添加批注", "PE.Views.DocumentHolder.addToLayoutText": "添加到布局", "PE.Views.DocumentHolder.advancedImageText": "高级图像设置", - "PE.Views.DocumentHolder.advancedParagraphText": "文本高级设置", + "PE.Views.DocumentHolder.advancedParagraphText": "段落高级设置", "PE.Views.DocumentHolder.advancedShapeText": "形状高级设置", "PE.Views.DocumentHolder.advancedTableText": "高级表设置", "PE.Views.DocumentHolder.alignmentText": "对齐", @@ -1097,7 +1145,7 @@ "PE.Views.DocumentHolder.mniCustomTable": "插入自定义表", "PE.Views.DocumentHolder.moreText": "更多变体...", "PE.Views.DocumentHolder.noSpellVariantsText": "没有变量", - "PE.Views.DocumentHolder.originalSizeText": "默认大小", + "PE.Views.DocumentHolder.originalSizeText": "实际大小", "PE.Views.DocumentHolder.removeHyperlinkText": "删除超链接", "PE.Views.DocumentHolder.rightText": "右", "PE.Views.DocumentHolder.rowText": "行", @@ -1274,7 +1322,7 @@ "PE.Views.FileMenuPanels.DocumentInfo.txtAppName": "应用", "PE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "作者", "PE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "更改访问权限", - "PE.Views.FileMenuPanels.DocumentInfo.txtComment": "批注", + "PE.Views.FileMenuPanels.DocumentInfo.txtComment": "评论", "PE.Views.FileMenuPanels.DocumentInfo.txtCreated": "已创建", "PE.Views.FileMenuPanels.DocumentInfo.txtModifyBy": "上次修改时间", "PE.Views.FileMenuPanels.DocumentInfo.txtModifyDate": "上次修改时间", @@ -1282,7 +1330,7 @@ "PE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "位置", "PE.Views.FileMenuPanels.DocumentInfo.txtRights": "有权利的人", "PE.Views.FileMenuPanels.DocumentInfo.txtSubject": "主题", - "PE.Views.FileMenuPanels.DocumentInfo.txtTitle": "演讲题目", + "PE.Views.FileMenuPanels.DocumentInfo.txtTitle": "标题", "PE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "上载", "PE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "更改访问权限", "PE.Views.FileMenuPanels.DocumentRights.txtRights": "有权利的人", @@ -1305,7 +1353,7 @@ "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "您将需要接受更改才能看到它们", "PE.Views.FileMenuPanels.Settings.strFast": "快速", "PE.Views.FileMenuPanels.Settings.strFontRender": "字体微调方式", - "PE.Views.FileMenuPanels.Settings.strForcesave": "始终保存到服务器(否则在文档关闭时保存到服务器)", + "PE.Views.FileMenuPanels.Settings.strForcesave": "单击“保存”或Ctrl+S之后版本添加到存储", "PE.Views.FileMenuPanels.Settings.strInputMode": "显示象形文字", "PE.Views.FileMenuPanels.Settings.strMacrosSettings": "宏设置", "PE.Views.FileMenuPanels.Settings.strPaste": "剪切、复制、黏贴", @@ -1324,7 +1372,7 @@ "PE.Views.FileMenuPanels.Settings.textAutoRecover": "自动恢复", "PE.Views.FileMenuPanels.Settings.textAutoSave": "自动保存", "PE.Views.FileMenuPanels.Settings.textDisabled": "已禁用", - "PE.Views.FileMenuPanels.Settings.textForceSave": "保存到服务器", + "PE.Views.FileMenuPanels.Settings.textForceSave": "在保存中间版本", "PE.Views.FileMenuPanels.Settings.textMinute": "每一分钟", "PE.Views.FileMenuPanels.Settings.txtAll": "查看全部", "PE.Views.FileMenuPanels.Settings.txtAutoCorrect": "自动修正选项...", @@ -1397,21 +1445,21 @@ "PE.Views.ImageSettings.textHintFlipH": "水平翻转", "PE.Views.ImageSettings.textHintFlipV": "垂直翻转", "PE.Views.ImageSettings.textInsert": "替换图像", - "PE.Views.ImageSettings.textOriginalSize": "默认大小", + "PE.Views.ImageSettings.textOriginalSize": "实际大小", "PE.Views.ImageSettings.textRotate90": "旋转90°", "PE.Views.ImageSettings.textRotation": "旋转", "PE.Views.ImageSettings.textSize": "大小", "PE.Views.ImageSettings.textWidth": "宽度", "PE.Views.ImageSettingsAdvanced.textAlt": "替代文本", "PE.Views.ImageSettingsAdvanced.textAltDescription": "说明", - "PE.Views.ImageSettingsAdvanced.textAltTip": "视觉对象信息的替代的基于文本的表示,将被视为具有视觉或认知障碍的人阅读,以帮助他们更好地了解图像,自动图像,图表或表中的哪些信息。", + "PE.Views.ImageSettingsAdvanced.textAltTip": "视觉对象信息的替代基于文本的表示法,将要向有视觉或认知障碍人阅读,以帮助他们更好地了解图像、自选图形、图表或表格中的那些信息。", "PE.Views.ImageSettingsAdvanced.textAltTitle": "标题", "PE.Views.ImageSettingsAdvanced.textAngle": "角度", "PE.Views.ImageSettingsAdvanced.textFlipped": "已翻转", "PE.Views.ImageSettingsAdvanced.textHeight": "高度", "PE.Views.ImageSettingsAdvanced.textHorizontally": "水平", "PE.Views.ImageSettingsAdvanced.textKeepRatio": "不变比例", - "PE.Views.ImageSettingsAdvanced.textOriginalSize": "默认大小", + "PE.Views.ImageSettingsAdvanced.textOriginalSize": "实际大小", "PE.Views.ImageSettingsAdvanced.textPlacement": "放置", "PE.Views.ImageSettingsAdvanced.textPosition": "位置", "PE.Views.ImageSettingsAdvanced.textRotation": "旋转", @@ -1421,7 +1469,7 @@ "PE.Views.ImageSettingsAdvanced.textWidth": "宽度", "PE.Views.LeftMenu.tipAbout": "关于", "PE.Views.LeftMenu.tipChat": "聊天", - "PE.Views.LeftMenu.tipComments": "批注", + "PE.Views.LeftMenu.tipComments": "评论", "PE.Views.LeftMenu.tipPlugins": "插件", "PE.Views.LeftMenu.tipSearch": "搜索", "PE.Views.LeftMenu.tipSlides": "幻灯片", @@ -1452,7 +1500,7 @@ "PE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore": "前", "PE.Views.ParagraphSettingsAdvanced.strIndentsSpecial": "特别", "PE.Views.ParagraphSettingsAdvanced.strParagraphFont": "字体", - "PE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "缩进和放置", + "PE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "缩进和间距", "PE.Views.ParagraphSettingsAdvanced.strSmallCaps": "小写", "PE.Views.ParagraphSettingsAdvanced.strSpacing": "间距", "PE.Views.ParagraphSettingsAdvanced.strStrike": "删除线", @@ -1480,7 +1528,7 @@ "PE.Views.ParagraphSettingsAdvanced.txtAutoText": "自动", "PE.Views.RightMenu.txtChartSettings": "图表设置", "PE.Views.RightMenu.txtImageSettings": "图像设置", - "PE.Views.RightMenu.txtParagraphSettings": "文本设置", + "PE.Views.RightMenu.txtParagraphSettings": "段落设置", "PE.Views.RightMenu.txtShapeSettings": "形状设置", "PE.Views.RightMenu.txtSignatureSettings": "签名设置", "PE.Views.RightMenu.txtSlideSettings": "幻灯片设置", @@ -1494,7 +1542,7 @@ "PE.Views.ShapeSettings.strPattern": "模式", "PE.Views.ShapeSettings.strShadow": "显示阴影", "PE.Views.ShapeSettings.strSize": "大小", - "PE.Views.ShapeSettings.strStroke": "边框", + "PE.Views.ShapeSettings.strStroke": "线条", "PE.Views.ShapeSettings.strTransparency": "不透明度", "PE.Views.ShapeSettings.strType": "类型", "PE.Views.ShapeSettings.textAdvanced": "显示高级设置", @@ -1507,7 +1555,7 @@ "PE.Views.ShapeSettings.textFromFile": "从文件导入", "PE.Views.ShapeSettings.textFromStorage": "来自存储设备", "PE.Views.ShapeSettings.textFromUrl": "从URL", - "PE.Views.ShapeSettings.textGradient": "渐变", + "PE.Views.ShapeSettings.textGradient": "渐变点", "PE.Views.ShapeSettings.textGradientFill": "渐变填充", "PE.Views.ShapeSettings.textHint270": "逆时针旋转90°", "PE.Views.ShapeSettings.textHint90": "顺时针旋转90°", @@ -1545,7 +1593,7 @@ "PE.Views.ShapeSettingsAdvanced.strMargins": "文字填充", "PE.Views.ShapeSettingsAdvanced.textAlt": "可选文本", "PE.Views.ShapeSettingsAdvanced.textAltDescription": "描述", - "PE.Views.ShapeSettingsAdvanced.textAltTip": "视觉对象信息的替代的基于文本的表示,将被视为具有视觉或认知障碍的人阅读,以帮助他们更好地了解图像,自动图像,图表或表中的哪些信息。", + "PE.Views.ShapeSettingsAdvanced.textAltTip": "视觉对象信息的替代基于文本的表示法,将要向有视觉或认知障碍人阅读,以帮助他们更好地了解图像、自选图形、图表或表格中的那些信息。", "PE.Views.ShapeSettingsAdvanced.textAltTitle": "标题", "PE.Views.ShapeSettingsAdvanced.textAngle": "角度", "PE.Views.ShapeSettingsAdvanced.textArrows": "箭头", @@ -1602,6 +1650,7 @@ "PE.Views.SlideSettings.strForeground": "前景色", "PE.Views.SlideSettings.strPattern": "模式", "PE.Views.SlideSettings.strSlideNum": "显示幻灯片编号", + "PE.Views.SlideSettings.strTransparency": "暗度", "PE.Views.SlideSettings.textAdvanced": "显示高级设置", "PE.Views.SlideSettings.textAngle": "角度", "PE.Views.SlideSettings.textColor": "颜色填充", @@ -1610,7 +1659,7 @@ "PE.Views.SlideSettings.textFromFile": "从文件导入", "PE.Views.SlideSettings.textFromStorage": "来自存储设备", "PE.Views.SlideSettings.textFromUrl": "从URL", - "PE.Views.SlideSettings.textGradient": "渐变", + "PE.Views.SlideSettings.textGradient": "渐变点", "PE.Views.SlideSettings.textGradientFill": "渐变填充", "PE.Views.SlideSettings.textImageTexture": "图片或纹理", "PE.Views.SlideSettings.textLinear": "线性", @@ -1658,6 +1707,7 @@ "PE.Views.SlideSizeSettings.txtLetter": "信纸(8.5x11英寸)", "PE.Views.SlideSizeSettings.txtOverhead": "高架", "PE.Views.SlideSizeSettings.txtStandard": "标准(4:3)", + "PE.Views.SlideSizeSettings.txtWidescreen": "宽屏", "PE.Views.Statusbar.goToPageText": "转到幻灯片", "PE.Views.Statusbar.pageIndexText": "{1}的幻灯片{0}", "PE.Views.Statusbar.textShowBegin": "从开始显示", @@ -1727,7 +1777,7 @@ "PE.Views.TableSettings.txtTable_ThemedStyle": "主题样式", "PE.Views.TableSettingsAdvanced.textAlt": "替代文本", "PE.Views.TableSettingsAdvanced.textAltDescription": "说明", - "PE.Views.TableSettingsAdvanced.textAltTip": "视觉对象信息的替代的基于文本的表示,将被视为具有视觉或认知障碍的人阅读,以帮助他们更好地了解图像,自动图像,图表或表中的哪些信息。", + "PE.Views.TableSettingsAdvanced.textAltTip": "视觉对象信息的替代基于文本的表示法,将要向有视觉或认知障碍人阅读,以帮助他们更好地了解图像、自选图形、图表或表格中的那些信息。", "PE.Views.TableSettingsAdvanced.textAltTitle": "标题", "PE.Views.TableSettingsAdvanced.textBottom": "底部", "PE.Views.TableSettingsAdvanced.textCheckMargins": "使用默认页边距", @@ -1744,7 +1794,7 @@ "PE.Views.TextArtSettings.strForeground": "前景色", "PE.Views.TextArtSettings.strPattern": "模式", "PE.Views.TextArtSettings.strSize": "大小", - "PE.Views.TextArtSettings.strStroke": "边框", + "PE.Views.TextArtSettings.strStroke": "线条", "PE.Views.TextArtSettings.strTransparency": "不透明度", "PE.Views.TextArtSettings.strType": "类型", "PE.Views.TextArtSettings.textAngle": "角度", @@ -1754,7 +1804,7 @@ "PE.Views.TextArtSettings.textEmptyPattern": "无图案", "PE.Views.TextArtSettings.textFromFile": "从文件导入", "PE.Views.TextArtSettings.textFromUrl": "从URL", - "PE.Views.TextArtSettings.textGradient": "渐变", + "PE.Views.TextArtSettings.textGradient": "渐变点", "PE.Views.TextArtSettings.textGradientFill": "渐变填充", "PE.Views.TextArtSettings.textImageTexture": "图片或纹理", "PE.Views.TextArtSettings.textLinear": "线性", @@ -1785,7 +1835,7 @@ "PE.Views.TextArtSettings.txtWood": "木头", "PE.Views.Toolbar.capAddSlide": "添加幻灯片", "PE.Views.Toolbar.capBtnAddComment": "添加批注", - "PE.Views.Toolbar.capBtnComment": "批注", + "PE.Views.Toolbar.capBtnComment": "评论", "PE.Views.Toolbar.capBtnDateTime": "日期和时间", "PE.Views.Toolbar.capBtnInsHeader": "页脚", "PE.Views.Toolbar.capBtnInsSymbol": "符号", @@ -1814,6 +1864,7 @@ "PE.Views.Toolbar.mniSlideWide": "宽屏(16:9)", "PE.Views.Toolbar.mniToggleCase": "切换大小写", "PE.Views.Toolbar.mniUpperCase": "大写", + "PE.Views.Toolbar.strMenuNoFill": "无填充", "PE.Views.Toolbar.textAlignBottom": "将文本对齐到底部", "PE.Views.Toolbar.textAlignCenter": "中心文字", "PE.Views.Toolbar.textAlignJust": "辩解", @@ -1827,6 +1878,9 @@ "PE.Views.Toolbar.textArrangeFront": "放到最上面", "PE.Views.Toolbar.textBold": "加粗", "PE.Views.Toolbar.textColumnsCustom": "自定义列", + "PE.Views.Toolbar.textColumnsOne": "一列", + "PE.Views.Toolbar.textColumnsThree": "三列", + "PE.Views.Toolbar.textColumnsTwo": "两列", "PE.Views.Toolbar.textItalic": "斜体", "PE.Views.Toolbar.textListSettings": "列表设置", "PE.Views.Toolbar.textShapeAlignBottom": "底部对齐", @@ -1847,6 +1901,7 @@ "PE.Views.Toolbar.textTabHome": "主页", "PE.Views.Toolbar.textTabInsert": "插入", "PE.Views.Toolbar.textTabProtect": "保护", + "PE.Views.Toolbar.textTabTransitions": "转换", "PE.Views.Toolbar.textTitleError": "错误", "PE.Views.Toolbar.textUnderline": "下划线", "PE.Views.Toolbar.tipAddSlide": "添加幻灯片", @@ -1916,6 +1971,7 @@ "PE.Views.Toolbar.txtScheme2": "灰度", "PE.Views.Toolbar.txtScheme20": "城市的", "PE.Views.Toolbar.txtScheme21": "气势", + "PE.Views.Toolbar.txtScheme22": "新的Office", "PE.Views.Toolbar.txtScheme3": "顶点", "PE.Views.Toolbar.txtScheme4": "方面", "PE.Views.Toolbar.txtScheme5": "公民", @@ -1928,6 +1984,7 @@ "PE.Views.Transitions.strDelay": "延迟", "PE.Views.Transitions.strDuration": "持续时间", "PE.Views.Transitions.strStartOnClick": "开始点击", + "PE.Views.Transitions.textBlack": "全黑", "PE.Views.Transitions.textBottom": "底部", "PE.Views.Transitions.textBottomLeft": "左下", "PE.Views.Transitions.textBottomRight": "右下", @@ -1935,11 +1992,29 @@ "PE.Views.Transitions.textClockwise": "顺时针", "PE.Views.Transitions.textCounterclockwise": "逆时针", "PE.Views.Transitions.textCover": "覆盖", + "PE.Views.Transitions.textFade": "淡化", + "PE.Views.Transitions.textHorizontalIn": "上下向中央收缩", + "PE.Views.Transitions.textHorizontalOut": "中央向上下展开", "PE.Views.Transitions.textLeft": "左", + "PE.Views.Transitions.textNone": "无", + "PE.Views.Transitions.textPush": "推送", "PE.Views.Transitions.textRight": "右", + "PE.Views.Transitions.textSmoothly": "平滑", + "PE.Views.Transitions.textSplit": "拆分", "PE.Views.Transitions.textTop": "顶部", "PE.Views.Transitions.textTopLeft": "左上", "PE.Views.Transitions.textTopRight": "右上", + "PE.Views.Transitions.textUnCover": "揭开", + "PE.Views.Transitions.textVerticalIn": "左右向中央收缩", + "PE.Views.Transitions.textVerticalOut": "中央向左右展开", + "PE.Views.Transitions.textWedge": "楔形", + "PE.Views.Transitions.textWipe": "擦除", + "PE.Views.Transitions.textZoom": "缩放", + "PE.Views.Transitions.textZoomIn": "放大", + "PE.Views.Transitions.textZoomOut": "缩小", + "PE.Views.Transitions.textZoomRotate": "缩放并旋转", "PE.Views.Transitions.txtApplyToAll": "适用于所有幻灯片", - "PE.Views.Transitions.txtPreview": "预览" + "PE.Views.Transitions.txtParameters": "参数", + "PE.Views.Transitions.txtPreview": "预览", + "PE.Views.Transitions.txtSec": "S" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/cs.json b/apps/spreadsheeteditor/main/locale/cs.json index cd2fa299b..a6f08f725 100644 --- a/apps/spreadsheeteditor/main/locale/cs.json +++ b/apps/spreadsheeteditor/main/locale/cs.json @@ -619,6 +619,7 @@ "SSE.Controllers.Main.errorWrongOperator": "Chyba v zadaném vzorci.Použit nesprávný operátor.
Prosím, opravte chybu.", "SSE.Controllers.Main.errRemDuplicates": "Byly nalezeny a smazány duplicitní hodnoty: {0}, zbývá neopakujících se hodnot: {1}.", "SSE.Controllers.Main.leavePageText": "V tomto sešitu máte neuložené změny. Pokud o ně nechcete přijít, klikněte na „Zůstat na této stránce“, poté na „Uložit“. V opačném případě klikněte na „Opustit tuto stránku“ a všechny neuložené změny budou zahozeny.", + "SSE.Controllers.Main.leavePageTextOnClose": "Veškeré neuložené změny v tomto sešitu budou ztraceny.
Pokud je chcete uložit, klikněte na „Storno“ a poté na „Uložit“. Pokud chcete veškeré neuložené změny zahodit, klikněte na „OK“.", "SSE.Controllers.Main.loadFontsTextText": "Načítání dat…", "SSE.Controllers.Main.loadFontsTitleText": "Načítání dat", "SSE.Controllers.Main.loadFontTextText": "Načítání dat…", @@ -1585,6 +1586,7 @@ "SSE.Views.DataValidationDialog.strSettings": "Nastavení", "SSE.Views.DataValidationDialog.textAlert": "Upozornění", "SSE.Views.DataValidationDialog.textAllow": "Povolit", + "SSE.Views.DataValidationDialog.textApply": "Uplatnit tyto změny na veškeré ostatní buňky, které mají stejná nastavení", "SSE.Views.DataValidationDialog.textCompare": "Porovnat s", "SSE.Views.DataValidationDialog.textEndDate": "Konečné datum", "SSE.Views.DataValidationDialog.textEndTime": "Konečný čas", @@ -2291,6 +2293,7 @@ "SSE.Views.PivotSettings.txtMoveValues": "Přesunout do hodnot", "SSE.Views.PivotSettings.txtRemove": "Odebrat kolonku", "SSE.Views.PivotSettingsAdvanced.strLayout": "Název a rozvržení", + "SSE.Views.PivotSettingsAdvanced.textAlt": "Alternativní text", "SSE.Views.PivotSettingsAdvanced.textAltDescription": "Popis", "SSE.Views.PivotSettingsAdvanced.textAltTitle": "Nadpis", "SSE.Views.PivotSettingsAdvanced.textDataSource": "Zdroj dat", @@ -2375,6 +2378,7 @@ "SSE.Views.PrintTitlesDialog.textNoRepeat": "Neopakuje se", "SSE.Views.ProtectDialog.textExistName": "CHYBA! Rozsah s takovým názvem už existuje", "SSE.Views.ProtectDialog.textInvalidRange": "CHYBA! Neplatný rozsah buněk", + "SSE.Views.ProtectDialog.txtAllow": "Umožnit všem uživatelům tohoto listu", "SSE.Views.ProtectDialog.txtDelCols": "Smazat sloupce", "SSE.Views.ProtectDialog.txtDelRows": "Smazat řádky", "SSE.Views.ProtectDialog.txtEmpty": "Tuto kolonku je třeba vyplnit", @@ -2407,6 +2411,7 @@ "SSE.Views.ProtectRangesDlg.txtEditRange": "Upravit rozsah", "SSE.Views.ProtectRangesDlg.txtNewRange": "Nový rozsah", "SSE.Views.ProtectRangesDlg.txtNo": "Ne", + "SSE.Views.ProtectRangesDlg.txtTitle": "Umožnit uživatelům upravovat rozsahy", "SSE.Views.ProtectRangesDlg.txtYes": "Ano", "SSE.Views.ProtectRangesDlg.warnDelete": "Opravdu chcete název {0} smazat?", "SSE.Views.RemoveDuplicatesDialog.textColumns": "Sloupce", @@ -2518,6 +2523,7 @@ "SSE.Views.ShapeSettingsAdvanced.textLineStyle": "Styl čáry", "SSE.Views.ShapeSettingsAdvanced.textMiter": "Pokos", "SSE.Views.ShapeSettingsAdvanced.textOneCell": "Přesouvat ale neměnit velikost společně s buňkami", + "SSE.Views.ShapeSettingsAdvanced.textOverflow": "Povolit aby text přetékal přes tvar", "SSE.Views.ShapeSettingsAdvanced.textResizeFit": "Upravit velikost podle textu", "SSE.Views.ShapeSettingsAdvanced.textRight": "Vpravo", "SSE.Views.ShapeSettingsAdvanced.textRotation": "Otočení", @@ -2581,6 +2587,7 @@ "SSE.Views.SlicerSettingsAdvanced.strStyle": "Styl", "SSE.Views.SlicerSettingsAdvanced.strStyleSize": "Styl a velikost", "SSE.Views.SlicerSettingsAdvanced.strWidth": "Šířka", + "SSE.Views.SlicerSettingsAdvanced.textAlt": "Alternativní text", "SSE.Views.SlicerSettingsAdvanced.textAltDescription": "Popis", "SSE.Views.SlicerSettingsAdvanced.textAltTitle": "Nadpis", "SSE.Views.SlicerSettingsAdvanced.textAsc": "Vzestupně", @@ -2656,6 +2663,7 @@ "SSE.Views.SpecialPasteDialog.textValues": "Hodnoty", "SSE.Views.SpecialPasteDialog.textVFormat": "Hodnoty a formátování", "SSE.Views.SpecialPasteDialog.textVNFormat": "Formáty hodnot a čísel", + "SSE.Views.SpecialPasteDialog.textWBorders": "Vše kromě ohraničení", "SSE.Views.Spellcheck.noSuggestions": "Žádná doporučení ohledně pravopisu", "SSE.Views.Spellcheck.textChange": "Změnit", "SSE.Views.Spellcheck.textChangeAll": "Změnit vše", @@ -3064,8 +3072,10 @@ "SSE.Views.ViewTab.textHeadings": "Nadpisy", "SSE.Views.ViewTab.textUnFreeze": "Zrušit ukotvení příček", "SSE.Views.ViewTab.textZeros": "Zobrazit nuly", + "SSE.Views.WBProtection.hintAllowRanges": "Umožnit upravovat rozsahy", "SSE.Views.WBProtection.hintProtectSheet": "Ochránit list", "SSE.Views.WBProtection.hintProtectWB": "Ochránit sešit", + "SSE.Views.WBProtection.txtAllowRanges": "Umožnit upravovat rozsahy", "SSE.Views.WBProtection.txtHiddenFormula": "Skryté vzorce", "SSE.Views.WBProtection.txtLockedCell": "Uzamčená buňka", "SSE.Views.WBProtection.txtLockedShape": "Tvar uzamknut", diff --git a/apps/spreadsheeteditor/main/locale/de.json b/apps/spreadsheeteditor/main/locale/de.json index bed528230..87ef203a7 100644 --- a/apps/spreadsheeteditor/main/locale/de.json +++ b/apps/spreadsheeteditor/main/locale/de.json @@ -147,7 +147,7 @@ "Common.Views.About.txtLicensee": "LIZENZNEHMER", "Common.Views.About.txtLicensor": "LIZENZGEBER", "Common.Views.About.txtMail": "E-Mail-Adresse: ", - "Common.Views.About.txtPoweredBy": "Betrieben von", + "Common.Views.About.txtPoweredBy": "Entwickelt von", "Common.Views.About.txtTel": "Tel.: ", "Common.Views.About.txtVersion": "Version ", "Common.Views.AutoCorrectDialog.textAdd": "Hinzufügen", diff --git a/apps/spreadsheeteditor/main/locale/el.json b/apps/spreadsheeteditor/main/locale/el.json index 66fde6af5..d11146dfd 100644 --- a/apps/spreadsheeteditor/main/locale/el.json +++ b/apps/spreadsheeteditor/main/locale/el.json @@ -152,6 +152,7 @@ "Common.Views.Comments.textAnonym": "Επισκέπτης", "Common.Views.Comments.textCancel": "Ακύρωση", "Common.Views.Comments.textClose": "Κλείσιμο", + "Common.Views.Comments.textClosePanel": "Κλείσιμο σχολίων", "Common.Views.Comments.textComments": "Σχόλια", "Common.Views.Comments.textEdit": "Εντάξει", "Common.Views.Comments.textEnterCommentHint": "Εισάγετε το σχόλιό σας εδώ", @@ -195,6 +196,8 @@ "Common.Views.Header.tipViewUsers": "Προβολή χρηστών και διαχείριση δικαιωμάτων πρόσβασης σε έγγραφα", "Common.Views.Header.txtAccessRights": "Αλλαγή δικαιωμάτων πρόσβασης", "Common.Views.Header.txtRename": "Μετονομασία", + "Common.Views.History.textCloseHistory": "Κλείσιμο Ιστορικού", + "Common.Views.History.textHide": "Κλείσιμο", "Common.Views.ImageFromUrlDialog.textUrl": "Επικόλληση URL εικόνας:", "Common.Views.ImageFromUrlDialog.txtEmpty": "Αυτό το πεδίο είναι υποχρεωτικό", "Common.Views.ImageFromUrlDialog.txtNotUrl": "Αυτό το πεδίο πρέπει να είναι διεύθυνση URL με τη μορφή «http://www.example.com»", @@ -216,6 +219,7 @@ "Common.Views.OpenDialog.txtColon": "Άνω κάτω τελεία", "Common.Views.OpenDialog.txtComma": "Κόμμα", "Common.Views.OpenDialog.txtDelimiter": "Διαχωριστικό", + "Common.Views.OpenDialog.txtDestData": "Επιλογή θέσης για τα δεδομένα", "Common.Views.OpenDialog.txtEncoding": "Κωδικοποίηση", "Common.Views.OpenDialog.txtIncorrectPwd": "Το συνθηματικό είναι εσφαλμένο.", "Common.Views.OpenDialog.txtOpenFile": "Εισάγετε συνθηματικό για να ανοίξετε το αρχείο", @@ -527,6 +531,7 @@ "SSE.Controllers.DocumentHolder.txtUnderbar": "Μπάρα κάτω από κείμενο", "SSE.Controllers.DocumentHolder.txtUndoExpansion": "Αναίρεση αυτόματης έκτασης πίνακα", "SSE.Controllers.DocumentHolder.txtUseTextImport": "Χρήση οδηγού εισαγωγής κειμένου", + "SSE.Controllers.DocumentHolder.txtWarnUrl": "Η συσκευή και τα δεδομένα σας μπορεί να κινδυνεύσουν αν κάνετε κλικ σε αυτόν τον σύνδεσμο.
Θέλετε σίγουρα να συνεχίσετε;", "SSE.Controllers.DocumentHolder.txtWidth": "Πλάτος", "SSE.Controllers.FormulaDialog.sCategoryAll": "Όλα", "SSE.Controllers.FormulaDialog.sCategoryCube": "Κύβος", @@ -1391,7 +1396,10 @@ "SSE.Views.CellSettings.textBackground": "Χρώμα παρασκηνίου", "SSE.Views.CellSettings.textBorderColor": "Χρώμα", "SSE.Views.CellSettings.textBorders": "Τεχνοτροπία Περιγραμμάτων", + "SSE.Views.CellSettings.textClearRule": "Εκκαθάριση Κανόνων", "SSE.Views.CellSettings.textColor": "Γέμισμα με Χρώμα", + "SSE.Views.CellSettings.textColorScales": "Κλίμακες Χρωμάτων", + "SSE.Views.CellSettings.textCondFormat": "Μορφοποίηση υπό όρους", "SSE.Views.CellSettings.textControl": "Έλεγχος Κειμένου", "SSE.Views.CellSettings.textDataBars": "Μπάρες Δεδομένων", "SSE.Views.CellSettings.textDirection": "Κατεύθυνση", @@ -1620,6 +1628,7 @@ "SSE.Views.CreatePivotDialog.textSelectData": "Επιλογή δεδομένων", "SSE.Views.CreatePivotDialog.textTitle": "Δημιουργία Συγκεντρωτικού Πίνακα", "SSE.Views.CreatePivotDialog.txtEmpty": "Αυτό το πεδίο είναι υποχρεωτικό", + "SSE.Views.CreateSparklineDialog.textDestination": "Επιλογή θέσης για τα μικρογραφήματα", "SSE.Views.DataTab.capBtnGroup": "Ομάδα", "SSE.Views.DataTab.capBtnTextCustomSort": "Προσαρμοσμένη Ταξινόμηση", "SSE.Views.DataTab.capBtnTextDataValidation": "Επικύρωση Δεδομένων", @@ -2019,6 +2028,7 @@ "SSE.Views.FormatRulesEditDlg.textBottomBorders": "Κάτω Περιγράμματα", "SSE.Views.FormatRulesEditDlg.textCannotAddCF": "Δεν είναι δυνατή η προσθήκη της μορφοποίησης υπό όρους.", "SSE.Views.FormatRulesEditDlg.textCellMidpoint": "Μέσον κελιού", + "SSE.Views.FormatRulesEditDlg.textClear": "Εκκαθάριση", "SSE.Views.FormatRulesEditDlg.textColor": "Χρώμα κειμένου", "SSE.Views.FormatRulesEditDlg.textFill": "Γέμισμα", "SSE.Views.FormatRulesEditDlg.textFormat": "Μορφή", @@ -2059,6 +2069,7 @@ "SSE.Views.FormatRulesManagerDlg.textNotContains": "Η τιμή του κελιού δεν περιέχει", "SSE.Views.FormatRulesManagerDlg.textNotContainsBlank": "Το κελί δεν περιέχει μια κενή τιμή", "SSE.Views.FormatRulesManagerDlg.textNotContainsError": "Το κελί δεν περιέχει σφάλμα", + "SSE.Views.FormatRulesManagerDlg.txtTitle": "Μορφοποίηση Υπό Όρους", "SSE.Views.FormatSettingsDialog.textCategory": "Κατηγορία", "SSE.Views.FormatSettingsDialog.textDecimal": "Δεκαδικός", "SSE.Views.FormatSettingsDialog.textFormat": "Μορφή", @@ -2928,6 +2939,7 @@ "SSE.Views.TextArtSettings.txtPapyrus": "Πάπυρος", "SSE.Views.TextArtSettings.txtWood": "Ξύλο", "SSE.Views.Toolbar.capBtnAddComment": "Προσθήκη Σχολίου", + "SSE.Views.Toolbar.capBtnColorSchemas": "Σύστημα Χρωμάτων", "SSE.Views.Toolbar.capBtnComment": "Σχόλιο", "SSE.Views.Toolbar.capBtnInsHeader": "Κεφαλίδα/Υποσέλιδο", "SSE.Views.Toolbar.capBtnInsSlicer": "Αναλυτής", @@ -2971,7 +2983,9 @@ "SSE.Views.Toolbar.textBottomBorders": "Κάτω Περιγράμματα", "SSE.Views.Toolbar.textCenterBorders": "Εσωτερικά Κατακόρυφα Περιγράμματα", "SSE.Views.Toolbar.textClearPrintArea": "Εκκαθάριση Περιοχής Εκτύπωσης", + "SSE.Views.Toolbar.textClearRule": "Εκκαθάριση Κανόνων", "SSE.Views.Toolbar.textClockwise": "Γωνία Δεξιόστροφα", + "SSE.Views.Toolbar.textColorScales": "Κλίμακες Χρωμάτων", "SSE.Views.Toolbar.textCounterCw": "Γωνία Αριστερόστροφα", "SSE.Views.Toolbar.textDataBars": "Μπάρες Δεδομένων", "SSE.Views.Toolbar.textDelLeft": "Ολίσθηση Κελιών Αριστερά", @@ -3046,6 +3060,7 @@ "SSE.Views.Toolbar.tipChangeChart": "Αλλαγή τύπου γραφήματος", "SSE.Views.Toolbar.tipClearStyle": "Εκκαθάριση", "SSE.Views.Toolbar.tipColorSchemas": "Αλλαγή χρωματικού σχεδίου", + "SSE.Views.Toolbar.tipCondFormat": "Μορφοποίηση υπό όρους", "SSE.Views.Toolbar.tipCopy": "Αντιγραφή", "SSE.Views.Toolbar.tipCopyStyle": "Αντιγραφή τεχνοτροπίας", "SSE.Views.Toolbar.tipDecDecimal": "Μείωση δεκαδικού", diff --git a/apps/spreadsheeteditor/main/locale/it.json b/apps/spreadsheeteditor/main/locale/it.json index e1eace6f9..6beee1c50 100644 --- a/apps/spreadsheeteditor/main/locale/it.json +++ b/apps/spreadsheeteditor/main/locale/it.json @@ -228,6 +228,7 @@ "Common.Views.Header.txtRename": "Rinomina", "Common.Views.History.textCloseHistory": "Chiudere cronologia", "Common.Views.History.textHide": "Ridurre", + "Common.Views.History.textShow": "Espandi", "Common.Views.ImageFromUrlDialog.textUrl": "Incolla URL immagine:", "Common.Views.ImageFromUrlDialog.txtEmpty": "Campo obbligatorio", "Common.Views.ImageFromUrlDialog.txtNotUrl": "Il formato URL richiesto è \"http://www.example.com\"", @@ -2693,6 +2694,8 @@ "SSE.Views.PrintTitlesDialog.textTop": "Ripeti righe in alto", "SSE.Views.ProtectDialog.txtAllow": "Permettere a tutti gli utenti del foglio di", "SSE.Views.ProtectDialog.txtIncorrectPwd": "La password di conferma non corrisponde", + "SSE.Views.ProtectRangesDlg.textDelete": "Elimina", + "SSE.Views.ProtectRangesDlg.textEdit": "Modifica", "SSE.Views.ProtectRangesDlg.txtTitle": "Permettere agli utenti di cambiare gli intervalli", "SSE.Views.ProtectRangesDlg.warnDelete": "Sei sicuro che vuoi eliminare il nome {0}?", "SSE.Views.RemoveDuplicatesDialog.textColumns": "Colonne", diff --git a/apps/spreadsheeteditor/main/locale/zh.json b/apps/spreadsheeteditor/main/locale/zh.json index 08b1e6882..299c1aa8d 100644 --- a/apps/spreadsheeteditor/main/locale/zh.json +++ b/apps/spreadsheeteditor/main/locale/zh.json @@ -3,19 +3,44 @@ "Common.Controllers.Chat.notcriticalErrorTitle": "警告", "Common.Controllers.Chat.textEnterMessage": "在这里输入你的信息", "Common.define.chartData.textArea": "区域", + "Common.define.chartData.textAreaStackedPer": "百分比堆积面积图", "Common.define.chartData.textBar": "条", + "Common.define.chartData.textBarNormal": "簇状柱形图", + "Common.define.chartData.textBarNormal3d": "三维簇状柱形图", + "Common.define.chartData.textBarNormal3dPerspective": "三维柱形图", + "Common.define.chartData.textBarStacked3d": "三维堆积柱形图", + "Common.define.chartData.textBarStackedPer": "百分比堆积柱形图", + "Common.define.chartData.textBarStackedPer3d": "三维百分比堆积柱形图", "Common.define.chartData.textCharts": "图表", "Common.define.chartData.textColumn": "列", "Common.define.chartData.textColumnSpark": "列", + "Common.define.chartData.textComboBarLine": "簇状柱形图 - 折线图", + "Common.define.chartData.textDoughnut": "圆环图​​", + "Common.define.chartData.textHBarNormal3d": "三维簇状条形图", + "Common.define.chartData.textHBarStacked3d": "三维堆积条形图", + "Common.define.chartData.textHBarStackedPer": "百分比堆积条形图", + "Common.define.chartData.textHBarStackedPer3d": "三维百分比堆积条形图", "Common.define.chartData.textLine": "线", + "Common.define.chartData.textLine3d": "三维直线图", "Common.define.chartData.textLineSpark": "线", + "Common.define.chartData.textLineStackedPer": "百分比堆积折线图", + "Common.define.chartData.textLineStackedPerMarker": "有标记的百分比堆积折线图", "Common.define.chartData.textPie": "派", + "Common.define.chartData.textPie3d": "三维饼图", "Common.define.chartData.textPoint": "XY(散射)", "Common.define.chartData.textSparks": "迷你", "Common.define.chartData.textStock": "股票", "Common.define.chartData.textSurface": "平面", "Common.define.chartData.textWinLossSpark": "赢/输", + "Common.define.conditionalData.exampleText": "AaBbCcYyZz", + "Common.define.conditionalData.textAverage": "平均值", + "Common.define.conditionalData.textBegins": "始于", + "Common.define.conditionalData.textEqual": "等于", + "Common.define.conditionalData.textError": "错误", + "Common.define.conditionalData.textFormula": "公式", "Common.Translation.warnFileLocked": "另一个应用程序正在编辑本文件。你可以继续编辑,并另存为副本。", + "Common.UI.ButtonColored.textAutoColor": "自动", + "Common.UI.ButtonColored.textNewColor": "添加新的自定义颜色", "Common.UI.ComboBorderSize.txtNoBorders": "没有边框", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "没有边框", "Common.UI.ComboDataView.emptyComboText": "没有风格", @@ -59,6 +84,7 @@ "Common.Views.About.txtTel": "电话:", "Common.Views.About.txtVersion": "版本", "Common.Views.AutoCorrectDialog.textAdd": "新增", + "Common.Views.AutoCorrectDialog.textAutoCorrect": "自动更正", "Common.Views.AutoCorrectDialog.textAutoFormat": "输入时自动调整格式", "Common.Views.AutoCorrectDialog.textBy": "依据", "Common.Views.AutoCorrectDialog.textDelete": "删除", @@ -72,6 +98,9 @@ "Common.Views.AutoCorrectDialog.textWarnResetRec": "由您新增的表达式将被移除,由您移除的将被恢复。是否继续?", "Common.Views.AutoCorrectDialog.warnReset": "即将移除对自动更正功能所做的自定义设置,并恢复默认值。是否继续?", "Common.Views.Chat.textSend": "发送", + "Common.Views.Comments.mniAuthorAsc": "作者 A到Z", + "Common.Views.Comments.mniAuthorDesc": "作者 Z到A", + "Common.Views.Comments.mniPositionDesc": "从底部", "Common.Views.Comments.textAdd": "添加", "Common.Views.Comments.textAddComment": "添加批注", "Common.Views.Comments.textAddCommentToDoc": "添加批注到文档", @@ -120,6 +149,7 @@ "Common.Views.Header.tipViewUsers": "查看用户和管理文档访问权限", "Common.Views.Header.txtAccessRights": "更改访问权限", "Common.Views.Header.txtRename": "重命名", + "Common.Views.History.textShow": "展开", "Common.Views.ImageFromUrlDialog.textUrl": "粘贴图片网址:", "Common.Views.ImageFromUrlDialog.txtEmpty": "这是必填栏", "Common.Views.ImageFromUrlDialog.txtNotUrl": "该字段应该是“http://www.example.com”格式的URL", @@ -310,6 +340,7 @@ "SSE.Controllers.DocumentHolder.leftText": "左", "SSE.Controllers.DocumentHolder.notcriticalErrorTitle": "警告", "SSE.Controllers.DocumentHolder.rightText": "右", + "SSE.Controllers.DocumentHolder.textAutoCorrectSettings": "自动更正选项", "SSE.Controllers.DocumentHolder.textChangeColumnWidth": "列宽{0}符号({1}像素)", "SSE.Controllers.DocumentHolder.textChangeRowHeight": "行高{0}分({1}个像素)", "SSE.Controllers.DocumentHolder.textCtrlClick": "单击链接打开,或单击并按住鼠标选择单元格。", @@ -579,7 +610,9 @@ "SSE.Controllers.Main.saveTitleText": "保存电子表格", "SSE.Controllers.Main.scriptLoadError": "连接速度过慢,部分组件无法被加载。请重新加载页面。", "SSE.Controllers.Main.textAnonymous": "匿名", + "SSE.Controllers.Main.textApplyAll": "应用于所有公式", "SSE.Controllers.Main.textBuyNow": "访问网站", + "SSE.Controllers.Main.textChangesSaved": "所有更改保存好了", "SSE.Controllers.Main.textClose": "关闭", "SSE.Controllers.Main.textCloseTip": "点击关闭提示", "SSE.Controllers.Main.textConfirm": "确认", @@ -622,6 +655,7 @@ "SSE.Controllers.Main.txtLines": "行", "SSE.Controllers.Main.txtMath": "数学", "SSE.Controllers.Main.txtMultiSelect": "多选模式 (Alt+S)", + "SSE.Controllers.Main.txtOr": "%1或%2", "SSE.Controllers.Main.txtPage": "页面", "SSE.Controllers.Main.txtPageOf": "第%1页,共%2页", "SSE.Controllers.Main.txtPages": "页面", @@ -1314,6 +1348,7 @@ "SSE.Views.ChartDataRangeDialog.errorStockChart": "行顺序不正确,建立股票图表应将数据按照以下顺序放置在表格上:
开盘价,最高价格,最低价格,收盘价。", "SSE.Views.ChartDataRangeDialog.textInvalidRange": "无效的单元格范围", "SSE.Views.ChartDataRangeDialog.textSelectData": "选择数据", + "SSE.Views.ChartDataRangeDialog.txtTitleCategory": "坐标轴标题", "SSE.Views.ChartDataRangeDialog.txtValues": "值", "SSE.Views.ChartSettings.strLineWeight": "线宽", "SSE.Views.ChartSettings.strSparkColor": "颜色", @@ -1481,10 +1516,12 @@ "SSE.Views.DataTab.tipRemDuplicates": "从表单中移除多次出现的行", "SSE.Views.DataTab.tipToColumns": "将单元格文本分隔成列", "SSE.Views.DataTab.tipUngroup": "取消单元格范围分组", + "SSE.Views.DataValidationDialog.strError": "错误警报", "SSE.Views.DataValidationDialog.strSettings": "设置", "SSE.Views.DataValidationDialog.textAlert": "提示", "SSE.Views.DataValidationDialog.textAllow": "允许", "SSE.Views.DataValidationDialog.textData": "数据", + "SSE.Views.DataValidationDialog.textError": "错误消息", "SSE.Views.DataValidationDialog.textFormula": "公式", "SSE.Views.DataValidationDialog.textMax": "最大值", "SSE.Views.DataValidationDialog.textMessage": "信息", @@ -1751,6 +1788,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtDe": "德语", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEn": "英语", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEs": "西班牙语", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtFi": "芬兰语", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtFr": "法语", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtInch": "寸", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtIt": "意大利语", @@ -1766,6 +1804,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStopMacrosDesc": "解除所有不带通知的宏", "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": "忽略大写单词", @@ -1786,6 +1825,22 @@ "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.textAppearance": "条形图外观", + "SSE.Views.FormatRulesEditDlg.textApply": "应用于范围", + "SSE.Views.FormatRulesEditDlg.textAutomatic": "自动", + "SSE.Views.FormatRulesEditDlg.textAxis": "轴", + "SSE.Views.FormatRulesEditDlg.textBarDirection": "条形图方向", + "SSE.Views.FormatRulesEditDlg.textFill": "填充", + "SSE.Views.FormatRulesEditDlg.textFormat": "格式", + "SSE.Views.FormatRulesEditDlg.textFormula": "公式", + "SSE.Views.FormatRulesEditDlg.textInvalidRange": "错误!单元格范围无效。", + "SSE.Views.FormatRulesEditDlg.textNewColor": "添加新的自定义颜色", + "SSE.Views.FormatRulesEditDlg.txtFraction": "分数", + "SSE.Views.FormatRulesManagerDlg.textAbove": "高于平均值", + "SSE.Views.FormatRulesManagerDlg.textApply": "应用于", + "SSE.Views.FormatRulesManagerDlg.textFormat": "格式", "SSE.Views.FormatSettingsDialog.textCategory": "分类", "SSE.Views.FormatSettingsDialog.textDecimal": "十进制", "SSE.Views.FormatSettingsDialog.textFormat": "格式", @@ -2076,6 +2131,7 @@ "SSE.Views.PivotDigitalFilterDialog.txtAnd": "且", "SSE.Views.PivotDigitalFilterDialog.txtTitleLabel": "标签过滤器", "SSE.Views.PivotDigitalFilterDialog.txtTitleValue": "按值筛选", + "SSE.Views.PivotGroupDialog.textAuto": "自动", "SSE.Views.PivotSettings.textAdvanced": "显示高级设置", "SSE.Views.PivotSettings.textColumns": "列", "SSE.Views.PivotSettings.textFields": "选择字段", @@ -2195,6 +2251,11 @@ "SSE.Views.PrintTitlesDialog.textSelectRange": "选取范围", "SSE.Views.PrintTitlesDialog.textTitle": "打印标题", "SSE.Views.PrintTitlesDialog.textTop": "在顶部重复一行", + "SSE.Views.ProtectDialog.textInvalidRange": "错误!单元格范围无效。", + "SSE.Views.ProtectDialog.txtFormatCells": "设置单元格格式", + "SSE.Views.ProtectDialog.txtFormatCols": "设置列格式", + "SSE.Views.ProtectDialog.txtFormatRows": "设置行格式", + "SSE.Views.ProtectRangesDlg.txtTitle": "允许用户编辑范围", "SSE.Views.RemoveDuplicatesDialog.textColumns": "列", "SSE.Views.RemoveDuplicatesDialog.textHeaders": "我的数据有题头", "SSE.Views.RemoveDuplicatesDialog.textSelectAll": "全选", @@ -2632,6 +2693,7 @@ "SSE.Views.Toolbar.textAlignTop": "顶端对齐", "SSE.Views.Toolbar.textAllBorders": "所有边框", "SSE.Views.Toolbar.textAuto": "自动", + "SSE.Views.Toolbar.textAutoColor": "自动", "SSE.Views.Toolbar.textBold": "加粗", "SSE.Views.Toolbar.textBordersColor": "边框颜色", "SSE.Views.Toolbar.textBordersStyle": "边框风格", @@ -2870,7 +2932,12 @@ "SSE.Views.ViewTab.textClose": "关闭", "SSE.Views.ViewTab.textCreate": "新", "SSE.Views.ViewTab.textDefault": "默认", + "SSE.Views.ViewTab.textFormula": "公式栏", + "SSE.Views.ViewTab.textFreezeCol": "冻结首列", + "SSE.Views.ViewTab.textFreezeRow": "冻结首行", "SSE.Views.ViewTab.textGridlines": "网格线", "SSE.Views.ViewTab.textZoom": "放大", - "SSE.Views.ViewTab.tipFreeze": "冻结窗格" + "SSE.Views.ViewTab.tipFreeze": "冻结窗格", + "SSE.Views.WBProtection.hintAllowRanges": "允许编辑范围", + "SSE.Views.WBProtection.txtAllowRanges": "允许编辑范围" } \ No newline at end of file From 2af2e913a5fe4082c5b28ad2129881dd5fac880f Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Tue, 19 Oct 2021 15:05:38 +0300 Subject: [PATCH 66/67] [Mobile] Update translation --- apps/documenteditor/mobile/locale/el.json | 210 ++--- apps/documenteditor/mobile/locale/en.json | 2 +- apps/documenteditor/mobile/locale/it.json | 820 +++++++++--------- apps/documenteditor/mobile/locale/tr.json | 80 +- apps/documenteditor/mobile/locale/zh.json | 4 +- apps/presentationeditor/mobile/locale/be.json | 3 +- apps/presentationeditor/mobile/locale/bg.json | 3 +- apps/presentationeditor/mobile/locale/ca.json | 3 +- apps/presentationeditor/mobile/locale/cs.json | 3 +- apps/presentationeditor/mobile/locale/de.json | 3 +- apps/presentationeditor/mobile/locale/el.json | 3 +- apps/presentationeditor/mobile/locale/en.json | 2 +- apps/presentationeditor/mobile/locale/es.json | 3 +- apps/presentationeditor/mobile/locale/fr.json | 3 +- apps/presentationeditor/mobile/locale/hu.json | 3 +- apps/presentationeditor/mobile/locale/it.json | 148 ++-- apps/presentationeditor/mobile/locale/ja.json | 3 +- apps/presentationeditor/mobile/locale/ko.json | 3 +- apps/presentationeditor/mobile/locale/lo.json | 3 +- apps/presentationeditor/mobile/locale/lv.json | 3 +- apps/presentationeditor/mobile/locale/nb.json | 3 +- apps/presentationeditor/mobile/locale/nl.json | 3 +- apps/presentationeditor/mobile/locale/pl.json | 3 +- apps/presentationeditor/mobile/locale/pt.json | 3 +- apps/presentationeditor/mobile/locale/ro.json | 3 +- apps/presentationeditor/mobile/locale/ru.json | 3 +- apps/presentationeditor/mobile/locale/sk.json | 3 +- apps/presentationeditor/mobile/locale/sl.json | 3 +- apps/presentationeditor/mobile/locale/tr.json | 3 +- apps/presentationeditor/mobile/locale/uk.json | 3 +- apps/presentationeditor/mobile/locale/vi.json | 3 +- apps/presentationeditor/mobile/locale/zh.json | 67 +- apps/spreadsheeteditor/mobile/locale/ca.json | 10 +- apps/spreadsheeteditor/mobile/locale/de.json | 2 +- apps/spreadsheeteditor/mobile/locale/en.json | 4 +- apps/spreadsheeteditor/mobile/locale/es.json | 2 +- apps/spreadsheeteditor/mobile/locale/fr.json | 6 +- apps/spreadsheeteditor/mobile/locale/it.json | 4 +- apps/spreadsheeteditor/mobile/locale/ja.json | 2 +- apps/spreadsheeteditor/mobile/locale/ko.json | 2 +- apps/spreadsheeteditor/mobile/locale/nl.json | 2 +- apps/spreadsheeteditor/mobile/locale/pt.json | 6 +- apps/spreadsheeteditor/mobile/locale/ro.json | 2 +- apps/spreadsheeteditor/mobile/locale/ru.json | 2 +- apps/spreadsheeteditor/mobile/locale/zh.json | 2 +- 45 files changed, 738 insertions(+), 713 deletions(-) diff --git a/apps/documenteditor/mobile/locale/el.json b/apps/documenteditor/mobile/locale/el.json index e6ca0528d..33c407da8 100644 --- a/apps/documenteditor/mobile/locale/el.json +++ b/apps/documenteditor/mobile/locale/el.json @@ -1,7 +1,7 @@ { "About": { - "textAbout": "About", - "textAddress": "Address", + "textAbout": "Περί", + "textAddress": "Διεύθυνση", "textBack": "Back", "textEmail": "Email", "textPoweredBy": "Powered By", @@ -9,9 +9,9 @@ "textVersion": "Version" }, "Add": { + "textAddLink": "Προσθήκη συνδέσμου", + "textAddress": "Διεύθυνση", "notcriticalErrorTitle": "Warning", - "textAddLink": "Add link", - "textAddress": "Address", "textBack": "Back", "textBelowText": "Below text", "textBottomOfPage": "Bottom of page", @@ -60,14 +60,20 @@ }, "Common": { "Collaboration": { + "textAccept": "Αποδοχή", + "textAcceptAllChanges": "Αποδοχή όλων των αλλαγών", + "textAddComment": "Προσθήκη σχολίου", + "textAddReply": "Προσθήκη απάντησης", + "textAllChangesAcceptedPreview": "Όλες οι αλλαγές έγιναν αποδεκτές (Προεπισκόπηση)", + "textAllChangesEditing": "Όλες οι αλλαγές (Επεξεργασία)", + "textAllChangesRejectedPreview": "Όλες οι αλλαγές απορρίφθηκαν (Προεπισκόπηση)", + "textCaps": "Όλα κεφαλαία", + "textCenter": "Στοίχιση στο κέντρο", + "textJustify": "Στοίχιση πλήρης", + "textLeft": "Στοίχιση αριστερά", + "textNoContextual": "Προσθήκη διαστήματος μεταξύ παραγράφων της ίδιας τεχνοτροπίας", + "textRight": "Στοίχιση δεξιά", "notcriticalErrorTitle": "Warning", - "textAccept": "Accept", - "textAcceptAllChanges": "Accept all changes", - "textAddComment": "Add comment", - "textAddReply": "Add reply", - "textAllChangesAcceptedPreview": "All changes accepted (Preview)", - "textAllChangesEditing": "All changes (Editing)", - "textAllChangesRejectedPreview": "All changes rejected (Preview)", "textAtLeast": "at least", "textAuto": "auto", "textBack": "Back", @@ -75,8 +81,6 @@ "textBold": "Bold", "textBreakBefore": "Page break before", "textCancel": "Cancel", - "textCaps": "All caps", - "textCenter": "Align center", "textChart": "Chart", "textCollaboration": "Collaboration", "textColor": "Font color", @@ -104,10 +108,8 @@ "textIndentRight": "Indent right", "textInserted": "Inserted:", "textItalic": "Italic", - "textJustify": "Align justified ", "textKeepLines": "Keep lines together", "textKeepNext": "Keep with next", - "textLeft": "Align left", "textLineSpacing": "Line Spacing: ", "textMarkup": "Markup", "textMessageDeleteComment": "Do you really want to delete this comment?", @@ -116,12 +118,12 @@ "textNoBreakBefore": "No page break before", "textNoChanges": "There are no changes.", "textNoComments": "This document doesn't contain comments", - "textNoContextual": "Add interval between paragraphs of the same style", "textNoKeepLines": "Don't keep lines together", "textNoKeepNext": "Don't keep with next", "textNot": "Not ", "textNoWidow": "No widow control", "textNum": "Change numbering", + "textOk": "Ok", "textOriginal": "Original", "textParaDeleted": "Paragraph Deleted", "textParaFormatted": "Paragraph Formatted", @@ -136,7 +138,6 @@ "textResolve": "Resolve", "textReview": "Review", "textReviewChange": "Review Change", - "textRight": "Align right", "textShape": "Shape", "textShd": "Background color", "textSmallCaps": "Small caps", @@ -154,8 +155,7 @@ "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", "textUnderline": "Underline", "textUsers": "Users", - "textWidow": "Widow control", - "textOk": "Ok" + "textWidow": "Widow control" }, "ThemeColorPalette": { "textCustomColors": "Custom Colors", @@ -164,46 +164,46 @@ } }, "ContextMenu": { + "menuAddComment": "Προσθήκη σχολίου", + "menuAddLink": "Προσθήκη συνδέσμου", "errorCopyCutPaste": "Copy, cut and paste actions using the context menu will be performed within the current file only.", - "menuAddComment": "Add comment", - "menuAddLink": "Add link", "menuCancel": "Cancel", + "menuContinueNumbering": "Continue numbering", "menuDelete": "Delete", "menuDeleteTable": "Delete Table", "menuEdit": "Edit", + "menuJoinList": "Join to previous list", "menuMerge": "Merge", "menuMore": "More", "menuOpenLink": "Open Link", "menuReview": "Review", "menuReviewChange": "Review Change", + "menuSeparateList": "Separate list", "menuSplit": "Split", + "menuStartNewList": "Start new list", + "menuStartNumberingFrom": "Set numbering value", "menuViewComment": "View Comment", + "textCancel": "Cancel", "textColumns": "Columns", "textCopyCutPasteActions": "Copy, Cut and Paste Actions", "textDoNotShowAgain": "Don't show again", - "textRows": "Rows", - "menuStartNewList": "Start new list", - "menuStartNumberingFrom": "Set numbering value", - "menuContinueNumbering": "Continue numbering", - "menuSeparateList": "Separate list", - "menuJoinList": "Join to previous list", + "textNumberingValue": "Numbering Value", "textOk": "OK", - "textCancel": "Cancel", - "textNumberingValue": "Numbering Value" + "textRows": "Rows" }, "Edit": { + "textActualSize": "Πραγματικό μέγεθος", + "textAddCustomColor": "Προσθήκη προσαρμοσμένου χρώματος", + "textAdditional": "Επιπρόσθετα", + "textAdditionalFormatting": "Πρόσθετη μορφοποίηση", + "textAddress": "Διεύθυνση", + "textAdvanced": "Για προχωρημένους", + "textAdvancedSettings": "Προηγμένες ρυθμίσεις", + "textAfter": "Μετά", + "textAlign": "Στοίχιση", + "textAllCaps": "Όλα κεφαλαία", + "textAllowOverlap": "Να επιτρέπεται η επικάλυψη", "notcriticalErrorTitle": "Warning", - "textActualSize": "Actual size", - "textAddCustomColor": "Add custom color", - "textAdditional": "Additional", - "textAdditionalFormatting": "Additional formatting", - "textAddress": "Address", - "textAdvanced": "Advanced", - "textAdvancedSettings": "Advanced settings", - "textAfter": "After", - "textAlign": "Align", - "textAllCaps": "All caps", - "textAllowOverlap": "Allow overlap", "textAuto": "Auto", "textAutomatic": "Automatic", "textBack": "Back", @@ -260,6 +260,7 @@ "textNone": "None", "textNoStyles": "No styles for this type of charts.", "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "textNumbers": "Numbers", "textOpacity": "Opacity", "textOptions": "Options", "textOrphanControl": "Orphan Control", @@ -303,16 +304,17 @@ "textTopAndBottom": "Top and Bottom", "textTotalRow": "Total Row", "textType": "Type", - "textWrap": "Wrap", - "textNumbers": "Numbers" + "textWrap": "Wrap" }, "Error": { + "openErrorText": "Σφάλμα κατά το άνοιγμα του αρχείου", + "saveErrorText": "Σφάλμα κατά την αποθήκευση του αρχείου", "convertationTimeoutText": "Conversion timeout exceeded.", "criticalErrorExtText": "Press 'OK' to go back to the document list.", "criticalErrorTitle": "Error", "downloadErrorText": "Download failed.", "errorAccessDeny": "You are trying to perform an action you do not have rights for.
Please, contact your admin.", - "errorBadImageUrl": "Image url is incorrect", + "errorBadImageUrl": "Image URL is incorrect", "errorConnectToServer": "Can't save this doc. Check your connection settings or contact the admin.
When you click OK, you will be prompted to download the document.", "errorDatabaseConnection": "External error.
Database connection error. Please, contact support.", "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", @@ -323,6 +325,7 @@ "errorFileSizeExceed": "The file size exceeds your server limit.
Please, contact your admin.", "errorKeyEncrypt": "Unknown key descriptor", "errorKeyExpire": "Key descriptor expired", + "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator.", "errorMailMergeLoadFile": "Loading failed", "errorMailMergeSaveFile": "Merge failed.", "errorSessionAbsolute": "The document editing session has expired. Please, reload the page.", @@ -332,10 +335,8 @@ "errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.", "errorUserDrop": "The file can't be accessed right now.", "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", - "errorViewerDisconnect": "Connection is lost. You can still view the document,
but you won't be able to download it until the connection is restored and the page is reloaded.", + "errorViewerDisconnect": "Connection is lost. You can still view the document,
but you won't be able to download or print it until the connection is restored and the page is reloaded.", "notcriticalErrorTitle": "Warning", - "openErrorText": "An error has occurred while opening the file", - "saveErrorText": "An error has occurred while saving the file", "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.", "splitDividerErrorText": "The number of rows must be a divisor of %1", "splitMaxColsErrorText": "The number of columns must be less than %1", @@ -343,56 +344,12 @@ "unknownErrorText": "Unknown error.", "uploadImageExtMessage": "Unknown image format.", "uploadImageFileCountMessage": "No images uploaded.", - "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.", - "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." - }, - "LongActions": { - "applyChangesTextText": "Loading data...", - "applyChangesTitleText": "Loading Data", - "downloadMergeText": "Downloading...", - "downloadMergeTitle": "Downloading", - "downloadTextText": "Downloading document...", - "downloadTitleText": "Downloading Document", - "loadFontsTextText": "Loading data...", - "loadFontsTitleText": "Loading Data", - "loadFontTextText": "Loading data...", - "loadFontTitleText": "Loading Data", - "loadImagesTextText": "Loading images...", - "loadImagesTitleText": "Loading Images", - "loadImageTextText": "Loading image...", - "loadImageTitleText": "Loading Image", - "loadingDocumentTextText": "Loading document...", - "loadingDocumentTitleText": "Loading document", - "mailMergeLoadFileText": "Loading Data Source...", - "mailMergeLoadFileTitle": "Loading Data Source", - "openTextText": "Opening document...", - "openTitleText": "Opening Document", - "printTextText": "Printing document...", - "printTitleText": "Printing Document", - "savePreparingText": "Preparing to save", - "savePreparingTitle": "Preparing to save. Please wait...", - "saveTextText": "Saving document...", - "saveTitleText": "Saving Document", - "sendMergeText": "Sending Merge...", - "sendMergeTitle": "Sending Merge", - "textLoadingDocument": "Loading document", - "txtEditingMode": "Set editing mode...", - "uploadImageTextText": "Uploading image...", - "uploadImageTitleText": "Uploading Image", - "waitText": "Please, wait..." + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." }, "Main": { - "criticalErrorTitle": "Error", - "errorAccessDeny": "You are trying to perform an action you do not have rights for.
Please, contact your administrator.", - "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", - "errorProcessSaveResult": "Saving failed.", - "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", - "errorUpdateVersion": "The file version has been changed. The page will be reloaded.", - "leavePageText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", - "notcriticalErrorTitle": "Warning", "SDK": { - " -Section ": " -Section ", - "above": "above", + " -Section ": "-Τμήμα", + "above": "πάνω από", "below": "below", "Caption": "Caption", "Choose an item": "Choose an item", @@ -452,6 +409,14 @@ "Your text here": "Your text here", "Zero Divide": "Zero Divide" }, + "criticalErrorTitle": "Error", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
Please, contact your administrator.", + "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", + "errorProcessSaveResult": "Saving failed.", + "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", + "errorUpdateVersion": "The file version has been changed. The page will be reloaded.", + "leavePageText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "notcriticalErrorTitle": "Warning", "textAnonymous": "Anonymous", "textBuyNow": "Visit website", "textClose": "Close", @@ -477,12 +442,12 @@ "warnProcessRightsChange": "You don't have permission to edit this file." }, "Settings": { + "textAbout": "Περί", "advDRMOptions": "Protected File", "advDRMPassword": "Password", "advTxtOptions": "Choose TXT Options", "closeButtonText": "Close File", "notcriticalErrorTitle": "Warning", - "textAbout": "About", "textApplication": "Application", "textApplicationSettings": "Application settings", "textAuthor": "Author", @@ -491,6 +456,8 @@ "textCancel": "Cancel", "textCaseSensitive": "Case Sensitive", "textCentimeter": "Centimeter", + "textChooseEncoding": "Choose Encoding", + "textChooseTxtOptions": "Choose TXT Options", "textCollaboration": "Collaboration", "textColorSchemes": "Color Schemes", "textComment": "Comment", @@ -532,9 +499,12 @@ "textMarginsW": "Left and right margins are too wide for a given page width", "textNoCharacters": "Nonprinting Characters", "textNoTextFound": "Text not found", + "textOk": "Ok", "textOpenFile": "Enter a password to open the file", "textOrientation": "Orientation", "textOwner": "Owner", + "textPages": "Pages", + "textParagraphs": "Paragraphs", "textPoint": "Point", "textPortrait": "Portrait", "textPrint": "Print", @@ -546,14 +516,19 @@ "textSearch": "Search", "textSettings": "Settings", "textShowNotification": "Show Notification", + "textSpaces": "Spaces", "textSpellcheck": "Spell Checking", "textStatistic": "Statistic", "textSubject": "Subject", + "textSymbols": "Symbols", "textTitle": "Title", "textTop": "Top", "textUnitOfMeasurement": "Unit Of Measurement", "textUploaded": "Uploaded", + "textWords": "Words", + "txtDownloadTxt": "Download TXT", "txtIncorrectPwd": "Password is incorrect", + "txtOk": "Ok", "txtProtected": "Once you enter the password and open the file, the current password will be reset", "txtScheme1": "Office", "txtScheme10": "Median", @@ -576,17 +551,42 @@ "txtScheme6": "Concourse", "txtScheme7": "Equity", "txtScheme8": "Flow", - "txtScheme9": "Foundry", - "textOk": "Ok", - "textChooseEncoding": "Choose Encoding", - "textChooseTxtOptions": "Choose TXT Options", - "txtDownloadTxt": "Download TXT", - "txtOk": "Ok", - "textPages": "Pages", - "textParagraphs": "Paragraphs", - "textSpaces": "Spaces", - "textSymbols": "Symbols", - "textWords": "Words" + "txtScheme9": "Foundry" + }, + "LongActions": { + "applyChangesTextText": "Loading data...", + "applyChangesTitleText": "Loading Data", + "downloadMergeText": "Downloading...", + "downloadMergeTitle": "Downloading", + "downloadTextText": "Downloading document...", + "downloadTitleText": "Downloading Document", + "loadFontsTextText": "Loading data...", + "loadFontsTitleText": "Loading Data", + "loadFontTextText": "Loading data...", + "loadFontTitleText": "Loading Data", + "loadImagesTextText": "Loading images...", + "loadImagesTitleText": "Loading Images", + "loadImageTextText": "Loading image...", + "loadImageTitleText": "Loading Image", + "loadingDocumentTextText": "Loading document...", + "loadingDocumentTitleText": "Loading document", + "mailMergeLoadFileText": "Loading Data Source...", + "mailMergeLoadFileTitle": "Loading Data Source", + "openTextText": "Opening document...", + "openTitleText": "Opening Document", + "printTextText": "Printing document...", + "printTitleText": "Printing Document", + "savePreparingText": "Preparing to save", + "savePreparingTitle": "Preparing to save. Please wait...", + "saveTextText": "Saving document...", + "saveTitleText": "Saving Document", + "sendMergeText": "Sending Merge...", + "sendMergeTitle": "Sending Merge", + "textLoadingDocument": "Loading document", + "txtEditingMode": "Set editing mode...", + "uploadImageTextText": "Uploading image...", + "uploadImageTitleText": "Uploading Image", + "waitText": "Please, wait..." }, "Toolbar": { "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", diff --git a/apps/documenteditor/mobile/locale/en.json b/apps/documenteditor/mobile/locale/en.json index 9c0952163..cb0bdaffa 100644 --- a/apps/documenteditor/mobile/locale/en.json +++ b/apps/documenteditor/mobile/locale/en.json @@ -312,7 +312,7 @@ "criticalErrorTitle": "Error", "downloadErrorText": "Download failed.", "errorAccessDeny": "You are trying to perform an action you do not have rights for.
Please, contact your admin.", - "errorBadImageUrl": "Image url is incorrect", + "errorBadImageUrl": "Image URL is incorrect", "errorConnectToServer": "Can't save this doc. Check your connection settings or contact the admin.
When you click OK, you will be prompted to download the document.", "errorDatabaseConnection": "External error.
Database connection error. Please, contact support.", "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", diff --git a/apps/documenteditor/mobile/locale/it.json b/apps/documenteditor/mobile/locale/it.json index 6ed9fa2ab..0750fd357 100644 --- a/apps/documenteditor/mobile/locale/it.json +++ b/apps/documenteditor/mobile/locale/it.json @@ -4,11 +4,12 @@ "textAddress": "Indirizzo", "textBack": "Indietro", "textEmail": "Email", - "textPoweredBy": "Powered By", + "textPoweredBy": "Sviluppato da", "textTel": "Tel", - "textVersion": "Version" + "textVersion": "Versione" }, "Add": { + "notcriticalErrorTitle": "Avvertimento", "textAddLink": "Aggiungere link", "textAddress": "Indirizzo", "textBack": "Indietro", @@ -24,42 +25,42 @@ "textContinuousPage": "Pagina continua", "textCurrentPosition": "Posizione attuale", "textDisplay": "Visualizzare", - "notcriticalErrorTitle": "Warning", - "textEmptyImgUrl": "You need to specify image URL.", - "textEvenPage": "Even Page", - "textFootnote": "Footnote", - "textFormat": "Format", - "textImage": "Image", - "textImageURL": "Image URL", - "textInsert": "Insert", - "textInsertFootnote": "Insert Footnote", - "textInsertImage": "Insert Image", - "textLeftBottom": "Left Bottom", - "textLeftTop": "Left Top", - "textLink": "Link", - "textLinkSettings": "Link Settings", - "textLocation": "Location", - "textNextPage": "Next Page", - "textOddPage": "Odd Page", - "textOther": "Other", - "textPageBreak": "Page Break", - "textPageNumber": "Page Number", - "textPictureFromLibrary": "Picture from Library", - "textPictureFromURL": "Picture from URL", - "textPosition": "Position", - "textRightBottom": "Right Bottom", - "textRightTop": "Right Top", - "textRows": "Rows", - "textScreenTip": "Screen Tip", - "textSectionBreak": "Section Break", - "textShape": "Shape", - "textStartAt": "Start At", - "textTable": "Table", - "textTableSize": "Table Size", - "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"" + "textEmptyImgUrl": "Devi specificare l'URL dell'immagine.", + "textEvenPage": "Pagina pari", + "textFootnote": "Note a piè di pagina", + "textFormat": "Formato", + "textImage": "Immagine", + "textImageURL": "URL dell'immagine", + "textInsert": "Inserire", + "textInsertFootnote": "Inserire nota a piè di pagina", + "textInsertImage": "Inserire immagine", + "textLeftBottom": "In basso a sinistra", + "textLeftTop": "In alto a sinistra", + "textLink": "Collegamento", + "textLinkSettings": "Impostazioni di collegamento", + "textLocation": "Posizione", + "textNextPage": "Pagina successiva", + "textOddPage": "Pagina dispari", + "textOther": "Altro", + "textPageBreak": "Interruzione di pagina", + "textPageNumber": "Numero di pagina", + "textPictureFromLibrary": "Immagine dalla libreria", + "textPictureFromURL": "Immagine dall'URL", + "textPosition": "Posizione", + "textRightBottom": "In basso a destra", + "textRightTop": "In alto a destra", + "textRows": "Righe", + "textScreenTip": "Suggerimento su schermo", + "textSectionBreak": "Interruzione della sezione", + "textShape": "Forma", + "textStartAt": "Iniziare da", + "textTable": "Tabella", + "textTableSize": "Dimensione di tabella", + "txtNotUrl": "Questo campo deve essere un URL nel formato \"http://www.example.com\"" }, "Common": { "Collaboration": { + "notcriticalErrorTitle": "Avvertimento", "textAccept": "Accettare", "textAcceptAllChanges": "Accettare tutte le modifiche", "textAddComment": "Aggiungere commento", @@ -72,98 +73,98 @@ "textBack": "Indietro", "textBaseline": "Linea di base", "textBold": "Grassetto", + "textBreakBefore": "Interruzione di pagina davanti", "textCancel": "Annullare", "textCaps": "Tutto maiuscolo", "textCenter": "Allineare al centro", "textChart": "Grafico", "textCollaboration": "Collaborazione", + "textColor": "Colore di carattere", "textComments": "Commenti", + "textContextual": "Non aggiungere intervalli tra paragrafi dello stesso stile", "textDelete": "Eliminare", "textDeleteComment": "Eliminare commento", "textDeleted": "Eliminato:", "textDeleteReply": "Eliminare risposta", "textDisplayMode": "Modalità di visualizzazione", "textDone": "Fatto", + "textDStrikeout": "Barrato doppio", "textEdit": "Modificare", "textEditComment": "Modificare commento", "textEditReply": "Modificare risposta", + "textEditUser": "Utenti che stanno modificando il file:", + "textEquation": "Equazione", + "textExact": "esattamente", + "textFinal": "Finale", + "textFirstLine": "Prima linea", + "textFormatted": "Formattato", + "textHighlight": "Colore di evidenziazione", + "textImage": "Immagine", + "textIndentLeft": "Rientro sinistro", + "textIndentRight": "Rientro destro", + "textInserted": "Inserito:", + "textItalic": "Corsivo", "textJustify": "Allineamento giustificato", + "textKeepLines": "Mantenere le linee insieme", + "textKeepNext": "Mantenere con il successivo", "textLeft": "Allineare a sinistra", + "textLineSpacing": "Interlinea:", + "textMarkup": "Marcatura", "textMessageDeleteComment": "Sei sicuro di voler eliminare questo commento?", "textMessageDeleteReply": "Sei sicuro di voler eliminare questa risposta?", + "textMultiple": "multiplo", + "textNoBreakBefore": "Nessuna interruzione di pagina prima", + "textNoChanges": "Non ci sono cambiamenti.", + "textNoComments": "Questo documento non contiene commenti", "textNoContextual": "Aggiungere intervallo tra paragrafi dello stesso stile", + "textNoKeepLines": "Non tenere linee insieme", + "textNoKeepNext": "Non tenere con il prossimo", + "textNot": "Non", + "textNoWidow": "Nessun controllo vedovo", "textNum": "Cambiare numerazione", + "textOk": "OK", + "textOriginal": "Originale", + "textParaDeleted": "Paragrafo eliminato", + "textParaFormatted": "Paragrafo formattato", + "textParaInserted": "Paragrafo inserito", + "textParaMoveFromDown": "Spostato in basso:", + "textParaMoveFromUp": "Spostato in alto:", + "textParaMoveTo": "Spostato:", + "textPosition": "Posizione", + "textReject": "Rifiutare", + "textRejectAllChanges": "Rifiutare tutte le modifiche", + "textReopen": "Riaprire", + "textResolve": "Risolvere", + "textReview": "Revisione", + "textReviewChange": "Riesaminare le modifiche", "textRight": "Allineare a destra", + "textShape": "Forma", "textShd": "Colore di sfondo", + "textSmallCaps": "Maiuscoletto", + "textSpacing": "Spaziatura", + "textSpacingAfter": "Spaziatura dopo", + "textSpacingBefore": "Spaziatura prima", + "textStrikeout": "Barrato", + "textSubScript": "Pedice", + "textSuperScript": "Apice", + "textTableChanged": "Cambiati impostazioni di tabella", + "textTableRowsAdd": "Aggiunte le righe della tabella", + "textTableRowsDel": "Eliminate le righe della tabella", "textTabs": "Cambiare tabulazioni", - "notcriticalErrorTitle": "Warning", - "textBreakBefore": "Page break before", - "textColor": "Font color", - "textContextual": "Don't add intervals between paragraphs of the same style", - "textDStrikeout": "Double strikeout", - "textEditUser": "Users who are editing the file:", - "textEquation": "Equation", - "textExact": "exactly", - "textFinal": "Final", - "textFirstLine": "First line", - "textFormatted": "Formatted", - "textHighlight": "Highlight color", - "textImage": "Image", - "textIndentLeft": "Indent left", - "textIndentRight": "Indent right", - "textInserted": "Inserted:", - "textItalic": "Italic", - "textKeepLines": "Keep lines together", - "textKeepNext": "Keep with next", - "textLineSpacing": "Line Spacing: ", - "textMarkup": "Markup", - "textMultiple": "multiple", - "textNoBreakBefore": "No page break before", - "textNoChanges": "There are no changes.", - "textNoComments": "This document doesn't contain comments", - "textNoKeepLines": "Don't keep lines together", - "textNoKeepNext": "Don't keep with next", - "textNot": "Not ", - "textNoWidow": "No widow control", - "textOk": "Ok", - "textOriginal": "Original", - "textParaDeleted": "Paragraph Deleted", - "textParaFormatted": "Paragraph Formatted", - "textParaInserted": "Paragraph Inserted", - "textParaMoveFromDown": "Moved Down:", - "textParaMoveFromUp": "Moved Up:", - "textParaMoveTo": "Moved:", - "textPosition": "Position", - "textReject": "Reject", - "textRejectAllChanges": "Reject All Changes", - "textReopen": "Reopen", - "textResolve": "Resolve", - "textReview": "Review", - "textReviewChange": "Review Change", - "textShape": "Shape", - "textSmallCaps": "Small caps", - "textSpacing": "Spacing", - "textSpacingAfter": "Spacing after", - "textSpacingBefore": "Spacing before", - "textStrikeout": "Strikeout", - "textSubScript": "Subscript", - "textSuperScript": "Superscript", - "textTableChanged": "Table Settings Changed", - "textTableRowsAdd": "Table Rows Added", - "textTableRowsDel": "Table Rows Deleted", - "textTrackChanges": "Track Changes", - "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", - "textUnderline": "Underline", - "textUsers": "Users", - "textWidow": "Widow control" + "textTrackChanges": "Tracciare cambiamenti", + "textTryUndoRedo": "Le funzioni Annulla/Ripeti sono disattivate nella modalità rapida di modifica collaborativa.", + "textUnderline": "Sottolineato", + "textUsers": "Utenti", + "textWidow": "Controllo vedovo" }, "ThemeColorPalette": { "textCustomColors": "Colori personalizzati", - "textStandartColors": "Standard Colors", - "textThemeColors": "Theme Colors" + "textStandartColors": "Colori standard", + "textThemeColors": "Colori del tema" } }, "ContextMenu": { + "errorCopyCutPaste": "Azioni di copia, taglia e incolla usate dal menu contestuale verranno eseguite solo all'interno del file corrente.", "menuAddComment": "Aggiungere commento", "menuAddLink": "Aggiungere link", "menuCancel": "Annullare", @@ -171,27 +172,27 @@ "menuDelete": "Eliminare", "menuDeleteTable": "Eliminare tabella", "menuEdit": "Modificare", + "menuJoinList": "Unire all'elenco precedente", + "menuMerge": "Unire", + "menuMore": "Di più", + "menuOpenLink": "Aprire link", + "menuReview": "Revisione", + "menuReviewChange": "Riesaminare le modifiche", + "menuSeparateList": "Elenco separato", + "menuSplit": "Dividere", + "menuStartNewList": "Iniziare nuovo elenco", + "menuStartNumberingFrom": "Impostare il valore numerico", + "menuViewComment": "Visualizzare commento", "textCancel": "Annullare", "textColumns": "Colonne", "textCopyCutPasteActions": "Funzioni di Copiare, Tagliare e Incollare", - "errorCopyCutPaste": "Copy, cut and paste actions using the context menu will be performed within the current file only.", - "menuJoinList": "Join to previous list", - "menuMerge": "Merge", - "menuMore": "More", - "menuOpenLink": "Open Link", - "menuReview": "Review", - "menuReviewChange": "Review Change", - "menuSeparateList": "Separate list", - "menuSplit": "Split", - "menuStartNewList": "Start new list", - "menuStartNumberingFrom": "Set numbering value", - "menuViewComment": "View Comment", - "textDoNotShowAgain": "Don't show again", - "textNumberingValue": "Numbering Value", + "textDoNotShowAgain": "Non mostrare di nuovo", + "textNumberingValue": "Valore di numerazione", "textOk": "OK", - "textRows": "Rows" + "textRows": "Righe" }, "Edit": { + "notcriticalErrorTitle": "Avvertimento", "textActualSize": "Dimensione reale", "textAddCustomColor": "Aggiungere colore personalizzato", "textAdditional": "Aggiuntivo", @@ -222,166 +223,173 @@ "textContinueFromPreviousSection": "Continuare dalla sezione precedente", "textCustomColor": "Colore personalizzato", "textDifferentFirstPage": "Prima pagina diversa", + "textDifferentOddAndEvenPages": "Pagine pari e dispari diverse", "textDisplay": "Visualizzare", "textDistanceFromText": "Distanza dal testo", + "textDoubleStrikethrough": "Barrato doppio", "textEditLink": "Modificare link", "textEffects": "Effetti", - "notcriticalErrorTitle": "Warning", - "textDifferentOddAndEvenPages": "Different odd and even pages", - "textDoubleStrikethrough": "Double Strikethrough", - "textEmptyImgUrl": "You need to specify image URL.", - "textFill": "Fill", - "textFirstColumn": "First Column", - "textFirstLine": "FirstLine", - "textFlow": "Flow", - "textFontColor": "Font Color", - "textFontColors": "Font Colors", - "textFonts": "Fonts", - "textFooter": "Footer", - "textHeader": "Header", - "textHeaderRow": "Header Row", - "textHighlightColor": "Highlight Color", - "textHyperlink": "Hyperlink", - "textImage": "Image", - "textImageURL": "Image URL", - "textInFront": "In Front", - "textInline": "Inline", - "textKeepLinesTogether": "Keep Lines Together", - "textKeepWithNext": "Keep with Next", - "textLastColumn": "Last Column", - "textLetterSpacing": "Letter Spacing", - "textLineSpacing": "Line Spacing", - "textLink": "Link", - "textLinkSettings": "Link Settings", - "textLinkToPrevious": "Link to Previous", - "textMoveBackward": "Move Backward", - "textMoveForward": "Move Forward", - "textMoveWithText": "Move with Text", - "textNone": "None", - "textNoStyles": "No styles for this type of charts.", - "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", - "textNumbers": "Numbers", - "textOpacity": "Opacity", - "textOptions": "Options", - "textOrphanControl": "Orphan Control", - "textPageBreakBefore": "Page Break Before", - "textPageNumbering": "Page Numbering", - "textParagraph": "Paragraph", - "textParagraphStyles": "Paragraph Styles", - "textPictureFromLibrary": "Picture from Library", - "textPictureFromURL": "Picture from URL", + "textEmptyImgUrl": "Devi specificare l'URL dell'immagine.", + "textFill": "Riempire", + "textFirstColumn": "Prima colonna", + "textFirstLine": "PrimaLinea", + "textFlow": "Flusso", + "textFontColor": "Colore di carattere", + "textFontColors": "Colori di carattere", + "textFonts": "Caratteri", + "textFooter": "Piè di pagina", + "textHeader": "Intestazione", + "textHeaderRow": "Riga di intestazione", + "textHighlightColor": "Colore di evidenziazione", + "textHyperlink": "Collegamento ipertestuale", + "textImage": "Immagine", + "textImageURL": "URL dell'immagine", + "textInFront": "Davanti", + "textInline": "In linea", + "textKeepLinesTogether": "Mantenere le linee insieme", + "textKeepWithNext": "Mantenere con il successivo", + "textLastColumn": "Ultima colonna", + "textLetterSpacing": "Spaziatura delle lettere", + "textLineSpacing": "Interlinea", + "textLink": "Collegamento", + "textLinkSettings": "Impostazioni di collegamento", + "textLinkToPrevious": "Collegare al precedente", + "textMoveBackward": "Spostare indietro", + "textMoveForward": "Spostare avanti", + "textMoveWithText": "Spostare con testo", + "textNone": "Nessuno", + "textNoStyles": "Nessun stile per questo tipo di grafico.", + "textNotUrl": "Questo campo deve essere un URL nel formato \"http://www.example.com\"", + "textNumbers": "Numeri", + "textOpacity": "Opacità", + "textOptions": "Opzioni", + "textOrphanControl": "Controllo orfano", + "textPageBreakBefore": "Interruzione di pagina davanti", + "textPageNumbering": "Numerazione di pagine", + "textParagraph": "Paragrafo", + "textParagraphStyles": "Stili di paragrafo", + "textPictureFromLibrary": "Immagine dalla libreria", + "textPictureFromURL": "Immagine dall'URL", "textPt": "pt", - "textRemoveChart": "Remove Chart", - "textRemoveImage": "Remove Image", - "textRemoveLink": "Remove Link", - "textRemoveShape": "Remove Shape", - "textRemoveTable": "Remove Table", - "textReorder": "Reorder", - "textRepeatAsHeaderRow": "Repeat as Header Row", - "textReplace": "Replace", - "textReplaceImage": "Replace Image", - "textResizeToFitContent": "Resize to Fit Content", - "textScreenTip": "Screen Tip", - "textSelectObjectToEdit": "Select object to edit", - "textSendToBackground": "Send to Background", - "textSettings": "Settings", - "textShape": "Shape", - "textSize": "Size", - "textSmallCaps": "Small Caps", - "textSpaceBetweenParagraphs": "Space Between Paragraphs", - "textSquare": "Square", - "textStartAt": "Start at", - "textStrikethrough": "Strikethrough", - "textStyle": "Style", - "textStyleOptions": "Style Options", - "textSubscript": "Subscript", - "textSuperscript": "Superscript", - "textTable": "Table", - "textTableOptions": "Table Options", - "textText": "Text", - "textThrough": "Through", - "textTight": "Tight", - "textTopAndBottom": "Top and Bottom", - "textTotalRow": "Total Row", - "textType": "Type", - "textWrap": "Wrap" + "textRemoveChart": "Eliminare il grafico", + "textRemoveImage": "Eliminare immagine", + "textRemoveLink": "Eliminare link", + "textRemoveShape": "Eliminare forma", + "textRemoveTable": "Eliminare tabella", + "textReorder": "Riordinare", + "textRepeatAsHeaderRow": "Ripetere come riga di intestazione", + "textReplace": "Sostituire", + "textReplaceImage": "Sostituire l'immagine", + "textResizeToFitContent": "Ridimensionare per adattare il contenuto", + "textScreenTip": "Suggerimento su schermo", + "textSelectObjectToEdit": "Selezionare un oggetto per modificare", + "textSendToBackground": "Spostare in secondo piano", + "textSettings": "Impostazioni", + "textShape": "Forma", + "textSize": "Dimensione", + "textSmallCaps": "Maiuscoletto", + "textSpaceBetweenParagraphs": "Spazio tra paragrafi", + "textSquare": "Quadrato", + "textStartAt": "Iniziare da", + "textStrikethrough": "Barrato", + "textStyle": "Stile", + "textStyleOptions": "Opzioni di stile", + "textSubscript": "Pedice", + "textSuperscript": "Apice", + "textTable": "Tabella", + "textTableOptions": "Opzioni di tabella", + "textText": "Testo", + "textThrough": "Attraverso", + "textTight": "Stretto", + "textTopAndBottom": "Sopra e sotto", + "textTotalRow": "Riga totale", + "textType": "Tipo", + "textWrap": "Avvolgere" }, "Error": { "convertationTimeoutText": "È stato superato il tempo massimo della conversione.", + "criticalErrorExtText": "Premi 'OK' per tornare all'elenco dei documenti.", + "criticalErrorTitle": "Errore", "downloadErrorText": "Scaricamento fallito.", + "errorAccessDeny": "Stai cercando di eseguire un'azione per la quale non hai diritti.
Ti preghiamo di contattare il tuo amministratore.", + "errorBadImageUrl": "URL dell'immagine non è corretto", "errorConnectToServer": "Impossibile salvare questo documento. Controlla le impostazioni di connessione o contatta l'amministratore.
Cliccando su OK ti verrà richiesto di scaricare il documento.", + "errorDatabaseConnection": "Errore esterno.
Errore di connessione al database. Si prega di contattare il team di supporto.", + "errorDataEncrypted": "Le modifiche crittografate sono state ricevute, non possono essere decifrate.", + "errorDataRange": "Intervallo di dati non corretto.", + "errorDefaultMessage": "Codice errore: %1", "errorEditingDownloadas": "Si è verificato un errore durante il lavoro con il documento.
Scarica il documento per salvare il backup del file localmente.", + "errorFilePassProtect": "Il file è protetto da password e non può essere aperto.", + "errorFileSizeExceed": "La dimensione del file supera il limite del tuo server.
Ti preghiamo di contattare il tuo amministratore.", + "errorKeyEncrypt": "Descrittore della chiave sconosciuto", + "errorKeyExpire": "Descrittore di chiave scaduto", + "errorLoadingFont": "I caratteri non sono stati caricati.
Si prega di contattare l'amministratore di Document Server.", + "errorMailMergeLoadFile": "Caricamento fallito", + "errorMailMergeSaveFile": "Fusione fallita.", + "errorSessionAbsolute": "La sessione di modifica del documento è scaduta. Ti preghiamo di ricaricare la pagina.", + "errorSessionIdle": "Il documento non è stato modificato per molto tempo. Ti preghiamo di ricaricare la pagina.", + "errorSessionToken": "La connessione al server è stata interrotta. Ti preghiamo di ricaricare la pagina.", + "errorStockChart": "Ordine delle righe incorretto. Per creare un grafico azionario, inserisci i dati sul foglio nel seguente ordine:
prezzo di apertura, prezzo massimo, prezzo minimo, prezzo di chiusura.", + "errorUpdateVersionOnDisconnect": "La connessione Internet è stata ripristinata e la versione del file è stata cambiata.
Prima di poter continuare a lavorare, è necessario scaricare il file o copiarne il contenuto per assicurarsi che non vada perso nulla, poi ricaricare questa pagina.", + "errorUserDrop": "Non si può accedere al file al momento.", + "errorUsersExceed": "È stato superato il numero degli utenti consentito dalla tariffa", + "errorViewerDisconnect": "La connessione è stata persa. È ancora possibile visualizzare il documento,
ma non sarà possibile scaricarlo o stamparlo fino a quando la connessione non sarà ripristinata e la pagina sarà ricaricata.", + "notcriticalErrorTitle": "Avvertimento", "openErrorText": "Si è verificato un errore all'apertura del file", "saveErrorText": "Si è verificato un errore al salvataggio del file", - "criticalErrorExtText": "Press 'OK' to go back to the document list.", - "criticalErrorTitle": "Error", - "errorAccessDeny": "You are trying to perform an action you do not have rights for.
Please, contact your admin.", - "errorBadImageUrl": "Image url is incorrect", - "errorDatabaseConnection": "External error.
Database connection error. Please, contact support.", - "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", - "errorDataRange": "Incorrect data range.", - "errorDefaultMessage": "Error code: %1", - "errorFilePassProtect": "The file is password protected and could not be opened.", - "errorFileSizeExceed": "The file size exceeds your server limit.
Please, contact your admin.", - "errorKeyEncrypt": "Unknown key descriptor", - "errorKeyExpire": "Key descriptor expired", - "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator.", - "errorMailMergeLoadFile": "Loading failed", - "errorMailMergeSaveFile": "Merge failed.", - "errorSessionAbsolute": "The document editing session has expired. Please, reload the page.", - "errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.", - "errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.", - "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
opening price, max price, min price, closing price.", - "errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.", - "errorUserDrop": "The file can't be accessed right now.", - "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", - "errorViewerDisconnect": "Connection is lost. You can still view the document,
but you won't be able to download or print it until the connection is restored and the page is reloaded.", - "notcriticalErrorTitle": "Warning", - "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.", - "splitDividerErrorText": "The number of rows must be a divisor of %1", - "splitMaxColsErrorText": "The number of columns must be less than %1", - "splitMaxRowsErrorText": "The number of rows must be less than %1", - "unknownErrorText": "Unknown error.", - "uploadImageExtMessage": "Unknown image format.", - "uploadImageFileCountMessage": "No images uploaded.", - "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." + "scriptLoadError": "La connessione è troppo lenta, alcuni componenti non vengono caricati. Ti preghiamo di ricaricare la pagina.", + "splitDividerErrorText": "Il numero di righe deve essere un divisore di %1", + "splitMaxColsErrorText": "Il numero di colonne deve essere inferiore a% 1", + "splitMaxRowsErrorText": "Il numero di righe deve essere inferiore a% 1", + "unknownErrorText": "Errore sconosciuto.", + "uploadImageExtMessage": "Formato d'immagine sconosciuto.", + "uploadImageFileCountMessage": "Nessuna immagine caricata.", + "uploadImageSizeMessage": "L'immagine è troppo grande. La dimensione massima è 25 MB." }, "LongActions": { + "applyChangesTextText": "Caricamento di dati...", + "applyChangesTitleText": "Caricamento di dati", "downloadMergeText": "Scaricamento...", "downloadMergeTitle": "Scaricamento", "downloadTextText": "Scaricamento di documento...", "downloadTitleText": "Scaricamento di documento", - "applyChangesTextText": "Loading data...", - "applyChangesTitleText": "Loading Data", - "loadFontsTextText": "Loading data...", - "loadFontsTitleText": "Loading Data", - "loadFontTextText": "Loading data...", - "loadFontTitleText": "Loading Data", - "loadImagesTextText": "Loading images...", - "loadImagesTitleText": "Loading Images", - "loadImageTextText": "Loading image...", - "loadImageTitleText": "Loading Image", - "loadingDocumentTextText": "Loading document...", - "loadingDocumentTitleText": "Loading document", - "mailMergeLoadFileText": "Loading Data Source...", - "mailMergeLoadFileTitle": "Loading Data Source", - "openTextText": "Opening document...", - "openTitleText": "Opening Document", - "printTextText": "Printing document...", - "printTitleText": "Printing Document", - "savePreparingText": "Preparing to save", - "savePreparingTitle": "Preparing to save. Please wait...", - "saveTextText": "Saving document...", - "saveTitleText": "Saving Document", - "sendMergeText": "Sending Merge...", - "sendMergeTitle": "Sending Merge", - "textLoadingDocument": "Loading document", - "txtEditingMode": "Set editing mode...", - "uploadImageTextText": "Uploading image...", - "uploadImageTitleText": "Uploading Image", - "waitText": "Please, wait..." + "loadFontsTextText": "Caricamento di dati...", + "loadFontsTitleText": "Caricamento di dati", + "loadFontTextText": "Caricamento di dati...", + "loadFontTitleText": "Caricamento di dati", + "loadImagesTextText": "Caricamento delle immagini...", + "loadImagesTitleText": "Caricamento delle immagini", + "loadImageTextText": "Caricamento dell'immagine...", + "loadImageTitleText": "Caricamento dell'immagine", + "loadingDocumentTextText": "Caricamento di documento...", + "loadingDocumentTitleText": "Caricamento di documento", + "mailMergeLoadFileText": "Caricamento di fonte di dati...", + "mailMergeLoadFileTitle": "Caricamento di fonte di dati", + "openTextText": "Apertura del documento...", + "openTitleText": "Apertura del documento", + "printTextText": "Stampa del documento...", + "printTitleText": "Stampa del documento", + "savePreparingText": "Preparazione al salvataggio ", + "savePreparingTitle": "Preparazione al salvataggio. Attendere prego...", + "saveTextText": "Salvataggio del documento in corso...", + "saveTitleText": "Salvataggio del documento", + "sendMergeText": "Invio dei resultati della fusione...", + "sendMergeTitle": "Invio dei resultati della fusione", + "textLoadingDocument": "Caricamento di documento", + "txtEditingMode": "Impostare la modalità di modifica...", + "uploadImageTextText": "Caricamento dell'immagine...", + "uploadImageTitleText": "Caricamento dell'immagine", + "waitText": "Attendere prego..." }, "Main": { + "criticalErrorTitle": "Errore", + "errorAccessDeny": "Stai cercando di eseguire un'azione per la quale non hai diritti.
Ti preghiamo di contattare il tuo amministratore.", + "errorOpensource": "Usando la versione gratuita Community, puoi aprire i documenti solo per visualizzarli. Per accedere agli editor mobili sul web è richiesta una licenza commerciale.", + "errorProcessSaveResult": "Salvataggio non riuscito", + "errorServerVersion": "La versione dell'editor è stata aggiornata. La pagina viene ricaricata per applicare tutti i cambiamenti.", + "errorUpdateVersion": "La versione del file è stata cambiata. La pagina verrà ricaricata.", + "leavePageText": "Hai dei cambiamenti non salvati. Premi 'Rimanere sulla pagina' per attendere il salvataggio automatico. Premi 'Lasciare la pagina' per eliminare tutte le modifiche non salvate.", + "notcriticalErrorTitle": "Avvertimento", "SDK": { " -Section ": "-Sezione", "above": "sopra", @@ -391,94 +399,89 @@ "Click to load image": "Cliccare per caricare l'immagine", "Current Document": "Documento attuale", "Diagram Title": "Titolo di grafico", - "endnote text": "Endnote Text", - "Enter a date": "Enter a date", - "Error! Bookmark not defined": "Error! Bookmark not defined.", - "Error! Main Document Only": "Error! Main Document Only.", - "Error! No text of specified style in document": "Error! No text of specified style in document.", - "Error! Not a valid bookmark self-reference": "Error! Not a valid bookmark self-reference.", - "Even Page ": "Even Page ", - "First Page ": "First Page ", - "Footer": "Footer", - "footnote text": "Footnote Text", - "Header": "Header", - "Heading 1": "Heading 1", - "Heading 2": "Heading 2", - "Heading 3": "Heading 3", - "Heading 4": "Heading 4", - "Heading 5": "Heading 5", - "Heading 6": "Heading 6", - "Heading 7": "Heading 7", - "Heading 8": "Heading 8", - "Heading 9": "Heading 9", - "Hyperlink": "Hyperlink", - "Index Too Large": "Index Too Large", - "Intense Quote": "Intense Quote", - "Is Not In Table": "Is Not In Table", - "List Paragraph": "List Paragraph", - "Missing Argument": "Missing Argument", - "Missing Operator": "Missing Operator", - "No Spacing": "No Spacing", - "No table of contents entries found": "There are no headings in the document. Apply a heading style to the text so that it appears in the table of contents.", - "No table of figures entries found": "No table of figures entries found.", - "None": "None", - "Normal": "Normal", - "Number Too Large To Format": "Number Too Large To Format", - "Odd Page ": "Odd Page ", - "Quote": "Quote", - "Same as Previous": "Same as Previous", - "Series": "Series", - "Subtitle": "Subtitle", - "Syntax Error": "Syntax Error", - "Table Index Cannot be Zero": "Table Index Cannot be Zero", - "Table of Contents": "Table of Contents", - "table of figures": "Table of figures", - "The Formula Not In Table": "The Formula Not In Table", - "Title": "Title", - "TOC Heading": "TOC Heading", - "Type equation here": "Type equation here", - "Undefined Bookmark": "Undefined Bookmark", - "Unexpected End of Formula": "Unexpected End of Formula", - "X Axis": "X Axis XAS", - "Y Axis": "Y Axis", - "Your text here": "Your text here", - "Zero Divide": "Zero Divide" + "endnote text": "Testo di nota di chiusura", + "Enter a date": "Inserire una data", + "Error! Bookmark not defined": "Errore! Segnalibro non definito.", + "Error! Main Document Only": "Errore! Solo documento principale.", + "Error! No text of specified style in document": "Errore! Nessun testo dello stile specificato nel documento.", + "Error! Not a valid bookmark self-reference": "Errore! Non è un'autoreferenza valida per segnalibro.", + "Even Page ": "Pagina pari", + "First Page ": "Prima pagina", + "Footer": "Piè di pagina", + "footnote text": "Testo di nota a piè di pagina", + "Header": "Intestazione", + "Heading 1": "Titolo 1", + "Heading 2": "Titolo 2", + "Heading 3": "Titolo 3", + "Heading 4": "Titolo 4", + "Heading 5": "Titolo 5", + "Heading 6": "Titolo 6", + "Heading 7": "Titolo 7", + "Heading 8": "Titolo 8", + "Heading 9": "Titolo 9", + "Hyperlink": "Collegamento ipertestuale", + "Index Too Large": "Indice troppo grande", + "Intense Quote": "Citazione intensa", + "Is Not In Table": "Non è in tabella", + "List Paragraph": "Paragrafo di elenco", + "Missing Argument": "Argomento mancante", + "Missing Operator": "Operatore mancante", + "No Spacing": "Senza spazi", + "No table of contents entries found": "Non ci sono titoli nel documento. Applica uno stile di titolo al testo in modo che appaia nella tabella dei contenuti.", + "No table of figures entries found": "Nessuna voce trovata nella tabella di figure.", + "None": "Nessuno", + "Normal": "Normale", + "Number Too Large To Format": "Numero troppo grande per essere formattato", + "Odd Page ": "Pagina dispari", + "Quote": "Citazione", + "Same as Previous": "Uguale al precedente", + "Series": "Serie", + "Subtitle": "Sottotitolo", + "Syntax Error": "Errore di sintassi", + "Table Index Cannot be Zero": "L'indice della tabella non può essere zero", + "Table of Contents": "Tabella di contenuti", + "table of figures": "Tabella di figure‎", + "The Formula Not In Table": "La formula non è in tabella", + "Title": "Titolo", + "TOC Heading": "Titolo di intestazione", + "Type equation here": "Inserire equazione qui", + "Undefined Bookmark": "Segnalibro indefinito", + "Unexpected End of Formula": "Fine della formula inaspettata", + "X Axis": "Asse X (XAS)", + "Y Axis": "Asse Y", + "Your text here": "Il tuo testo qui", + "Zero Divide": "Dividere per zero" }, "textAnonymous": "Anonimo", + "textBuyNow": "Visitare il sito web", "textClose": "Chiudere", "textContactUs": "Contatta il team di vendite", - "titleServerVersion": "L'editor è stato aggiornato", - "criticalErrorTitle": "Error", - "errorAccessDeny": "You are trying to perform an action you do not have rights for.
Please, contact your administrator.", - "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", - "errorProcessSaveResult": "Saving failed.", - "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", - "errorUpdateVersion": "The file version has been changed. The page will be reloaded.", - "leavePageText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", - "notcriticalErrorTitle": "Warning", - "textBuyNow": "Visit website", - "textCustomLoader": "Sorry, you are not entitled to change the loader. Contact our sales department to get a quote.", - "textGuest": "Guest", - "textHasMacros": "The file contains automatic macros.
Do you want to run macros?", + "textCustomLoader": "Spiacenti, non hai il diritto di cambiare il caricatore. Contatta il nostro ufficio vendite per ottenere un preventivo.", + "textGuest": "Ospite", + "textHasMacros": "Il file contiene delle macro automatiche.
Vuoi eseguirle?", "textNo": "No", - "textNoLicenseTitle": "License limit reached", - "textPaidFeature": "Paid feature", - "textRemember": "Remember my choice", - "textYes": "Yes", - "titleLicenseExp": "License expired", - "titleUpdateVersion": "Version changed", - "warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.", - "warnLicenseExp": "Your license has expired. Please, update your license and refresh the page.", - "warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your admin.", - "warnLicenseLimitedRenewed": "The license needs to be renewed. You have limited access to document editing functionality.
Please contact your administrator to get full access", - "warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", - "warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.", - "warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", - "warnProcessRightsChange": "You don't have permission to edit this file." + "textNoLicenseTitle": "E' stato raggiunto il limite della licenza", + "textPaidFeature": "Funzionalità a pagamento", + "textRemember": "Ricordare la mia scelta", + "textYes": "Sì", + "titleLicenseExp": "La licenza è scaduta", + "titleServerVersion": "L'editor è stato aggiornato", + "titleUpdateVersion": "La versione è stata cambiata", + "warnLicenseExceeded": "Hai raggiunto il limite delle connessioni simultanee agli editor %1. Questo documento sarà aperto solo in modalità di visualizzazione. Ti preghiamo di contattare il tuo amministratore per maggior informazioni.", + "warnLicenseExp": "La tua licenza è scaduta. Ti preghiamo di aggiornare la tua licenza e ricaricare la pagina.", + "warnLicenseLimitedNoAccess": "La licenza è scaduta. Non hai più accesso alle funzionalità di modifiche di documenti. Ti preghiamo di contattare il tuo amministratore.", + "warnLicenseLimitedRenewed": "La licenza deve essere rinnovata. Hai l'accesso limitato alle funzionalità di modifiche di documenti.
Ti preghiamo di contattare il tuo amministratore per ottenere accesso completo.", + "warnLicenseUsersExceeded": "Hai raggiunto il limite degli utenti per gli editor %1. Ti preghiamo di contattare il tuo amministratore per maggior informazioni.", + "warnNoLicense": "Hai raggiunto il limite delle connessioni simultanee agli editor %1. Questo documento sarà aperto solo in modalità di visualizzazione. Ti preghiamo di contattare il team di vendite di %1 per i termini di aggiornamento personali.", + "warnNoLicenseUsers": "Hai raggiunto il limite degli utenti per gli editor %1. Ti preghiamo di contattare il team di vendite di %1 per i termini di aggiornamento personali.", + "warnProcessRightsChange": "Non hai il permesso di modificare questo file." }, "Settings": { + "advDRMOptions": "File protetto", + "advDRMPassword": "Password", "advTxtOptions": "Selezionare opzioni di TXT", "closeButtonText": "Chiudere file", + "notcriticalErrorTitle": "Avvertimento", "textAbout": "In riguardo a", "textApplication": "Applicazione", "textApplicationSettings": "Impostazioni dell'applicazione", @@ -498,100 +501,97 @@ "textCreated": "Creato", "textCustomSize": "Dimensione personalizzata", "textDisableAll": "Disabilitare tutto", + "textDisableAllMacrosWithNotification": "Disattivare tutte le macro con notifica", + "textDisableAllMacrosWithoutNotification": "Disattivare tutte le macro senza notifica", "textDocumentInfo": "Informazioni sul documento", "textDocumentSettings": "Impostazioni del documento", "textDocumentTitle": "Titolo di documento", "textDone": "Fatto", "textDownload": "Scaricare", "textDownloadAs": "Scaricare come", + "textDownloadRtf": "Se continui a salvare in questo formato, alcune delle formattazioni potrebbero essere persi. Sei sicuro che vuoi proseguire?", + "textDownloadTxt": "Se continui a salvare in questo formato, tutte le funzionalità tranne il testo saranno perse. Sei sicuro che vuoi proseguire?", "textEnableAll": "Attivare tutto", + "textEnableAllMacrosWithoutNotification": "Attivare tutte le macro senza notifica", "textEncoding": "Codificazione", + "textFind": "Trovare", + "textFindAndReplace": "Trovare e sostituire", + "textFindAndReplaceAll": "Trovare e sostituire tutto", + "textFormat": "Formato", + "textHelp": "Aiuto", + "textHiddenTableBorders": "Bordi di tabella nascosti", + "textHighlightResults": "Evidenziare risultati", + "textInch": "Pollice", + "textLandscape": "Orizzontale", + "textLastModified": "Ultima modifica", + "textLastModifiedBy": "Ultima modifica da", + "textLeft": "A sinistra", + "textLoading": "Caricamento...", + "textLocation": "Posizione", + "textMacrosSettings": "Impostazioni macro", + "textMargins": "Margini", + "textMarginsH": "I margini superiore e inferiore sono troppo alti per una determinata altezza di pagina", + "textMarginsW": "I margini sinistro e destro sono troppo larghi per una determinata larghezza di pagina", + "textNoCharacters": "Caratteri non stampabili", + "textNoTextFound": "Testo non trovato", + "textOk": "OK", + "textOpenFile": "Inserire la password per aprire il file", + "textOrientation": "Orientamento", + "textOwner": "Proprietario", + "textPages": "Pagine", + "textParagraphs": "Paragrafi", + "textPoint": "Punto", + "textPortrait": "Verticale", + "textPrint": "Stampa", + "textReaderMode": "Modalità di lettura", + "textReplace": "Sostituire", + "textReplaceAll": "Sostituire tutto", + "textResolvedComments": "Commenti risolti", + "textRight": "A destra", + "textSearch": "Cercare", + "textSettings": "Impostazioni", + "textShowNotification": "Mostrare notifica", + "textSpaces": "Spazi", + "textSpellcheck": "Controllo ortografico", + "textStatistic": "Statistica", + "textSubject": "Oggetto", + "textSymbols": "Simboli", + "textTitle": "Titolo", + "textTop": "In alto", + "textUnitOfMeasurement": "Unità di misura", + "textUploaded": "Caricato", + "textWords": "Parole", "txtDownloadTxt": "Scaricare TXT", + "txtIncorrectPwd": "Password non corretta", + "txtOk": "OK", + "txtProtected": "Una volta inserita la password e aperto il file, la password corrente verrà resettata", + "txtScheme1": "Ufficio", + "txtScheme10": "Mediano", + "txtScheme11": "Metro", + "txtScheme12": "Modulo", + "txtScheme13": "Opulento", + "txtScheme14": "Bovindo", + "txtScheme15": "Origine", + "txtScheme16": "Carta", + "txtScheme17": "Solstizio", + "txtScheme18": "Tecnico", + "txtScheme19": "Percorso", + "txtScheme2": "Scala di grigi", + "txtScheme20": "Urbano", + "txtScheme21": "Brio", + "txtScheme22": "Nuovo ufficio", "txtScheme3": "Apice", "txtScheme4": "Aspetto", "txtScheme5": "Civico", "txtScheme6": "Concorso", - "advDRMOptions": "Protected File", - "advDRMPassword": "Password", - "notcriticalErrorTitle": "Warning", - "textDisableAllMacrosWithNotification": "Disable all macros with notification", - "textDisableAllMacrosWithoutNotification": "Disable all macros without notification", - "textDownloadRtf": "If you continue saving in this format some of the formatting might be lost. Are you sure you want to continue?", - "textDownloadTxt": "If you continue saving in this format all features except the text will be lost. Are you sure you want to continue?", - "textEnableAllMacrosWithoutNotification": "Enable all macros without notification", - "textFind": "Find", - "textFindAndReplace": "Find and Replace", - "textFindAndReplaceAll": "Find and Replace All", - "textFormat": "Format", - "textHelp": "Help", - "textHiddenTableBorders": "Hidden Table Borders", - "textHighlightResults": "Highlight Results", - "textInch": "Inch", - "textLandscape": "Landscape", - "textLastModified": "Last Modified", - "textLastModifiedBy": "Last Modified By", - "textLeft": "Left", - "textLoading": "Loading...", - "textLocation": "Location", - "textMacrosSettings": "Macros Settings", - "textMargins": "Margins", - "textMarginsH": "Top and bottom margins are too high for a given page height", - "textMarginsW": "Left and right margins are too wide for a given page width", - "textNoCharacters": "Nonprinting Characters", - "textNoTextFound": "Text not found", - "textOk": "Ok", - "textOpenFile": "Enter a password to open the file", - "textOrientation": "Orientation", - "textOwner": "Owner", - "textPages": "Pages", - "textParagraphs": "Paragraphs", - "textPoint": "Point", - "textPortrait": "Portrait", - "textPrint": "Print", - "textReaderMode": "Reader Mode", - "textReplace": "Replace", - "textReplaceAll": "Replace All", - "textResolvedComments": "Resolved Comments", - "textRight": "Right", - "textSearch": "Search", - "textSettings": "Settings", - "textShowNotification": "Show Notification", - "textSpaces": "Spaces", - "textSpellcheck": "Spell Checking", - "textStatistic": "Statistic", - "textSubject": "Subject", - "textSymbols": "Symbols", - "textTitle": "Title", - "textTop": "Top", - "textUnitOfMeasurement": "Unit Of Measurement", - "textUploaded": "Uploaded", - "textWords": "Words", - "txtIncorrectPwd": "Password is incorrect", - "txtOk": "Ok", - "txtProtected": "Once you enter the password and open the file, the current password will be reset", - "txtScheme1": "Office", - "txtScheme10": "Median", - "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", - "txtScheme7": "Equity", - "txtScheme8": "Flow", - "txtScheme9": "Foundry" + "txtScheme7": "Equità", + "txtScheme8": "Flusso", + "txtScheme9": "Fonderia" }, "Toolbar": { - "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", - "dlgLeaveTitleText": "You leave the application", - "leaveButtonText": "Leave this Page", - "stayButtonText": "Stay on this page" + "dlgLeaveMsgText": "Hai dei cambiamenti non salvati. Premi 'Rimanere sulla pagina' per attendere il salvataggio automatico. Premi 'Lasciare la pagina' per eliminare tutte le modifiche non salvate.", + "dlgLeaveTitleText": "Stai lasciando l'app", + "leaveButtonText": "Lasciare questa pagina", + "stayButtonText": "Rimanere su questa pagina" } } \ No newline at end of file diff --git a/apps/documenteditor/mobile/locale/tr.json b/apps/documenteditor/mobile/locale/tr.json index b9bd8891b..6ba0bc522 100644 --- a/apps/documenteditor/mobile/locale/tr.json +++ b/apps/documenteditor/mobile/locale/tr.json @@ -21,6 +21,7 @@ "textColumnBreak": "Sütun Sonu", "textColumns": "Sütunlar", "textComment": "Yorum", + "textLinkSettings": "Bağlantı Ayarları", "notcriticalErrorTitle": "Warning", "textContinuousPage": "Continuous Page", "textCurrentPosition": "Current Position", @@ -37,7 +38,6 @@ "textLeftBottom": "Left Bottom", "textLeftTop": "Left Top", "textLink": "Link", - "textLinkSettings": "Link Settings", "textLocation": "Location", "textNextPage": "Next Page", "textOddPage": "Odd Page", @@ -77,10 +77,16 @@ "textCenter": "Ortaya Hizala", "textChart": "Grafik", "textCollaboration": "Ortak çalışma", + "textContextual": "Aynı stildeki paragrafların arasına boşluk ekleme", + "textDeleted": "Silindi:", + "textInserted": "Eklendi:", "textJustify": "İki yana hizala", "textLeft": "Sola Hizala", "textNoContextual": "Aynı stildeki paragraflar arasına aralık ekle", "textNum": "Numaralandırmayı değiştir", + "textParaMoveFromDown": "Aşağıya taşı", + "textParaMoveFromUp": "Aşağıya taşı:", + "textParaMoveTo": "Taşındı:", "textRight": "Sağa Hizala", "textShd": "Arka plan rengi", "textTabs": "Sekmeleri değiştir", @@ -88,10 +94,8 @@ "textBreakBefore": "Page break before", "textColor": "Font color", "textComments": "Comments", - "textContextual": "Don't add intervals between paragraphs of the same style", "textDelete": "Delete", "textDeleteComment": "Delete Comment", - "textDeleted": "Deleted:", "textDeleteReply": "Delete Reply", "textDisplayMode": "Display Mode", "textDone": "Done", @@ -109,7 +113,6 @@ "textImage": "Image", "textIndentLeft": "Indent left", "textIndentRight": "Indent right", - "textInserted": "Inserted:", "textItalic": "Italic", "textKeepLines": "Keep lines together", "textKeepNext": "Keep with next", @@ -130,9 +133,6 @@ "textParaDeleted": "Paragraph Deleted", "textParaFormatted": "Paragraph Formatted", "textParaInserted": "Paragraph Inserted", - "textParaMoveFromDown": "Moved Down:", - "textParaMoveFromUp": "Moved Up:", - "textParaMoveTo": "Moved:", "textPosition": "Position", "textReject": "Reject", "textRejectAllChanges": "Reject All Changes", @@ -164,16 +164,17 @@ } }, "ContextMenu": { + "errorCopyCutPaste": "Context menüyü kullanarak yapılacak kopyalama, kesme ve yapıştırma işlemleri sadece bu dosya özelinde yapılabilecektir.", "menuAddComment": "Yorum Ekle", "menuAddLink": "Bağlantı Ekle", "menuCancel": "İptal Et", + "menuContinueNumbering": "Numaralandırmaya devam et", + "menuJoinList": "Bir önceki listeye bağlan", "textColumns": "Sütunlar", - "errorCopyCutPaste": "Copy, cut and paste actions using the context menu will be performed within the current file only.", - "menuContinueNumbering": "Continue numbering", + "textDoNotShowAgain": "Tekrar gösterme", "menuDelete": "Delete", "menuDeleteTable": "Delete Table", "menuEdit": "Edit", - "menuJoinList": "Join to previous list", "menuMerge": "Merge", "menuMore": "More", "menuOpenLink": "Open Link", @@ -186,7 +187,6 @@ "menuViewComment": "View Comment", "textCancel": "Cancel", "textCopyCutPasteActions": "Copy, Cut and Paste Actions", - "textDoNotShowAgain": "Don't show again", "textNumberingValue": "Numbering Value", "textOk": "OK", "textRows": "Rows" @@ -219,6 +219,8 @@ "textChart": "Grafik", "textClose": "Kapat", "textColor": "Renk", + "textFirstLine": "İlk Satır", + "textNoStyles": "Bu tip çizelge için stil yok!", "notcriticalErrorTitle": "Warning", "textContinueFromPreviousSection": "Continue from previous section", "textCustomColor": "Custom Color", @@ -232,7 +234,6 @@ "textEmptyImgUrl": "You need to specify image URL.", "textFill": "Fill", "textFirstColumn": "First Column", - "textFirstLine": "FirstLine", "textFlow": "Flow", "textFontColor": "Font Color", "textFontColors": "Font Colors", @@ -258,7 +259,6 @@ "textMoveForward": "Move Forward", "textMoveWithText": "Move with Text", "textNone": "None", - "textNoStyles": "No styles for this type of charts.", "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", "textNumbers": "Numbers", "textOpacity": "Opacity", @@ -307,6 +307,11 @@ "textWrap": "Wrap" }, "Error": { + "errorConnectToServer": "Doküman kaydedilemiyor. Kontrol et.", + "errorEditingDownloadas": "Dokümanla çalışma sırasında hata oluştu.
Lokal olarak dosyayı kaydetmek için dokümanı indirin.", + "errorMailMergeLoadFile": "Yükleme başarısız", + "errorStockChart": "Yanlış satır sırası. Stok çizelgesi oluşturmak içi, verilen sıralamada veriyi yerleştirmek gereklidir:
ücret açma, max ücret, minimum ücret ve ücret kapama", + "errorViewerDisconnect": "Bağlantı kesildi. Dokümanı hala görebilirsiniz,
ancak Bağlantı tekrar sağlanıncaya kadar ve sayfa yüklenmeden, dosyayı indirmek veya çıktısını almak mümkün olmayacaktır. ", "openErrorText": "Dosya açılırken bir hata oluştu.", "saveErrorText": "Dosya kaydedilirken bir hata oluştu", "convertationTimeoutText": "Conversion timeout exceeded.", @@ -314,28 +319,23 @@ "criticalErrorTitle": "Error", "downloadErrorText": "Download failed.", "errorAccessDeny": "You are trying to perform an action you do not have rights for.
Please, contact your admin.", - "errorBadImageUrl": "Image url is incorrect", - "errorConnectToServer": "Can't save this doc. Check your connection settings or contact the admin.
When you click OK, you will be prompted to download the document.", + "errorBadImageUrl": "Image URL is incorrect", "errorDatabaseConnection": "External error.
Database connection error. Please, contact support.", "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", "errorDataRange": "Incorrect data range.", "errorDefaultMessage": "Error code: %1", - "errorEditingDownloadas": "An error occurred during the work with the document.
Download document to save the file backup copy locally.", "errorFilePassProtect": "The file is password protected and could not be opened.", "errorFileSizeExceed": "The file size exceeds your server limit.
Please, contact your admin.", "errorKeyEncrypt": "Unknown key descriptor", "errorKeyExpire": "Key descriptor expired", "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator.", - "errorMailMergeLoadFile": "Loading failed", "errorMailMergeSaveFile": "Merge failed.", "errorSessionAbsolute": "The document editing session has expired. Please, reload the page.", "errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.", "errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.", - "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
opening price, max price, min price, closing price.", "errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.", "errorUserDrop": "The file can't be accessed right now.", "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", - "errorViewerDisconnect": "Connection is lost. You can still view the document,
but you won't be able to download or print it until the connection is restored and the page is reloaded.", "notcriticalErrorTitle": "Warning", "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.", "splitDividerErrorText": "The number of rows must be a divisor of %1", @@ -348,19 +348,23 @@ }, "Main": { "SDK": { + " -Section ": "Bölüm", "above": "Yukarıda", "below": "Altında", "Choose an item": "Bir öğe seçin", + "Click to load image": "Resmi yüklemek için tıkla", "Diagram Title": "Grafik başlığı", - " -Section ": " -Section ", + "endnote text": "Endnote metni", + "Error! Main Document Only": "Hata! Yanlızca Ana Doküman.", + "Error! No text of specified style in document": "Hata! Doküman içinde belirtilen stil metni yok.", + "Index Too Large": "Index Çok Büyük", + "Is Not In Table": "Tabloda mevcut değil", + "Missing Argument": "Eksik Değişken", + "Missing Operator": "Eksik Operatör", "Caption": "Caption", - "Click to load image": "Click to load image", "Current Document": "Current Document", - "endnote text": "Endnote Text", "Enter a date": "Enter a date", "Error! Bookmark not defined": "Error! Bookmark not defined.", - "Error! Main Document Only": "Error! Main Document Only.", - "Error! No text of specified style in document": "Error! No text of specified style in document.", "Error! Not a valid bookmark self-reference": "Error! Not a valid bookmark self-reference.", "Even Page ": "Even Page ", "First Page ": "First Page ", @@ -377,12 +381,8 @@ "Heading 8": "Heading 8", "Heading 9": "Heading 9", "Hyperlink": "Hyperlink", - "Index Too Large": "Index Too Large", "Intense Quote": "Intense Quote", - "Is Not In Table": "Is Not In Table", "List Paragraph": "List Paragraph", - "Missing Argument": "Missing Argument", - "Missing Operator": "Missing Operator", "No Spacing": "No Spacing", "No table of contents entries found": "There are no headings in the document. Apply a heading style to the text so that it appears in the table of contents.", "No table of figures entries found": "No table of figures entries found.", @@ -411,6 +411,8 @@ }, "textAnonymous": "Anonim", "textClose": "Kapat", + "textNoLicenseTitle": "Lisans limitine ulaşıldı.", + "warnLicenseLimitedNoAccess": "Lisans süresi doldu. Doküman edit etme özelliğini kullanmaya izniniz bulunmamaktadır. Lütfen, yöneticinizle iletişime geçin.", "criticalErrorTitle": "Error", "errorAccessDeny": "You are trying to perform an action you do not have rights for.
Please, contact your administrator.", "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", @@ -425,7 +427,6 @@ "textGuest": "Guest", "textHasMacros": "The file contains automatic macros.
Do you want to run macros?", "textNo": "No", - "textNoLicenseTitle": "License limit reached", "textPaidFeature": "Paid feature", "textRemember": "Remember my choice", "textYes": "Yes", @@ -434,7 +435,6 @@ "titleUpdateVersion": "Version changed", "warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.", "warnLicenseExp": "Your license has expired. Please, update your license and refresh the page.", - "warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your admin.", "warnLicenseLimitedRenewed": "The license needs to be renewed. You have limited access to document editing functionality.
Please contact your administrator to get full access", "warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", "warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.", @@ -453,12 +453,21 @@ "textCancel": "İptal Et", "textCaseSensitive": "Büyük küçük harfe duyarlı", "textCentimeter": "Santimetre", + "textChooseEncoding": "Kodlama Seç", "textCollaboration": "Ortak çalışma", "textColorSchemes": "Renk Şeması", + "textDisableAllMacrosWithNotification": "Makroları bildirim ile pasifleştir", + "textDisableAllMacrosWithoutNotification": "Tüm makroları bildirimsiz devre dışı bırak", + "textDownloadRtf": "Bu biçimde kaydetmeye devam ederseniz, bazı biçimler kaybolabilir. Devam etmek istediğinize emin misiniz?", + "textDownloadTxt": "Bu biçimde kayıt etmeye devam ederseniz, metin dışında tüm özellikler kaybolacaktır. Devam etmek istediğinize emin misiniz?", + "textEnableAllMacrosWithoutNotification": "Tüm makroları bildirimsiz etkinleştir", + "textFindAndReplaceAll": " Bul ve Hepsini Değiştir", + "textMarginsW": "Sağ ve Sol çizelgeler verilen sayfa genişliği için çok geniş", + "txtDownloadTxt": "TXT olarak indir", + "txtScheme22": "Yeni Ofis", "advDRMOptions": "Protected File", "advDRMPassword": "Password", "notcriticalErrorTitle": "Warning", - "textChooseEncoding": "Choose Encoding", "textChooseTxtOptions": "Choose TXT Options", "textComment": "Comment", "textComments": "Comments", @@ -466,22 +475,16 @@ "textCreated": "Created", "textCustomSize": "Custom Size", "textDisableAll": "Disable All", - "textDisableAllMacrosWithNotification": "Disable all macros with notification", - "textDisableAllMacrosWithoutNotification": "Disable all macros without notification", "textDocumentInfo": "Document Info", "textDocumentSettings": "Document Settings", "textDocumentTitle": "Document Title", "textDone": "Done", "textDownload": "Download", "textDownloadAs": "Download As", - "textDownloadRtf": "If you continue saving in this format some of the formatting might be lost. Are you sure you want to continue?", - "textDownloadTxt": "If you continue saving in this format all features except the text will be lost. Are you sure you want to continue?", "textEnableAll": "Enable All", - "textEnableAllMacrosWithoutNotification": "Enable all macros without notification", "textEncoding": "Encoding", "textFind": "Find", "textFindAndReplace": "Find and Replace", - "textFindAndReplaceAll": "Find and Replace All", "textFormat": "Format", "textHelp": "Help", "textHiddenTableBorders": "Hidden Table Borders", @@ -496,7 +499,6 @@ "textMacrosSettings": "Macros Settings", "textMargins": "Margins", "textMarginsH": "Top and bottom margins are too high for a given page height", - "textMarginsW": "Left and right margins are too wide for a given page width", "textNoCharacters": "Nonprinting Characters", "textNoTextFound": "Text not found", "textOk": "Ok", @@ -526,7 +528,6 @@ "textUnitOfMeasurement": "Unit Of Measurement", "textUploaded": "Uploaded", "textWords": "Words", - "txtDownloadTxt": "Download TXT", "txtIncorrectPwd": "Password is incorrect", "txtOk": "Ok", "txtProtected": "Once you enter the password and open the file, the current password will be reset", @@ -544,7 +545,6 @@ "txtScheme2": "Grayscale", "txtScheme20": "Urban", "txtScheme21": "Verve", - "txtScheme22": "New Office", "txtScheme3": "Apex", "txtScheme4": "Aspect", "txtScheme5": "Civic", diff --git a/apps/documenteditor/mobile/locale/zh.json b/apps/documenteditor/mobile/locale/zh.json index 1116ef7fc..05092e37b 100644 --- a/apps/documenteditor/mobile/locale/zh.json +++ b/apps/documenteditor/mobile/locale/zh.json @@ -391,6 +391,7 @@ "leavePageText": "你有未保存的修改。点击“留在该页”可等待自动保存完成。点击“离开该页”将丢弃全部未经保存的修改。", "notcriticalErrorTitle": "警告", "SDK": { + " -Section ": "-节", "above": "以上", "below": "以下", "Caption": "标题", @@ -449,8 +450,7 @@ "X Axis": "X 轴 XAS", "Y Axis": "Y 轴", "Your text here": "你的文本在此", - "Zero Divide": "除数为零", - " -Section ": " -Section " + "Zero Divide": "除数为零" }, "textAnonymous": "匿名", "textBuyNow": "访问网站", diff --git a/apps/presentationeditor/mobile/locale/be.json b/apps/presentationeditor/mobile/locale/be.json index 737efc64f..d6c71ddf5 100644 --- a/apps/presentationeditor/mobile/locale/be.json +++ b/apps/presentationeditor/mobile/locale/be.json @@ -382,7 +382,8 @@ "textZoom": "Zoom", "textZoomIn": "Zoom In", "textZoomOut": "Zoom Out", - "textZoomRotate": "Zoom and Rotate" + "textZoomRotate": "Zoom and Rotate", + "textTransitions": "Transitions" }, "Settings": { "mniSlideStandard": "Standard (4:3)", diff --git a/apps/presentationeditor/mobile/locale/bg.json b/apps/presentationeditor/mobile/locale/bg.json index 737efc64f..d6c71ddf5 100644 --- a/apps/presentationeditor/mobile/locale/bg.json +++ b/apps/presentationeditor/mobile/locale/bg.json @@ -382,7 +382,8 @@ "textZoom": "Zoom", "textZoomIn": "Zoom In", "textZoomOut": "Zoom Out", - "textZoomRotate": "Zoom and Rotate" + "textZoomRotate": "Zoom and Rotate", + "textTransitions": "Transitions" }, "Settings": { "mniSlideStandard": "Standard (4:3)", diff --git a/apps/presentationeditor/mobile/locale/ca.json b/apps/presentationeditor/mobile/locale/ca.json index e490d46d5..0b7cd61e8 100644 --- a/apps/presentationeditor/mobile/locale/ca.json +++ b/apps/presentationeditor/mobile/locale/ca.json @@ -382,7 +382,8 @@ "textZoom": "Zoom", "textZoomIn": "Amplia", "textZoomOut": "Redueix", - "textZoomRotate": "Amplia i gira" + "textZoomRotate": "Amplia i gira", + "textTransitions": "Transitions" }, "Settings": { "mniSlideStandard": "Estàndard (4:3)", diff --git a/apps/presentationeditor/mobile/locale/cs.json b/apps/presentationeditor/mobile/locale/cs.json index 737efc64f..d6c71ddf5 100644 --- a/apps/presentationeditor/mobile/locale/cs.json +++ b/apps/presentationeditor/mobile/locale/cs.json @@ -382,7 +382,8 @@ "textZoom": "Zoom", "textZoomIn": "Zoom In", "textZoomOut": "Zoom Out", - "textZoomRotate": "Zoom and Rotate" + "textZoomRotate": "Zoom and Rotate", + "textTransitions": "Transitions" }, "Settings": { "mniSlideStandard": "Standard (4:3)", diff --git a/apps/presentationeditor/mobile/locale/de.json b/apps/presentationeditor/mobile/locale/de.json index 13be0f656..7ea38c878 100644 --- a/apps/presentationeditor/mobile/locale/de.json +++ b/apps/presentationeditor/mobile/locale/de.json @@ -382,7 +382,8 @@ "textZoom": "Zoom", "textZoomIn": "Vergrößern", "textZoomOut": "Verkleinern", - "textZoomRotate": "Vergrößern und drehen" + "textZoomRotate": "Vergrößern und drehen", + "textTransitions": "Transitions" }, "Settings": { "mniSlideStandard": "Standard (4:3)", diff --git a/apps/presentationeditor/mobile/locale/el.json b/apps/presentationeditor/mobile/locale/el.json index 737efc64f..d6c71ddf5 100644 --- a/apps/presentationeditor/mobile/locale/el.json +++ b/apps/presentationeditor/mobile/locale/el.json @@ -382,7 +382,8 @@ "textZoom": "Zoom", "textZoomIn": "Zoom In", "textZoomOut": "Zoom Out", - "textZoomRotate": "Zoom and Rotate" + "textZoomRotate": "Zoom and Rotate", + "textTransitions": "Transitions" }, "Settings": { "mniSlideStandard": "Standard (4:3)", diff --git a/apps/presentationeditor/mobile/locale/en.json b/apps/presentationeditor/mobile/locale/en.json index a11a01f37..5b7022a7b 100644 --- a/apps/presentationeditor/mobile/locale/en.json +++ b/apps/presentationeditor/mobile/locale/en.json @@ -129,7 +129,7 @@ "criticalErrorTitle": "Error", "downloadErrorText": "Download failed.", "errorAccessDeny": "You are trying to perform an action you do not have rights for.
Please contact your admin.", - "errorBadImageUrl": "Image url is incorrect", + "errorBadImageUrl": "Image URL is incorrect", "errorConnectToServer": "Can't save this doc. Check your connection settings or contact your admin.
When you click the 'OK' button, you will be prompted to download the document.", "errorDatabaseConnection": "External error.
Database connection error. Please, contact support.", "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", diff --git a/apps/presentationeditor/mobile/locale/es.json b/apps/presentationeditor/mobile/locale/es.json index 0f5d6b04f..c54731282 100644 --- a/apps/presentationeditor/mobile/locale/es.json +++ b/apps/presentationeditor/mobile/locale/es.json @@ -382,7 +382,8 @@ "textZoom": "Zoom", "textZoomIn": "Acercar", "textZoomOut": "Alejar", - "textZoomRotate": "Zoom y giro" + "textZoomRotate": "Zoom y giro", + "textTransitions": "Transitions" }, "Settings": { "mniSlideStandard": "Estándar (4:3)", diff --git a/apps/presentationeditor/mobile/locale/fr.json b/apps/presentationeditor/mobile/locale/fr.json index d8424866e..36c59fc99 100644 --- a/apps/presentationeditor/mobile/locale/fr.json +++ b/apps/presentationeditor/mobile/locale/fr.json @@ -382,7 +382,8 @@ "textZoom": "Zoom", "textZoomIn": "Zoom avant", "textZoomOut": "Zoom arrière", - "textZoomRotate": "Zoom et rotation" + "textZoomRotate": "Zoom et rotation", + "textTransitions": "Transitions" }, "Settings": { "mniSlideStandard": "Standard (4:3)", diff --git a/apps/presentationeditor/mobile/locale/hu.json b/apps/presentationeditor/mobile/locale/hu.json index 737efc64f..d6c71ddf5 100644 --- a/apps/presentationeditor/mobile/locale/hu.json +++ b/apps/presentationeditor/mobile/locale/hu.json @@ -382,7 +382,8 @@ "textZoom": "Zoom", "textZoomIn": "Zoom In", "textZoomOut": "Zoom Out", - "textZoomRotate": "Zoom and Rotate" + "textZoomRotate": "Zoom and Rotate", + "textTransitions": "Transitions" }, "Settings": { "mniSlideStandard": "Standard (4:3)", diff --git a/apps/presentationeditor/mobile/locale/it.json b/apps/presentationeditor/mobile/locale/it.json index 737efc64f..3329a3be7 100644 --- a/apps/presentationeditor/mobile/locale/it.json +++ b/apps/presentationeditor/mobile/locale/it.json @@ -1,7 +1,7 @@ { "About": { + "textAddress": "Indirizzo", "textAbout": "About", - "textAddress": "Address", "textBack": "Back", "textEmail": "Email", "textPoweredBy": "Powered By", @@ -10,9 +10,9 @@ }, "Common": { "Collaboration": { + "textAddComment": "Aggiungi commento", + "textAddReply": "Aggiungi risposta", "notcriticalErrorTitle": "Warning", - "textAddComment": "Add Comment", - "textAddReply": "Add Reply", "textBack": "Back", "textCancel": "Cancel", "textCollaboration": "Collaboration", @@ -27,11 +27,11 @@ "textMessageDeleteComment": "Do you really want to delete this comment?", "textMessageDeleteReply": "Do you really want to delete this reply?", "textNoComments": "This document doesn't contain comments", + "textOk": "Ok", "textReopen": "Reopen", "textResolve": "Resolve", "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", - "textUsers": "Users", - "textOk": "Ok" + "textUsers": "Users" }, "ThemeColorPalette": { "textCustomColors": "Custom Colors", @@ -40,9 +40,9 @@ } }, "ContextMenu": { + "menuAddComment": "Aggiungi commento", + "menuAddLink": "Aggiungi link", "errorCopyCutPaste": "Copy, cut and paste actions using the context menu will be performed within the current file only.", - "menuAddComment": "Add Comment", - "menuAddLink": "Add Link", "menuCancel": "Cancel", "menuDelete": "Delete", "menuDeleteTable": "Delete Table", @@ -59,6 +59,7 @@ }, "Controller": { "Main": { + "textAnonymous": "Anonimo", "advDRMOptions": "Protected File", "advDRMPassword": "Password", "closeButtonText": "Close File", @@ -95,7 +96,6 @@ "Y Axis": "Y Axis", "Your text here": "Your text here" }, - "textAnonymous": "Anonymous", "textBuyNow": "Visit website", "textClose": "Close", "textContactUs": "Contact sales", @@ -124,12 +124,14 @@ } }, "Error": { + "openErrorText": "Si è verificato un errore all'apertura del file", + "saveErrorText": "Si è verificato un errore al salvataggio del file", "convertationTimeoutText": "Conversion timeout exceeded.", "criticalErrorExtText": "Press 'OK' to go back to the document list.", "criticalErrorTitle": "Error", "downloadErrorText": "Download failed.", "errorAccessDeny": "You are trying to perform an action you do not have rights for.
Please contact your admin.", - "errorBadImageUrl": "Image url is incorrect", + "errorBadImageUrl": "Image URL is incorrect", "errorConnectToServer": "Can't save this doc. Check your connection settings or contact your admin.
When you click the 'OK' button, you will be prompted to download the document.", "errorDatabaseConnection": "External error.
Database connection error. Please, contact support.", "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", @@ -140,6 +142,7 @@ "errorFileSizeExceed": "The file size exceeds your server limitation.
Please, contact your admin.", "errorKeyEncrypt": "Unknown key descriptor", "errorKeyExpire": "Key descriptor expired", + "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator.", "errorSessionAbsolute": "The document editing session has expired. Please, reload the page.", "errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.", "errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.", @@ -147,10 +150,8 @@ "errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
Before you can continue working, download the file or copy its content to make sure nothing is lost, and then reload this page.", "errorUserDrop": "The file cannot be accessed right now.", "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", - "errorViewerDisconnect": "Connection is lost. You can still view the document,
but you won't be able to download it until the connection is restored and the page is reloaded.", + "errorViewerDisconnect": "Connection is lost. You can still view the document,
but you won't be able to download or print it until the connection is restored and the page is reloaded.", "notcriticalErrorTitle": "Warning", - "openErrorText": "An error has occurred while opening the file", - "saveErrorText": "An error has occurred while saving the file", "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.", "splitDividerErrorText": "The number of rows must be a divisor of %1", "splitMaxColsErrorText": "The number of columns must be less than %1", @@ -158,51 +159,13 @@ "unknownErrorText": "Unknown error.", "uploadImageExtMessage": "Unknown image format.", "uploadImageFileCountMessage": "No images uploaded.", - "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.", - "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." - }, - "LongActions": { - "applyChangesTextText": "Loading data...", - "applyChangesTitleText": "Loading Data", - "downloadTextText": "Downloading document...", - "downloadTitleText": "Downloading Document", - "loadFontsTextText": "Loading data...", - "loadFontsTitleText": "Loading Data", - "loadFontTextText": "Loading data...", - "loadFontTitleText": "Loading Data", - "loadImagesTextText": "Loading images...", - "loadImagesTitleText": "Loading Images", - "loadImageTextText": "Loading image...", - "loadImageTitleText": "Loading Image", - "loadingDocumentTextText": "Loading document...", - "loadingDocumentTitleText": "Loading document", - "loadThemeTextText": "Loading theme...", - "loadThemeTitleText": "Loading Theme", - "openTextText": "Opening document...", - "openTitleText": "Opening Document", - "printTextText": "Printing document...", - "printTitleText": "Printing Document", - "savePreparingText": "Preparing to save", - "savePreparingTitle": "Preparing to save. Please wait...", - "saveTextText": "Saving document...", - "saveTitleText": "Saving Document", - "textLoadingDocument": "Loading document", - "txtEditingMode": "Set editing mode...", - "uploadImageTextText": "Uploading image...", - "uploadImageTitleText": "Uploading Image", - "waitText": "Please, wait..." - }, - "Toolbar": { - "dlgLeaveMsgText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", - "dlgLeaveTitleText": "You leave the application", - "leaveButtonText": "Leave this page", - "stayButtonText": "Stay on this Page" + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." }, "View": { "Add": { + "textAddLink": "Aggiungi link", + "textAddress": "Indirizzo", "notcriticalErrorTitle": "Warning", - "textAddLink": "Add Link", - "textAddress": "Address", "textBack": "Back", "textCancel": "Cancel", "textColumns": "Columns", @@ -237,23 +200,23 @@ "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"" }, "Edit": { + "textAddCustomColor": "Aggiungi colore personalizzato", + "textAdditionalFormatting": "Formattazione aggiuntiva", + "textAddress": "Indirizzo", + "textAfter": "Dopo", + "textAlign": "Allinea", + "textAlignBottom": "Allinea in basso", + "textAlignCenter": "Allinea al centro", + "textAlignLeft": "Allinea a sinistra", + "textAlignMiddle": "Allinea in mezzo", + "textAlignRight": "Allinea a destra", + "textAlignTop": "Allinea in alto", + "textAllCaps": "Tutto maiuscolo", + "textApplyAll": "Applica a tutte le diapositive", + "textAuto": "Auto", "notcriticalErrorTitle": "Warning", "textActualSize": "Actual Size", - "textAddCustomColor": "Add Custom Color", "textAdditional": "Additional", - "textAdditionalFormatting": "Additional Formatting", - "textAddress": "Address", - "textAfter": "After", - "textAlign": "Align", - "textAlignBottom": "Align Bottom", - "textAlignCenter": "Align Center", - "textAlignLeft": "Align Left", - "textAlignMiddle": "Align Middle", - "textAlignRight": "Align Right", - "textAlignTop": "Align Top", - "textAllCaps": "All Caps", - "textApplyAll": "Apply to All Slides", - "textAuto": "Auto", "textBack": "Back", "textBandedColumn": "Banded Column", "textBandedRow": "Banded Row", @@ -372,7 +335,7 @@ "textTopLeft": "Top-Left", "textTopRight": "Top-Right", "textTotalRow": "Total Row", - "textTransition": "Transition", + "textTransitions": "Transitions", "textType": "Type", "textUnCover": "UnCover", "textVerticalIn": "Vertical In", @@ -385,13 +348,15 @@ "textZoomRotate": "Zoom and Rotate" }, "Settings": { + "textAddress": "indirizzo: ", + "textApplication": "Applicazione", + "textApplicationSettings": "Impostazioni dell'applicazione", + "textAuthor": "Autore", + "txtScheme3": "Apice", + "txtScheme4": "Aspetto", "mniSlideStandard": "Standard (4:3)", "mniSlideWide": "Widescreen (16:9)", "textAbout": "About", - "textAddress": "address:", - "textApplication": "Application", - "textApplicationSettings": "Application Settings", - "textAuthor": "Author", "textBack": "Back", "textCaseSensitive": "Case Sensitive", "textCentimeter": "Centimeter", @@ -455,13 +420,48 @@ "txtScheme20": "Urban", "txtScheme21": "Verve", "txtScheme22": "New Office", - "txtScheme3": "Apex", - "txtScheme4": "Aspect", "txtScheme5": "Civic", "txtScheme6": "Concourse", "txtScheme7": "Equity", "txtScheme8": "Flow", "txtScheme9": "Foundry" } + }, + "LongActions": { + "applyChangesTextText": "Loading data...", + "applyChangesTitleText": "Loading Data", + "downloadTextText": "Downloading document...", + "downloadTitleText": "Downloading Document", + "loadFontsTextText": "Loading data...", + "loadFontsTitleText": "Loading Data", + "loadFontTextText": "Loading data...", + "loadFontTitleText": "Loading Data", + "loadImagesTextText": "Loading images...", + "loadImagesTitleText": "Loading Images", + "loadImageTextText": "Loading image...", + "loadImageTitleText": "Loading Image", + "loadingDocumentTextText": "Loading document...", + "loadingDocumentTitleText": "Loading document", + "loadThemeTextText": "Loading theme...", + "loadThemeTitleText": "Loading Theme", + "openTextText": "Opening document...", + "openTitleText": "Opening Document", + "printTextText": "Printing document...", + "printTitleText": "Printing Document", + "savePreparingText": "Preparing to save", + "savePreparingTitle": "Preparing to save. Please wait...", + "saveTextText": "Saving document...", + "saveTitleText": "Saving Document", + "textLoadingDocument": "Loading document", + "txtEditingMode": "Set editing mode...", + "uploadImageTextText": "Uploading image...", + "uploadImageTitleText": "Uploading Image", + "waitText": "Please, wait..." + }, + "Toolbar": { + "dlgLeaveMsgText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "dlgLeaveTitleText": "You leave the application", + "leaveButtonText": "Leave this page", + "stayButtonText": "Stay on this Page" } } \ No newline at end of file diff --git a/apps/presentationeditor/mobile/locale/ja.json b/apps/presentationeditor/mobile/locale/ja.json index 7b9916bce..27463b06b 100644 --- a/apps/presentationeditor/mobile/locale/ja.json +++ b/apps/presentationeditor/mobile/locale/ja.json @@ -382,7 +382,8 @@ "textZoom": "ズーム", "textZoomIn": "拡大", "textZoomOut": "縮小", - "textZoomRotate": "ズームと回転" + "textZoomRotate": "ズームと回転", + "textTransitions": "Transitions" }, "Settings": { "mniSlideStandard": "標準(4:3)", diff --git a/apps/presentationeditor/mobile/locale/ko.json b/apps/presentationeditor/mobile/locale/ko.json index 122592aba..4a51fb1c9 100644 --- a/apps/presentationeditor/mobile/locale/ko.json +++ b/apps/presentationeditor/mobile/locale/ko.json @@ -382,7 +382,8 @@ "textZoom": "확대/축소", "textZoomIn": "확대", "textZoomOut": "축소", - "textZoomRotate": "확대 / 축소 및 회전" + "textZoomRotate": "확대 / 축소 및 회전", + "textTransitions": "Transitions" }, "Settings": { "mniSlideStandard": "표준 (4 : 3)", diff --git a/apps/presentationeditor/mobile/locale/lo.json b/apps/presentationeditor/mobile/locale/lo.json index 737efc64f..d6c71ddf5 100644 --- a/apps/presentationeditor/mobile/locale/lo.json +++ b/apps/presentationeditor/mobile/locale/lo.json @@ -382,7 +382,8 @@ "textZoom": "Zoom", "textZoomIn": "Zoom In", "textZoomOut": "Zoom Out", - "textZoomRotate": "Zoom and Rotate" + "textZoomRotate": "Zoom and Rotate", + "textTransitions": "Transitions" }, "Settings": { "mniSlideStandard": "Standard (4:3)", diff --git a/apps/presentationeditor/mobile/locale/lv.json b/apps/presentationeditor/mobile/locale/lv.json index 737efc64f..d6c71ddf5 100644 --- a/apps/presentationeditor/mobile/locale/lv.json +++ b/apps/presentationeditor/mobile/locale/lv.json @@ -382,7 +382,8 @@ "textZoom": "Zoom", "textZoomIn": "Zoom In", "textZoomOut": "Zoom Out", - "textZoomRotate": "Zoom and Rotate" + "textZoomRotate": "Zoom and Rotate", + "textTransitions": "Transitions" }, "Settings": { "mniSlideStandard": "Standard (4:3)", diff --git a/apps/presentationeditor/mobile/locale/nb.json b/apps/presentationeditor/mobile/locale/nb.json index 737efc64f..d6c71ddf5 100644 --- a/apps/presentationeditor/mobile/locale/nb.json +++ b/apps/presentationeditor/mobile/locale/nb.json @@ -382,7 +382,8 @@ "textZoom": "Zoom", "textZoomIn": "Zoom In", "textZoomOut": "Zoom Out", - "textZoomRotate": "Zoom and Rotate" + "textZoomRotate": "Zoom and Rotate", + "textTransitions": "Transitions" }, "Settings": { "mniSlideStandard": "Standard (4:3)", diff --git a/apps/presentationeditor/mobile/locale/nl.json b/apps/presentationeditor/mobile/locale/nl.json index ab724708b..8664f1f8f 100644 --- a/apps/presentationeditor/mobile/locale/nl.json +++ b/apps/presentationeditor/mobile/locale/nl.json @@ -382,7 +382,8 @@ "textZoom": "Zoomen", "textZoomIn": "Inzoomen", "textZoomOut": "Uitzoomen", - "textZoomRotate": "Zoomen en draaien" + "textZoomRotate": "Zoomen en draaien", + "textTransitions": "Transitions" }, "Settings": { "mniSlideStandard": "Standaard (4:3)", diff --git a/apps/presentationeditor/mobile/locale/pl.json b/apps/presentationeditor/mobile/locale/pl.json index 737efc64f..d6c71ddf5 100644 --- a/apps/presentationeditor/mobile/locale/pl.json +++ b/apps/presentationeditor/mobile/locale/pl.json @@ -382,7 +382,8 @@ "textZoom": "Zoom", "textZoomIn": "Zoom In", "textZoomOut": "Zoom Out", - "textZoomRotate": "Zoom and Rotate" + "textZoomRotate": "Zoom and Rotate", + "textTransitions": "Transitions" }, "Settings": { "mniSlideStandard": "Standard (4:3)", diff --git a/apps/presentationeditor/mobile/locale/pt.json b/apps/presentationeditor/mobile/locale/pt.json index 7ffd645ff..aa6ebb34e 100644 --- a/apps/presentationeditor/mobile/locale/pt.json +++ b/apps/presentationeditor/mobile/locale/pt.json @@ -382,7 +382,8 @@ "textZoom": "Zoom", "textZoomIn": "Ampliar", "textZoomOut": "Reduzir", - "textZoomRotate": "Zoom e Rotação" + "textZoomRotate": "Zoom e Rotação", + "textTransitions": "Transitions" }, "Settings": { "mniSlideStandard": "Padrão (4:3)", diff --git a/apps/presentationeditor/mobile/locale/ro.json b/apps/presentationeditor/mobile/locale/ro.json index b579bb82d..8fb5eb432 100644 --- a/apps/presentationeditor/mobile/locale/ro.json +++ b/apps/presentationeditor/mobile/locale/ro.json @@ -382,7 +382,8 @@ "textZoom": "Zoom", "textZoomIn": "Mărire", "textZoomOut": "Micșorare", - "textZoomRotate": "Zoom și rotire" + "textZoomRotate": "Zoom și rotire", + "textTransitions": "Transitions" }, "Settings": { "mniSlideStandard": "Standard (4:3)", diff --git a/apps/presentationeditor/mobile/locale/ru.json b/apps/presentationeditor/mobile/locale/ru.json index 7a3a65a2d..ca710df6c 100644 --- a/apps/presentationeditor/mobile/locale/ru.json +++ b/apps/presentationeditor/mobile/locale/ru.json @@ -382,7 +382,8 @@ "textZoom": "Масштабирование", "textZoomIn": "Увеличение", "textZoomOut": "Уменьшение", - "textZoomRotate": "Увеличение с поворотом" + "textZoomRotate": "Увеличение с поворотом", + "textTransitions": "Transitions" }, "Settings": { "mniSlideStandard": "Стандартный (4:3)", diff --git a/apps/presentationeditor/mobile/locale/sk.json b/apps/presentationeditor/mobile/locale/sk.json index 737efc64f..d6c71ddf5 100644 --- a/apps/presentationeditor/mobile/locale/sk.json +++ b/apps/presentationeditor/mobile/locale/sk.json @@ -382,7 +382,8 @@ "textZoom": "Zoom", "textZoomIn": "Zoom In", "textZoomOut": "Zoom Out", - "textZoomRotate": "Zoom and Rotate" + "textZoomRotate": "Zoom and Rotate", + "textTransitions": "Transitions" }, "Settings": { "mniSlideStandard": "Standard (4:3)", diff --git a/apps/presentationeditor/mobile/locale/sl.json b/apps/presentationeditor/mobile/locale/sl.json index 737efc64f..d6c71ddf5 100644 --- a/apps/presentationeditor/mobile/locale/sl.json +++ b/apps/presentationeditor/mobile/locale/sl.json @@ -382,7 +382,8 @@ "textZoom": "Zoom", "textZoomIn": "Zoom In", "textZoomOut": "Zoom Out", - "textZoomRotate": "Zoom and Rotate" + "textZoomRotate": "Zoom and Rotate", + "textTransitions": "Transitions" }, "Settings": { "mniSlideStandard": "Standard (4:3)", diff --git a/apps/presentationeditor/mobile/locale/tr.json b/apps/presentationeditor/mobile/locale/tr.json index 737efc64f..d6c71ddf5 100644 --- a/apps/presentationeditor/mobile/locale/tr.json +++ b/apps/presentationeditor/mobile/locale/tr.json @@ -382,7 +382,8 @@ "textZoom": "Zoom", "textZoomIn": "Zoom In", "textZoomOut": "Zoom Out", - "textZoomRotate": "Zoom and Rotate" + "textZoomRotate": "Zoom and Rotate", + "textTransitions": "Transitions" }, "Settings": { "mniSlideStandard": "Standard (4:3)", diff --git a/apps/presentationeditor/mobile/locale/uk.json b/apps/presentationeditor/mobile/locale/uk.json index 737efc64f..d6c71ddf5 100644 --- a/apps/presentationeditor/mobile/locale/uk.json +++ b/apps/presentationeditor/mobile/locale/uk.json @@ -382,7 +382,8 @@ "textZoom": "Zoom", "textZoomIn": "Zoom In", "textZoomOut": "Zoom Out", - "textZoomRotate": "Zoom and Rotate" + "textZoomRotate": "Zoom and Rotate", + "textTransitions": "Transitions" }, "Settings": { "mniSlideStandard": "Standard (4:3)", diff --git a/apps/presentationeditor/mobile/locale/vi.json b/apps/presentationeditor/mobile/locale/vi.json index 737efc64f..d6c71ddf5 100644 --- a/apps/presentationeditor/mobile/locale/vi.json +++ b/apps/presentationeditor/mobile/locale/vi.json @@ -382,7 +382,8 @@ "textZoom": "Zoom", "textZoomIn": "Zoom In", "textZoomOut": "Zoom Out", - "textZoomRotate": "Zoom and Rotate" + "textZoomRotate": "Zoom and Rotate", + "textTransitions": "Transitions" }, "Settings": { "mniSlideStandard": "Standard (4:3)", diff --git a/apps/presentationeditor/mobile/locale/zh.json b/apps/presentationeditor/mobile/locale/zh.json index baa43b29b..c4ec9e4b4 100644 --- a/apps/presentationeditor/mobile/locale/zh.json +++ b/apps/presentationeditor/mobile/locale/zh.json @@ -27,11 +27,11 @@ "textMessageDeleteComment": "您确定要删除此批注吗?", "textMessageDeleteReply": "你确定要删除这一回复吗?", "textNoComments": "此文档不包含批注", + "textOk": "好", "textReopen": "重新打开", "textResolve": "解决", "textTryUndoRedo": "快速共同编辑模式下,撤销/重做功能被禁用。", - "textUsers": "用户", - "textOk": "Ok" + "textUsers": "用户" }, "ThemeColorPalette": { "textCustomColors": "自定义颜色", @@ -72,6 +72,8 @@ "notcriticalErrorTitle": "警告", "SDK": { "Chart": "图表", + "Click to add first slide": "点这里添加首张幻灯片", + "Click to add notes": "点这里添加注释", "ClipArt": "剪贴画", "Date and time": "日期和时间", "Diagram": "图", @@ -79,7 +81,9 @@ "Footer": "页脚", "Header": "页眉", "Image": "图片", + "Loading": "载入中", "Media": "媒体", + "None": "没有", "Picture": "图片", "Series": "系列", "Slide number": "幻灯片编号", @@ -89,11 +93,7 @@ "Table": "表格", "X Axis": "X 轴 XAS", "Y Axis": "Y 轴", - "Your text here": "你的文本在此", - "Click to add first slide": "Click to add first slide", - "Click to add notes": "Click to add notes", - "Loading": "Loading", - "None": "None" + "Your text here": "你的文本在此" }, "textAnonymous": "匿名", "textBuyNow": "访问网站", @@ -140,6 +140,7 @@ "errorFileSizeExceed": "文件大小超出服务器限制。
请联系你的管理员。", "errorKeyEncrypt": "未知密钥描述", "errorKeyExpire": "密钥过期", + "errorLoadingFont": "字体未加载。
请与文档服务器管理员联系。", "errorSessionAbsolute": "该文件编辑窗口已过期。请刷新该页。", "errorSessionIdle": "该文档已经有一段时间没有编辑了。请刷新该页。", "errorSessionToken": "与服务器的链接被打断。请刷新该页。", @@ -158,8 +159,7 @@ "unknownErrorText": "未知错误。", "uploadImageExtMessage": "未知图像格式。", "uploadImageFileCountMessage": "没有图片上传", - "uploadImageSizeMessage": "超过了最大图片大小", - "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." + "uploadImageSizeMessage": "超过了最大图片大小" }, "LongActions": { "applyChangesTextText": "数据加载中…", @@ -264,6 +264,7 @@ "textBottomLeft": "左下", "textBottomRight": "右下", "textBringToForeground": "放到最上面", + "textBullets": "着重号", "textBulletsAndNumbers": "项目符号与编号", "textCaseSensitive": "区分大小写", "textCellMargins": "单元格边距", @@ -327,6 +328,7 @@ "textNoStyles": "这个类型的表格没有对应的样式设定。", "textNoTextFound": "文本没找到", "textNotUrl": "该字段应为“http://www.example.com”格式的URL", + "textNumbers": "数字", "textOpacity": "不透明度", "textOptions": "选项", "textPictureFromLibrary": "图库", @@ -381,8 +383,7 @@ "textZoomIn": "放大", "textZoomOut": "缩小", "textZoomRotate": "缩放并旋转", - "textBullets": "Bullets", - "textNumbers": "Numbers" + "textTransitions": "Transitions" }, "Settings": { "mniSlideStandard": "标准(4:3)", @@ -440,28 +441,28 @@ "textUnitOfMeasurement": "计量单位", "textUploaded": "已上传", "textVersion": "版本", - "txtScheme1": "Office", - "txtScheme10": "Median", - "txtScheme11": "Metro", - "txtScheme12": "Module", - "txtScheme13": "Opulent", - "txtScheme14": "Oriel", - "txtScheme15": "Origin", - "txtScheme16": "Paper", - "txtScheme17": "Solstice", - "txtScheme18": "Technic", - "txtScheme19": "Trek", - "txtScheme2": "Grayscale", - "txtScheme20": "Urban", - "txtScheme21": "Verve", - "txtScheme22": "New Office", - "txtScheme3": "Apex", - "txtScheme4": "Aspect", - "txtScheme5": "Civic", - "txtScheme6": "Concourse", - "txtScheme7": "Equity", - "txtScheme8": "Flow", - "txtScheme9": "Foundry" + "txtScheme1": "办公室", + "txtScheme10": "中位数", + "txtScheme11": "地铁", + "txtScheme12": "模块", + "txtScheme13": "富裕的", + "txtScheme14": "奥丽尔", + "txtScheme15": "原来的", + "txtScheme16": "纸", + "txtScheme17": "冬至", + "txtScheme18": "技术", + "txtScheme19": "行进", + "txtScheme2": "灰度", + "txtScheme20": "城市的", + "txtScheme21": "气势", + "txtScheme22": "新的 Office", + "txtScheme3": "顶点", + "txtScheme4": "方面", + "txtScheme5": "公民", + "txtScheme6": "中央大厅", + "txtScheme7": "公平", + "txtScheme8": "流动", + "txtScheme9": "发现" } } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/ca.json b/apps/spreadsheeteditor/mobile/locale/ca.json index 26a71f9ae..f6353a067 100644 --- a/apps/spreadsheeteditor/mobile/locale/ca.json +++ b/apps/spreadsheeteditor/mobile/locale/ca.json @@ -73,7 +73,7 @@ "leavePageText": "Teniu canvis no desats en aquest document. Cliqueu a \"Mantingueu-vos en aquesta pàgina\" per esperar al desament automàtic. Cliqueu a \"Deixa aquesta pàgina\" per descartar tots els canvis no desats.", "notcriticalErrorTitle": "Advertiment", "SDK": { - "txtAccent": "Accent", + "txtAccent": "Èmfasi", "txtAll": "(Tots)", "txtArt": "El vostre text aquí", "txtBlank": "(en blanc)", @@ -169,6 +169,7 @@ "errorAutoFilterHiddenRange": "Aquesta operació no es pot fer perquè l'àrea conté cel·les filtrades.
Mostreu els elements filtrats i torneu-ho a provar.", "errorBadImageUrl": "L'URL de la imatge no és correcta", "errorChangeArray": "No podeu canviar part d'una matriu.", + "errorChangeOnProtectedSheet": "La cel·la o el gràfic que intenteu canviar es troba en un full protegit. Per fer un canvi, desprotegiu el full. És possible que se us demani que introduïu una contrasenya.", "errorConnectToServer": "No es pot desar aquest document. Comproveu la configuració de la vostra connexió o contacteu amb el vostre administrador.
Quan cliqueu el botó «D'acord», se us demanarà que baixeu el document.", "errorCopyMultiselectArea": "Aquesta ordre no es pot utilitzar amb diverses seleccions.
Seleccioneu un interval únic i torneu-ho a provar.", "errorCountArg": "Hi ha un error en la fórmula.
El nombre d'arguments no és vàlid.", @@ -215,7 +216,7 @@ "errorUsersExceed": "S'ha superat el nombre d’usuaris permès pel vostre pla", "errorViewerDisconnect": "S'ha perdut la connexió. Encara podeu veure el document,
, però no podreu baixar-lo fins que es restableixi la connexió i es torni a carregar la pàgina.", "errorWrongBracketsCount": "Hi ha un error en la fórmula.
El nombre de parèntesis no és correcte.", - "errorWrongOperator": "S'ha produït un error en la fórmula introduïda. L'operador que s'utilitza no és correcte.
Corregiu l'error o useu el botó Esc per cancel·lar l'edició de la fórmula.", + "errorWrongOperator": "S'ha produït un error en la fórmula introduïda. L'operador que s'utilitza no és correcte.
Corregiu l'error.", "notcriticalErrorTitle": "Advertiment", "openErrorText": "S'ha produït un error en obrir el fitxer", "pastInMergeAreaError": "No es pot canviar una part d'una cel·la combinada", @@ -224,8 +225,7 @@ "unknownErrorText": "Error desconegut.", "uploadImageExtMessage": "Format d'imatge desconegut.", "uploadImageFileCountMessage": "No s'ha carregat cap imatge.", - "uploadImageSizeMessage": "La imatge és massa gran. La mida màxima és de 25 MB.", - "errorChangeOnProtectedSheet": "The cell or chart you are trying to change is on a protected sheet. To make a change, unprotect the sheet. You might be requested to enter a password." + "uploadImageSizeMessage": "La imatge és massa gran. La mida màxima és de 25 MB." }, "LongActions": { "applyChangesTextText": "S'estant carregant les dades...", @@ -269,7 +269,7 @@ "textDelete": "Suprimeix", "textDuplicate": "Duplica", "textErrNameExists": "Ja existeix un full de càlcul amb aquest nom.", - "textErrNameWrongChar": "El nom de full no pot contenir els caràcters: \\, /, *,?, [,],:", + "textErrNameWrongChar": "El nom del full no pot contenir els caràcters: \\, /, *,?, [,],:", "textErrNotEmpty": "El nom del full no pot estar en blanc", "textErrorLastSheet": "El llibre de treball ha de tenir com a mínim un full de càlcul visible.", "textErrorRemoveSheet": "No es pot suprimir el full de càlcul.", diff --git a/apps/spreadsheeteditor/mobile/locale/de.json b/apps/spreadsheeteditor/mobile/locale/de.json index 723c5995c..527269033 100644 --- a/apps/spreadsheeteditor/mobile/locale/de.json +++ b/apps/spreadsheeteditor/mobile/locale/de.json @@ -215,7 +215,7 @@ "errorUsersExceed": "Die nach dem Zahlungsplan erlaubte Anzahl der Benutzer ist überschritten", "errorViewerDisconnect": "Die Verbindung wurde abgebrochen. Das Dokument wird angezeigt,
das Herunterladen wird aber nur verfügbar, wenn die Verbindung wiederhergestellt ist.", "errorWrongBracketsCount": "Die Formel enthält einen Fehler.
Falsche Anzahl von Klammern.", - "errorWrongOperator": "Die eingegebene Formel enthält einen Fehler. Falscher Operator wurde genutzt.
Bitte korrigieren Sie den Fehler oder brechen Sie die Formel mit Esc ab.", + "errorWrongOperator": "Die eingegebene Formel enthält einen Fehler. Falscher Operator wurde genutzt.
Bitte korrigieren Sie den Fehler.", "notcriticalErrorTitle": "Warnung", "openErrorText": "Beim Öffnen dieser Datei ist ein Fehler aufgetreten", "pastInMergeAreaError": "Teil einer verbundenen Zelle kann nicht geändert werden", diff --git a/apps/spreadsheeteditor/mobile/locale/en.json b/apps/spreadsheeteditor/mobile/locale/en.json index dbe254d98..dc5cd8f9b 100644 --- a/apps/spreadsheeteditor/mobile/locale/en.json +++ b/apps/spreadsheeteditor/mobile/locale/en.json @@ -167,7 +167,7 @@ "errorAutoFilterChangeFormatTable": "The operation could not be done for the selected cells as you cannot move a part of a table.
Select another data range so that the whole table is shifted and try again.", "errorAutoFilterDataRange": "The operation could not be done for the selected range of cells.
Select a uniform data range inside or outside the table and try again.", "errorAutoFilterHiddenRange": "The operation cannot be performed because the area contains filtered cells.
Please, unhide the filtered elements and try again.", - "errorBadImageUrl": "Image url is incorrect", + "errorBadImageUrl": "Image URL is incorrect", "errorChangeArray": "You cannot change part of an array.", "errorChangeOnProtectedSheet": "The cell or chart you are trying to change is on a protected sheet. To make a change, unprotect the sheet. You might be requested to enter a password.", "errorConnectToServer": "Can't save this doc. Check your connection settings or contact your admin.
When you click the 'OK' button, you will be prompted to download the document.", @@ -216,7 +216,7 @@ "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", "errorViewerDisconnect": "Connection is lost. You can still view the document,
but you won't be able to download or print it until the connection is restored and the page is reloaded.", "errorWrongBracketsCount": "An error in the formula.
Wrong number of brackets.", - "errorWrongOperator": "An error in the entered formula. Wrong operator is used.
Please correct the error.", + "errorWrongOperator": "An error in the entered formula. Wrong operator is used.
Please correct the error.", "notcriticalErrorTitle": "Warning", "openErrorText": "An error has occurred while opening the file", "pastInMergeAreaError": "Cannot change a part of a merged cell", diff --git a/apps/spreadsheeteditor/mobile/locale/es.json b/apps/spreadsheeteditor/mobile/locale/es.json index cb718f6ee..5ae9e883c 100644 --- a/apps/spreadsheeteditor/mobile/locale/es.json +++ b/apps/spreadsheeteditor/mobile/locale/es.json @@ -215,7 +215,7 @@ "errorUsersExceed": "Se superó la cantidad de usuarios permitidos por el plan de precios", "errorViewerDisconnect": "Se ha perdido la conexión. Todavía puede ver el documento,
pero no podrá descargarlo ni imprimirlo hasta que se restablezca la conexión y se recargue la página.", "errorWrongBracketsCount": "Un error en la fórmula.
Número de corchetes incorrecto.", - "errorWrongOperator": "Un error en la fórmula introducida. Se ha utilizado el operador incorrecto.
Corrija el error o utilice el botón Esc para cancelar la edición de la fórmula.", + "errorWrongOperator": "Un error en la fórmula introducida. Se ha utilizado el operador incorrecto.
Por favor, corrija el error.", "notcriticalErrorTitle": "Advertencia", "openErrorText": "Se ha producido un error al abrir el archivo ", "pastInMergeAreaError": "No se puede modificar una parte de una celda combinada", diff --git a/apps/spreadsheeteditor/mobile/locale/fr.json b/apps/spreadsheeteditor/mobile/locale/fr.json index 37f511a47..a0e18678e 100644 --- a/apps/spreadsheeteditor/mobile/locale/fr.json +++ b/apps/spreadsheeteditor/mobile/locale/fr.json @@ -169,6 +169,7 @@ "errorAutoFilterHiddenRange": "L'opération ne peut pas être effectuée car la zone contient des cellules filtrées.
Veuillez supprimer les filtres et réessayez.", "errorBadImageUrl": "L'URL de l'image est incorrecte", "errorChangeArray": "Impossible de modifier une partie de matrice.", + "errorChangeOnProtectedSheet": "La cellule ou le graphique que vous essayé de changer est sur une feuille protégée. Pour effectuer le changement, retirer al protection de la feuille. Un mot de passe pourrait vous être demandé.", "errorConnectToServer": "Impossible d'enregistrer ce document. Veuillez vérifier vos paramètres de connexion ou contactez l'administrateur.
Lorsque vous cliquez sur le bouton 'OK', vous serez invité à télécharger le document.", "errorCopyMultiselectArea": "Impossible d'exécuter cette commande sur des sélections multiples.
Sélectionnez une seule plage et essayez à nouveau.", "errorCountArg": "Il y a une erreur dans la formule : nombre d'arguments incorrecte.", @@ -215,7 +216,7 @@ "errorUsersExceed": "Le nombre d'utilisateurs autorisés par le plan tarifaire a été dépassé", "errorViewerDisconnect": "La connexion a été perdue. Vous pouvez toujours afficher le document,
mais ne pouvez pas le télécharger jusqu'à ce que la connexion soit rétablie et que la page soit rafraichit.", "errorWrongBracketsCount": "Il y a une erreur dans la formule : Mauvais nombre de parenthèses.", - "errorWrongOperator": "Une erreur dans la formule. L'opérateur n'est pas valide. Corriger l'erreur ou presser Echap pour annuler l'édition de la formule.", + "errorWrongOperator": "Une erreur dans la formule entrée. Opérateur utilisé est incorrect.
Veuillez corriger l'erreur.", "notcriticalErrorTitle": "Avertissement", "openErrorText": "Une erreur s’est produite lors de l’ouverture du fichier", "pastInMergeAreaError": "Impossible de modifier une partie d'une cellule fusionnée", @@ -224,8 +225,7 @@ "unknownErrorText": "Erreur inconnue.", "uploadImageExtMessage": "Format d'image inconnu.", "uploadImageFileCountMessage": "Aucune image chargée.", - "uploadImageSizeMessage": "L'image est trop grande. La taille limite est de 25 Mo.", - "errorChangeOnProtectedSheet": "The cell or chart you are trying to change is on a protected sheet. To make a change, unprotect the sheet. You might be requested to enter a password." + "uploadImageSizeMessage": "L'image est trop grande. La taille limite est de 25 Mo." }, "LongActions": { "applyChangesTextText": "Chargement des données en cours...", diff --git a/apps/spreadsheeteditor/mobile/locale/it.json b/apps/spreadsheeteditor/mobile/locale/it.json index f45ada311..2cde829d6 100644 --- a/apps/spreadsheeteditor/mobile/locale/it.json +++ b/apps/spreadsheeteditor/mobile/locale/it.json @@ -167,7 +167,7 @@ "errorAutoFilterChangeFormatTable": "The operation could not be done for the selected cells as you cannot move a part of a table.
Select another data range so that the whole table is shifted and try again.", "errorAutoFilterDataRange": "The operation could not be done for the selected range of cells.
Select a uniform data range inside or outside the table and try again.", "errorAutoFilterHiddenRange": "The operation cannot be performed because the area contains filtered cells.
Please, unhide the filtered elements and try again.", - "errorBadImageUrl": "Image url is incorrect", + "errorBadImageUrl": "Image URL is incorrect", "errorChangeArray": "You cannot change part of an array.", "errorChangeOnProtectedSheet": "The cell or chart you are trying to change is on a protected sheet. To make a change, unprotect the sheet. You might be requested to enter a password.", "errorConnectToServer": "Can't save this doc. Check your connection settings or contact your admin.
When you click the 'OK' button, you will be prompted to download the document.", @@ -216,7 +216,7 @@ "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", "errorViewerDisconnect": "Connection is lost. You can still view the document,
but you won't be able to download or print it until the connection is restored and the page is reloaded.", "errorWrongBracketsCount": "An error in the formula.
Wrong number of brackets.", - "errorWrongOperator": "An error in the entered formula. Wrong operator is used.
Please correct the error.", + "errorWrongOperator": "An error in the entered formula. Wrong operator is used.
Please correct the error.", "notcriticalErrorTitle": "Warning", "openErrorText": "An error has occurred while opening the file", "pastInMergeAreaError": "Cannot change a part of a merged cell", diff --git a/apps/spreadsheeteditor/mobile/locale/ja.json b/apps/spreadsheeteditor/mobile/locale/ja.json index 5398ed90a..23f617a40 100644 --- a/apps/spreadsheeteditor/mobile/locale/ja.json +++ b/apps/spreadsheeteditor/mobile/locale/ja.json @@ -215,7 +215,7 @@ "errorUsersExceed": "料金プランで許可されているユーザー数を超えました。", "errorViewerDisconnect": "接続が失われました。あなたはまだ文書を見えるけど,
接続が復元されたしページが再読み込まれたまで文書をダウンロードと印刷できません。", "errorWrongBracketsCount": "数式でエラーがあります。
ブラケットの数が正しくありません。", - "errorWrongOperator": "入力した数式にエラーがあります。間違った演算子が使用されています。
エラーを修正するか、Escキーを使用して数式の編集をキャンセルしてください。", + "errorWrongOperator": "入力した数式にエラーがあります。間違った演算子が使用されています。
エラーを修正する。", "notcriticalErrorTitle": " 警告", "openErrorText": "ファイルを開く際にエラーが発生しました。", "pastInMergeAreaError": "結合したセルの一部は変更できません", diff --git a/apps/spreadsheeteditor/mobile/locale/ko.json b/apps/spreadsheeteditor/mobile/locale/ko.json index c35a07526..9f8333e58 100644 --- a/apps/spreadsheeteditor/mobile/locale/ko.json +++ b/apps/spreadsheeteditor/mobile/locale/ko.json @@ -215,7 +215,7 @@ "errorUsersExceed": "가격 책정 계획에서 허용 한 사용자 수가 초과되었습니다", "errorViewerDisconnect": "네트워크 연결에 실패했습니다. 이 문서는 계속 볼 수 있지만
연결이 복원되고 페이지가 새로 고쳐질 때까지 이 문서를 다운로드하거나 인쇄할 수 없습니다.", "errorWrongBracketsCount": "공식에 오류가 있습니다.
대괄호 수가 잘못되었습니다.", - "errorWrongOperator": "입력한 수식에 오류가 있습니다. 잘못된 연산자를 사용했습니다.
오류를 수정하거나 Esc 버튼을 눌러 수식 편집을 취소하십시오.", + "errorWrongOperator": "입력한 수식에 오류가 있습니다. 잘못된 연산자를 사용했습니다.
오류를 수정하십시오.", "notcriticalErrorTitle": "경고", "openErrorText": "파일을 여는 동안 오류가 발생했습니다.", "pastInMergeAreaError": "병합된 셀의 일부는 수정할 수 없습니다.", diff --git a/apps/spreadsheeteditor/mobile/locale/nl.json b/apps/spreadsheeteditor/mobile/locale/nl.json index 6d77f6297..df684f5a8 100644 --- a/apps/spreadsheeteditor/mobile/locale/nl.json +++ b/apps/spreadsheeteditor/mobile/locale/nl.json @@ -214,7 +214,7 @@ "errorUsersExceed": "Het onder het prijsplan toegestane aantal gebruikers is overschreden", "errorViewerDisconnect": "De verbinding is verbroken. U kunt het document nog steeds bekijken,
maar u zult het niet kunnen downloaden totdat de verbinding is hersteld en de pagina opnieuw is geladen.", "errorWrongBracketsCount": "Een fout in de formule.
Verkeerd aantal haakjes.", - "errorWrongOperator": "Een fout in de ingevoerde formule. De verkeerde operator is gebruikt.
Corrigeer de fout of gebruik de Esc-toets om het bewerken van de formule te annuleren.", + "errorWrongOperator": "Een fout in de ingevoerde formule. De verkeerde operator is gebruikt.
Corrigeer de fout.", "notcriticalErrorTitle": "Waarschuwing", "openErrorText": "Er is een fout opgetreden bij het openen van het bestand", "pastInMergeAreaError": "Kan een deel van een samengevoegde cel niet wijzigen", diff --git a/apps/spreadsheeteditor/mobile/locale/pt.json b/apps/spreadsheeteditor/mobile/locale/pt.json index aa5914b85..c9f8808cc 100644 --- a/apps/spreadsheeteditor/mobile/locale/pt.json +++ b/apps/spreadsheeteditor/mobile/locale/pt.json @@ -169,6 +169,7 @@ "errorAutoFilterHiddenRange": "A operação não pode ser realizada porque a área contém células filtradas.
Por favor, desamarre os elementos filtrados e tente novamente.", "errorBadImageUrl": "URL de imagem está incorreta", "errorChangeArray": "Você não pode mudar parte de uma matriz.", + "errorChangeOnProtectedSheet": "A célula ou gráfico que você está tentando alterar está em uma folha protegida. Para fazer uma alteração, desproteja a folha. Você pode ser solicitado a inserir a senha.", "errorConnectToServer": "Não é possível salvar este documento. Verifique as configurações de conexão ou entre em contato com o administrador.
Ao clicar no botão 'OK', você será solicitado a baixar o documento.", "errorCopyMultiselectArea": "Este comando não pode ser usado com várias seleções.
Selecione um intervalo único e tente novamente.", "errorCountArg": "Um erro na fórmula.
Número inválido de argumentos.", @@ -215,7 +216,7 @@ "errorUsersExceed": "O número de usuários permitidos pelo plano de preços foi excedido", "errorViewerDisconnect": "A conexão foi perdida. Você ainda pode ver o documento,
mas não poderá baixá-lo até que a conexão seja restaurada e a página recarregada.", "errorWrongBracketsCount": "Erro na fórmula.
Número incorreto de colchetes.", - "errorWrongOperator": "Um erro na fórmula inserida. O operador errado é usado.
Corrija o erro ou use o botão Esc para cancelar a edição da fórmula.", + "errorWrongOperator": "Um erro na fórmula inserida. O operador errado é usado.
Corrija o erro.", "notcriticalErrorTitle": "Aviso", "openErrorText": "Ocorreu um erro ao abrir o arquivo", "pastInMergeAreaError": "Não é possível alterar uma parte de uma célula mesclada", @@ -224,8 +225,7 @@ "unknownErrorText": "Erro desconhecido.", "uploadImageExtMessage": "Formato de imagem desconhecido.", "uploadImageFileCountMessage": "Sem imagens carregadas.", - "uploadImageSizeMessage": "Tamanho limite máximo da imagem excedido. O tamanho máximo é de 25 MB.", - "errorChangeOnProtectedSheet": "The cell or chart you are trying to change is on a protected sheet. To make a change, unprotect the sheet. You might be requested to enter a password." + "uploadImageSizeMessage": "Tamanho limite máximo da imagem excedido. O tamanho máximo é de 25 MB." }, "LongActions": { "applyChangesTextText": "Carregando dados...", diff --git a/apps/spreadsheeteditor/mobile/locale/ro.json b/apps/spreadsheeteditor/mobile/locale/ro.json index 1b25d639a..90b049ca2 100644 --- a/apps/spreadsheeteditor/mobile/locale/ro.json +++ b/apps/spreadsheeteditor/mobile/locale/ro.json @@ -216,7 +216,7 @@ "errorUsersExceed": "Limita de utilizatori stipulată de planul tarifar a fost depășită", "errorViewerDisconnect": "Conexiunea a fost pierdută. Încă mai puteți vizualiza documentul,
dar nu și să-l descărcați până când conexiunea se restabilește și pagina se reîmprospătează.", "errorWrongBracketsCount": "Eroare în formulă.
Numărul de paranteze incorect.", - "errorWrongOperator": "Eroare în formulă. Operator necorespunzător.
Corectați eroarea sau apăsați Esc pentru anularea editărilor formulei.", + "errorWrongOperator": "Eroare în formulă. Operator necorespunzător.
Corectați eroarea.", "notcriticalErrorTitle": "Avertisment", "openErrorText": "Eroare la deschiderea fișierului", "pastInMergeAreaError": "O parte din celulă îmbinată nu poate fi modificată ", diff --git a/apps/spreadsheeteditor/mobile/locale/ru.json b/apps/spreadsheeteditor/mobile/locale/ru.json index cefad169b..9641f0c5d 100644 --- a/apps/spreadsheeteditor/mobile/locale/ru.json +++ b/apps/spreadsheeteditor/mobile/locale/ru.json @@ -216,7 +216,7 @@ "errorUsersExceed": "Превышено количество пользователей, разрешенных согласно тарифному плану", "errorViewerDisconnect": "Подключение прервано. Вы можете просматривать документ,
но не сможете скачать или напечатать его до восстановления подключения и обновления страницы.", "errorWrongBracketsCount": "Ошибка в формуле.
Неверное количество скобок.", - "errorWrongOperator": "Ошибка во введенной формуле. Использован неправильный оператор.
Исправьте ошибку или используйте клавишу Esc для отмены редактирования формулы.", + "errorWrongOperator": "Ошибка во введенной формуле. Использован неправильный оператор.
Пожалуйста, исправьте ошибку.", "notcriticalErrorTitle": "Внимание", "openErrorText": "При открытии файла произошла ошибка", "pastInMergeAreaError": "Нельзя изменить часть объединенной ячейки", diff --git a/apps/spreadsheeteditor/mobile/locale/zh.json b/apps/spreadsheeteditor/mobile/locale/zh.json index 71e5df0fb..035de4299 100644 --- a/apps/spreadsheeteditor/mobile/locale/zh.json +++ b/apps/spreadsheeteditor/mobile/locale/zh.json @@ -214,7 +214,7 @@ "errorUsersExceed": "超过了定价计划允许的用户数", "errorViewerDisconnect": "网络连接失败。你仍然可以查看这个文档,
但在连接恢复并刷新该页之前,你将不能下载或打印这个文档。", "errorWrongBracketsCount": "公式中有错误。
括号数量不对。", - "errorWrongOperator": "输入的公式中有错误。你使用了错误的运算符。
请修正错误,或按下 Esc 按钮取消公式编辑。", + "errorWrongOperator": "输入的公式中有错误。你使用了错误的运算符。
请修正错误。", "notcriticalErrorTitle": "警告", "openErrorText": "打开文件时发生错误", "pastInMergeAreaError": "不能修改合并后的单元格的一部分", From 34a5f2ea7622855db2cd482c7ee2f4ba9a903be8 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Tue, 19 Oct 2021 16:32:22 +0300 Subject: [PATCH 67/67] Fix Bug 53205 --- apps/common/main/lib/view/Header.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/common/main/lib/view/Header.js b/apps/common/main/lib/view/Header.js index 7a34a8193..47b26e003 100644 --- a/apps/common/main/lib/view/Header.js +++ b/apps/common/main/lib/view/Header.js @@ -737,7 +737,7 @@ define([ this.btnUserName.updateHint(name); } else if (this.elUserName) { this.elUserName.tooltip({ - title: name, + title: Common.Utils.String.htmlEncode(name), placement: 'cursor', html: true });